:root {
  --bg-deep: #050b1a;
  --bg-hero-top: #071436;
  --bg-hero-bottom: #0d1e48;
  --bg-panel: rgba(12, 23, 52, 0.82);
  --bg-card: rgba(10, 20, 44, 0.85);
  --accent-primary: #46d4e0;
  --accent-secondary: #5bc0f8;
  --accent-tertiary: #8d7eff;
  --text-primary: #f5f8ff;
  --text-secondary: #c1cce8;
  --text-muted: #8b96b8;
  --shadow-soft: 0 28px 70px rgba(5, 12, 30, 0.45);
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --font-display: 'Space Grotesk', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

.container {
  width: min(1180px, 90vw);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: #021225;
  box-shadow: 0 18px 40px rgba(91, 192, 248, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.14);
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-primary.glow {
  animation: pulse 4.5s infinite;
}

.splash-screen {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, rgba(91, 192, 248, 0.25), rgba(5, 12, 26, 0.95));
  z-index: 9999;
  animation: splashFade 1.2s ease forwards;
}

.splash-screen img {
  width: 140px;
  filter: drop-shadow(0 12px 28px rgba(91, 192, 248, 0.6));
  animation: blink 0.9s ease-in-out infinite alternate;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0;
  background: radial-gradient(circle at top, rgba(16, 42, 102, 0.65), transparent 52%), var(--bg-deep);
  overflow: hidden;
}

#particles-js {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(91, 192, 248, 0.35), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(8, 255, 214, 0.25), transparent 50%),
    radial-gradient(circle at 65% 70%, rgba(141, 126, 255, 0.22), transparent 58%);
  opacity: 0.7;
  filter: blur(0);
  z-index: 1;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
}

.brand img {
  width: 140px;
}

.menu {
  display: flex;
  gap: 26px;
  align-items: center;
}

.menu a {
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.25s ease, opacity 0.25s ease;
}

.menu a:hover {
  color: var(--text-primary);
  opacity: 0.85;
}

.badge {
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-secondary);
  margin-bottom: 18px;
}

.hero-cta {
  display: inline-grid;
  grid-auto-flow: column;
  grid-template-columns: repeat(2, auto);
  gap: 16px;
  margin-bottom: 18px;
}

.microcopy {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.hero-panels {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 84px;
  padding-top: 36px;
  z-index: 2;
}

.hero-panels::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: min(960px, 100%);
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(91, 192, 248, 0.18) 12%,
    rgba(141, 126, 255, 0.6) 50%,
    rgba(91, 192, 248, 0.18) 88%,
    transparent 100%
  );
  box-shadow: 0 0 24px rgba(141, 126, 255, 0.32);
  border-radius: 999px;
  pointer-events: none;
}

.integrations {
  background: rgba(12, 24, 52, 0.82);
  border: 1px solid rgba(91, 192, 248, 0.25);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  box-shadow: var(--shadow-soft);
}

.integrations-title {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(91, 192, 248, 0.9);
  display: block;
  margin-bottom: 18px;
}

.integration-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.integration-chips span {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(91, 192, 248, 0.35);
  background: rgba(8, 16, 35, 0.86);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 24px;
  width: min(980px, 100%);
}

.stat-card {
  position: relative;
  overflow: hidden;
  padding: 56px 32px 36px;
  border-radius: 28px;
  border: 1.5px solid rgba(91, 192, 248, 0.38);
  background: linear-gradient(155deg, rgba(11, 25, 54, 0.92), rgba(5, 14, 34, 0.94));
  backdrop-filter: blur(14px);
  box-shadow: 0 28px 65px rgba(5, 12, 30, 0.48);
  text-align: center;
  min-height: 170px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.stat-card::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: radial-gradient(140% 100% at 50% 0%, rgba(91, 192, 248, 0.22), transparent 62%);
  opacity: 0.8;
  pointer-events: none;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 36px 78px rgba(5, 12, 30, 0.6);
}

.stat-card > * {
  position: relative;
  z-index: 1;
}

.stat-dot {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 68px;
  height: 68px;
  border-radius: 22px;
  background: radial-gradient(circle at 30% 30%, rgba(91, 192, 248, 0.95), rgba(91, 192, 248, 0.14));
  box-shadow: 0 18px 38px rgba(91, 192, 248, 0.45);
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.2vw, 3rem);
  color: #8ddaff;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.rocket-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: min(640px, 50vw);
  transform: translateY(-120px);
}

.rocket-img {
  position: relative;
  width: 100%;
  max-width: none;
  margin-right: 0;
  filter: drop-shadow(0 22px 60px rgba(64, 140, 255, 0.45));
}


.capabilities {
  background: #0a1533;
  padding: 140px 0 120px;
  text-align: center;
}

.section-head {
  margin-bottom: 48px;
}

.section-head.center {
  text-align: center;
}

.section-head.center p {
  margin: 0 auto;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.2vw, 3rem);
  margin-bottom: 18px;
}

.section-head p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.capabilities-visual {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.mascot-balloon {
  width: min(320px, 60vw);
  filter: drop-shadow(0 24px 48px rgba(60, 130, 255, 0.35));
}

.logo-carousel {
  position: relative;
  overflow: hidden;
  margin: 52px auto 0;
  padding: 28px 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(91, 192, 248, 0.28);
  background: rgba(7, 14, 30, 0.82);
  box-shadow: var(--shadow-soft);
  width: min(1080px, 96%);
}

.logo-carousel::before,
.logo-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(60px, 12vw, 140px);
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(
    to right,
    rgba(10, 21, 51, 0.96),
    rgba(10, 21, 51, 0)
  );
}

.logo-carousel::before {
  left: 0;
}

.logo-carousel::after {
  right: 0;
  transform: scaleX(-1);
}

.logo-track {
  display: flex;
  align-items: center;
  gap: clamp(36px, 6vw, 88px);
  width: max-content;
  animation: logo-scroll 28s linear infinite;
}

.logo-track img {
  height: clamp(38px, 6.2vw, 62px);
  filter: drop-shadow(0 14px 26px rgba(65, 150, 255, 0.35));
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.logo-track img[aria-hidden='true'] {
  filter: none;
}

.logo-carousel:hover .logo-track {
  animation-play-state: paused;
}

.logo-track img:hover {
  opacity: 1;
  transform: translateY(-6px) scale(1.04);
}

@keyframes logo-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-track {
    animation: none;
  }
}

.section-light {
  background: #0f1c33;
  padding: 120px 0;
}

.section-light h2,
.section-white h2,
.section-light h3,
.section-white h3 {
  color: var(--text-primary);
}

.section-light p,
.section-white p {
  color: var(--text-secondary);
}

.section-white {
  background: #0a1326;
  padding: 120px 0;
}

.section-gradient {
  background: linear-gradient(140deg, #0a142d, #13265a);
  padding: 120px 0;
}

.section-dark {
  background: radial-gradient(circle at top, rgba(20, 46, 104, 0.6), transparent 55%), var(--bg-deep);
  padding: 120px 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 54px;
  align-items: center;
}

.grid .text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.4rem);
  margin-bottom: 20px;
}

.grid .text p {
  margin-bottom: 18px;
  color: var(--text-secondary);
}

.grid .image {
  display: flex;
  justify-content: center;
}

.grid .image img {
  width: min(320px, 70vw);
  filter: drop-shadow(0 18px 36px rgba(5, 12, 30, 0.35));
}

.problem-section {
  padding: 120px 0;
}

.problem-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 36px;
  max-width: 760px;
  margin: 0 auto;
}

.problem-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.4vw, 2.8rem);
  margin-bottom: 22px;
}

.problem-copy p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
}

.problem-copy p + p {
  margin-top: 14px;
}

.problem-visual {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
}

.problem-visual::before {
  content: '';
  position: absolute;
  top: 8%;
  left: 50%;
  width: clamp(220px, 48vw, 420px);
  height: clamp(220px, 48vw, 420px);
  transform: translateX(-50%);
  background: radial-gradient(50% 60% at 50% 65%, rgba(91, 192, 248, 0.18), transparent 72%);
  filter: blur(6px);
  z-index: 0;
}

.problem-visual img {
  position: relative;
  width: clamp(280px, 58vw, 460px);
  filter: drop-shadow(0 26px 58px rgba(5, 12, 30, 0.42));
  transform: translateY(18px);
  z-index: 1;
}

.solution-highlights {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 48px auto 0;
}

.solution-highlights span {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(91, 192, 248, 0.35);
  background: rgba(9, 16, 33, 0.82);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.solution-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 32px 26px;
  border-radius: 26px;
  aspect-ratio: 1;
  background: linear-gradient(165deg, rgba(10, 22, 46, 0.94), rgba(6, 16, 36, 0.96));
  border: 1px solid rgba(91, 192, 248, 0.25);
  box-shadow: 0 26px 62px rgba(5, 12, 30, 0.44);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.solution-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(91, 192, 248, 0.18), transparent 68%);
  opacity: 0.65;
  pointer-events: none;
}

.solution-card::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: radial-gradient(120% 120% at 0% 0%, rgba(141, 126, 255, 0.28), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.solution-card:hover {
  transform: translateY(-10px);
  border-color: rgba(141, 126, 255, 0.58);
  box-shadow: 0 34px 88px rgba(5, 12, 30, 0.6);
}

.solution-card:hover::after {
  opacity: 1;
}

.solution-icon {
  position: relative;
  height: 72px;
  width: 72px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(91, 192, 248, 0.36), rgba(141, 126, 255, 0.42));
  color: var(--text-primary);
  font-size: 1.8rem;
  box-shadow: 0 26px 50px rgba(69, 170, 255, 0.45);
  z-index: 1;
}

.solution-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  width: 100%;
}

.solution-content h3 {
  font-size: 1.32rem;
}

.solution-content p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.solution-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.solution-content li {
  font-size: 0.95rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.solution-content li::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-tertiary));
  box-shadow: 0 0 12px rgba(91, 192, 248, 0.65);
}

.solution-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 46px;
  flex-wrap: wrap;
}

.feature-grid article {
  background: rgba(11, 22, 48, 0.82);
  border-radius: var(--radius-md);
  border: 1px solid rgba(91, 192, 248, 0.28);
  padding: 28px 24px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-grid article:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 62px rgba(91, 192, 248, 0.3);
}

.feature-grid i {
  font-size: 1.6rem;
  color: var(--accent-secondary);
  margin-bottom: 16px;
}

.feature-grid h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.feature-grid p {
  color: var(--text-secondary);
}

.advantage-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 32px;
  color: var(--text-secondary);
}

.advantage-list li {
  background: rgba(12, 23, 52, 0.6);
  border: 1px solid rgba(91, 192, 248, 0.18);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}

.signup {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr) minmax(0, 1fr) auto;
  gap: 16px;
  max-width: 920px;
  margin: 0 auto 24px;
  align-items: stretch;
}

.signup input {
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 16, 34, 0.75);
  color: var(--text-primary);
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.signup input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.signup input,
.signup button {
  height: 100%;
}

.signup button {
  padding-inline: 28px;
  white-space: nowrap;
}

.signup input:focus {
  outline: none;
  border-color: rgba(91, 192, 248, 0.6);
  box-shadow: 0 0 0 3px rgba(91, 192, 248, 0.25);
}

.form-feedback {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--accent-secondary);
  min-height: 20px;
  font-weight: 500;
}

.footer {
  background: #040915;
  padding: 70px 0 32px;
  color: rgba(255, 255, 255, 0.75);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.footer-top nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-top nav a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-top nav a:hover {
  color: var(--accent-secondary);
}

.social {
  display: flex;
  gap: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.social a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.social a:hover {
  transform: translateY(-4px);
  border-color: var(--accent-secondary);
}

.footer-copy {
  text-align: center;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.55);
}

/* Animations */
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(91, 192, 248, 0.55);
  }
  50% {
    box-shadow: 0 0 18px rgba(91, 192, 248, 0.8);
  }
}

@keyframes blink {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.05);
  }
}

@keyframes splashFade {
  0%,
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, -6px, 0);
  }
  50% {
    transform: translate3d(0, 10px, 0);
  }
}

@keyframes floatSide {
  0%,
  100% {
    transform: translate3d(-10px, -6px, 0);
  }
  50% {
    transform: translate3d(12px, 8px, 0);
  }
}

.floating {
  animation: float 6.4s ease-in-out infinite;
}

.floating-side {
  animation: floatSide 8s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  .hero-copy {
    margin: 0 auto;
  }

  .integrations {
    max-width: 520px;
    margin: 0 auto;
    align-items: center;
  }

  .hero-panels {
    margin-top: 60px;
    padding-top: 28px;
  }

  .hero-panels::before {
    width: 88%;
  }

  .integrations-chips {
    justify-content: center;
  }

  .stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    width: min(820px, 100%);
  }

  .rocket-wrap {
    width: min(580px, 60vw);
    transform: translateY(-100px);
  }

  .capabilities-visual {
    margin-bottom: 32px;
  }

  .solution-card {
    aspect-ratio: 1.05;
    padding: 28px 24px;
    gap: 20px;
  }
}

@media (max-width: 860px) {
  .menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }

  .hero-cta {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(620px, 100%);
  }

  .hero-panels::before {
    width: 92%;
  }

  .stat-card {
    padding: 52px 28px 34px;
  }

  .stat-dot {
    width: 60px;
    height: 60px;
    top: -24px;
  }

  .rocket-wrap {
    width: min(520px, 72vw);
    transform: translateY(-70px);
  }

  .signup {
    grid-template-columns: 1fr;
  }

  .form-feedback {
    grid-column: 1 / -1;
  }

  .solution-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    margin-top: 32px;
  }

  .solution-card {
    aspect-ratio: auto;
    padding: 28px 24px;
  }

  .solution-content {
    gap: 14px;
  }

  .solution-content ul {
    gap: 8px;
  }

  .solution-content li {
    font-size: 0.94rem;
  }

  .solution-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 100px 0;
  }

  .header {
    flex-direction: column;
    gap: 20px;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .hero-panels {
    margin-top: 40px;
    padding-top: 20px;
  }

  .hero-panels::before {
    width: 70%;
  }

  .stat-card {
    padding: 48px 24px 32px;
  }

  .stat-dot {
    width: 52px;
    height: 52px;
    top: -20px;
  }

  .rocket-wrap {
    width: min(440px, 82vw);
    transform: translateY(-48px);
  }

  .stats-card {
    min-height: unset;
  }

  .logo-carousel {
    margin: 32px auto 0;
    padding: 18px 0;
  }

  .logo-carousel::before,
  .logo-carousel::after {
    width: clamp(34px, 22vw, 72px);
  }

  .logo-track {
    gap: clamp(22px, 10vw, 44px);
    animation-duration: 20s;
  }

  .logo-track img {
    height: clamp(26px, 12vw, 46px);
  }

  .badge {
    letter-spacing: 0.25em;
  }

  .solution-highlights {
    margin-top: 36px;
  }

  .solution-icon {
    height: 56px;
    width: 56px;
    font-size: 1.4rem;
    margin: 0 auto;
  }

  .solution-grid {
    grid-template-columns: 1fr;
  }

  .solution-card {
    aspect-ratio: auto;
    padding: 26px 22px;
    gap: 18px;
  }

  .solution-content {
    gap: 12px;
  }

  .solution-content p {
    line-height: 1.6;
  }

  .solution-content li {
    text-align: left;
    justify-content: flex-start;
  }

  .footer-top {
    flex-direction: column;
    text-align: center;
  }
}
.btn:disabled,
.btn.loading {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 90px;
  align-items: center;
  position: relative;
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(3.1rem, 5.4vw, 4.8rem);
  line-height: 1.05;
  margin-bottom: 28px;
}

.hero-copy p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 34px;
}
