:root {
  --navy-950: #03142f;
  --navy-900: #071c3d;
  --navy-800: #0c2b58;
  --navy-700: #163d73;
  --blue: #1769e8;
  --orange: #ff8a00;
  --orange-dark: #ed7600;
  --ink: #07152f;
  --muted: #5c6980;
  --line: #dfe6f1;
  --soft: #f4f7fb;
  --white: #fff;
  --shadow-sm: 0 16px 40px rgba(15, 35, 66, .10);
  --shadow-lg: 0 38px 90px rgba(8, 29, 63, .18);
  --radius: 24px;
  --shell: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
svg { display: block; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--navy-950);
  color: #fff;
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 84px;
  border-bottom: 1px solid rgba(11, 37, 76, .08);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, height .25s ease;
}
.site-header.is-scrolled {
  height: 72px;
  box-shadow: 0 10px 35px rgba(9, 30, 62, .08);
}
.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 260px 1fr 260px;
  align-items: center;
}
.brand { width: 188px; }
.brand img { width: 188px; height: auto; }
.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 36px;
  color: #263752;
  font-size: 14px;
  font-weight: 760;
}
.desktop-nav a { position: relative; padding: 30px 0; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 21px;
  height: 2px;
  border-radius: 999px;
  background: var(--orange);
  transition: right .22s ease;
}
.desktop-nav a:hover::after { right: 0; }
.header-contact {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, #ff9a16, #f57a00);
  box-shadow: 0 12px 25px rgba(245, 122, 0, .25);
  font-size: 14px;
  font-weight: 850;
  transition: transform .2s ease, box-shadow .2s ease;
}
.header-contact:hover { transform: translateY(-2px); box-shadow: 0 17px 32px rgba(245, 122, 0, .30); }
.header-contact svg, .button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 72px;
  background:
    radial-gradient(circle at 74% 20%, rgba(32, 111, 226, .08), transparent 31%),
    linear-gradient(180deg, #fff 0%, #fbfdff 72%, #f6f9fd 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .35;
  background-image: linear-gradient(rgba(16, 51, 99, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(16, 51, 99, .045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 80%);
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-orb-one { width: 430px; height: 430px; right: -160px; top: 90px; background: rgba(255, 138, 0, .055); }
.hero-orb-two { width: 330px; height: 330px; left: -180px; bottom: 50px; background: rgba(24, 104, 231, .05); }

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(610px, 1.1fr);
  align-items: center;
  gap: 78px;
}
.hero-copy { max-width: 650px; padding: 22px 0 54px; }
.launch-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  padding: 9px 14px;
  border: 1px solid #dce6f3;
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 8px 24px rgba(21, 54, 98, .07);
  color: #153967;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.launch-pulse { position: relative; width: 9px; height: 9px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 5px rgba(255, 138, 0, .12); }
.launch-pulse::after { content: ""; position: absolute; inset: -5px; border: 1px solid rgba(255,138,0,.55); border-radius: 50%; animation: pulse 2.1s infinite; }
@keyframes pulse { 0% { opacity: .8; transform: scale(.75); } 75%,100% { opacity: 0; transform: scale(1.8); } }

.hero h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(48px, 5.1vw, 79px);
  line-height: .99;
  letter-spacing: -.055em;
  font-weight: 920;
  color: var(--navy-950);
}
.hero h1::after {
  content: "";
  display: block;
  width: 94px;
  height: 7px;
  margin-top: 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), #ffb041);
}
.hero-lead {
  max-width: 625px;
  margin: 28px 0 0;
  color: #4d5e77;
  font-size: 18px;
  line-height: 1.74;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 35px; }
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 880;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: linear-gradient(135deg, #ff9914, #f27800); box-shadow: 0 15px 30px rgba(241, 119, 0, .25); }
.button-primary:hover { box-shadow: 0 20px 38px rgba(241, 119, 0, .32); }
.button-secondary { border-color: #cdd7e5; color: #102a50; background: rgba(255,255,255,.85); box-shadow: 0 10px 25px rgba(13, 39, 78, .05); }
.button-secondary:hover { border-color: #aebdd0; background: #fff; }
.button-light { color: var(--navy-950); background: #fff; box-shadow: 0 17px 35px rgba(0,0,0,.18); }

.hero-proof { display: flex; flex-wrap: wrap; gap: 20px 27px; margin-top: 31px; color: #52627a; font-size: 12.5px; font-weight: 720; }
.hero-proof span { display: inline-flex; align-items: center; gap: 8px; }
.hero-proof i { width: 17px; height: 17px; border-radius: 50%; background: #eaf2ff; position: relative; }
.hero-proof i::after { content: ""; position: absolute; left: 5px; top: 4px; width: 5px; height: 3px; border-left: 1.8px solid var(--blue); border-bottom: 1.8px solid var(--blue); transform: rotate(-45deg); }

.hero-visual { position: relative; min-height: 610px; display: flex; align-items: center; justify-content: center; perspective: 1300px; }
.visual-halo { position: absolute; width: 90%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(33,106,224,.13), rgba(33,106,224,0) 69%); filter: blur(6px); }
.app-window {
  position: relative;
  z-index: 2;
  width: min(100%, 730px);
  overflow: hidden;
  border: 1px solid rgba(204, 216, 233, .96);
  border-radius: 23px;
  background: #fff;
  box-shadow: 0 45px 110px rgba(12, 39, 80, .20), 0 8px 28px rgba(13, 45, 91, .10);
  transform: rotateY(-3deg) rotateX(1.2deg);
  transform-origin: center;
  transition: transform .22s ease-out;
}
.app-topbar { height: 60px; display: grid; grid-template-columns: 74px 1fr auto; align-items: center; gap: 18px; padding: 0 20px; border-bottom: 1px solid #e5ebf3; background: #fff; }
.app-mark { color: var(--navy-950); font-size: 20px; font-weight: 950; letter-spacing: -.05em; }
.app-search { justify-self: center; width: min(100%, 250px); display: flex; align-items: center; gap: 8px; padding: 8px 12px; border: 1px solid #e4eaf2; border-radius: 8px; color: #8a95a6; background: #f8fafc; font-size: 10px; }
.app-search span { width: 8px; height: 8px; border: 1.4px solid #96a3b5; border-radius: 50%; }
.app-profile { display: flex; align-items: center; gap: 10px; }
.app-profile i { width: 6px; height: 6px; border-radius: 50%; background: #39b36f; }
.app-profile b { display: grid; place-items: center; width: 29px; height: 29px; border-radius: 50%; color: #fff; background: linear-gradient(135deg, #173c70, #0a2147); font-size: 9px; }
.app-body { display: grid; grid-template-columns: 67px 1fr; min-height: 430px; }
.app-sidebar { display: flex; flex-direction: column; align-items: center; gap: 18px; padding-top: 24px; border-right: 1px solid #e5ebf3; background: #f8fafc; }
.app-sidebar span { width: 22px; height: 22px; border-radius: 7px; background: #e5ebf3; }
.app-sidebar span.active { background: linear-gradient(135deg, #1b70e8, #1256c0); box-shadow: 0 6px 12px rgba(23,105,232,.25); }
.app-preview { overflow: hidden; padding: 21px 22px 0; background: #fbfcfe; }
.preview-heading { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.preview-heading div { display: flex; flex-direction: column; gap: 3px; }
.preview-heading small { color: #8a95a5; font-size: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.preview-heading strong { color: #10274a; font-size: 14px; }
.preview-heading > span { padding: 6px 9px; border: 1px solid #dfe6ef; border-radius: 7px; color: #617087; background: #fff; font-size: 8px; }
.app-preview img { width: 100%; opacity: .98; filter: saturate(.93); }

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 245px;
  padding: 14px 16px;
  border: 1px solid rgba(215, 224, 236, .9);
  border-radius: 14px;
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  animation: float 5.5s ease-in-out infinite;
}
.floating-card small, .release-card small { display: block; margin-bottom: 3px; color: #8190a4; font-size: 9px; font-weight: 800; letter-spacing: .03em; text-transform: uppercase; }
.floating-card strong { display: block; color: #142d52; font-size: 12px; }
.float-icon { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 10px; }
.float-icon svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.float-icon.orange { color: #f27e00; background: #fff1df; }
.float-icon.blue { color: #1a68db; background: #eaf2ff; }
.float-automation { right: -24px; top: 85px; }
.float-club { left: -36px; bottom: 95px; animation-delay: -2.1s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.release-card {
  position: absolute;
  right: 20px;
  bottom: 18px;
  z-index: 5;
  min-width: 218px;
  padding: 17px 18px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(145deg, #0b2a57, #041735);
  box-shadow: 0 20px 45px rgba(3, 18, 42, .28);
}
.release-card small { color: #9eb2cd; }
.release-card strong { display: block; margin-bottom: 11px; font-size: 22px; letter-spacing: -.03em; }
.release-card span { display: flex; align-items: center; gap: 7px; color: #c5d3e5; font-size: 9px; font-weight: 700; }
.release-card i { width: 7px; height: 7px; border-radius: 50%; background: #6ddf96; box-shadow: 0 0 0 4px rgba(109,223,150,.12); }

.capability-rail {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 235px 1fr;
  align-items: stretch;
  margin-top: 40px;
  overflow: hidden;
  border: 1px solid #dde5f0;
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 24px 60px rgba(11, 36, 75, .09);
  backdrop-filter: blur(16px);
}
.capability-intro { display: flex; flex-direction: column; justify-content: center; padding: 28px 30px; border-right: 1px solid #e3e9f2; background: linear-gradient(150deg, #f8fbff, #f1f6fc); }
.capability-intro span { margin-bottom: 5px; color: var(--orange-dark); font-size: 10px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.capability-intro strong { color: #10274a; font-size: 18px; line-height: 1.25; }
.capability-list { display: grid; grid-template-columns: repeat(3, 1fr); }
.capability-list article { display: flex; align-items: center; gap: 13px; min-height: 103px; padding: 20px 18px; border-right: 1px solid #edf1f6; border-bottom: 1px solid #edf1f6; transition: background .2s ease; }
.capability-list article:nth-child(3n) { border-right: 0; }
.capability-list article:nth-child(n+4) { border-bottom: 0; }
.capability-list article:hover { background: #f9fbfe; }
.capability-icon { flex: 0 0 auto; width: 37px; height: 37px; display: grid; place-items: center; border-radius: 10px; }
.capability-icon svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.capability-icon.green { color: #3f9d69; background: #e9f7ef; }
.capability-icon.orange { color: #ee850f; background: #fff2e2; }
.capability-icon.violet { color: #7357d9; background: #f0edff; }
.capability-icon.cyan { color: #2796ac; background: #e6f8fb; }
.capability-icon.blue { color: #2d6ed4; background: #eaf2ff; }
.capability-icon.navy { color: #214276; background: #e9eef6; }
.capability-list strong { display: block; margin-bottom: 4px; color: #172e52; font-size: 11px; line-height: 1.35; }
.capability-list small { display: block; color: #7a8799; font-size: 9px; line-height: 1.45; }

.promise-section { padding: 116px 0; background: #fff; }
.promise-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 98px; align-items: start; }
.section-label { display: inline-block; margin-bottom: 18px; color: var(--orange-dark); font-size: 11px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.promise-copy h2 { max-width: 590px; margin: 0; color: var(--navy-950); font-size: clamp(38px, 4vw, 59px); line-height: 1.05; letter-spacing: -.045em; }
.promise-copy p { max-width: 630px; margin: 25px 0 0; color: #5c6980; font-size: 17px; line-height: 1.75; }
.promise-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.promise-cards article { min-height: 260px; padding: 28px 25px; border: 1px solid #e0e7f0; border-radius: 18px; background: linear-gradient(180deg, #fff, #fbfcfe); box-shadow: 0 16px 38px rgba(11, 37, 77, .06); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.promise-cards article:hover { transform: translateY(-6px); border-color: #cbd7e7; box-shadow: 0 25px 50px rgba(11, 37, 77, .11); }
.promise-cards span { display: grid; place-items: center; width: 40px; height: 40px; margin-bottom: 45px; border-radius: 10px; color: var(--orange-dark); background: #fff0dc; font-size: 11px; font-weight: 900; }
.promise-cards h3 { margin: 0 0 11px; color: #132c51; font-size: 19px; letter-spacing: -.02em; }
.promise-cards p { margin: 0; color: #68758a; font-size: 13px; line-height: 1.65; }

.launch-section { position: relative; overflow: hidden; padding: 82px 0; color: #fff; background: linear-gradient(135deg, #061935 0%, #0b2a58 60%, #0d356d 100%); }
.launch-grid { position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px); background-size: 48px 48px; mask-image: radial-gradient(circle at center, #000, transparent 80%); }
.launch-section::before { content: ""; position: absolute; width: 420px; height: 420px; right: -70px; top: -220px; border: 1px solid rgba(255,145,21,.22); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,145,21,.05), 0 0 0 140px rgba(255,145,21,.025); }
.launch-layout { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 45px; }
.launch-layout > div { max-width: 800px; }
.launch-kicker { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; color: #ffb252; font-size: 11px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.launch-kicker i { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 5px rgba(255,138,0,.13); }
.launch-layout h2 { margin: 0; max-width: 760px; font-size: clamp(36px, 4.1vw, 60px); line-height: 1.04; letter-spacing: -.045em; }
.launch-layout p { max-width: 660px; margin: 17px 0 0; color: #bfd0e5; font-size: 16px; line-height: 1.7; }
.launch-layout .button { flex: 0 0 auto; min-width: 225px; }

.site-footer { color: #aebed3; background: #031329; }
.footer-inner { min-height: 125px; display: grid; grid-template-columns: 220px 1fr auto; align-items: center; gap: 35px; }
.footer-brand { width: 170px; }
.footer-brand img { width: 170px; height: auto; }
.footer-inner > p { margin: 0; font-size: 12px; }
.footer-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; color: #8295ae; font-size: 10px; }
.footer-meta a:hover { color: #fff; }

@media (max-width: 1280px) {
  .hero-layout { grid-template-columns: minmax(0, .87fr) minmax(560px, 1.13fr); gap: 45px; }
  .float-automation { right: 0; }
  .float-club { left: -10px; }
  .promise-layout { gap: 55px; }
}

@media (max-width: 1080px) {
  .header-inner { grid-template-columns: 210px 1fr 210px; }
  .desktop-nav { gap: 23px; }
  .hero { padding-top: 62px; }
  .hero-layout { grid-template-columns: 1fr; gap: 18px; }
  .hero-copy { max-width: 800px; padding-bottom: 20px; text-align: center; margin-inline: auto; }
  .launch-pill, .hero-actions, .hero-proof { justify-content: center; }
  .hero h1::after { margin-inline: auto; }
  .hero-lead { margin-inline: auto; }
  .hero-visual { width: min(100%, 820px); margin-inline: auto; min-height: 590px; }
  .capability-rail { grid-template-columns: 1fr; }
  .capability-intro { border-right: 0; border-bottom: 1px solid #e3e9f2; text-align: center; }
  .promise-layout { grid-template-columns: 1fr; }
  .promise-copy { max-width: 760px; }
}

@media (max-width: 780px) {
  .shell { width: min(calc(100% - 30px), var(--shell)); }
  .site-header, .site-header.is-scrolled { height: 70px; }
  .header-inner { grid-template-columns: 1fr auto; }
  .brand, .brand img { width: 156px; }
  .desktop-nav { display: none; }
  .header-contact { min-height: 40px; padding: 0 14px; font-size: 12px; }
  .header-contact svg { display: none; }
  .hero { padding: 54px 0 50px; }
  .hero-copy { padding-top: 5px; }
  .launch-pill { margin-bottom: 21px; }
  .hero h1 { font-size: clamp(43px, 13vw, 64px); }
  .hero-lead { font-size: 16px; line-height: 1.65; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-proof { gap: 13px; flex-direction: column; align-items: center; }
  .hero-visual { min-height: 440px; margin-top: 20px; }
  .app-window { transform: none; border-radius: 16px; }
  .app-topbar { height: 47px; grid-template-columns: 55px 1fr auto; padding: 0 12px; gap: 8px; }
  .app-mark { font-size: 15px; }
  .app-search { font-size: 7px; padding: 6px 8px; }
  .app-profile i { display: none; }
  .app-profile b { width: 24px; height: 24px; }
  .app-body { grid-template-columns: 43px 1fr; min-height: 285px; }
  .app-sidebar { gap: 11px; padding-top: 16px; }
  .app-sidebar span { width: 16px; height: 16px; border-radius: 5px; }
  .app-preview { padding: 14px 13px 0; }
  .preview-heading strong { font-size: 10px; }
  .floating-card { min-width: 190px; padding: 10px 11px; gap: 9px; }
  .floating-card small { font-size: 7px; }
  .floating-card strong { font-size: 9px; }
  .float-icon { width: 29px; height: 29px; }
  .float-icon svg { width: 16px; }
  .float-automation { right: -2px; top: 18px; }
  .float-club { left: -4px; bottom: 46px; }
  .release-card { right: 9px; bottom: 3px; min-width: 158px; padding: 12px 13px; }
  .release-card strong { font-size: 16px; margin-bottom: 7px; }
  .release-card span { font-size: 7px; }
  .capability-rail { margin-top: 20px; border-radius: 17px; }
  .capability-intro { padding: 22px; }
  .capability-list { grid-template-columns: 1fr; }
  .capability-list article, .capability-list article:nth-child(3n), .capability-list article:nth-child(n+4) { min-height: 82px; border-right: 0; border-bottom: 1px solid #edf1f6; }
  .capability-list article:last-child { border-bottom: 0; }
  .capability-list strong { font-size: 12px; }
  .capability-list small { font-size: 10px; }
  .promise-section { padding: 76px 0; }
  .promise-layout { gap: 45px; }
  .promise-copy h2 { font-size: 42px; }
  .promise-copy p { font-size: 15px; }
  .promise-cards { grid-template-columns: 1fr; }
  .promise-cards article { min-height: auto; }
  .promise-cards span { margin-bottom: 30px; }
  .launch-section { padding: 66px 0; }
  .launch-layout { flex-direction: column; align-items: flex-start; }
  .launch-layout .button { width: 100%; }
  .footer-inner { grid-template-columns: 1fr; padding: 35px 0; gap: 16px; text-align: center; }
  .footer-brand { margin-inline: auto; }
  .footer-meta { align-items: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
