:root {
  --bg: #f4fbfd;
  --bg-deep: #0a202c;
  --surface: rgba(255, 255, 255, 0.74);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --line: rgba(13, 124, 147, 0.14);
  --text: #0d2430;
  --muted: #5f7784;
  --accent: #13a0b8;
  --accent-strong: #0b798d;
  --accent-soft: rgba(19, 160, 184, 0.1);
  --highlight: #89ebf2;
  --shadow: 0 28px 80px rgba(10, 32, 44, 0.12);
  --shadow-soft: 0 18px 48px rgba(10, 32, 44, 0.08);
  --radius-2xl: 42px;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(95vw, 1460px);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at 10% 8%,
      rgba(137, 235, 242, 0.18),
      transparent 16%
    ),
    radial-gradient(
      circle at 88% 14%,
      rgba(19, 160, 184, 0.16),
      transparent 18%
    ),
    radial-gradient(
      circle at 80% 78%,
      rgba(19, 160, 184, 0.1),
      transparent 18%
    ),
    linear-gradient(180deg, #fcfeff 0%, #eef7fa 42%, #f8fcfd 100%);
  min-height: 100vh;
  overflow-x: hidden;
}
body::before,
body::after {
  content: "";
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(12px);
}
body::before {
  left: -120px;
  top: 120px;
  width: 340px;
  height: 340px;
  background: radial-gradient(
    circle,
    rgba(137, 235, 242, 0.18),
    transparent 72%
  );
}
body::after {
  right: -140px;
  bottom: 30px;
  width: 360px;
  height: 360px;
  background: radial-gradient(
    circle,
    rgba(19, 160, 184, 0.14),
    transparent 72%
  );
}

a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button,
input,
textarea {
  font: inherit;
}
h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.045em;
  line-height: 0.95;
}
p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
  font-size: 1.02rem;
}

.shell {
  position: relative;
  z-index: 1;
}
.container {
  width: var(--container);
  margin: 0 auto;
}
.section {
  padding: 30px 0;
}
.section.tight {
  padding-top: 44px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(20px);
  background: rgba(252, 254, 255, 0.78);
  border-bottom: 1px solid rgba(13, 124, 147, 0.08);
}

.topbar-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 88px;

}

.brand {
  justify-self: start;
}
.nav {
  justify-self: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--muted);
  gap: 20px;
  display: flex;
}
.actions {
  justify-self: end;
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
}

.brand img {
  width: 178px;
}

.nav a {
  position: relative;
  padding: 8px 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--highlight));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
}
.nav a:hover::after {
  transform: scaleX(1);
}
.actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.text-link {
  color: var(--accent-strong);
  font-weight: 800;
  width: 170px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 18px 34px rgba(19, 160, 184, 0.24);
}
.btn-secondary {
  color: var(--accent-strong);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(13, 124, 147, 0.14);
}
.btn-ghost {
  color: white;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

.kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(19, 160, 184, 0.1);
  color: var(--accent-strong);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.panel,
.card,
.float-card,
.metric,
.solution,
.glass-box,
.feature,
.cta-card,
.contact-card,
.contact-side,
.footer-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}
.panel {
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(600px, 1.12fr);
  gap: 28px;
  align-items: stretch;
}
.hero-copy {
  padding: 42px;
  position: relative;
  overflow: hidden;
}
.hero-copy::before,
.hero-copy::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}
.hero-copy::before {
  top: -80px;
  right: -90px;
  width: 260px;
  height: 260px;
  background: radial-gradient(
    circle,
    rgba(137, 235, 242, 0.24),
    transparent 72%
  );
}
.hero-copy::after {
  left: -70px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  background: radial-gradient(
    circle,
    rgba(19, 160, 184, 0.16),
    transparent 72%
  );
}
.hero-copy > * {
  position: relative;
  z-index: 1;
}
.hero-copy h1 {
  margin-top: 22px;
  font-size: clamp(4.4rem, 4vw, 8rem);
}
.hero-copy p {
  margin-top: 20px;
  max-width: 400px;
  font-size: 1.16rem;
}
.hero-actions,
.chip-row,
.cta-row,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-actions {
  margin-top: 28px;
}
.chip-row {
  margin-top: 24px;
}
.chip {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(13, 124, 147, 0.12);
  box-shadow: var(--shadow-soft);
  font-weight: 700;
}

.hero-visual {
  padding: 20px;
  display: grid;
  gap: 18px;
  min-height: 780px;
}
.hero-stage {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(
    160deg,
    rgba(231, 247, 250, 0.94),
    rgba(246, 251, 253, 0.92)
  );
  border: 1px solid rgba(13, 124, 147, 0.1);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(16px) scale(1.01);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.hero-slide.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 32, 44, 0.06),
    rgba(10, 32, 44, 0.56)
  );
}
.hero-overlay {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  padding: 24px;
  border-radius: 28px;
  background: rgba(9, 31, 39, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}
.hero-overlay h3 {
  color: white;
  font-size: 2.2rem;
}
.hero-overlay p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 44ch;
}
.hero-ui {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 18px;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}
.hero-stat {
  min-width: 190px;
  padding: 16px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(13, 124, 147, 0.12);
  box-shadow: var(--shadow-soft);
}
.hero-stat strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
}
.hero-stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.55;
}
.hero-dots {
  display: flex;
  gap: 8px;
}
.hero-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}
.hero-dots button.is-active {
  background: white;
}
.hero-stack {
  display: grid;
  gap: 16px;
}
.float-card {
  padding: 20px;
  min-height: 156px;
}
.float-card h3 {
  margin-top: 14px;
  font-size: 1.24rem;
}
.float-card p {
  margin-top: 10px;
}
.hero-loop {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.88),
    rgba(240, 248, 250, 0.88)
  );
  border: 1px solid rgba(13, 124, 147, 0.12);
}
.hero-loop-track {
  display: grid;
  gap: 14px;
  padding: 16px;
  animation: floatVertical 16s linear infinite;
}
.loop-card {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(13, 124, 147, 0.1);
  box-shadow: var(--shadow-soft);
}
.loop-card strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
}
.loop-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}
.metric {
  padding: 24px;
}
.metric strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
}
.metric span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.marquee {
  overflow: hidden;
  padding: 16px 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(13, 124, 147, 0.12);
  box-shadow: var(--shadow-soft);
}
.marquee-row {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: loopHorizontal 22s linear infinite;
}
.marquee-pill {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: white;
  border: 1px solid rgba(13, 124, 147, 0.1);
  font-weight: 700;
}

.section-head {
  max-width: 980px;
  margin-bottom: 34px;
}
.section-head h2 {
  margin-top: 18px;
  font-size: clamp(2.5rem, 4.2vw, 5rem);
}
.section-head p {
  margin-top: 16px;
  max-width: 58ch;
}

.solutions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.solution {
  overflow: hidden;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}
.solution:hover,
.feature:hover,
.glass-box:hover,
.contact-card:hover,
.cta-card:hover,
.metric:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(19, 160, 184, 0.22);
}
.solution-media {
  height: 240px;
  overflow: hidden;
  background: linear-gradient(
    160deg,
    rgba(231, 247, 250, 0.94),
    rgba(246, 251, 253, 0.92)
  );
}
.solution-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.solution-body {
  padding: 26px;
}
.solution-body h3 {
  margin-top: 14px;
  font-size: 1.9rem;
}
.solution-body p {
  margin-top: 12px;
}
.mini-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  list-style: none;
  padding-left: 10px;
}
.mini-list li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
  line-height: 1.62;
}
.mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(19, 160, 184, 0.12);
}

.mini-list-footer {
  list-style: none;
  padding-left: 0px;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.34fr) minmax(0, 0.66fr);
  gap: 22px;
}
.showcase-nav {
  display: grid;
  gap: 14px;
}
.showcase-btn {
  width: 100%;
  padding: 22px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}
.showcase-btn strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
}
.showcase-btn span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}
.showcase-btn.is-active {
  background: linear-gradient(
    135deg,
    rgba(19, 160, 184, 0.14),
    rgba(255, 255, 255, 0.94)
  );
  border-color: rgba(19, 160, 184, 0.24);
  transform: translateX(8px);
}
.showcase-panel {
  display: none;
  padding: 20px;
  grid-template-columns: minmax(300px, 0.94fr) minmax(0, 1.06fr);
  gap: 18px;
}
.showcase-panel.is-active {
  display: grid;
}
.showcase-media {
  min-height: 440px;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(
    160deg,
    rgba(231, 247, 250, 0.94),
    rgba(246, 251, 253, 0.92)
  );
}
.showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.showcase-content {
  display: grid;
  gap: 18px;
  padding: 10px 6px 10px 4px;
}
.showcase-content h3 {
  font-size: clamp(2.2rem, 3vw, 3.6rem);
}
.showcase-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.glass-box {
  padding: 18px;
}
.glass-box strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
}
.glass-box span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.feature {
  padding: 28px;
}
.feature h3 {
  margin-top: 16px;
  font-size: 1.9rem;
}
.feature p {
  margin-top: 14px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.13fr) minmax(420px, 0.7fr);
  gap: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.contact-card {
  padding: 34px;
}
.contact-card h2 {
  margin-top: 18px;
  font-size: clamp(3rem, 4.4vw, 5.4rem);
}
.contact-card p {
  margin-top: 16px;
  max-width: 38ch;
}
.form-grid {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}
.form-grid label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--text);
}
.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 56px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(13, 124, 147, 0.16);
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
}
.form-grid textarea {
  min-height: 150px;
  resize: vertical;
}
.contact-side {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  padding: 20px;
}
.contact-slide {
  position: absolute;
  inset: 20px;
  opacity: 0;
  transform: scale(1.02);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  border-radius: 32px;
  overflow: hidden;
}
.contact-slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.contact-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 32, 44, 0.08),
    rgba(10, 32, 44, 0.56)
  );
}
.contact-overlay {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  padding: 24px;
  border-radius: 28px;
  background: rgba(9, 31, 39, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}
.contact-overlay h3 {
  color: white;
  font-size: 2rem;
}
.contact-overlay p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.82);
}

.cta-card {
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.cta-copy h2 {
  font-size: clamp(2.2rem, 3.2vw, 3.8rem);
}
.cta-copy p {
  margin-top: 14px;
  max-width: 52ch;
}

.footer {
  padding: 42px 0 54px;
  background: #0d2630;
  color: rgba(255, 255, 255, 0.82);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) repeat(3, minmax(0, 0.9fr));
  gap: 24px;
}
.footer h3 {
  color: white;
  font-size: 1.08rem;
}
.footer p,
.footer li,
.footer a {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.72;
}
.footer p,
.footer ul {
  margin-top: 14px;
}

.btn-menu {
  padding: 0 20px;
  min-height: 50px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.68s ease,
    transform 0.68s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes loopHorizontal {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes floatVertical {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

@media (max-width: 1280px) {
  .hero,
  .showcase,
  .showcase-panel,
  .contact-grid,
  .cta-card {
    grid-template-columns: 1fr;
  }
  .metrics,
  .solutions,
  .features,
  .footer-grid,
  .showcase-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-visual,
  .contact-side {
    min-height: 640px;
  }
  .hero-copy p {
    max-width: 800px;
  }
}

@media (max-width: 980px) {
  .topbar-inner {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "brand actions"
      "nav nav";
    row-gap: 12px;
    padding-top: 20px;
  }

  .brand {
    grid-area: brand;
    justify-self: start;
  }
  .actions {
    grid-area: actions;
    justify-self: end;
  }
  .nav {
    grid-area: nav;
    justify-self: center;
  }

  .nav {
    display: flex;
    gap: 100px;
  }

  .hero-visual,
  .showcase-panel,
  .metrics,
  .solutions,
  .features,
  .showcase-points,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 72px 0;
  }
  .container {
    width: min(92vw, 1460px);
  }
  .hero-copy,
  .hero-visual,
  .solution-body,
  .feature,
  .contact-card,
  .contact-side,
  .cta-card,
  .glass-box,
  .metric,
  .showcase-btn,
  .showcase-panel {
    padding: 22px;
  }
  .hero-copy h1,
  .contact-card h2 {
    font-size: 3.2rem;
  }
  .hero-actions,
  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .btn {
    width: 100%;
  }

  .btn-menu {
    padding: 0px;
    min-height: 40px;
    width: 60%;
  }
  .hero-visual {
    grid-template-columns: 1fr;
  }
  .hero-stage {
    min-height: 420px;
  }
  .contact-side {
    min-height: 520px;
  }
  .contact-slide {
    inset: 12px;
  }
  .hero-ui {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-copy p {
    font-size: 1rem;
  }
  .topbar-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "actions"
      "nav";
    justify-items: center;
    row-gap: 15px;
  }

  .brand {
    justify-self: center;
  }
  .actions {
    justify-self: center;
    flex-wrap: nowrap;
  }
  .nav {
    justify-self: center;
    gap: 90px;
  }
}
