:root{
  --bg: #08111f;
  --bg-soft: #0d1728;
  --surface: rgba(255,255,255,0.06);
  --surface-strong: rgba(255,255,255,0.10);
  --card: #ffffff;
  --text: #0f172a;
  --text-soft: #475569;
  --text-white: #f8fafc;
  --line: rgba(255,255,255,0.12);
  --line-dark: #dbe4f0;
  --blue: #0b57d0;
  --blue-2: #2563eb;
  --blue-3: #60a5fa;
  --blue-4: #dbeafe;
  --cyan: #38bdf8;
  --glow-1: rgba(37,99,235,0.45);
  --glow-2: rgba(96,165,250,0.42);
  --glow-3: rgba(56,189,248,0.35);
  --shadow: 0 24px 60px rgba(2, 8, 23, 0.28);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1200px;

  --running-light-width: clamp(110px, 18vw, 240px);
  --running-light-height: 4px;
  --running-light-duration: 4.8s;
  --running-light-offset: 40px;
}

* {
  box-sizing: border-box;
}

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

body{
  margin:0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(37,99,235,0.25), transparent 28%),
    radial-gradient(circle at 90% 8%, rgba(56,189,248,0.14), transparent 20%),
    radial-gradient(circle at 20% 55%, rgba(96,165,250,0.10), transparent 24%),
    linear-gradient(180deg, #08111f 0%, #0d1728 18%, #f5f9ff 18%, #f5f9ff 100%);
  line-height: 1.5;
  overflow-x: clip;
}

body::before{
  content:"";
  position: fixed;
  inset: -20%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(37,99,235,0.08), transparent 18%),
    radial-gradient(circle at 80% 30%, rgba(56,189,248,0.08), transparent 16%),
    radial-gradient(circle at 40% 80%, rgba(96,165,250,0.06), transparent 18%);
  animation: bgFloat 18s linear infinite;
}

@keyframes bgFloat{
  0%{ transform: translate3d(0,0,0) rotate(0deg); }
  50%{ transform: translate3d(-2%, 1%, 0) rotate(1deg); }
  100%{ transform: translate3d(0,0,0) rotate(0deg); }
}

body.modal-open{
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

.container{
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.skip{
  position:absolute;
  left:-9999px;
  top:auto;
}

.skip:focus{
  left:16px;
  top:16px;
  z-index:9999;
  background:#fff;
  color:#000;
  padding:10px 14px;
  border-radius:12px;
  box-shadow: var(--shadow);
}

.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(8,17,31,0.76);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow-x: clip;
  overflow-y: visible;
}

.site-header::after{
  content:"";
  position:absolute;
  bottom:0;
  left:0;
  width: var(--running-light-width);
  height: var(--running-light-height);
  pointer-events:none;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,0) 0%,
      rgba(56,189,248,0.00) 6%,
      rgba(56,189,248,0.18) 16%,
      rgba(96,165,250,0.76) 34%,
      rgba(255,255,255,1) 50%,
      rgba(96,165,250,0.76) 66%,
      rgba(56,189,248,0.18) 84%,
      rgba(56,189,248,0.00) 94%,
      rgba(255,255,255,0) 100%
    );
  filter:
    blur(0.35px)
    drop-shadow(0 0 8px rgba(96,165,250,0.95))
    drop-shadow(0 0 18px rgba(37,99,235,0.68))
    drop-shadow(0 0 28px rgba(56,189,248,0.36));
  animation: runningLightSmooth var(--running-light-duration) cubic-bezier(.22,.61,.36,1) infinite;
  will-change: transform, opacity;
  transform: translate3d(calc((var(--running-light-width) + var(--running-light-offset)) * -1),0,0);
}

.header-grid{
  position: relative;
  display:grid;
  grid-template-columns: auto 1fr auto;
  align-items:center;
  gap: 24px;
  min-height: 78px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  color: var(--text-white);
  font-weight: 700;
  letter-spacing: .01em;
  min-width: 0;
  position: relative;
  transition: transform .22s ease, filter .22s ease;
}

.brand:hover{
  transform: translateY(-1px);
  filter: drop-shadow(0 0 10px rgba(96,165,250,.45));
}

.brand-logo{
  border-radius: 12px;
  box-shadow:
    0 10px 24px rgba(37,99,235,.28),
    0 0 18px rgba(96,165,250,.28);
  width: 36px;
  height: 36px;
  object-fit: contain;
  background: rgba(255,255,255,.08);
  padding: 4px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.brand:hover .brand-logo{
  transform: scale(1.06);
  box-shadow:
    0 14px 28px rgba(37,99,235,.34),
    0 0 24px rgba(96,165,250,.40);
}

.brand-name{
  white-space: nowrap;
}

.nav{
  display:flex;
  justify-content:center;
  align-items:center;
  gap: 10px;
}

.nav a{
  position: relative;
  color: rgba(248,250,252,.88);
  font-weight: 600;
  padding: 12px 14px;
  border-radius: 14px;
  transition: color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
  overflow: hidden;
}

.nav a::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  background:
    radial-gradient(circle at center, rgba(96,165,250,.22), rgba(37,99,235,.10), transparent 72%);
  opacity: 0;
  transform: scale(.88);
  transition: opacity .18s ease, transform .18s ease;
  pointer-events:none;
}

.nav a:hover{
  color:#fff;
  background: rgba(255,255,255,0.06);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.06) inset,
    0 0 18px rgba(96,165,250,.22);
  transform: translateY(-1px);
}

.nav a:hover::before{
  opacity: 1;
  transform: scale(1);
}

.header-cta{
  display:flex;
  align-items:center;
  gap:12px;
}

.btn{
  position: relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 15px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, filter .18s ease;
  cursor:pointer;
  white-space: nowrap;
  font-family: inherit;
  overflow: hidden;
  isolation: isolate;
}

.btn::before{
  content:"";
  position:absolute;
  inset:-20%;
  background:
    radial-gradient(circle at center, rgba(255,255,255,.22), transparent 42%);
  opacity: 0;
  transform: scale(.7);
  transition: opacity .2s ease, transform .2s ease;
  pointer-events:none;
  z-index: 0;
}

.btn::after{
  content:"";
  position:absolute;
  top:0;
  left:-130%;
  width:80%;
  height:100%;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.08) 35%, rgba(255,255,255,.48) 50%, rgba(255,255,255,.08) 65%, transparent 100%);
  transform: skewX(-20deg);
  transition: left .45s ease;
  pointer-events:none;
  z-index: 0;
}

.btn > *{
  position: relative;
  z-index: 1;
}

.btn:hover{
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.btn:hover::before{
  opacity: 1;
  transform: scale(1);
}

.btn:hover::after{
  left: 140%;
}

.btn--primary{
  color:#fff;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-2) 58%, var(--cyan) 100%);
  box-shadow:
    0 14px 28px rgba(37,99,235,.26),
    0 0 18px rgba(96,165,250,.18);
}

.btn--primary:hover{
  box-shadow:
    0 18px 34px rgba(37,99,235,.34),
    0 0 26px rgba(96,165,250,.34);
}

.btn--ghost{
  color:#ffffff;
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.16);
}

.btn--ghost:hover{
  background: rgba(255,255,255,0.16);
  box-shadow: 0 0 20px rgba(96,165,250,.18);
}

.btn--light{
  color: #0f172a;
  background: rgba(255,255,255,0.95);
  border-color: #dbe4f0;
  box-shadow:
    0 12px 24px rgba(15,23,42,.10),
    0 0 0 rgba(37,99,235,0);
}

.btn--light:hover{
  background: #f8fbff;
  border-color: #bfd7ff;
  box-shadow:
    0 16px 30px rgba(37,99,235,.14),
    0 0 18px rgba(96,165,250,.22);
}

.btn--lg{
  min-height: 54px;
  padding: 0 22px;
  border-radius: 16px;
  font-size: 16px;
}

.nav-toggle{
  display:none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 0;
  cursor: pointer;
  transition: background .18s ease, box-shadow .18s ease, transform .18s ease;
}

.nav-toggle:hover{
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 18px rgba(96,165,250,.24);
  transform: translateY(-1px);
}

.nav-toggle span{
  display:block;
  width: 20px;
  height: 2px;
  background:#fff;
  margin: 5px auto;
  border-radius: 999px;
  box-shadow: 0 0 8px rgba(255,255,255,.25);
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle.is-active span:nth-child(1){
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2){
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3){
  transform: translateY(-7px) rotate(-45deg);
}

.trustbar{
  position: relative;
  z-index: 1;
  padding: 18px 0 0;
  background: transparent;
}

.trust-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:16px;
}

.trust-item{
  position: relative;
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  color: var(--text-white);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 12px 26px rgba(2, 8, 23, 0.14);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
  overflow: hidden;
  isolation: isolate;
}

.trust-item::before{
  content:"";
  position:absolute;
  inset:-20%;
  background:
    radial-gradient(circle at center, rgba(96,165,250,.22), transparent 40%);
  opacity: 0;
  transform: scale(.7);
  transition: opacity .22s ease, transform .22s ease;
  z-index: 0;
  pointer-events:none;
}

.trust-item > *{
  position: relative;
  z-index: 1;
}

.trust-item:hover{
  transform: translateY(-4px);
  border-color: rgba(125,183,255,0.34);
  background: rgba(255,255,255,0.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 18px 34px rgba(2, 8, 23, 0.22),
    0 0 22px rgba(96,165,250,0.18);
}

.trust-item:hover::before{
  opacity: 1;
  transform: scale(1);
}

.trust-item strong{
  display:block;
  margin-bottom: 2px;
  font-size: 15px;
}

.i{
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  fill: none;
  stroke: #7db7ff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-top: 2px;
  filter: drop-shadow(0 0 8px rgba(96,165,250,.35));
  transition: filter .22s ease, transform .22s ease;
}

.trust-item:hover .i{
  filter: drop-shadow(0 0 14px rgba(96,165,250,.58));
  transform: scale(1.06);
}

.muted{
  color: var(--text-soft);
}

.trust-item .muted{
  color: rgba(248,250,252,.72);
  font-size: 14px;
}

.hero{
  position: relative;
  padding: 42px 0 72px;
  color: var(--text-white);
  overflow: hidden;
}

.hero::before{
  content:"";
  position:absolute;
  top: 10%;
  left: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(37,99,235,.16);
  filter: blur(60px);
  animation: floatBlobOne 7s ease-in-out infinite;
  pointer-events:none;
}

.hero::after{
  content:"";
  position:absolute;
  right: -60px;
  bottom: 8%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(56,189,248,.12);
  filter: blur(54px);
  animation: floatBlobTwo 9s ease-in-out infinite;
  pointer-events:none;
}

@keyframes floatBlobOne{
  0%,100%{ transform: translateY(0) translateX(0); }
  50%{ transform: translateY(-18px) translateX(10px); }
}

@keyframes floatBlobTwo{
  0%,100%{ transform: translateY(0) translateX(0); }
  50%{ transform: translateY(14px) translateX(-8px); }
}

.hero-grid{
  display:grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: 36px;
  align-items:center;
}

.hero-copy{
  position: relative;
  z-index: 2;
  display:flex;
  flex-direction:column;
  justify-content:center;
  color: #f8fafc;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(8,17,31,.72) 0%, rgba(13,23,40,.64) 100%);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow:
    0 24px 60px rgba(2,8,23,.28),
    inset 0 1px 0 rgba(255,255,255,.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.headline{
  margin: 0 0 18px;
  font-size: clamp(2.3rem, 5vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #f8fafc;
  text-shadow:
    0 0 20px rgba(96,165,250,.08),
    0 0 40px rgba(37,99,235,.05);
}

.hero-sub{
  margin: 0;
  max-width: 720px;
  font-size: 1.08rem;
  color: rgba(248,250,252,.92);
  text-shadow: 0 1px 1px rgba(0,0,0,.18);
}

.hero-badges{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style:none;
}

.hero-badges li{
  position: relative;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #eaf3ff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.05),
    0 10px 20px rgba(2,8,23,.10);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.hero-badges li:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.12);
  border-color: rgba(125,183,255,.26);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 14px 24px rgba(2,8,23,.16),
    0 0 18px rgba(96,165,250,.16);
}

.grad{
  background: linear-gradient(135deg, #93c5fd 0%, #ffffff 55%, #60a5fa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 10px rgba(96,165,250,.18));
}

.hero-visual{
  display:flex;
  justify-content:center;
}

.screen{
  position: relative;
  width: min(100%, 560px);
  padding: 14px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    var(--shadow),
    0 0 40px rgba(37,99,235,.14);
  animation: screenFloat 6s ease-in-out infinite;
}

@keyframes screenFloat{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-7px); }
}

.screen::before{
  content:"";
  position:absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(147,197,253,.55), rgba(37,99,235,.12), rgba(255,255,255,.14));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events:none;
}

.screen::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  pointer-events:none;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.04),
    0 0 30px rgba(96,165,250,.12);
}

.screen-top{
  height: 28px;
  border-radius: 18px 18px 12px 12px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.08);
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
}

.screen-top::after{
  content:"";
  position:absolute;
  top:0;
  left:-120%;
  width:55%;
  height:100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.25) 50%, transparent 100%);
  animation: shineLoop 3.4s linear infinite;
}

@keyframes shineLoop{
  0%{ left: -120%; }
  100%{ left: 140%; }
}

.browser-dots{
  position:absolute;
  left:16px;
  top:50%;
  display:flex;
  gap:8px;
  transform:translateY(-50%);
}

.browser-dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  animation: browserDotPulse 2.6s ease-in-out infinite;
}

.browser-dot--red{
  background: #ff5f57;
  box-shadow:
    0 0 0 rgba(255,95,87,.0),
    0 0 10px rgba(255,95,87,.65),
    0 0 18px rgba(255,95,87,.35);
  animation-delay: 0s;
}

.browser-dot--yellow{
  background: #febc2e;
  box-shadow:
    0 0 0 rgba(254,188,46,.0),
    0 0 10px rgba(254,188,46,.65),
    0 0 18px rgba(254,188,46,.35);
  animation-delay: .28s;
}

.browser-dot--green{
  background: #28c840;
  box-shadow:
    0 0 0 rgba(40,200,64,.0),
    0 0 10px rgba(40,200,64,.65),
    0 0 18px rgba(40,200,64,.35);
  animation-delay: .56s;
}

@keyframes browserDotPulse{
  0%, 100%{
    transform: scale(1);
    filter: brightness(1);
  }
  50%{
    transform: scale(1.16);
    filter: brightness(1.14);
  }
}

.screen-body{
  position: relative;
  display: grid;
  place-items: center;
  min-height: 390px;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(96,165,250,.22), transparent 25%),
    radial-gradient(circle at 80% 80%, rgba(37,99,235,.18), transparent 28%),
    linear-gradient(180deg, #0e1a2d 0%, #13213a 100%);
  border: 1px solid rgba(255,255,255,.08);
  padding: 28px;
}

.screen-body::before,
.screen-body::after{
  content:"";
  position:absolute;
  inset:auto;
  border-radius:50%;
  filter: blur(30px);
  pointer-events:none;
}

.screen-body::before{
  width: 180px;
  height: 180px;
  top: 32px;
  right: 28px;
  background: rgba(37,99,235,.25);
  animation: orbMoveOne 8s ease-in-out infinite;
}

.screen-body::after{
  width: 140px;
  height: 140px;
  bottom: 28px;
  left: 28px;
  background: rgba(96,165,250,.2);
  animation: orbMoveTwo 7s ease-in-out infinite;
}

@keyframes orbMoveOne{
  0%,100%{ transform: translate(0,0); }
  50%{ transform: translate(-10px, 10px); }
}

@keyframes orbMoveTwo{
  0%,100%{ transform: translate(0,0); }
  50%{ transform: translate(10px, -8px); }
}

.screen-content{
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  gap: 14px;
}

.logo-card{
  position: relative;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(255,255,255,0.24);
  color: #0f172a;
  box-shadow:
    0 16px 30px rgba(2,8,23,.18),
    0 0 22px rgba(96,165,250,.10);
  overflow: hidden;
}

.logo-card::after{
  content:"";
  position:absolute;
  top:0;
  left:-120%;
  width:50%;
  height:100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.48), transparent);
  animation: shineLoop 4.2s linear infinite;
  pointer-events:none;
}

.logo-card strong{
  display:block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #0f172a;
}

.logo-stage{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height: 132px;
  padding: 10px 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
  border: 1px solid #dbe7f5;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 0 18px rgba(96,165,250,.08);
}

.hero-logo{
  width: 100%;
  max-width: 320px;
  max-height: 86px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 0 12px rgba(37,99,235,.12));
}

.logo-note{
  display:block;
  margin-top: 8px;
  color: #5b6b82;
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
  min-height: 1px;
}

.screen-actions{
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.screen-actions .btn{
  width: 100%;
}

.section{
  position: relative;
  padding: 84px 0;
  overflow: hidden;
}

.section--alt{
  background: linear-gradient(180deg, rgba(219,234,254,.36), rgba(219,234,254,.12));
  border-top: 1px solid #e5eef9;
  border-bottom: 1px solid #e5eef9;
}

.section-head{
  width: min(760px, calc(100% - 32px));
  margin: 0 auto 36px;
  text-align:center;
  position: relative;
  z-index: 1;
}

.section-head h2{
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.section-head .muted{
  font-size: 1rem;
  color: #5b6b82;
}

.grid{
  display:grid;
  gap: 20px;
}

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

.card,
.panel,
.list li,
.contact-box{
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.card::before,
.panel::before,
.list li::before,
.contact-box::before{
  content:"";
  position:absolute;
  inset:auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96,165,250,.18), transparent 70%);
  filter: blur(18px);
  opacity: 0;
  transition: opacity .22s ease, transform .22s ease;
  pointer-events:none;
  z-index: 0;
}

.card::before,
.panel::before,
.contact-box::before{
  top: -30px;
  right: -30px;
  transform: scale(.7);
}

.list li::before{
  top: 50%;
  right: -40px;
  transform: translateY(-50%) scale(.7);
}

.card > *,
.panel > *,
.list li > *,
.contact-box > *{
  position: relative;
  z-index: 1;
}

.card{
  padding: 26px;
  background: rgba(255,255,255,.88);
  border: 1px solid #e2ebf6;
  border-radius: var(--radius);
  box-shadow:
    0 16px 40px rgba(15, 23, 42, 0.06),
    0 0 0 rgba(37,99,235,0);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.card:hover{
  transform: translateY(-5px);
  border-color: #bfd7ff;
  background: rgba(255,255,255,.96);
  box-shadow:
    0 22px 50px rgba(37,99,235,.12),
    0 0 24px rgba(96,165,250,.16);
}

.card:hover::before{
  opacity: 1;
  transform: scale(1);
}

.card h3{
  margin: 0 0 10px;
  font-size: 1.15rem;
  color: #0f172a;
}

.card p{
  margin: 0;
  color: #55657c;
}

.feature-split{
  display:grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
  gap: 22px;
  align-items: stretch;
}

.panel{
  padding: 28px;
  background: rgba(255,255,255,.88);
  border: 1px solid #e2ebf6;
  border-radius: var(--radius);
  box-shadow:
    0 16px 40px rgba(15, 23, 42, 0.06),
    0 0 0 rgba(37,99,235,0);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.panel:hover{
  transform: translateY(-5px);
  border-color: #bfd7ff;
  background: rgba(255,255,255,.96);
  box-shadow:
    0 22px 50px rgba(37,99,235,.12),
    0 0 24px rgba(96,165,250,.16);
}

.panel:hover::before{
  opacity: 1;
  transform: scale(1);
}

.panel h3{
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: #0f172a;
}

.panel p{
  margin: 0;
  color: #55657c;
  line-height: 1.7;
}

.list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.list li{
  position: relative;
  padding: 14px 16px 14px 44px;
  border: 1px solid #e2ebf6;
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  color: #45566f;
  box-shadow:
    0 14px 36px rgba(15,23,42,.05),
    0 0 0 rgba(37,99,235,0);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.list li:hover{
  transform: translateX(4px);
  border-color: #bfd7ff;
  background: rgba(255,255,255,.98);
  box-shadow:
    0 18px 38px rgba(37,99,235,.10),
    0 0 22px rgba(96,165,250,.12);
}

.list li:hover::before{
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.list li::after{
  content:"";
  position:absolute;
  left: 22px;
  top: 50%;
  width: 6px;
  height: 3px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-70%) rotate(-45deg);
  z-index: 2;
}

.list li > span{
  position: relative;
  z-index: 1;
}

.list li .check-glow{
  position:absolute;
  left: 16px;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius:50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow:
    0 6px 16px rgba(37,99,235,.22),
    0 0 16px rgba(96,165,250,.26);
  z-index: 1;
}

.contact-box{
  display:grid;
  grid-template-columns: 1fr auto;
  align-items:center;
  gap: 22px;
  padding: 30px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid #dbe7f5;
  box-shadow:
    0 18px 44px rgba(15,23,42,.07),
    0 0 0 rgba(37,99,235,0);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.contact-box:hover{
  transform: translateY(-4px);
  border-color: #bfd7ff;
  box-shadow:
    0 22px 50px rgba(37,99,235,.12),
    0 0 26px rgba(96,165,250,.16);
}

.contact-box:hover::before{
  opacity: 1;
  transform: scale(1);
}

.contact-box h3{
  margin: 0 0 8px;
  font-size: 1.7rem;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.contact-box p{
  margin: 0;
  color: #55657c;
}

.contact-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:flex-end;
}

.footer-link{
  appearance:none;
  border:0;
  background:transparent;
  color:#dbeafe;
  font:inherit;
  padding:0;
  cursor:pointer;
  transition: color .18s ease, text-shadow .18s ease;
}

.footer-link:hover{
  color:#ffffff;
  text-shadow: 0 0 12px rgba(96,165,250,.38);
}

.site-footer{
  position: relative;
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  gap: 16px;
  padding: 26px 16px;
  background: #08111f;
  color: rgba(248,250,252,.84);
  border-top: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
}

.site-footer::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width: var(--running-light-width);
  height: var(--running-light-height);
  pointer-events:none;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,0) 0%,
      rgba(56,189,248,0.00) 6%,
      rgba(56,189,248,0.18) 16%,
      rgba(96,165,250,0.76) 34%,
      rgba(255,255,255,1) 50%,
      rgba(96,165,250,0.76) 66%,
      rgba(56,189,248,0.18) 84%,
      rgba(56,189,248,0.00) 94%,
      rgba(255,255,255,0) 100%
    );
  filter:
    blur(0.35px)
    drop-shadow(0 0 8px rgba(96,165,250,0.95))
    drop-shadow(0 0 18px rgba(37,99,235,0.68))
    drop-shadow(0 0 28px rgba(56,189,248,0.36));
  animation: runningLightSmooth var(--running-light-duration) cubic-bezier(.22,.61,.36,1) infinite reverse;
  will-change: transform, opacity;
  transform: translate3d(calc((var(--running-light-width) + var(--running-light-offset)) * -1),0,0);
}

@keyframes runningLightSmooth{
  0%{
    transform: translate3d(calc((var(--running-light-width) + var(--running-light-offset)) * -1),0,0);
    opacity: 0;
  }
  8%{
    opacity: .35;
  }
  16%{
    opacity: 1;
  }
  84%{
    opacity: 1;
  }
  92%{
    opacity: .35;
  }
  100%{
    transform: translate3d(calc(100vw + var(--running-light-width) + var(--running-light-offset)),0,0);
    opacity: 0;
  }
}

.foot-left,
.foot-right{
  display:flex;
  align-items:center;
  gap:10px;
  position: relative;
  z-index: 1;
}

.foot-right{
  justify-content:flex-end;
}

.foot-mid{
  text-align:center;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

.foot-logo{
  border-radius: 8px;
  width: 20px;
  height: 20px;
  object-fit: contain;
  background: rgba(255,255,255,.08);
  padding: 2px;
  box-shadow: 0 0 12px rgba(96,165,250,.18);
}

.site-footer a{
  color: #dbeafe;
  transition: color .18s ease, text-shadow .18s ease;
}

.site-footer a:hover{
  color: #ffffff;
  text-shadow: 0 0 12px rgba(96,165,250,.38);
}

.inline-modal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.inline-modal.is-open{
  display: flex;
}

.inline-modal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 23, 0.68);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.inline-modal__dialog{
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  height: min(88vh, 920px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #dbe7f5;
  box-shadow:
    0 28px 70px rgba(2, 8, 23, 0.42),
    0 0 30px rgba(96,165,250,.18);
}

.inline-modal__header{
  display:flex;
  align-items:center;
  margin: 25px;
  justify-content:space-between;
  gap: 18px;
  padding: 14px 16px 14px 20px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
  border-bottom: 1px solid #dbe7f5;
}

.inline-modal__title{
  min-width: 0;
}

.inline-modal__title strong{
  display:block;
  font-size: 16px;
  color: #0f172a;
  margin-bottom: 2px;
}

.inline-modal__title span{
  display:block;
  font-size: 14px;
  color: #5b6b82;
}

.inline-modal__close{
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border: 1px solid #dbe7f5;
  border-radius: 14px;
  background: #ffffff;
  color: #0f172a;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}

.inline-modal__close:hover{
  background: #f8fbff;
  transform: translateY(-1px);
  box-shadow:
    0 10px 22px rgba(15,23,42,.08),
    0 0 18px rgba(96,165,250,.18);
}

.inline-modal__frame-wrap{
  position: relative;
  background: #ffffff;
  min-height: 0;
}

.inline-modal__frame{
  display:block;
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
  background: #ffffff;
}

@media (max-width: 1080px){
  .hero-grid,
  .trust-grid,
  .cards-3{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-split,
  .contact-box{
    grid-template-columns: 1fr;
  }

  .contact-actions{
    justify-content:flex-start;
  }

  .hero-grid{
    grid-template-columns: 1fr;
    align-items: stretch;
  }
}

@media (max-width: 860px){
  :root{
    --running-light-width: clamp(90px, 24vw, 160px);
    --running-light-height: 3px;
    --running-light-duration: 5.2s;
    --running-light-offset: 24px;
  }

  .header-grid{
    grid-template-columns: 1fr auto;
    gap: 14px;
    min-height: 72px;
  }

  .brand{
    min-width: 0;
  }

  .brand-name{
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav{
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 60;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border-radius: 20px;
    background: rgba(8,17,31,.97);
    border: 1px solid rgba(255,255,255,.09);
    box-shadow:
      var(--shadow),
      0 0 24px rgba(96,165,250,.16);
  }

  .nav.is-open{
    display:flex;
  }

  .nav a{
    width:100%;
    padding: 13px 12px;
  }

  .header-cta .btn{
    display:none;
  }

  .nav-toggle{
    display:block;
  }

  .hero{
    padding-top: 28px;
  }

  .trust-grid,
  .cards-3,
  .site-footer{
    grid-template-columns: 1fr;
  }

  .site-footer{
    text-align:center;
    gap: 12px;
    padding-top: 24px;
  }

  .foot-left,
  .foot-right{
    justify-content:center;
  }

  .screen-body{
    min-height: 300px;
    padding: 20px;
  }

  .logo-stage{
    min-height: 118px;
    padding: 8px 12px;
  }

  .hero-logo{
    max-width: 280px;
    max-height: 76px;
  }

  .inline-modal{
    padding: 12px;
  }

  .inline-modal__dialog{
    width: 100%;
    height: 92vh;
    border-radius: 18px;
  }

  .hero-copy{
    padding: 22px;
    text-align: left;
  }
}

@media (max-width: 640px){
  :root{
    --running-light-width: 96px;
    --running-light-height: 3px;
    --running-light-duration: 5.6s;
    --running-light-offset: 18px;
  }

  .container{
    width: min(var(--container), calc(100% - 22px));
  }

  .section{
    padding: 64px 0;
  }

  .headline{
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-sub{
    font-size: 1rem;
  }

  .btn--lg{
    width: 100%;
  }

  .card,
  .panel,
  .contact-box{
    padding: 22px;
  }

  .logo-card{
    padding: 10px;
  }

  .logo-stage{
    min-height: 108px;
    padding: 8px 10px;
  }

  .hero-logo{
    max-width: 240px;
    max-height: 68px;
  }

  .logo-note{
    font-size: 12px;
  }

  .inline-modal__header{
    padding: 12px;
  }

  .inline-modal__title strong{
    font-size: 15px;
  }

  .inline-modal__title span{
    font-size: 13px;
  }

  .inline-modal__close{
    width: 42px;
    height: 42px;
  }

  .browser-dots{
    gap: 7px;
  }

  .browser-dot{
    width: 9px;
    height: 9px;
  }

  .site-header::after,
  .site-footer::before{
    filter:
      blur(0.3px)
      drop-shadow(0 0 6px rgba(96,165,250,0.82))
      drop-shadow(0 0 14px rgba(37,99,235,0.52))
      drop-shadow(0 0 20px rgba(56,189,248,0.22));
  }

  .foot-mid{
    white-space: normal;
  }
}

@media (hover: none){
  .btn:hover,
  .card:hover,
  .panel:hover,
  .trust-item:hover,
  .contact-box:hover,
  .list li:hover,
  .nav a:hover,
  .brand:hover,
  .hero-badges li:hover{
    transform: none;
    filter: none;
  }

  .btn:hover::before,
  .card:hover::before,
  .panel:hover::before,
  .trust-item:hover::before,
  .contact-box:hover::before,
  .list li:hover::before,
  .nav a:hover::before{
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce){
  *,
  *::before,
  *::after{
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .site-header::after,
  .site-footer::before{
    opacity: .9;
    transform: translate3d(20vw,0,0) !important;
  }
}
.nav-link-button{
  position: relative;
  display: inline-block;
  color: rgba(248,250,252,.88);
  font-weight: 600;
  padding: 12px 14px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
  overflow: hidden;
}

.nav-link-button::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  background:
    radial-gradient(circle at center, rgba(96,165,250,.22), rgba(37,99,235,.10), transparent 72%);
  opacity: 0;
  transform: scale(.88);
  transition: opacity .18s ease, transform .18s ease;
  pointer-events:none;
}

.nav-link-button:hover{
  color:#fff;
  background: rgba(255,255,255,0.06);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.06) inset,
    0 0 18px rgba(96,165,250,.22);
  transform: translateY(-1px);
}

.nav-link-button:hover::before{
  opacity: 1;
  transform: scale(1);
}

.nav-link-button:focus-visible{
  outline: 2px solid #93c5fd;
  outline-offset: 2px;
}

@media (max-width: 860px){
  .nav-link-button{
    width:100%;
    padding: 13px 12px;
  }
}