:root {
  --bg: #071c5a;
  --bg2: #0a3ec9;
  --ink: #f6f8ff;
  --muted: #b9c7f7;
  --line: rgba(255, 255, 255, 0.16);
  --glass: rgba(8, 33, 105, 0.56);
  --glass2: rgba(28, 83, 230, 0.24);
  --accent: #73a7ff;
  --lime: #c8ff3d;
  --shadow: 0 24px 80px rgba(0, 13, 74, 0.34);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  background:
    radial-gradient(
      circle at 85% 12%,
      rgba(89, 148, 255, 0.5),
      transparent 30%
    ),
    radial-gradient(
      circle at 12% 78%,
      rgba(0, 193, 255, 0.18),
      transparent 32%
    ),
    linear-gradient(145deg, #061443 0%, #0a318e 52%, #08256d 100%);
  min-height: 100vh;
  overflow-x: hidden;
}
body:before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
.page {
  position: relative;
}
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
  z-index: -1;
}
.orb.a {
  width: 410px;
  height: 410px;
  right: -150px;
  top: 110px;
  background: radial-gradient(
    circle at 35% 35%,
    rgba(125, 179, 255, 0.68),
    rgba(33, 75, 220, 0.08) 65%,
    transparent
  );
}
.orb.b {
  width: 330px;
  height: 330px;
  left: -140px;
  bottom: 8%;
  background: radial-gradient(
    circle,
    rgba(70, 227, 255, 0.26),
    transparent 68%
  );
}
.header {
  width: min(1320px, calc(100% - 40px));
  margin: 18px auto 0;
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(5, 25, 84, 0.68);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0, 18, 80, 0.22);
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 850;
  letter-spacing: -0.03em;
}
.brand-mark {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 14px;
  overflow: hidden;
}
.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.nav {
  display: flex;
  gap: 5px;
  margin-left: auto;
}
.nav a {
  padding: 10px 12px;
  border-radius: 11px;
  color: #dbe5ff;
  font-size: 14px;
}
.nav a:hover,
.nav a.active {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 13px;
  padding: 13px 18px;
  font-weight: 750;
  cursor: pointer;
}
.header-cta,
.btn.primary {
  background: var(--lime);
  color: #102454;
  box-shadow: 0 10px 30px rgba(200, 255, 61, 0.18);
}
.btn.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}
.burger {
  display: none;
  margin-left: auto;
  background: none;
  border: 0;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  margin: 5px;
}
.shell {
  width: min(1320px, calc(100% - 40px));
  margin: auto;
}
.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 48px;
  padding: 84px 0 54px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  color: #dbe5ff;
}
.eyebrow:before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--lime);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
.hero h1 {
  font-size: clamp(54px, 7vw, 100px);
  line-height: 0.9;
  letter-spacing: -0.07em;
  margin: 22px 0 26px;
  max-width: 850px;
}
.hero h1 .outline {
  -webkit-text-stroke: 1.5px #cfe0ff;
  color: transparent;
}
.lead {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
  color: #d1dcff;
  max-width: 700px;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.hero-art {
  position: relative;
  min-height: 480px;
}
.panel {
  border: 1px solid var(--line);
  background: linear-gradient(
    150deg,
    rgba(255, 255, 255, 0.13),
    rgba(17, 64, 184, 0.18)
  );
  backdrop-filter: blur(15px);
  border-radius: 30px;
  box-shadow: var(--shadow);
}
.browser {
  position: absolute;
  inset: 38px 8px 32px 42px;
  transform: rotate(-3deg);
  overflow: hidden;
}
.browser-top {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
}
.browser-top i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.55;
}
.browser-top span {
  margin-left: 8px;
  font-size: 12px;
  color: var(--muted);
}
.browser-screen {
  padding: 24px;
}
.screen-title {
  width: 76%;
  height: 72px;
  border-radius: 15px;
  background: linear-gradient(90deg, #fff, #8fb8ff);
}
.screen-line {
  height: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.24);
  margin-top: 14px;
}
.screen-line.s {
  width: 58%;
}
.screen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}
.screen-grid div {
  height: 118px;
  border-radius: 16px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.2),
    rgba(72, 126, 255, 0.11)
  );
  border: 1px solid var(--line);
}
.float-card {
  position: absolute;
  right: -3px;
  bottom: 0;
  width: 220px;
  padding: 18px;
  transform: rotate(5deg);
  border-radius: 22px;
  background: var(--lime);
  color: #102454;
  box-shadow: var(--shadow);
}
.float-card b {
  font-size: 42px;
  letter-spacing: -0.05em;
}
.float-card p {
  margin: 5px 0 0;
  font-size: 13px;
}
.stamp {
  position: absolute;
  left: 0;
  top: 0;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: #0a43c9;
  font-size: 12px;
  font-weight: 800;
  transform: rotate(-10deg);
}
.band {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;

  overflow: hidden;

  border: 1px solid var(--line);
  border-radius: 20px;

  background: rgba(4, 24, 84, 0.28);
  backdrop-filter: blur(12px);
}
.marquee {
  display: flex;
  width: max-content;
  gap: 0;
  will-change: transform;
  backface-visibility: hidden;
}

.marquee-group {
  display: flex;
  flex-shrink: 0;
  gap: 0;
  align-items: center;
}

.marquee span {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
  padding: 18px 30px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #dbe6ff;
}

.marquee span:after {
  content: "✦";
  margin-left: 60px;
  color: var(--lime);
}

.section {
  padding: 82px 0;
}
.section.compact {
  padding: 56px 0;
}
.section-head {
  display: grid;
  grid-template-columns: 0.34fr 1fr;
  gap: 42px;
  align-items: start;
  margin-bottom: 34px;
  max-width: 100%;
}
.kicker {
  font-size: 16px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b9ccff;
}
.section h2,
.page-hero h1 {
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin-bottom: 18px;
}
.section-head p {
  color: var(--muted);
  line-height: 1.65;
  max-width: 690px;
}
.grid {
  display: grid;
  gap: 16px;
}
.grid.three {
  grid-template-columns: repeat(3, 1fr);
}
.grid.two {
  grid-template-columns: repeat(2, 1fr);
}
.card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1),
    rgba(12, 49, 150, 0.18)
  );
  box-shadow: 0 16px 48px rgba(0, 16, 83, 0.15);
  min-height: 210px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  will-change: transform;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 65px rgba(0, 16, 83, 0.28);
}
.card .num {
  font-size: 12px;
  color: var(--lime);
  letter-spacing: 0.14em;
}
.card h3 {
  font-size: 25px;
  letter-spacing: -0.03em;
  margin: 44px 0 11px;
}
.card p,
.muted {
  color: var(--muted);
  line-height: 1.6;
}
.card.featured {
  background: linear-gradient(
    145deg,
    rgba(200, 255, 61, 0.96),
    rgba(119, 194, 255, 0.9)
  );
  color: #102454;
  border: 0;
}
.card.featured p,
.card.featured .muted {
  color: #203c75;
}
.card.featured .num {
  color: #102454;
}
.case-wide {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
}
.case-copy {
  padding: 38px;
}
.case-copy h3 {
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -0.05em;
  margin: 22px 0;
}
.case-preview {
  padding: 18px;
  min-height: 380px;
  display: grid;
  place-items: center;
}
.mock {
  width: 88%;
  height: 82%;
  border-radius: 22px;
  background: linear-gradient(140deg, #f8fbff 0 38%, #dce8ff 38% 100%);
  transform: rotate(2deg);
  box-shadow: 0 30px 80px rgba(0, 10, 50, 0.35);
  padding: 20px;
  color: #153a91;
}
.mock .mbar {
  height: 12px;
  background: #153a91;
  border-radius: 8px;
  width: 45%;
}
.mock .mhero {
  height: 100px;
  background: #0a3ec9;
  border-radius: 16px;
  margin-top: 20px;
}
.mock .mcards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}
.mock .mcards i {
  height: 76px;
  border-radius: 12px;
  background: #b7ccff;
}
.pricing .card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
}
.price {
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.05em;
  margin: 22px 0;
}
.list {
  padding: 0;
  margin: 0 0 26px;
  list-style: none;
}
.list li {
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #dbe4ff;
}
.featured .list li {
  border-color: rgba(16, 36, 84, 0.15);
  color: #203c75;
}
.pricing .btn {
  margin-top: auto;
}
.page-hero {
  padding: 95px 0 52px;
  max-width: none;
  width: 100%;
}
.page-hero p {
  font-size: 20px;
  color: var(--muted);
  line-height: 1.55;
}
.crumb {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #c6d4ff;
  margin-bottom: 24px;
}
.process-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.process-row b {
  font-size: 34px;
  color: var(--lime);
}
.process-row h3 {
  font-size: 28px;
  margin-bottom: 8px;
}
.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 22px;
}
.contact-copy {
  padding: 28px;
}
.contact-copy h2 {
  font-size: 56px;
}
.form {
  display: grid;
  gap: 12px;
  padding: 24px;
  border-radius: 22px;
  background: rgba(4, 24, 84, 0.34);
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 13px;
  padding: 15px;
  outline: none;
}
select {
  color: #aebff0;
  font-size: 16px;
  min-height: 53px;
  padding: 15px;
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #aebff0 50%),
    linear-gradient(135deg, #aebff0 50%, transparent 50%);
  background-position:
    calc(100% - 17px) 50%,
    calc(100% - 13px) 50%;
  background-size:
    4px 4px,
    4px 4px;
  background-repeat: no-repeat;
}
select option {
  color: #111;
  background: #fff;
}
select:invalid {
  color: #aebff0;
}

select:valid {
  color: #ffffff;
  background-image:
    linear-gradient(45deg, transparent 50%, #ffffff 50%),
    linear-gradient(135deg, #ffffff 50%, transparent 50%);
}
textarea {
  min-height: 130px;
  resize: vertical;
}
input::placeholder,
textarea::placeholder {
  color: #aebff0;
}
.footer {
  margin-top: 54px;
  padding: 32px 0 46px;
  border-top: 1px solid var(--line);
  color: #b9c7f7;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}
.tagline {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.notice {
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.06);
  color: #d8e3ff;
  line-height: 1.5;
}
.no-wrap {
  white-space: nowrap;
}
@media (max-width: 900px) {
  .header {
    top: 8px;
  }
  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    flex-direction: column;
    padding: 14px;
    background: #08256f;
    border: 1px solid var(--line);
    border-radius: 18px;
  }
  .nav.open {
    display: flex;
  }
  .header-cta {
    display: none;
  }
  .burger {
    display: block;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 65px;
  }
  .hero-art {
    min-height: 400px;
  }
  .section-head,
  .case-wide,
  .contact-box {
    grid-template-columns: 1fr;
  }
  .grid.three {
    grid-template-columns: 1fr;
  }
  .grid.two {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 58px 0;
  }
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 560px) {
  .header {
    width: calc(100% - 20px);
  }
  .shell {
    width: calc(100% - 24px);
  }
  .brand small {
    display: none;
  }
  .hero {
    min-height: auto;
  }
  .hero h1 {
    font-size: 53px;
  }
  .hero-art {
    min-height: 330px;
  }
  .browser {
    inset: 30px 0 45px 18px;
  }
  .float-card {
    width: 170px;
  }
  .section h2,
  .page-hero h1 {
    font-size: 42px;
  }
  .card {
    padding: 22px;
  }
  .contact-copy h2 {
    font-size: 42px;
  }
  .page-hero {
    padding-top: 70px;
  }
}
@media (hover: hover) {
  .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 65px rgba(0, 16, 83, 0.28);
  }
}
