:root {
  color-scheme: dark;
  --ink: #f7fbff;
  --muted: #b8c1cc;
  --quiet: #7f8b9a;
  --bg: #07111f;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.13);
  --line: rgba(255, 255, 255, 0.16);
  --mint: #6df2d4;
  --sky: #7cc8ff;
  --coral: #ff7b6e;
  --sun: #ffc95f;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(118deg, rgba(124, 200, 255, 0.18) 0%, transparent 34%),
    linear-gradient(148deg, #07111f 0%, #0a1a2a 48%, #171126 100%);
  color: var(--ink);
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 100% 52px;
  opacity: 0.35;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(7, 17, 31, 0.78);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  font-size: 1.1rem;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--mint);
  color: #062225;
  font-weight: 950;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.93rem;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.07);
  color: var(--ink);
  text-decoration: none;
  font-weight: 850;
}

.button.primary {
  border-color: transparent;
  background: var(--mint);
  color: #062225;
}

.hero {
  position: relative;
  min-height: calc(100svh - 64px);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  top: 0;
  right: -16vw;
  bottom: 0;
  left: 52vw;
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 18px;
  padding: 7svh 0 4svh;
  transform: rotate(-5deg);
  transform-origin: center;
  z-index: 1;
}

.hero-media img {
  width: 100%;
  min-width: 0;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.46);
}

.hero-media img:nth-child(even) {
  margin-top: 56px;
}

.hero-media img:nth-child(5) {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 72px 20px 88px;
  text-shadow: 0 3px 30px rgba(0, 0, 0, 0.72);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--mint);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(3.25rem, 11vw, 7.8rem);
  line-height: 0.9;
  font-weight: 950;
}

.hero-copy {
  max-width: 560px;
  color: #d7dee8;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.note {
  margin-top: 16px;
  color: var(--quiet);
  font-size: 0.93rem;
}

.section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 72px 20px;
}

.section h2 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
  font-weight: 950;
}

.section-lede {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.feature {
  min-height: 188px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
}

.feature-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 12px;
  background: rgba(109, 242, 212, 0.12);
  color: var(--mint);
  font-weight: 950;
}

.feature h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.feature p {
  color: var(--muted);
  line-height: 1.55;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: 34px;
  align-items: center;
}

.phone-row {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 8px 4px 18px;
  scroll-snap-type: x mandatory;
}

.phone-row img {
  width: min(72vw, 280px);
  flex: 0 0 auto;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.42);
  scroll-snap-align: center;
}

.steps {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
}

.step-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--panel-strong);
  border: 1px solid var(--line);
  color: var(--mint);
  font-weight: 950;
}

.step h3 {
  margin-bottom: 4px;
}

.step p {
  color: var(--muted);
  line-height: 1.55;
}

.cta-band {
  width: min(calc(100% - 40px), var(--max));
  margin: 20px auto 72px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(109, 242, 212, 0.16), rgba(124, 200, 255, 0.08)),
    var(--panel);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band h2 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.cta-band p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  color: var(--muted);
}

.footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 28px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--ink);
}

.page {
  width: min(100%, 860px);
  margin: 0 auto;
  padding: 72px 20px;
}

.page h1 {
  font-size: clamp(2.7rem, 8vw, 5rem);
}

.page h2 {
  margin-top: 38px;
  font-size: 1.55rem;
}

.page p,
.page li {
  color: var(--muted);
  line-height: 1.72;
}

.page-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
}

@media (max-width: 860px) {
  .nav {
    align-items: flex-start;
  }

  .nav-links {
    gap: 10px;
    font-size: 0.84rem;
  }

  .nav-links .hide-small {
    display: none;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    align-items: stretch;
    padding-bottom: 0;
    width: 100%;
    max-width: 100%;
  }

  .hero-media {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    order: 2;
    width: 100%;
    max-width: 100%;
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 4px 20px 42px;
    transform: none;
    scroll-snap-type: x mandatory;
  }

  .hero-media img {
    width: min(72vw, 280px);
    flex: 0 0 auto;
    border-radius: 28px;
    scroll-snap-align: center;
  }

  .hero-media img:nth-child(even) {
    margin-top: 0;
  }

  .hero-media img:nth-child(n+4) {
    display: none;
  }

  .hero-content {
    order: 1;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 74px 20px 32px;
    text-shadow: none;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    font-size: 1.05rem;
    overflow-wrap: break-word;
  }

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

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

  .cta-band,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .nav-links a:not(.button) {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: 64px;
    padding-bottom: 28px;
  }

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

  .button {
    width: 100%;
    max-width: 100%;
  }

  .nav .button {
    display: none;
  }

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

  .section {
    padding: 56px 20px;
  }

  .phone-row img {
    width: 74vw;
  }
}
