:root {
  --space-cadet: #2d3142;
  --silver: #bfc0c0;
  --white: #ffffff;
  --mandarin: #ef8354;
  --independence: #4f5d75;
  --blue-jeans: #00a6fb;
  --sapphire-blue: #006494;
  --prussian-blue: #003554;

  --page-bg: #060917;
  --card-bg: #0d1327;
  --card-border: rgb(79 93 117 / 0.45);
  --text-main: #ebf2ff;
  --text-muted: #aebdd6;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 20px 45px rgb(2 7 26 / 0.45);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at 0% 0%, rgb(0 166 251 / 0.16), transparent 28%),
    radial-gradient(circle at 92% 14%, rgb(239 131 84 / 0.14), transparent 24%),
    linear-gradient(180deg, #070a16 0%, #090d1f 45%, #060917 100%);
  line-height: 1.5;
}

.bg-orb {
  position: fixed;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  filter: blur(65px);
  pointer-events: none;
  z-index: -2;
}

.orb-one {
  left: -130px;
  top: -110px;
  background: rgb(0 166 251 / 0.24);
}

.orb-two {
  right: -120px;
  top: 180px;
  background: rgb(239 131 84 / 0.2);
}

.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgb(173 193 223 / 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgb(173 193 223 / 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, black 18%, transparent 72%);
  z-index: -3;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

h1,
h2,
h3 {
  font-family: "Chakra Petch", sans-serif;
  line-height: 1.1;
  margin: 0;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: rgb(6 9 23 / 0.78);
  border-bottom: 1px solid rgb(79 93 117 / 0.35);
  z-index: 20;
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
}

.brand img {
  width: clamp(170px, 23vw, 270px);
  height: auto;
  display: block;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgb(173 193 223 / 0.35);
  background: rgb(8 12 28 / 0.88);
  padding: 9px 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #cfe2ff;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.05rem;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  transition: color 150ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
}

.nav-login {
  border: 1px solid rgb(173 193 223 / 0.35);
  background: rgb(13 19 39 / 0.84);
  border-radius: 999px;
  padding: 0.56rem 0.95rem;
}

.nav-cta,
.btn-primary {
  text-decoration: none;
  color: var(--white);
  background: linear-gradient(135deg, var(--mandarin), #f18f01 70%);
  border-radius: 999px;
  font-weight: 700;
  font-family: "Chakra Petch", sans-serif;
  box-shadow: 0 9px 22px rgb(241 143 1 / 0.32);
}

.nav-cta {
  padding: 0.62rem 1rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.2rem;
  align-items: center;
  padding: 4.8rem 0 2.2rem;
}

.eyebrow {
  font-family: "Chakra Petch", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-jeans);
  margin: 0 0 0.8rem;
  font-weight: 700;
  font-size: 0.88rem;
}

h1 {
  font-size: clamp(2rem, 4.4vw, 3.45rem);
  margin-bottom: 1rem;
  max-width: 19ch;
}

.lead {
  max-width: 56ch;
  color: var(--text-muted);
  margin: 0 0 1.35rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-points span {
  background: rgb(0 166 251 / 0.15);
  color: #caecff;
  border: 1px solid rgb(0 166 251 / 0.35);
  border-radius: 999px;
  padding: 0.34rem 0.72rem;
  font-size: 0.84rem;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.8rem 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
  font-family: "Chakra Petch", sans-serif;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:disabled {
  opacity: 0.78;
  cursor: not-allowed;
  transform: none;
}

.btn-secondary {
  color: var(--text-main);
  border: 1px solid rgb(173 193 223 / 0.35);
  background: rgb(13 19 39 / 0.84);
}

.btn-spinner {
  width: 0;
  height: 0;
  margin-left: 0;
  border-radius: 999px;
  border: 2px solid transparent;
  border-top-color: rgb(255 255 255 / 0.9);
  border-right-color: rgb(255 255 255 / 0.6);
  opacity: 0;
  transition: opacity 180ms ease, width 180ms ease, height 180ms ease, margin 180ms ease;
}

.btn.is-loading .btn-spinner {
  opacity: 1;
  width: 14px;
  height: 14px;
  margin-left: 0.5rem;
  animation: spin 900ms linear infinite;
}

.btn.is-loading {
  pointer-events: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.card {
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgb(16 24 47 / 0.96), rgb(10 15 32 / 0.96));
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
}

.panel {
  padding: 1.25rem;
}

.panel p,
.panel li {
  color: var(--text-muted);
}

.panel ul {
  margin: 0.75rem 0 0;
  padding-left: 1.15rem;
}

.hero-device-wrap {
  position: relative;
}

.hero-device {
  padding: 1.6rem;
  display: grid;
  place-items: center;
}

.hero-device img {
  width: min(100%, 430px);
  height: auto;
  display: block;
}

.floating-card {
  position: absolute;
  left: -32px;
  bottom: -34px;
  width: min(310px, 90%);
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(145deg, rgb(0 166 251 / 0.2), rgb(0 53 84 / 0.4));
  border: 1px solid rgb(0 166 251 / 0.35);
  backdrop-filter: blur(6px);
  box-shadow: 0 14px 34px rgb(2 11 39 / 0.45);
}

.floating-kicker {
  margin: 0;
  color: #9ddfff;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.floating-card h3 {
  margin: 0.2rem 0 0.35rem;
}

.floating-card p {
  margin: 0;
  color: #d8e8ff;
}

.trust-strip {
  margin-top: 2.4rem;
  margin-bottom: 0.8rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgb(79 93 117 / 0.45);
  background: rgb(7 11 26 / 0.8);
}

.strip-label {
  margin: 0;
  color: #dce8ff;
  font-weight: 700;
  font-family: "Chakra Petch", sans-serif;
}

.logo-cloud {
  margin-top: 0.65rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.logo-cloud span {
  padding: 0.35rem 0.6rem;
  border-radius: 8px;
  border: 1px solid rgb(173 193 223 / 0.26);
  color: var(--text-muted);
  background: rgb(11 16 34 / 0.85);
  font-size: 0.9rem;
}

.section {
  padding: 3.2rem 0 0;
}

.section-heading {
  margin-bottom: 1rem;
  max-width: 73ch;
}

.section-heading h2 {
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.section-heading p {
  margin: 0.55rem 0 0;
  color: var(--text-muted);
}

.product-grid,
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card,
.outcome-card,
.step-card {
  padding: 1.15rem;
}

.service-card p,
.outcome-card p,
.step-card p {
  color: var(--text-muted);
  margin: 0.6rem 0 0;
}

.service-tag {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  background: rgb(239 131 84 / 0.22);
  border: 1px solid rgb(239 131 84 / 0.45);
  color: #ffd6c4;
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.step-index {
  margin: 0;
  font-family: "Chakra Petch", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9bdcff;
  font-size: 0.84rem;
}

.contact {
  padding: 3.2rem 0 4rem;
}

.contact-card {
  padding: 1.35rem;
}

.contact-card p {
  color: var(--text-muted);
}

.form {
  display: grid;
  gap: 0.7rem;
}

.submission-status {
  min-height: 1.35rem;
  margin: 0.2rem 0 0;
  color: #9ee5bc;
  font-weight: 600;
}

.submission-status.error {
  color: #ffb4b4;
}

label {
  font-weight: 700;
  color: #dce8ff;
}

input,
textarea {
  width: 100%;
  padding: 0.8rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgb(173 193 223 / 0.35);
  font: inherit;
  color: var(--text-main);
  background: rgb(7 11 26 / 0.88);
}

input:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 2px solid rgb(0 166 251 / 0.45);
  outline-offset: 2px;
}

textarea {
  resize: vertical;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-footer {
  border-top: 1px solid rgb(79 93 117 / 0.35);
  background: rgb(5 8 20 / 0.96);
  color: #a5b3ce;
}

.footer-wrap {
  min-height: 68px;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.thanks-layout {
  min-height: 80vh;
  display: grid;
  place-items: center;
  padding: 4rem 0;
}

.thanks-card {
  width: min(640px, 100%);
  text-align: center;
  padding: 2rem;
}

.thanks-card h1 {
  margin-bottom: 0.8rem;
}

.thanks-card p {
  margin: 0 0 1.2rem;
  color: var(--text-muted);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise-in 650ms ease forwards;
}

@keyframes rise-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .floating-card {
    position: static;
    margin-top: 0.8rem;
    width: 100%;
  }

  .cards-3 {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .nav {
    min-height: 74px;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: min(360px, 94vw);
    margin-top: 0.5rem;
    padding: 0.85rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgb(79 93 117 / 0.45);
    background: rgb(7 11 26 / 0.98);
    box-shadow: 0 14px 34px rgb(2 11 39 / 0.45);
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 0.55rem 0.6rem;
    border-radius: 8px;
  }

  .nav-links .nav-login,
  .nav-links .nav-cta {
    text-align: center;
  }

  .product-grid,
  .about-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 2.4rem;
  }

  .contact {
    padding-top: 2.4rem;
  }

  .footer-wrap {
    flex-direction: column;
    justify-content: center;
    padding: 0.8rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .btn,
  .btn-spinner,
  .menu-toggle span {
    animation: none;
    transition: none;
  }
}
