:root {
  --bg-soft: #e9edf3;
  --bg: #f6fbff;
  --bg-alt: #edf5fe;
  --surface: #ffffff;
  --ink: #324d6d;
  --ink-soft: #4a6b90;
  --line: #cfe0f2;
  --brand: #3d92dd;
  --brand-strong: #2f87d0;
  --brand-accent: #5ac7a2;
  --grad-brand: linear-gradient(90deg, #3d92dd 0%, #5ac7a2 100%);
  --success-bg: #dbf4e8;
  --success-ink: #145836;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --shadow: 0 24px 52px -34px rgba(20, 63, 104, 0.45);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #eff3f8 0%, #e9f1f9 45%, #eef5fb 100%);
  line-height: 1.55;
}

h1,
h2,
h3,
.brand-text {
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  letter-spacing: -0.02em;
}

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.launch-bar {
  padding-top: 1rem;
}

.launch-alert {
  border: 1px solid #bcd6ee;
  border-radius: var(--radius-md);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(235, 245, 255, 0.94));
  padding: 0.8rem 0.95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.launch-alert-title {
  margin: 0;
  color: #234c75;
  font-weight: 800;
}

.launch-countdown {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.launch-unit {
  border: 1px solid #c8ddf1;
  border-radius: 10px;
  min-width: 74px;
  background: #ffffff;
  display: grid;
  place-items: center;
  padding: 0.32rem 0.45rem;
}

.launch-unit strong {
  font-size: 1.05rem;
  line-height: 1;
  color: #b4232c;
}

.launch-unit span {
  font-size: 0.69rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #b4232c;
  font-weight: 700;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(231, 242, 255, 0.75));
  border-top: 1px solid #e2ecf7;
  border-bottom: 1px solid #e2ecf7;
}

.ambient-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(20px);
  opacity: 0.4;
}

.orb-a {
  width: 360px;
  height: 360px;
  top: -120px;
  right: -90px;
  background: radial-gradient(circle, #94c6f1 0%, transparent 70%);
}

.orb-b {
  width: 440px;
  height: 440px;
  bottom: -180px;
  left: -120px;
  background: radial-gradient(circle, #b5dbff 0%, transparent 70%);
}

.grid-mask {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(110, 149, 190, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(110, 149, 190, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at 50% 20%, black 30%, transparent 80%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  background: rgba(247, 252, 255, 0.86);
  border-bottom: 1px solid rgba(170, 197, 223, 0.42);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-tools {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.logo-upload {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #bdd3e8;
  border-radius: 999px;
  padding: 0.36rem 0.72rem;
  background: #ffffff;
  color: #2f6ca6;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease;
}

.logo-upload:hover {
  transform: translateY(-1px);
  border-color: #95bbdf;
}

.logo-upload-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
}

.brand-copy {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-media {
  width: 34px;
  height: 34px;
  display: none;
  place-items: center;
  flex: 0 0 34px;
}

.brand.has-logo .brand-media {
  display: inline-grid;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  font-size: 1.04rem;
}

.brand-velox {
  color: #1f3f63;
}

.brand-care {
  color: var(--brand-accent);
}

.brand-slogan {
  margin-top: 0.16rem;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  color: #5e7fa2;
  font-weight: 800;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  color: var(--ink-soft);
  font-weight: 600;
}

.site-nav a {
  position: relative;
  padding: 0.2rem 0;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.12rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #2f6ca6, #7bb4e3);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.btn {
  border-radius: 999px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.68rem 1.15rem;
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

.btn-solid {
  color: #fff;
  background: var(--grad-brand);
  box-shadow: 0 15px 25px -18px rgba(27, 82, 131, 0.85);
}

.btn-outline {
  border-color: #bfd4e9;
  color: var(--brand-strong);
  background: #fff;
}

.btn-text {
  color: var(--brand-strong);
  background: rgba(255, 255, 255, 0.92);
  border-width: 2px;
  border-color: #b9d2ea;
  box-shadow: 0 10px 18px -16px rgba(27, 82, 131, 0.85);
}

.hero {
  padding-top: 5.6rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.25rem;
  align-items: stretch;
}

.eyebrow {
  margin: 0 0 0.45rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  color: #53789e;
  font-weight: 700;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 3.35rem);
  line-height: 1.12;
}

.lead {
  font-size: 1.05rem;
  color: #3f6388;
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.1rem;
}

.background-two-upload {
  margin-top: 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #bdd3e8;
  border-radius: 999px;
  padding: 0.38rem 0.78rem;
  background: #ffffff;
  color: #2f6ca6;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease;
}

.background-two-upload:hover {
  transform: translateY(-1px);
  border-color: #95bbdf;
}

.background-two-upload-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-meta {
  list-style: none;
  padding: 0;
  margin: 1.05rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-meta li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  color: #44698f;
  font-size: 0.84rem;
  font-weight: 600;
}

.hero-panel {
  background: transparent;
  padding: 0;
}

.picture-stage {
  display: block;
}

.picture-card {
  border: 0;
  background: transparent;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.picture-preview-wrap {
  border: 0;
  border-radius: 12px;
  min-height: 280px;
  background: #f6fbff;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}

.picture-preview-wrap.has-background {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-style: solid;
}

#pictureBoxOne.has-background {
  background-position: center 62%;
}

.picture-preview {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.picture-placeholder {
  margin: 0;
  font-size: 0.8rem;
  color: #5a7ea3;
  font-weight: 700;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
}

.about-layout {
  width: min(860px, 100%);
  margin-inline: auto;
  gap: 0.9rem;
  align-items: center;
}

#about .eyebrow {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #1f4d79;
}

.about-stairs {
  margin-top: 0.3rem;
  display: grid;
  gap: 0.6rem;
  width: 100%;
  justify-items: center;
}

.about-step {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0.25rem 0;
  color: #44698f;
  box-shadow: none;
  transition: opacity 420ms ease, transform 420ms ease;
  text-align: center;
  max-width: none;
  width: 100%;
  opacity: 0;
  transform: translateY(8px);
}

.about-step.is-open {
  opacity: 1;
  transform: translateY(0);
}

.about-step:nth-child(2) {
  margin-left: 0;
}

.about-step:nth-child(3) {
  margin-left: 0;
}

.about-step h3 {
  margin: 0;
  color: #264b71;
}

.about-step-detail {
  margin-top: 0.55rem;
  max-height: none;
  opacity: 1;
  overflow: visible;
  transform: none;
  transition: none;
}

.about-step-detail + .about-step-detail {
  margin-top: 0.95rem;
}

.feature-band {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.feature-band article {
  border: 1px solid #d3e3f3;
  border-radius: var(--radius-md);
  background: #fff;
  padding: 0.95rem;
}

.feature-band h3 {
  margin: 0 0 0.28rem;
}

.feature-band p {
  margin: 0;
  color: #44698f;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.info-card {
  border: 1px solid #d5e5f5;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  padding: 1rem;
  box-shadow: 0 22px 32px -30px rgba(27, 81, 128, 0.58);
}

.info-card h3 {
  margin: 0;
}

.info-card p {
  margin: 0.45rem 0 0;
  color: #44698f;
}

.results-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.1rem;
  align-items: center;
}

.results-copy h2 {
  margin: 0;
}

.results-copy p {
  color: #44698f;
}

.why-points {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  display: grid;
  gap: 0.65rem;
}

.why-points li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem;
  align-items: start;
  color: #44698f;
}

.why-tick {
  margin-top: 0.08rem;
  color: #1f7a55;
  font-weight: 800;
}

.results-metrics {
  display: grid;
  gap: 0.65rem;
}

.metric {
  border: 1px solid #cfe0f2;
  border-radius: var(--radius-sm);
  background: #fff;
  padding: 0.8rem 0.95rem;
}

.metric strong {
  display: block;
  font-size: 1.45rem;
  color: #154c7f;
}

.metric span {
  color: #4f7298;
}

.cta-section {
  padding-top: 4rem;
}

.cta-wrap {
  border: 1px solid #cddff1;
  border-radius: var(--radius-lg);
  background: linear-gradient(130deg, #f7fbff 0%, #ecf5ff 62%, #f9fdff 100%);
  padding: 1.3rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
}

.cta-story {
  position: relative;
  min-height: 340px;
  border-radius: calc(var(--radius-lg) - 6px);
  overflow: hidden;
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, rgba(11, 31, 52, 0.12) 0%, rgba(11, 31, 52, 0.74) 78%);
  color: #ffffff;
}

.cta-story-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cta-screen {
  position: absolute;
  top: 1.15rem;
  right: 1.15rem;
  width: min(220px, 52%);
  border-radius: 18px;
  padding: 1rem 1rem 0.85rem;
  background: linear-gradient(180deg, rgba(247, 251, 255, 0.96), rgba(227, 239, 250, 0.96));
  border: 1px solid rgba(173, 200, 224, 0.9);
  box-shadow: 0 18px 30px -18px rgba(14, 38, 62, 0.65);
}

.cta-screen::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -0.4rem;
  width: 32%;
  height: 0.25rem;
  border-radius: 999px;
  background: rgba(106, 134, 162, 0.78);
}

.cta-screen span {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #52789d;
  font-weight: 700;
}

.cta-screen strong {
  display: block;
  margin-top: 0.28rem;
  font-size: 1.2rem;
  line-height: 1.1;
  color: #1d456d;
}

.cta-screen-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.cta-screen-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex: 0 0 40px;
}

.cta-story .eyebrow {
  color: #ffffff;
}

.cta-story h2,
.cta-story p {
  position: relative;
  z-index: 1;
}

.cta-story h2 {
  color: #ffffff;
}

.cta-story p {
  color: #ffffff;
  max-width: 32ch;
}

.cta-wrap h2 {
  margin: 0;
}

.cta-wrap p {
  margin: 0.4rem 0 0;
  color: #3f6388;
}

.cta-wrap .cta-story p {
  color: #ffffff;
}

.cta-wrap .cta-story p.contact-copy {
  color: #1f3f63;
}

.contact-form {
  width: min(420px, 100%);
  display: grid;
  gap: 0.55rem;
}

.contact-form label {
  display: grid;
  gap: 0.25rem;
  color: #31577e;
  font-size: 0.83rem;
  font-weight: 700;
}

.contact-form input {
  border: 1px solid #bed4e8;
  border-radius: 10px;
  background: #fff;
  padding: 0.6rem 0.72rem;
  color: #0d2a47;
}

.contact-form select {
  border: 1px solid #bed4e8;
  border-radius: 10px;
  background: #fff;
  padding: 0.6rem 0.72rem;
  color: #0d2a47;
  font: inherit;
}

.contact-form textarea {
  border: 1px solid #bed4e8;
  border-radius: 10px;
  background: #fff;
  padding: 0.6rem 0.72rem;
  color: #0d2a47;
  resize: vertical;
  min-height: 5.6rem;
  font-family: inherit;
}

.contact-form input:focus {
  outline: 2px solid #9fc5e7;
  border-color: #2f6ca6;
}

.contact-form textarea:focus {
  outline: 2px solid #9fc5e7;
  border-color: #2f6ca6;
}

.contact-form select:focus {
  outline: 2px solid #9fc5e7;
  border-color: #2f6ca6;
}

.consent-field {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #44698f;
}

.consent-field input[type='checkbox'] {
  margin-top: 0.08rem;
  width: 16px;
  height: 16px;
  accent-color: #2f87d0;
}

.consent-field span {
  line-height: 1.35;
}

.contact-form button[disabled] {
  opacity: 0.72;
  cursor: not-allowed;
  transform: none;
}

.form-status {
  min-height: 1.2rem;
  margin: 0.15rem 0 0;
  font-size: 0.84rem;
  font-weight: 700;
  color: #53789e;
}

.form-status.error {
  color: #a33f3f;
}

.form-status.success {
  color: #1f7a55;
}

.site-footer {
  border-top: 1px solid #d7e7f6;
  background: rgba(245, 250, 255, 0.88);
}

.footer-wrap {
  min-height: 68px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
  color: #4d7095;
  font-size: 0.88rem;
}

.footer-left {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-center {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-right {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-stores {
  gap: 0.4rem;
}

.footer-left p {
  margin: 0;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.footer-social a {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid #c2d7ec;
  background: #ffffff;
  color: #2f6ca6;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.footer-social a:hover {
  transform: translateY(-1px);
  background: #2f6ca6;
  color: #ffffff;
}

.footer-social a.instagram-link:hover {
  background: #ffffff;
  color: inherit;
}

.footer-social .store-download {
  width: auto;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 0.36rem;
  padding: 0.28rem 0.52rem;
  border-radius: 9px;
  background: #ffffff;
  color: #1f4d79;
  border-color: #c2d7ec;
}

.footer-social .store-download:hover {
  background: #f7fbff;
  border-color: #9abfe2;
  color: #1d456d;
}

.footer-social .store-download svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  flex: 0 0 15px;
}

.store-copy {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.06;
}

.store-copy small {
  font-size: 0.52rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.92;
}

.store-copy strong {
  font-size: 0.7rem;
  font-weight: 700;
}

.footer-social svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal-delay-1 {
  transition-delay: 120ms;
}

.reveal-delay-2 {
  transition-delay: 240ms;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .site-nav {
    display: none;
  }

  .nav-wrap {
    flex-wrap: wrap;
  }

  .nav-wrap {
    flex-wrap: wrap;
  }

  .hero-grid,
  .results-grid,
  .cta-wrap {
    grid-template-columns: 1fr;
  }

  .feature-band,
  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .section {
    padding: 4rem 0;
  }

  .feature-band,
  .cards-grid,
  .picture-stage {
    grid-template-columns: 1fr;
  }

  .launch-alert {
    flex-direction: column;
    align-items: stretch;
  }

  .launch-countdown {
    justify-content: space-between;
  }

  .launch-unit {
    min-width: 0;
    flex: 1;
  }

  .cta-story {
    min-height: 280px;
  }

  .cta-screen {
    width: min(200px, 56%);
    top: 0.9rem;
    right: 0.9rem;
  }

  .picture-preview-wrap {
    min-height: 220px;
  }

  .picture-preview {
    height: 220px;
  }

  .about-step:nth-child(2),
  .about-step:nth-child(3) {
    margin-left: 0;
  }

  .about-step .about-step-detail {
    margin-top: 0.55rem;
    max-height: none;
    opacity: 1;
    overflow: visible;
    transform: none;
  }

  .nav-wrap {
    min-height: 64px;
  }

  .brand-tools {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .btn-outline {
    display: none;
  }

  .hero {
    padding-top: 4.7rem;
  }

  .footer-wrap {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 0.7rem 0;
  }

  .footer-left {
    flex-direction: column;
    gap: 0.45rem;
  }

  .footer-center {
    justify-content: center;
  }

  .footer-right {
    flex-direction: column;
    gap: 0.5rem;
  }
}
