/* ===== RESET ===== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:'Atkinson Hyperlegible Next',system-ui,sans-serif;
  background:#030A23;
  color:#c8d6e5;
  line-height:1.6;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
ul{list-style:none}
::selection{background:rgba(32,52,204,.4);color:#fff}

/* ===== VARS ===== */
:root{
  --navy:#030A23;
  --navy-mid:#0c1a42;
  --navy-light:#24356C;
  --blue:#2034CC;
  --blue-deep:#023399;
  --yellow:#FFF59E;
  --white:#ffffff;
  --gray:#8b9dc3;
  --dim:#4a5f8a;
  --glass:rgba(12,26,66,.45);
  --glass-border:rgba(36,53,108,.4);
  --glass-hover:rgba(32,52,204,.12);
  --radius:25px;
  --max-w:1200px;
}

.wrap{max-width:var(--max-w);margin:0 auto;padding:0 32px;position:relative;z-index:2}

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4{
  font-family:'Atkinson Hyperlegible Next',system-ui,sans-serif;
  font-weight:700;
  color:var(--white);
  line-height:1.08;
  letter-spacing:-0.03em;
}
h1{font-size:clamp(2.8rem,6.5vw,5.5rem);line-height:.95}
h2{font-size:clamp(2.2rem,5vw,3.8rem);line-height:1}
h3{font-size:1.35rem;letter-spacing:-0.01em}

/* ===== AMBIENT ORB ===== */
.orb{
  position:absolute;
  border-radius:50%;
  pointer-events:none;
  will-change:transform;
}
.orb--blue{
  background:radial-gradient(circle,rgba(32,52,204,.5) 0%,rgba(2,51,153,.2) 40%,transparent 70%);
  filter:blur(80px);
}

/* ===== GLASSMORPHISM CARD ===== */
.glass{
  background:var(--glass);
  border:1px solid var(--glass-border);
  border-radius:var(--radius);
  backdrop-filter:blur(24px);
  -webkit-backdrop-filter:blur(24px);
  transition:all .45s cubic-bezier(.4,0,.2,1);
}
.glass:hover{
  transform:translateY(-4px);
}

/* ===== BUTTONS ===== */
.btn{
  display:inline-flex;align-items:center;gap:10px;
  padding:16px 36px;border-radius:60px;
  font-family:inherit;font-size:.95rem;font-weight:700;
  border:none;cursor:pointer;
  transition:all .35s cubic-bezier(.4,0,.2,1);
  letter-spacing:.01em;
}
.btn--y{
  background:var(--yellow);
  color:var(--navy);
  box-shadow:none;
  letter-spacing:-0.02em;
}
.btn--y:hover{
  transform:translateY(-2px);
}
.btn--ghost{
  background:rgba(255,255,255,.04);
  color:var(--white);
  border:1px solid rgba(255,255,255,.1);
  backdrop-filter:blur(15px);
  -webkit-backdrop-filter:blur(15px);
}
.btn--ghost:hover{
  background:rgba(32,52,204,.12);
  border-color:rgba(32,52,204,.5);
}
.btn--ghost:hover .btn__circle--ghost{
  border-color:rgba(32,52,204,.5);
}
.btn--blue{
  background:var(--blue);
  color:var(--white);
  box-shadow:0 0 40px rgba(32,52,204,.25);
}
.btn--blue:hover{
  box-shadow:0 0 60px rgba(32,52,204,.35);
  transform:translateY(-2px);
}
.btn svg,.btn img{width:16px;height:16px;flex-shrink:0}
.btn--nav{
  padding:5px 5px 5px 20px;
  font-size:.85rem;
  gap:10px;
  letter-spacing:0;
  white-space:nowrap;
}
.btn__circle{
  display:inline-flex;align-items:center;justify-content:center;
  width:44px;height:44px;border-radius:50%;
  background:var(--navy);
  flex-shrink:0;
  overflow:visible;
  position:relative;
}
.btn__circle svg{width:36px!important;height:36px!important;display:block}
.hdr .btn__circle{width:38px;height:38px}
.btn__circle--ghost{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.1);
}
.btn--with-circle{
  padding:6px 6px 6px 28px;
  gap:14px;
  white-space:nowrap;
}
.arrow-icon{
  fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;
}
.btn-arrow{
  display:inline-flex;align-items:center;justify-content:center;
  width:45px;height:45px;border-radius:50%;flex-shrink:0;
}
.btn-arrow--yellow{background:var(--yellow)}
.btn-arrow--dark{
  background:var(--navy);
  border:1px solid rgba(255,255,255,.1);
}

/* ===== HEADER ===== */
.hdr{
  position:fixed;top:0;left:0;right:0;z-index:100;
  padding:20px 0;
  transition:all .35s;
  border-bottom:1px solid rgba(36,53,108,.25);
}
.hdr.is-scrolled{
  padding:12px 0;
  background:rgba(6,14,40,.88);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  border-bottom:1px solid rgba(36,53,108,.25);
}
.hdr__inner{display:flex;align-items:center;justify-content:space-between}

/* Logo */
.logo{display:flex;align-items:center;gap:12px;font-size:1.4rem;font-weight:700;color:#fff}
.logo img{height:28px;width:auto}

.nav{display:flex;align-items:center;gap:24px}
.nav__links{display:flex;gap:20px}
.nav__actions{display:flex;align-items:center;gap:12px;flex-shrink:0}
.nav__links a{
  font-size:.9rem;font-weight:500;
  color:var(--gray);
  transition:color .2s;
}
.nav__links a:hover{color:#fff}
.nav__login{
  padding:8px 18px;
  white-space:nowrap;
  border-radius:60px;
  font-size:.85rem;font-weight:600;
  color:var(--white);
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.12);
  transition:all .3s;
  letter-spacing:0;
}
.nav__login:hover{
  background:rgba(32,52,204,.15);
  border-color:rgba(32,52,204,.5);
  color:#fff;
}
.nav__link--disabled{
  opacity:.35;
  cursor:default;
  pointer-events:none;
}

/* burger */
.burger{display:none;background:0;border:0;cursor:pointer;padding:4px;flex-direction:column;gap:5px}
.burger span{width:22px;height:2px;background:#fff;border-radius:2px;transition:all .3s}
.burger.on span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
.burger.on span:nth-child(2){opacity:0}
.burger.on span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}

.mob-nav{
  display:none;position:fixed;inset:0;z-index:99;
  background:rgba(6,14,40,.97);backdrop-filter:blur(24px);
  flex-direction:column;align-items:center;justify-content:center;gap:28px;
}
.mob-nav.on{display:flex}
.mob-nav a{font-size:1.5rem;color:#fff;font-weight:700}

/* ===== HERO ===== */
.hero{
  min-height:100vh;
  display:flex;flex-direction:column;justify-content:center;
  position:relative;
  padding:120px 0 40px;
  overflow:hidden;
  background:linear-gradient(180deg,#030A23 0%,#060F2F 100%);
}
.hero__bg{position:absolute;inset:0;z-index:0;overflow:hidden}

/* Sphere background — pure CSS */
.hero__sphere{
  position:absolute;
  left:50%;
  width:clamp(350px,35vw,500px);
  height:clamp(350px,35vw,500px);
  pointer-events:none;
  z-index:1;
  border-radius:50%;
  background:radial-gradient(circle closest-side at center, rgba(6,15,47,0) 0%, rgba(6,15,47,0) 60%, rgba(32,52,204,.02) 65%, rgba(32,52,204,.05) 70%, rgba(32,52,204,.08) 74%, rgba(32,52,204,.12) 77%, rgba(32,52,204,.18) 80%, rgba(32,52,204,.25) 83%, rgba(32,52,204,.35) 86%, rgba(32,52,204,.45) 89%, rgba(32,52,204,.55) 92%, rgba(32,52,204,.7) 95%, #2034CC 100%);
  animation:sphere-pulse 6s ease-in-out infinite;
  will-change:transform;
}
@keyframes sphere-pulse{
  0%,100%{transform:translate(-50%,-50%) scale(1)}
  50%{transform:translate(-50%,-50%) scale(0.92)}
}
/* Watermark — grid width, lowest layer */
.hero__watermark{
  position:absolute;
  bottom:0;left:32px;right:32px;
  opacity:1;
  pointer-events:none;
  z-index:0;
}
.hero__watermark img{width:100%;height:auto}

.hero__wrap{position:relative;flex:1;display:flex;flex-direction:column;justify-content:center}
.hero__content{position:relative;z-index:2;max-width:650px;margin-top:60px}

.hero__badge{
  display:inline-flex;align-items:center;gap:10px;
  padding:10px 24px;margin-bottom:36px;
  background:rgba(32,52,204,.1);
  border:1px solid rgba(32,52,204,.25);
  border-radius:60px;
  font-size:.82rem;font-weight:400;
  color:rgba(255,255,255,.7);
  letter-spacing:0;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}
.hero__badge .pulse{
  width:7px;height:7px;background:var(--blue);border-radius:50%;
  box-shadow:0 0 8px var(--blue);
  animation:blink 2s infinite;
}
@keyframes blink{0%,100%{opacity:1}50%{opacity:.3}}

.hero__badge--float{
  position:absolute;
  top:calc(32% - 70px);right:calc(50% - clamp(350px,35vw,500px)/2 - 90px);
  transform:translateX(50%);
  z-index:3;
  margin-bottom:0;
}

.hero h1{margin-bottom:24px}
.hero h1 .accent{
  color:var(--blue);
}
.hero__desc{
  font-size:clamp(.95rem,1.4vw,1.05rem);
  color:var(--gray);line-height:1.7;font-weight:300;
  max-width:520px;margin-bottom:32px;
}
.hero__actions{display:flex;gap:16px;flex-wrap:wrap;margin-bottom:0}
.hero__actions .btn{
  display:inline-flex;align-items:center;gap:12px;
}

/* Stats bar — inside wrap, pushed to bottom */
.hero__stats{
  position:relative;z-index:3;
  margin-top:auto;
  flex-shrink:0;
  display:grid;grid-template-columns:repeat(5,1fr);gap:0;
  background:rgba(12,26,66,.3);
  border:1px solid var(--glass-border);
  border-radius:20px;
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  padding:28px 0;
}
.hero__stat{
  padding:0 28px;
  border-right:1px solid rgba(255,255,255,.06);
  text-align:left;
}
.hero__stat:last-child{border-right:none}
.hero__stat strong{
  display:block;
  font-family:'Unbounded',sans-serif;
  font-size:clamp(1.6rem,2.5vw,2.1rem);
  font-weight:500;color:#fff;letter-spacing:-0.02em;
}
.hero__stat span{font-size:.82rem;color:var(--dim);margin-top:2px;display:block}

/* ===== SECTION SHARED ===== */
.sect{padding:100px 0;position:relative;z-index:2}
#benefits{padding:50px 0}
#technology{padding:50px 0}
#features{z-index:auto}
.sect__label{
  display:inline-block;
  padding:6px 16px;
  margin-bottom:10px;
  background:rgba(6,14,40,.4);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border:1px solid #2034CC;
  border-radius:60px;
  font-size:.75rem;font-weight:600;
  text-transform:none;letter-spacing:0;
  color:#8B9DC3;
}
.sect__sub{
  font-size:clamp(1rem,1.4vw,1.15rem);
  color:var(--gray);line-height:1.75;font-weight:300;
  max-width:700px;margin-top:16px;
}
.ultra-thin{font-weight:100}
.sect--center{text-align:center}
.sect-head{text-align:left}

/* Section gradients — alternating seamless */
#features{background:linear-gradient(180deg,#060F2F 0%,#030A23 100%)}
#benefits{background:linear-gradient(180deg,#030A23 0%,#060F2F 100%)}
#roles{background:linear-gradient(180deg,#060F2F 0%,#030A23 100%)}
#technology{background:linear-gradient(180deg,#030A23 0%,#060F2F 100%)}
#compare{background:linear-gradient(180deg,#060F2F 0%,#030A23 100%)}
#horizon{background:linear-gradient(180deg,#030A23 0%,#060F2F 100%)}
.trust{background:linear-gradient(180deg,#060F2F 0%,#030A23 100%)}
.cta{background:linear-gradient(180deg,#030A23 0%,#060F2F 100%)}
.ftr{background:linear-gradient(180deg,#060F2F 0%,#030A23 100%)}

.trust,.cta,.ftr{position:relative;z-index:2}

/* stripe divider */
.stripe{
  height:1px;
  background:linear-gradient(90deg,transparent 0%,var(--glass-border) 20%,rgba(32,52,204,.3) 50%,var(--glass-border) 80%,transparent 100%);
  position:relative;
  z-index:3;
  margin-top:-1px;
}

/* ===== FEATURES ===== */
.feat-search{
  display:inline-flex;align-items:center;gap:16px;
  padding:14px 20px 14px 19px;
  background:transparent;
  border:1px solid rgba(36,53,108,.65);
  border-radius:60px;
  margin-top:32px;
  position:relative;
  overflow:hidden;
}
.feat-search::after{
  content:'';
  position:absolute;
  left:33%;top:-20px;bottom:-20px;right:-10px;
  background:linear-gradient(90deg,rgba(32,52,204,.4) 0%,rgba(32,52,204,.2) 40%,rgba(32,52,204,.05) 80%,transparent 100%);
  clip-path:polygon(0% 38%, 100% 0%, 100% 100%, 0% 62%);
  filter:blur(8px);
  pointer-events:none;
  z-index:0;
  transform-origin:left center;
  animation:cone-breathe 5s ease-in-out infinite;
}
@keyframes cone-breathe{
  0%,100%{clip-path:polygon(0% 38%, 100% 0%, 100% 100%, 0% 62%)}
  50%{clip-path:polygon(0% 45%, 100% 0%, 100% 100%, 0% 55%)}
}
.feat-search__icon{
  display:flex;align-items:center;gap:8px;
  color:var(--white);font-weight:600;font-size:.9rem;
  position:relative;z-index:1;
}
.feat-search__icon svg{width:20px;height:20px}
.feat-search__divider{width:1px;height:24px;background:rgba(255,255,255,.15);position:relative;z-index:1}
.feat-search__text{color:var(--gray);font-size:.9rem;display:inline-block;min-width:22ch;text-align:left;position:relative;z-index:1}
.feat-search__text::after{
  content:'|';
  animation:blink-cursor .7s step-end infinite;
  color:var(--gray);
  margin-left:1px;
}
@keyframes blink-cursor{0%,100%{opacity:1}50%{opacity:0}}

.feat-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:30px;
  margin-top:48px;
}
.feat{padding:0;position:relative;overflow:hidden;border-radius:var(--radius);border:none;background:transparent;backdrop-filter:none;-webkit-backdrop-filter:none;-webkit-clip-path:inset(0 round var(--radius));clip-path:inset(0 round var(--radius))}
.feat--bordered{border:1px solid var(--glass-border)}
.feat__img{
  width:100%;height:100%;object-fit:cover;display:block;
  min-height:360px;
}
.feat__body{
  position:absolute;bottom:0;left:0;right:0;
  padding:28px 32px 32px;
  background:rgba(6,14,40,.75);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  border-radius:var(--radius) var(--radius) 0 0;
  text-align:left;
  transition:padding-top .4s cubic-bezier(.4,0,.2,1);
}
.feat h3{
  margin-bottom:8px;
  font-size:1.3rem;line-height:1;
  min-height:calc(1.3rem * 1 * 2);
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
  padding-right:56px;
}
.feat__arrow{
  position:absolute;top:10px;right:10px;
  width:40px;height:40px;border-radius:50%;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
  transition:all .3s;
}
.feat:hover .feat__body{padding-top:53px}
.feat:hover .feat__arrow{background:#2034CC;border-color:#2034CC}
.feat__arrow svg{width:40px;height:40px;transform:scaleX(-1)}
.feat p{
  font-size:.9rem;line-height:1.7;color:var(--gray);
  min-height:calc(.9rem * 1.7 * 3);
  display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;
}

/* ===== BENEFITS ===== */
.bene-outer{
  max-width:1600px;
  margin:0 auto;
  padding:0 32px;
}
.bene-section{
  position:relative;
  background:linear-gradient(135deg,rgba(32,52,204,.12) 0%,rgba(2,51,153,.06) 50%,rgba(6,14,40,.4) 100%);
  border:1px solid rgba(32,52,204,.3);
  border-radius:32px;
  padding:64px;
  overflow:hidden;
  position:relative;
}
.bene-section__left{position:relative;z-index:1;max-width:840px}
.bene-section__right{
  position:absolute;
  right:0;bottom:0;
  z-index:0;
  pointer-events:none;
}
.bene-section__right::before{
  content:'';
  position:absolute;
  left:50%;top:50%;
  transform:translate(-50%,-50%);
  width:250%;height:250%;
  background:radial-gradient(circle,#1F2FF7 0%,rgba(31,47,247,.6) 20%,rgba(31,47,247,.35) 40%,rgba(31,47,247,.1) 60%,transparent 80%);
  z-index:-1;
  filter:blur(60px);
}
.bene-section__right img{
  display:block;
  width:522px;
  height:auto;
  image-rendering:auto;
}

.bene-grid{
  display:grid;grid-template-columns:repeat(2,1fr);gap:20px;
  margin-top:40px;
}
.bene{
  padding:28px;
  display:flex;flex-direction:column;gap:12px;
  position:relative;
  background:rgba(12,26,66,.4);
  backdrop-filter:blur(15px);-webkit-backdrop-filter:blur(15px);
  border:1px solid var(--glass-border);
  border-radius:25px;
  transition:all .45s cubic-bezier(.4,0,.2,1);
}
.bene:hover{
  border-color:rgba(32,52,204,.5);
  transform:translateY(-3px);
}
.bene__head{display:flex;align-items:center;gap:16px}
.bene__icon{
  width:56px;height:56px;border-radius:14px;
  background:transparent;
  border:1px solid rgba(139,157,195,.22);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.bene__icon svg{width:38px;height:38px}
.bene__arrow{
  position:absolute;bottom:10px;right:10px;
  width:40px;height:40px;border-radius:50%;
  background:transparent;
  border:1px solid rgba(139,157,195,.22);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
  transition:all .3s;
}
.bene:hover .bene__arrow{background:#2034CC;border-color:#2034CC}
.bene__arrow svg{width:40px;height:40px;transform:scale(-1,-1)}
.bene h3{font-size:1.3rem;line-height:1;margin-bottom:0}
.bene p{font-size:.88rem;line-height:1.7;color:var(--gray);padding-right:48px}

/* ===== ROLES ===== */
.roles-header{text-align:left;max-width:900px}
.roles-header .sect__sub{margin-left:0}

/* persona tabs */
.persona-tabs{
  display:flex;gap:8px;
  padding:40px 0 0;
  flex-wrap:wrap;
}
.persona-tab{
  padding:12px 24px;
  border-radius:60px;
  border:1px solid rgba(32,52,204,.25);
  background:transparent;
  color:var(--gray);
  font-size:.88rem;font-weight:500;
  font-family:inherit;
  cursor:pointer;
  transition:all .3s;
}
.persona-tab:hover{
  border-color:rgba(32,52,204,.5);
  color:var(--white);
}
.persona-tab.is-active{
  background:linear-gradient(135deg,#2034CC,#0166FF);
  border-color:transparent;
  color:#fff;
}

/* persona panels */
.persona-panels{
  margin-top:32px;
  position:relative;
}
.persona-panel{
  display:none;
  grid-template-columns:1fr 1fr;
  gap:40px;
  background:#CFD5EC;
  border:none;
  border-radius:25px;
  overflow:hidden;
  animation:personaFadeIn .4s ease;
}
.persona-panel.is-active{
  display:grid;
}
@keyframes personaFadeIn{
  from{opacity:0;transform:translateY(12px)}
  to{opacity:1;transform:translateY(0)}
}
.persona-panel__text{
  padding:48px;
  display:flex;flex-direction:column;justify-content:flex-start;
}
.persona-panel__tag{
  align-self:flex-start;
  padding:6px 16px;
  border:1px solid #2034CC;
  border-radius:60px;
  color:#2034CC;
  font-size:.75rem;font-weight:600;
  margin-bottom:10px;
}
.persona-panel__title{
  font-size:clamp(1.4rem,2.5vw,1.8rem);
  font-weight:700;color:#15224A;
  letter-spacing:-0.02em;
  margin-bottom:16px;
}
.persona-panel__desc{
  font-size:.95rem;line-height:1.8;color:#4A5474;
  font-weight:400;
  margin-bottom:24px;
  max-width:480px;
}
.persona-panel__checks{
  list-style:none;
  margin-top:auto;
  margin-bottom:24px;
  padding:0;
  display:flex;flex-direction:column;gap:10px;
}
.persona-panel__checks li{
  display:flex;align-items:center;gap:10px;
  font-size:.82rem;color:#4A5474;font-weight:500;
  opacity:0;
  transform:translateX(20px);
}
.persona-panel__checks.is-visible li{
  animation:checkSlideIn .4s ease forwards;
}
.persona-panel.is-active .persona-panel__checks li:nth-child(1){animation-delay:.3s}
.persona-panel.is-active .persona-panel__checks li:nth-child(2){animation-delay:.45s}
.persona-panel.is-active .persona-panel__checks li:nth-child(3){animation-delay:.6s}

@keyframes checkSlideIn{
  0%{opacity:0;transform:translateX(20px)}
  100%{opacity:1;transform:translateX(0)}
}

.persona-check-circle{
  width:20px;height:20px;min-width:20px;
  border-radius:50%;
  background:rgba(32,52,204,.08);
  display:flex;align-items:center;justify-content:center;
  opacity:0;
}
.persona-panel__checks.is-visible .persona-check-circle{
  animation:circleAppear .2s ease forwards;
}
.persona-panel__checks.is-visible li:nth-child(1) .persona-check-circle{animation-delay:.5s}
.persona-panel__checks.is-visible li:nth-child(2) .persona-check-circle{animation-delay:.65s}
.persona-panel__checks.is-visible li:nth-child(3) .persona-check-circle{animation-delay:.8s}

@keyframes circleAppear{
  0%{opacity:0;transform:scale(.5)}
  100%{opacity:1;transform:scale(1)}
}

.persona-check-circle svg{
  width:10px;height:8px;
  stroke:#2034CC;stroke-width:1.5;
  stroke-linecap:round;stroke-linejoin:round;
  fill:none;
}
.persona-check-circle svg path{
  stroke-dasharray:12;
  stroke-dashoffset:12;
}
.persona-panel__checks.is-visible li:nth-child(1) .persona-check-circle svg path{animation:drawCheck .35s ease forwards .65s}
.persona-panel__checks.is-visible li:nth-child(2) .persona-check-circle svg path{animation:drawCheck .35s ease forwards .8s}
.persona-panel__checks.is-visible li:nth-child(3) .persona-check-circle svg path{animation:drawCheck .35s ease forwards .95s}

@keyframes drawCheck{
  to{stroke-dashoffset:0}
}
.persona-panel__text .btn{
  margin-top:32px;
  align-self:flex-start;
  letter-spacing:-0.02em;
  color:#15224A;
  border-color:rgba(21,34,74,.2);
}
.persona-panel__text .btn:hover{
  border-color:rgba(21,34,74,.5);
}
.persona-panel__text .btn__circle--ghost{
  border-color:rgba(21,34,74,.2);
}
.persona-panel__text .btn:hover .btn__circle--ghost{
  border-color:rgba(21,34,74,.5);
}
.persona-panel__text .btn__circle--ghost svg path{
  fill:#15224A !important;
}
.persona-panel__img{
  position:relative;
  overflow:hidden;
  aspect-ratio:1/1;
  border-radius:25px;
}
.persona-panel__img img{
  width:100%;height:100%;
  object-fit:cover;
  filter:brightness(.8) saturate(.9);
}

/* ===== TECHNOLOGY ===== */
.tech-outer{
  max-width:1600px;
  margin:0 auto;
  padding:0 32px;
}
.tech-section{
  position:relative;
  overflow:hidden;
  background:linear-gradient(180deg,#2034CC 0%,#0D1FA6 100%);
  border-radius:32px;
  padding:64px;
  border:1px solid rgba(32,52,204,.3);
}
.tech-section__globe{
  position:absolute;
  top:-5%;left:-10%;
  width:70%;
  pointer-events:none;
  z-index:0;
}
.tech-section__globe img{width:100%;height:auto;display:block}
.tech-layout{
  position:relative;z-index:1;
  display:grid;grid-template-columns:40% 60%;
  align-items:start;
}
.tech-left{}
.tech-left .sect__sub{color:var(--white)}
.tech-right{display:flex;flex-direction:column;gap:40px;align-items:center;justify-content:center}

.tech-howit{
  position:relative;
  background:transparent;
  border:1px solid rgba(139,157,195,.4);
  border-radius:20px;
  padding:48px 28px 24px;
  width:300px;
}
.tech-howit .sect__label{
  position:absolute;
  top:8px;
  left:8px;
  background:rgba(6,15,47,0.7);
  backdrop-filter:blur(15px);-webkit-backdrop-filter:blur(15px);
  font-size:11px;
  margin-bottom:0;
}
.tech-howit h3{font-size:1rem;font-weight:700;margin-bottom:8px}
.tech-howit p{font-size:12px;color:var(--white);line-height:1.2;font-weight:400}

.tech-steps{
  display:flex;gap:12px;
  justify-content:center;
}
.tech-step{
  display:inline-flex;align-items:center;gap:8px;
  padding:15px 22px;
  background:rgba(6,15,47,0.7);
  backdrop-filter:blur(15px);-webkit-backdrop-filter:blur(15px);
  border:1px solid rgba(139,157,195,.3);
  border-radius:60px;
  font-size:.78rem;font-weight:400;color:var(--white);
  white-space:nowrap;
  transition:all .3s;
}
.tech-step:hover{border-color:rgba(207,213,236,.4)}
.tech-step__icon{
  display:flex;align-items:center;justify-content:center;
}
.tech-step__icon img{width:18px;height:18px}

.tech-lines{width:100%;height:50px;display:block;margin:-35px auto -45px}
.tech-line{stroke-dasharray:500;stroke-dashoffset:500;animation:techLineDraw 2s ease forwards}
.tech-line--top-line{stroke-dasharray:500;stroke-dashoffset:500;animation:techLineDraw 2s ease forwards}
.tech-lines--top{margin:-35px auto -45px}
.tech-line--center{stroke-dasharray:75;stroke-dashoffset:75;animation:techLineDraw 1.5s ease forwards}
.tech-line--left{animation-delay:.2s}
.tech-line--right{animation-delay:.4s}
@keyframes techLineDraw{to{stroke-dashoffset:0}}

.tech-bottom{margin-top:-80px;position:relative;z-index:2}
.tech-bottom__tagline{
  font-size:20px;font-weight:700;color:var(--white);
  line-height:1;margin-bottom:-2px;
}
.tech-bottom__sub{
  font-size:16px;color:var(--white);margin-bottom:24px;
}

.tech-feed{
  position:relative;
  width:270px;
  flex-shrink:0;
  padding-top:60px;
}
.tech-feed__folder-img{
  position:absolute;
  bottom:5px;
  left:50%;
  transform:translateX(-50%);
  width:70%;
  height:auto;
  display:block;
  border-radius:12px;
  z-index:0;
  pointer-events:none;
}
.tech-feed__card{
  position:relative;z-index:1;
  padding:0 20px 14px;
}
.tech-feed__card-shape{
  position:absolute;inset:0;z-index:-1;
  pointer-events:none;
}
.tech-feed__card-shape svg{
  width:100%;height:100%;
  display:block;
}
.tech-feed__card-blur{
  position:absolute;inset:0;z-index:-2;
  backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);
  mask-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 270 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 24C0 10.745 10.745 0 24 0H94C104 0 109 6 114 12.5C119 19 124 25 131 25H246C259.255 25 270 35.745 270 49V196C270 209.255 259.255 220 246 220H24C10.745 220 0 209.255 0 196Z' fill='white'/%3E%3C/svg%3E");
  -webkit-mask-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 270 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 24C0 10.745 10.745 0 24 0H94C104 0 109 6 114 12.5C119 19 124 25 131 25H246C259.255 25 270 35.745 270 49V196C270 209.255 259.255 220 246 220H24C10.745 220 0 209.255 0 196Z' fill='white'/%3E%3C/svg%3E");
  mask-size:100% 100%;-webkit-mask-size:100% 100%;
}
.tech-feed__card-arrow{
  position:absolute;top:35px;right:10px;z-index:2;
  width:40px;height:40px;border-radius:50%;
  background:transparent;
  border:1px solid rgba(139,157,195,.22);
  display:flex;align-items:center;justify-content:center;
}
.tech-feed__card-arrow svg{transform:scaleX(-1)}
.tech-feed__header{
  display:flex;align-items:center;gap:10px;
  margin-bottom:7px;
}
.tech-feed__logo{width:48px;height:48px}
.tech-feed__name{font-size:.85rem;font-weight:700;color:var(--white)}
.tech-feed__personas{
  display:flex;align-items:center;gap:8px;
  margin-bottom:11px;
}
.tech-feed__persona-img{
  height:32px;width:auto;border-radius:16px;
}
.tech-feed__persona-label{
  font-size:10px;color:var(--gray);margin-left:4px;
}
.tech-feed__arrow{
  margin-left:auto;
  width:32px;height:32px;border-radius:50%;
  background:rgba(32,52,204,.15);
  display:flex;align-items:center;justify-content:center;
}
.tech-feed__title{font-size:15px;font-weight:700;color:var(--white);margin-bottom:0}
.tech-feed__desc{font-size:12px;color:var(--white);line-height:1.2;margin-bottom:7px}
.tech-feed__stats{
  display:flex;justify-content:space-between;
  padding-top:6px;
  margin-bottom:0;
}
.tech-feed__stat{font-size:13px;color:var(--gray)}
.tech-feed__stat strong{font-size:12px;color:var(--white);font-weight:700;margin-right:4px}

.comp__thin{font-weight:100}
/* ===== COMPARISON ===== */
.comp{margin-top:64px;border-radius:24px;overflow:hidden;background:linear-gradient(160deg,rgba(32,52,204,.12),rgba(2,51,153,.06));border:1px solid rgba(32,52,204,.2)}
.comp table{width:100%;border-collapse:collapse}
.comp th{
  padding:22px 28px;font-size:.9rem;font-weight:700;
  color:var(--white);text-align:left;
  border-bottom:1px solid rgba(32,52,204,.15);
  background:rgba(6,14,40,.5);
}
.comp th:not(:first-child){text-align:center;width:20%}
.comp .th--accent{
  background:linear-gradient(90deg,#2034CC 0%,#0D1FA6 100%);
  color:var(--white);
  font-size:1rem;
}
.comp td{
  padding:16px 28px;font-size:.93rem;color:var(--gray);
  border-bottom:1px solid rgba(255,255,255,.03);
}
.comp td:not(:first-child){text-align:center}
.comp tr:last-child td{border-bottom:0}
.comp tr:hover td{background:rgba(32,52,204,.04)}
.comp .td--accent{background:rgba(32,52,204,.04)}

.ic-yes{display:inline-flex;align-items:center;justify-content:center;width:28px;height:28px;border-radius:50%;background:rgba(74,222,128,.12);color:#4ade80;font-weight:700;font-size:.85rem}
.ic-no{display:inline-flex;align-items:center;justify-content:center;width:28px;height:28px;border-radius:50%;background:rgba(255,255,255,.04);color:var(--dim);font-size:.75rem}
.ic-part{display:inline-flex;align-items:center;justify-content:center;width:28px;height:28px;border-radius:50%;background:rgba(255,245,158,.08);color:var(--yellow);font-size:.85rem;font-weight:700}

.comp-cta{text-align:center;margin-top:48px}

/* ===== HORIZON SCANNING ===== */
.horizon-outer{max-width:1600px;margin:0 auto;padding:0 32px}
.horizon-frame{
  background:#010821;
  border-radius:32px;
  border:1px solid rgba(32,52,204,.3);
  overflow:hidden;
  display:grid;grid-template-columns:50% 50%;

}
.horizon__left{
  position:relative;
  display:flex;flex-direction:column;justify-content:space-between;
  background:linear-gradient(180deg,#0166FF 0%,#2034CC 100%);
  padding:48px;
  min-height:700px;
  border-radius:0 32px 32px 0;
  overflow:hidden;
}
.horizon__left::before,
.horizon__left::after{
  content:'';
  position:absolute;
  top:50%;
  height:90%;
  aspect-ratio:1;
  border-radius:50%;
  background:radial-gradient(circle closest-side at center,
    rgba(6,15,47,0) 0%,
    rgba(6,15,47,0) 40%,
    rgba(6,15,47,.03) 48%,
    rgba(6,15,47,.06) 54%,
    rgba(6,15,47,.1) 60%,
    rgba(6,15,47,.16) 65%,
    rgba(6,15,47,.24) 70%,
    rgba(6,15,47,.33) 75%,
    rgba(6,15,47,.44) 80%,
    rgba(6,15,47,.56) 84%,
    rgba(6,15,47,.68) 88%,
    rgba(6,15,47,.8) 92%,
    rgba(6,15,47,.92) 96%,
    #060F2F 100%);
  pointer-events:none;
  z-index:0;
}
.horizon__left::before{
  left:calc(50% - 25px);
  transform:translate(-100%,-50%);
}
.horizon__left::after{
  left:calc(50% + 25px);
  transform:translate(0%,-50%);
}
.horizon__dots-canvas{
  position:absolute;inset:0;
  width:100%;height:100%;
  z-index:0;pointer-events:none;
}
.horizon__left h3{
  position:relative;z-index:1;
  font-size:clamp(1.8rem,3vw,2.4rem);
  line-height:1;
  margin-bottom:auto;
  max-width:400px;
}
.horizon__funnel{
  position:relative;z-index:1;
  margin:40px auto;
  width:200px;
  display:flex;flex-direction:column;align-items:center;gap:0;
}
.horizon__funnel-top{
  width:200px;height:120px;
  background:linear-gradient(180deg,rgba(32,52,204,.3),transparent);
  border-radius:100px 100px 0 0;
}
.horizon__funnel-mid{
  width:6px;height:60px;
  background:rgba(255,255,255,.15);
}
.horizon__funnel-icon{
  width:44px;height:44px;border-radius:50%;
  background:rgba(6,14,40,.5);
  border:1px solid rgba(255,255,255,.1);
  display:flex;align-items:center;justify-content:center;
}
.horizon__funnel-icon svg{width:20px;height:20px}
.horizon__left-text{
  position:relative;z-index:1;
  font-size:.88rem;color:rgba(255,255,255,.7);line-height:1.7;
  margin-top:auto;
  max-width:70%;
}

.horizon__right{
  position:relative;
  display:flex;flex-direction:column;justify-content:space-between;
  padding:48px;
}
.horizon__3d-bg{
  position:absolute;
  top:0;right:0;
  width:60%;height:auto;
  z-index:0;
  pointer-events:none;
}
.horizon__right-top{
  display:flex;align-items:flex-start;gap:20px;
}
.horizon__infograph{
  position:relative;
  flex:1;
  min-height:280px;
}
.horizon__infograph-canvas{
  width:100%;height:100%;
  position:absolute;inset:0;
}
.horizon__3d{
  flex:1;
  border-radius:28px;
  overflow:hidden;
  position:relative;
  min-height:280px;
}
.horizon__3d img{
  width:100%;height:100%;object-fit:cover;
}
.horizon__explore{
  display:flex;flex-direction:column;gap:12px;
}

.horizon__quote{
  position:relative;
  margin-top:auto;
  width:100%;
  padding:50px 36px 36px;
}
.horizon__quote-tab{
  position:absolute;
  top:1px;left:0;
}
.horizon__quote::before{
  content:'';
  position:absolute;
  top:50px;left:0;right:0;bottom:0;
  border-left:1px solid #1e2840;
  border-bottom:1px solid #1e2840;
  border-right:1px solid #1e2840;
  border-radius:0 0 24px 24px;
  pointer-events:none;
}
.horizon__quote::after{
  content:'';
  position:absolute;
  top:26px;left:206px;right:0;
  bottom:0;
  border-top:1px solid #1e2840;
  border-right:1px solid #1e2840;
  border-top-right-radius:24px;
  border-bottom-right-radius:24px;
  pointer-events:none;
}
.horizon__quote-text{
  font-size:clamp(2rem,3.5vw,2.8rem);
  font-weight:100;color:var(--white);
  line-height:1;
  letter-spacing:-0.02em;
}
.horizon__quote-arrow{
  position:absolute;bottom:16px;right:16px;
  width:40px;height:40px;border-radius:50%;
  background:transparent;
  border:1px solid rgba(139,157,195,.22);
  display:flex;align-items:center;justify-content:center;
}
.horizon__quote-arrow svg{transform:scale(-1,-1)}

/* ===== TRUSTED CAROUSEL ===== */
.trust{padding:100px 0;overflow:hidden;position:relative}
.trust__track{
  display:flex;gap:20px;
  width:max-content;
  animation:marquee 40s linear infinite;
}
.trust__track:hover{animation-play-state:paused}
@keyframes marquee{to{transform:translateX(-50%)}}
.trust__item{
  flex-shrink:0;
  padding:18px 36px;
  display:flex;align-items:center;gap:14px;
  border-radius:16px;
  background:var(--glass);
  border:1px solid var(--glass-border);
  transition:all .3s;
}
.trust__item:hover{border-color:rgba(32,52,204,.5);background:var(--glass-hover)}
.trust__ava{
  width:40px;height:40px;border-radius:12px;
  background:linear-gradient(140deg,var(--blue),var(--blue-deep));
  display:flex;align-items:center;justify-content:center;
  font-size:.8rem;font-weight:700;color:#fff;flex-shrink:0;
}
.trust__item span{font-size:.88rem;font-weight:500;color:var(--white);text-align:left;line-height:1.3}
.trust__svg{width:40px;height:40px;flex-shrink:0;display:flex;align-items:center;justify-content:center;color:var(--white)}
.trust__svg svg{width:100%;height:100%}

.trust__fade{position:absolute;top:0;bottom:0;width:160px;z-index:2;pointer-events:none}
.trust__fade--l{left:0;background:linear-gradient(90deg,#050D28,transparent)}
.trust__fade--r{right:0;background:linear-gradient(270deg,#050D28,transparent)}

.trust__logos{display:flex;gap:48px;justify-content:center}
.trust__logo-item{
  display:flex;align-items:center;gap:16px;
}
.trust__logo-item svg{
  height:36px;width:auto;color:var(--white);flex-shrink:0;
}
.trust__logo-item span{
  font-size:.88rem;font-weight:500;color:var(--white);
  line-height:1.3;text-align:left;
}

/* ===== CTA ===== */
.cta{padding:120px 0}
.cta__box{
  position:relative;overflow:hidden;
  padding:80px 48px;border-radius:32px;text-align:center;
  background:linear-gradient(160deg,rgba(32,52,204,.14),rgba(2,51,153,.08));
  border:1px solid rgba(32,52,204,.25);
}
.cta__box::before{
  content:'';position:absolute;top:-200px;left:50%;transform:translateX(-50%);
  width:700px;height:700px;
  background:radial-gradient(circle,rgba(32,52,204,.2) 0%,transparent 60%);
  pointer-events:none;
}
.cta__box h2{position:relative;margin-bottom:16px}
.cta__box h2 .accent{
  font-style:normal;
  font-weight:100;
  color:#fff;
}
.cta__box p{position:relative;max-width:480px;margin:0 auto 40px;color:var(--gray);font-size:1.1rem;font-weight:300}
.cta__actions{position:relative;display:flex;gap:16px;justify-content:center;flex-wrap:wrap}

/* ===== FOOTER ===== */
.ftr{padding:64px 0 28px}
.ftr__layout{
  display:grid;grid-template-columns:30% 1fr;gap:20px;
  max-width:1600px;margin:0 auto 32px;padding:0 32px;
}
.ftr .wrap{max-width:1600px}
.ftr__brand-box{
  background:linear-gradient(180deg,#2034CC 0%,#0D1FA6 100%);
  border:none;
  border-radius:24px;
  padding:40px;
  display:flex;flex-direction:column;
}
.ftr__brand-box .logo{margin-bottom:20px}
.ftr__brand-desc{font-size:.88rem;color:#fff;line-height:1.7;margin-bottom:32px;max-width:340px}
.ftr__contact{margin-top:auto}
.ftr__contact a{display:block;font-size:.88rem;color:#427FFF;font-weight:700;margin-bottom:8px;transition:color .2s}
.ftr__contact a:hover{color:var(--yellow)}
.ftr__contact-info{font-size:.82rem;color:#8b9dc3;line-height:1.8}
.ftr__social{display:flex;align-items:center;gap:12px;margin-top:20px}
.ftr__social-label{font-size:.82rem;color:#8b9dc3}
.ftr__social a{
  width:38px;height:38px;border-radius:12px;
  background:transparent;
  border:1px solid rgba(139,157,195,.4);
  display:flex;align-items:center;justify-content:center;
  transition:all .2s;
}
.ftr__social a:hover{border-color:rgba(255,255,255,.4)}
.ftr__social svg{width:16px;height:16px;fill:#8B9DC3;transition:fill .2s}
.ftr__social a:hover svg{fill:#fff}

.ftr__right-box{
  background:#CFD5EC;
  border:none;
  border-radius:24px;
  padding:40px;
  display:grid;grid-template-columns:1fr 1fr;gap:32px;
}
.ftr__right-menus{
  display:grid;grid-template-columns:1fr 1fr;gap:24px;
  align-content:space-between;
}
.ftr__copyright{
  grid-column:1/-1;
  font-size:.75rem;color:#646F91;
  margin-top:24px;
}
.ftr__right-subscribe{
  display:flex;flex-direction:column;justify-content:flex-end;
}
.ftr h4{font-size:.88rem;text-transform:none;letter-spacing:0;color:#15224A;margin-bottom:18px;font-weight:700}
.ftr__links a{display:block;font-size:.88rem;color:#646F91;padding:2px 0;transition:color .2s}
.ftr__links a:hover{color:#15224A}

.ftr__newsletter{padding-top:0;border-top:none}
.ftr__newsletter-title{font-size:1.3rem;font-weight:700;color:#2034CC;margin-bottom:0;letter-spacing:0}
.ftr__newsletter-sub{font-size:.85rem;color:#15224A;margin-bottom:16px}
.ftr__newsletter-form{display:flex;gap:10px;max-width:400px}
.ftr__newsletter-input{
  flex:1;padding:12px 20px;
  background:rgba(6,15,47,.05);
  border:1px solid rgba(21,34,74,.1);
  border-radius:60px;
  color:#15224A;font-size:.88rem;
  font-family:inherit;
  outline:none;
  transition:border-color .2s;
}
.ftr__newsletter-input::placeholder{color:#9098B1}
.ftr__newsletter-input:focus{border-color:rgba(32,52,204,.5)}
.ftr__newsletter-btn{
  width:44px;height:44px;border-radius:50%;
  background:var(--blue);
  border:none;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  transition:all .3s;
  flex-shrink:0;
}
.ftr__newsletter-btn:hover{background:#2a42e0;transform:scale(1.05)}
.ftr__newsletter-btn svg{width:36px;height:36px;transform:rotate(-90deg)}
.ftr__newsletter-consent{
  display:flex;align-items:flex-start;gap:8px;
  margin-top:12px;
  font-size:.75rem;color:#646F91;line-height:1.5;
}
.ftr__newsletter-consent input[type="checkbox"]{
  -webkit-appearance:none;appearance:none;
  width:18px;height:18px;min-width:18px;
  margin-top:2px;
  border:1px solid rgba(21,34,74,.2);
  border-radius:4px;
  background:transparent;
  cursor:pointer;
  position:relative;
}
.ftr__newsletter-consent input[type="checkbox"]:checked{
  background:#2034CC;border-color:#2034CC;
}
.ftr__newsletter-consent input[type="checkbox"]:checked::after{
  content:'';
  position:absolute;
  left:5px;top:2px;
  width:5px;height:10px;
  border:solid #fff;
  border-width:0 2px 2px 0;
  transform:rotate(45deg);
}
.ftr__newsletter-consent a{color:var(--blue);text-decoration:underline}

.ftr__bottom{
  display:flex;justify-content:center;
  padding-top:20px;
  font-size:.8rem;color:var(--dim);
}

/* ===== SCROLL REVEAL ===== */
.rv{opacity:0;transform:translateY(36px);transition:opacity .8s cubic-bezier(.4,0,.2,1),transform .8s cubic-bezier(.4,0,.2,1)}
.rv.is-vis{opacity:1;transform:none}
.stag .rv:nth-child(2){transition-delay:.08s}
.stag .rv:nth-child(3){transition-delay:.16s}
.stag .rv:nth-child(4){transition-delay:.24s}
.stag .rv:nth-child(5){transition-delay:.32s}
.stag .rv:nth-child(6){transition-delay:.4s}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px){
  .feat-grid{grid-template-columns:repeat(2,1fr)}
  .bene-section{grid-template-columns:1fr}
  .bene-section__right img{width:380px}
  .tech-layout{grid-template-columns:1fr}
  .tech-right{align-items:center}
  .tech-section{padding:48px 32px}
  .horizon-frame{grid-template-columns:1fr}
  .horizon__left{min-height:auto}
  .ftr__layout{grid-template-columns:1fr}
  .ftr__right-box{grid-template-columns:1fr 1fr 1fr}
  .persona-panel{grid-template-columns:1fr}
}
@media(max-width:768px){
  .sect{padding:80px 0}
  .nav__links,.nav .btn{display:none}
  .burger{display:flex}
  .feat-grid,.bene-grid{grid-template-columns:1fr}
  .hero__stats{grid-template-columns:repeat(3,1fr)}
  .hero__stat:nth-child(4),.hero__stat:nth-child(5){display:none}
  .hero__actions{flex-direction:column;align-items:stretch}
  .hero__actions .btn{justify-content:center}
  .hero__badge--float{display:none}
  .hero__sphere{opacity:.3;right:-30%}
  .bene-section{padding:32px 20px}
  .bene-section__right img{width:260px}
  .tech-section{padding:32px 20px}
  .tech-bottom{flex-direction:column}
  .tech-feed{width:100%}
  .tech-steps{flex-direction:column;align-items:stretch}
  .horizon-frame{grid-template-columns:1fr}
  .horizon__left{padding:32px;min-height:auto}
  .horizon__right-top{flex-direction:column}
  .ftr__layout{grid-template-columns:1fr}
  .ftr__right-box{grid-template-columns:1fr}
  .ftr__brand-box{padding:24px}
  .ftr__right-box{padding:24px}
  .cta__box{padding:56px 24px}
  .comp th,.comp td{padding:14px 16px;font-size:.85rem}
  .wrap{padding:0 20px}
  .trust__fade{width:60px}
  .persona-tabs{gap:6px}
  .hero__stats-bar{padding:0 20px}
}
@media(max-width:480px){
  .hero__stats{grid-template-columns:repeat(2,1fr)}
  .hero__stat:nth-child(3){display:none}
  .horizon__quote-text{font-size:1.2rem}
  .feat-search{flex-wrap:wrap;padding:12px 20px}
}
