/* ===== RESET ===== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%;overflow-x:hidden}
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}
h2 strong{font-weight:inherit}
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.02em;
  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:transparent;
  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;
  background:rgba(6,14,40,.2);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(36,53,108,.25);
}
.hdr.is-scrolled{
  padding:12px 0;
  background:rgba(6,14,40,.8);
  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;gap:20px}

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

/* Theme switch */
.theme-switch{
  width:40px;height:22px;
  border-radius:11px;
  background:rgba(139,157,195,.08);
  border:1px solid rgba(139,157,195,.2);
  cursor:pointer;
  position:relative;
  flex-shrink:0;
  transition:all .3s;
}
.theme-switch::after{
  content:'';
  position:absolute;top:3px;left:3px;
  width:14px;height:14px;
  border-radius:50%;
  background:#8b9dc3;
  transition:transform .3s cubic-bezier(.4,0,.2,1);
}
.theme-switch.is-light::after{
  transform:translateX(18px);
}
.theme-switch__icon{
  position:absolute;top:50%;transform:translateY(-50%);
  color:var(--gray);
  transition:opacity .3s;
}
.theme-switch__icon--dark{left:3px;opacity:1}
.theme-switch__icon--light{right:3px;opacity:.5}
.theme-switch.is-light .theme-switch__icon--dark{opacity:.4}
.theme-switch.is-light .theme-switch__icon--light{opacity:1}

.nav{display:flex;align-items:center;gap:24px;min-width:0}
.nav__links{display:flex;gap:20px;flex-wrap:nowrap;min-width:0;overflow:hidden}
.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;
  white-space:nowrap;
  flex-shrink:0;
}
.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:8px;flex-direction:column;gap:8px;width:44px;height:44px;align-items:center;justify-content:center}
.burger span{display:block;width:28px;height:1px;background:#fff;transition:all .3s;transform-origin:center}
.burger.on span:nth-child(1){transform:translateY(9px) rotate(45deg)}
.burger.on span:nth-child(2){opacity:0;transform:scaleX(0)}
.burger.on span:nth-child(3){transform:translateY(-9px) rotate(-45deg)}

/* Nav dropdown (intermediate) */
.burger--nav{
  display:none!important;
  background:0;border:0;cursor:pointer;padding:4px;flex-direction:column;gap:5px;
  width:28px;height:28px;align-items:center;justify-content:center;flex-shrink:0;
}
.burger--nav span{display:block;width:18px;height:1px;background:#fff;transition:all .3s;transform-origin:center}
.burger--nav.on span:nth-child(1){transform:translateY(6px) rotate(45deg)}
.burger--nav.on span:nth-child(2){opacity:0;transform:scaleX(0)}
.burger--nav.on span:nth-child(3){transform:translateY(-6px) rotate(-45deg)}
.burger--nav.is-visible{display:flex!important}
.nav__links a.is-hidden{display:none}
.nav-dropdown-wrap{
  position:fixed;left:0;right:0;top:var(--hdr-h,60px);
  overflow:hidden;
  z-index:97;
  pointer-events:none;
}
.nav-dropdown{
  background:rgba(6,14,40,.85);
  -webkit-backdrop-filter:blur(20px);
  backdrop-filter:blur(20px);
  border-bottom:1px solid rgba(36,53,108,.25);
  padding:16px 32px 20px;
  display:flex;flex-direction:column;gap:12px;
  transform:translateY(-100%);
  transition:transform .3s cubic-bezier(.4,0,.2,1);
  pointer-events:none;
}
.nav-dropdown.on{
  transform:translateY(0);
  pointer-events:auto;
}
.nav-dropdown-wrap:has(.on){pointer-events:auto}
.nav-dropdown a{
  font-size:.9rem;color:var(--gray);font-weight:500;transition:color .2s;
}
.nav-dropdown a:hover{color:#fff}
.nav-dropdown .nav__link--disabled{color:var(--dim);pointer-events:none}

.mob-nav{
  position:fixed;left:0;right:0;z-index:98;
  top:var(--hdr-h,60px);
  background:rgba(6,14,40,.8);
  backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);
  border-bottom:1px solid rgba(36,53,108,.25);
  padding:16px 32px 32px;
  display:flex;flex-direction:column;gap:20px;
  clip-path:inset(0 0 100% 0);
  transition:clip-path .35s cubic-bezier(.4,0,.2,1);
  pointer-events:none;
}
.mob-nav.on{
  clip-path:inset(0 0 0 0);
  pointer-events:auto;
}
.mob-nav__top{
  display:flex;justify-content:flex-end;
  margin-bottom:4px;
}
.mob-nav__top .theme-switch{
  width:72px;height:40px;
  border-radius:20px;
}
.mob-nav__top .theme-switch::after{
  top:5px;left:5px;
  width:28px;height:28px;
}
.mob-nav__top .theme-switch.is-light::after{
  transform:translateX(34px);
}
.mob-nav__top .theme-switch__icon{
  width:22px!important;height:22px!important;
}
.mob-nav__top .theme-switch__icon--dark{left:8px}
.mob-nav__top .theme-switch__icon--light{right:8px}
.mob-nav a{font-size:1.2rem;color:var(--gray);font-weight:600;transition:color .2s}
.mob-nav a:hover{color:#fff}
.mob-nav .nav__link--disabled{color:var(--dim);pointer-events:none}
.mob-nav__actions{
  display:flex;align-items:center;gap:12px;
  margin-top:8px;padding-top:20px;
  border-top:1px solid rgba(36,53,108,.3);
}
.mob-nav__actions .nav__login{
  padding:10px 20px;
  border-radius:60px;
  font-size:.88rem;font-weight:600;
  color:var(--white);
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.12);
}
.mob-nav .btn--y{
  color:var(--navy);
  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,
.about-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:15px;
  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%)}
#features-table{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 * 5);
  display:-webkit-box;-webkit-line-clamp:5;-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;
}
.custom-api .bene-grid{grid-template-columns:repeat(3,1fr)}
.custom-api .bene p{color:var(--white)}
.custom-api__pricing{margin-top:48px}
.custom-api__pricing h3{font-size:1.35rem;margin-bottom:8px}
.custom-api__pricing-sub{color:var(--gray);font-size:.9rem;margin-bottom:20px}
.custom-api__table{width:100%;max-width:600px;border-collapse:separate;border-spacing:0;font-size:.85rem;border:1px solid var(--glass-border);border-radius:12px;overflow:hidden}
.custom-api__table th,.custom-api__table td{padding:12px 16px;text-align:left;border-bottom:1px solid var(--glass-border)}
.custom-api__table thead th{color:var(--white);font-weight:600;background:rgba(12,26,66,.6)}
.custom-api__table tbody td{color:var(--white);vertical-align:top}
.custom-api__table ul{list-style:none;margin-top:6px;padding:0}
.custom-api__table ul li{position:relative;padding-left:14px;color:var(--gray);font-size:.8rem;line-height:1.6}
.custom-api__table ul li::before{content:"·";position:absolute;left:2px;color:var(--gray)}
.custom-api__usecases{margin-top:48px}
.custom-api__usecases h3{font-size:1.35rem;margin-bottom:20px}
.custom-api__usecases-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.custom-api__usecase{background:rgba(12,26,66,.4);border:1px solid var(--glass-border);border-radius:25px;backdrop-filter:blur(15px);-webkit-backdrop-filter:blur(15px);padding:60px 28px 28px;display:flex;flex-direction:column;gap:12px;transition:all .45s cubic-bezier(.4,0,.2,1);position:relative}
.custom-api__usecase:hover{border-color:rgba(32,52,204,.5)}
.custom-api__usecase-arrow{transition:all .3s}
.custom-api__usecase:hover .custom-api__usecase-arrow{background:#2034CC;border-color:#2034CC}
.custom-api__usecase-arrow{position:absolute;top:8px;left:8px;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}
.custom-api__usecase-arrow svg{width:40px;height:40px;opacity:0;transform:scale(.5);transition:opacity .6s ease,transform .6s ease}
.custom-api__usecase.is-vis .custom-api__usecase-arrow svg{opacity:1;transform:scale(1)}
.custom-api__usecase p{color:var(--white);font-size:.85rem;line-height:1.5;margin:0}
.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);
}
.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;opacity:0;transform:scale(.5);transition:opacity .6s ease,transform .6s ease}
.bene.is-vis .bene__icon svg,.bene.is-visible .bene__icon svg{opacity:1;transform:scale(1)}
.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:1200px}
.roles-header .sect__sub{margin-left:0;max-width:70%}

/* persona tabs */
.persona-tabs-wrap{
  display:flex;align-items:center;gap:10px;
  padding:40px 0 0;
  position:relative;
}
.persona-tabs{
  display:flex;gap:8px;
  overflow-x:auto;
  scroll-behavior:smooth;
  -ms-overflow-style:none;
  scrollbar-width:none;
  flex:1;min-width:0;
  white-space:nowrap;
  -webkit-mask-image:linear-gradient(to right,#000 calc(100% - 48px),transparent 100%);
  mask-image:linear-gradient(to right,#000 calc(100% - 48px),transparent 100%);
}
.persona-tabs.is-end{
  -webkit-mask-image:linear-gradient(to left,#000 calc(100% - 48px),transparent 100%);
  mask-image:linear-gradient(to left,#000 calc(100% - 48px),transparent 100%);
}
.persona-tabs.is-mid{
  -webkit-mask-image:linear-gradient(to right,transparent 0,#000 48px,#000 calc(100% - 48px),transparent 100%);
  mask-image:linear-gradient(to right,transparent 0,#000 48px,#000 calc(100% - 48px),transparent 100%);
}
.persona-tabs.is-full{
  -webkit-mask-image:none;
  mask-image:none;
}
.persona-tabs::-webkit-scrollbar{display:none}
.persona-tab{
  padding:12px 24px;
  border-radius:60px;
  border:1px solid rgba(139,157,195,.15);
  background:transparent;
  color:var(--gray);
  font-size:.88rem;font-weight:500;
  font-family:inherit;
  cursor:pointer;
  transition:all .3s;
  flex-shrink:0;
  white-space:nowrap;
}
.persona-tab:hover{
  border-color:rgba(32,52,204,.5);
  color:var(--white);
}
.persona-tab.is-active{
  background:#2034CC;
  border-color:#2034CC;
  color:#fff;
}
.persona-tabs__arrows{
  display:flex;gap:6px;flex-shrink:0;
}
.persona-tabs__arrow{
  width:44px;height:44px;
  border-radius:50%;
  border:1px solid rgba(139,157,195,.15);
  background:transparent;
  color:var(--gray);
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;
  transition:all .3s;
  flex-shrink:0;
}
.persona-tabs__arrow:hover{
  border-color:rgba(32,52,204,.5);
  color:var(--white);
}

/* persona panels */
.persona-panels{
  margin-top:32px;
  position:relative;
  overflow:hidden;
}
.persona-panel{
  display:none;
  grid-template-columns:1fr 1fr;
  gap:0;
  background:#CFD5EC;
  border:none;
  border-radius:25px;
  overflow:hidden;
}
.persona-panel.is-active{
  display:grid;
}

/* content animations */
.persona-panel.is-active .persona-panel__text{
  animation:contentInLeft .8s cubic-bezier(.25,.1,.25,1) forwards;
}
.persona-panel.is-active .persona-panel__img{
  animation:contentInRight .8s cubic-bezier(.25,.1,.25,1) forwards;
}

@keyframes contentInLeft{
  0%{opacity:0;transform:scale(.6) translateX(-40px)}
  60%{opacity:.8;transform:scale(.7) translateX(0)}
  100%{opacity:1;transform:scale(1) translateX(0)}
}
@keyframes contentInRight{
  0%{opacity:0;transform:scale(.6) translateX(40px)}
  60%{opacity:.8;transform:scale(.7) translateX(0)}
  100%{opacity:1;transform:scale(1) translateX(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:10px;
  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}
.persona-panel.is-active .persona-panel__checks li:nth-child(4){animation-delay:.75s}

@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}
.persona-panel__checks.is-visible li:nth-child(4) .persona-check-circle{animation-delay:.95s}

@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}
.persona-panel__checks.is-visible li:nth-child(4) .persona-check-circle svg path{animation:drawCheck .35s ease forwards 1.1s}

@keyframes drawCheck{
  to{stroke-dashoffset:0}
}
.persona-panel__text .btn{
  margin-top:15px;
  align-self:flex-start;
  letter-spacing:0;
  color:#fff;
  background:#071037;
  border-color:#071037;
}
.persona-panel__text .btn:hover{
  background:#2034CC;
  border-color:#2034CC;
}
.persona-panel__text .btn__circle--ghost{
  border-color:rgba(139,157,195,.4);
  background:transparent;
}
.persona-panel__text .btn:hover .btn__circle--ghost{
  border-color:rgba(139,157,195,.6);
  background:transparent;
}
.persona-panel__text .btn__circle--ghost svg path{
  fill:#fff !important;
}
.persona-panel__img{
  position:relative;
  overflow:hidden;
  aspect-ratio:1/1;
  padding:10px;
}
.persona-panel__img img{
  width:100%;height:100%;
  object-fit:cover;
  border-radius:17px;
}

/* ===== 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;
  border:none;
  color:#fff;
}
.tech-howit h3{font-size:1rem;font-weight:700;margin-bottom:8px}
.tech-howit p{font-size:12px;color:var(--white);line-height:130%;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:none;
  border-radius:60px;
  font-size:.78rem;font-weight:400;color:var(--white);
  white-space:nowrap;
}
.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-wrap{margin-top:64px;position:relative}
.comp{border-radius:24px;overflow:auto;max-height:640px;background:rgba(12,26,66,.4);backdrop-filter:blur(15px);-webkit-backdrop-filter:blur(15px);border:1px solid rgba(36,53,108,.4);-webkit-overflow-scrolling:touch}
.comp::-webkit-scrollbar{display:none}
.comp{scrollbar-width:none}
.comp table{width:100%;border-collapse:collapse;min-width:1100px;table-layout:fixed}
.comp colgroup .comp-col-feature{width:15%}
.comp colgroup .comp-col-desc{width:49%}
.comp colgroup .comp-col-plan{width:12%}
.comp th{
  padding:22px 18px;font-size:.85rem;font-weight:700;
  color:var(--white);text-align:left;
  border-bottom:1px solid rgba(255,255,255,.08);
  background:#070e30;
  vertical-align:bottom;
  white-space:normal;
  position:sticky;top:0;z-index:3;
}
.comp th:nth-child(1),
.comp th:nth-child(2){
  background:#081230;
}
.comp th:nth-child(3),
.comp th:nth-child(4),
.comp th:nth-child(5){
  background:#2034CC;
}
.comp td{
  padding:14px 18px;font-size:.82rem;color:var(--gray);
  border-bottom:1px solid rgba(255,255,255,.03);
  vertical-align:top;
  line-height:1.55;
  text-align:left;
}
.comp td:nth-child(1){color:var(--white);font-weight:600}
.comp tr:last-child td{border-bottom:0}
.comp tr:hover td{background:rgba(32,52,204,.04)}
.comp__section-row td{
  background:rgba(32,52,204,.08)!important;
  color:var(--white)!important;
  font-weight:700;font-size:.85rem;
  padding:10px 18px;
  border-bottom:1px solid rgba(36,53,108,.4);
}

.ic-yes{display:inline-flex;align-items:center;justify-content:center;width:28px;height:28px;border-radius:50%;background:rgba(139,157,195,.1);color:#0166FF;font-weight:400;font-size:.75rem}
.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-inner{
  display:flex;gap:10px;
}
.comp-inner .comp{flex:1;min-width:0}
.comp__scrollbar-v{
  width:4px;flex-shrink:0;
  background:rgba(139,157,195,.12);border-radius:2px;
  position:relative;
  align-self:stretch;
}
.comp__scrollbar-v-thumb{
  position:absolute;left:0;top:0;width:100%;
  background:rgba(139,157,195,.4);border-radius:2px;min-height:40px;
  transition:background .2s;
}
.comp__scrollbar-v-thumb:hover,.comp__scrollbar-v-thumb.is-dragging{background:rgba(139,157,195,.6)}
.comp__scrollbar{
  position:relative;height:4px;margin-top:12px;
  background:rgba(139,157,195,.12);border-radius:2px;
}
.comp__scrollbar-thumb{
  position:absolute;top:0;left:0;height:100%;
  background:rgba(139,157,195,.4);border-radius:2px;min-width:40px;
  transition:background .2s;
}
.comp__scrollbar-thumb:hover,.comp__scrollbar-thumb.is-dragging{background:rgba(139,157,195,.6)}

.comp__footnote{
  font-size:.82rem;color:var(--dim);line-height:1.6;
  margin-top:26px;
  text-align:left;
}
.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;position:relative;overflow:hidden}
.cta__sphere{
  position:absolute;
  left:50%;top:-80%;
  width:clamp(1400px,140vw,2200px);
  height:clamp(1400px,140vw,2200px);
  transform:translateX(-50%);
  pointer-events:none;
  z-index:0;
  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;
}
.cta__layout{
  display:grid;grid-template-columns:1fr 1fr;gap:0;
  backdrop-filter:blur(15px);
  -webkit-backdrop-filter:blur(15px);
  position:relative;overflow:hidden;
  border-radius:32px;
  background:linear-gradient(160deg,rgba(32,52,204,.14),rgba(2,51,153,.08));
  border:1px solid rgba(32,52,204,.25);
}
.cta__layout::before{
  content:'';position:absolute;top:-200px;left:30%;transform:translateX(-50%);
  width:700px;height:700px;
  background:radial-gradient(circle,rgba(32,52,204,.2) 0%,transparent 60%);
  pointer-events:none;
}
.cta__left{
  position:relative;
  padding:48px;
  display:flex;flex-direction:column;align-items:flex-start;
}
.cta__left h2{margin-bottom:16px;text-align:left}
.cta__left h2 .accent{
  font-style:normal;
  font-weight:100;
  color:#fff;
}
.cta__left p{max-width:480px;margin:0 0 40px;color:var(--gray);font-size:1.1rem;font-weight:300;text-align:left}
.cta__right{
  position:relative;
  padding:48px;
  display:flex;flex-direction:column;
  border-left:1px solid rgba(32,52,204,.25);
}
.cta__badge{
  display:inline-flex;align-items:center;gap:10px;
  align-self:flex-start;
  padding:8px 24px 8px 10px;
  background:rgba(6,14,40,.4);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border:1px solid rgba(139,157,195,.15);
  border-radius:60px;
  margin-bottom:24px;
}
.cta__avatars{
  display:flex;
}
.cta__avatar{
  width:36px;height:36px;
  border-radius:50%;
  border:none;
  object-fit:cover;
}
.cta__avatar+.cta__avatar{
  margin-left:-10px;
}
.cta__badge-text{
  font-size:.75rem;color:var(--gray);
}
.cta__badge-text strong{
  color:#2034CC;
}
.cta__form-title{
  font-size:1.3rem;font-weight:700;color:#fff;
  margin-bottom:24px;
}
.cta__form{
  display:flex;flex-direction:column;gap:14px;
}
.cta__input{
  padding:14px 24px;
  background:rgba(6,14,40,.4);
  border:1px solid var(--glass-border);
  border-radius:60px;
  color:#fff;font-size:.88rem;
  font-family:inherit;
  outline:none;
  transition:border-color .2s;
}
.cta__input::placeholder{color:var(--dim)}
.cta__input:focus{border-color:rgba(32,52,204,.5)}
.cta__input.is-error{border-color:#e74c3c}
.cta__msg--success{color:#0166FF}
.cta__msg--error{color:#e74c3c}
.cta__submit{
  margin-top:8px;
  align-self:flex-start;
  border:none;cursor:pointer;
  font-family:inherit;
}
.cta__consent{
  display:flex;align-items:flex-start;gap:8px;
  margin-top:12px;
  font-size:.75rem;color:var(--dim);line-height:1.5;
}
.cta__consent input[type="checkbox"]{
  -webkit-appearance:none;appearance:none;
  width:18px;height:18px;min-width:18px;
  margin-top:2px;
  border:1px solid rgba(139,157,195,.3);
  border-radius:4px;
  background:transparent;
  cursor:pointer;
  position:relative;
}
.cta__consent input[type="checkbox"]:checked{
  background:#2034CC;border-color:#2034CC;
}
.cta__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);
}
.cta__consent a{color:#2034CC;text-decoration:underline}

/* ===== LEGAL PAGE ===== */
.legal-page{
  padding:140px 0 80px;
  position:relative;z-index:2;
  background:linear-gradient(180deg,#030A23 0%,#060F2F 100%);
}
.back-btn{
  display:inline-flex;align-items:center;gap:6px;
  float:right;
  margin-bottom:16px;
  padding:8px 20px;
  border:1px solid rgba(139,157,195,.3);
  border-radius:60px;
  color:var(--gray);
  font-size:.82rem;font-weight:600;
  background:rgba(6,14,40,.6);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  transition:all .2s;
  display:inline-flex;align-items:center;gap:6px;
}
.back-btn:hover{
  color:#fff;
  background:rgba(32,52,204,.15);
  border-color:rgba(32,52,204,.5);
}
.legal-page__header{
  margin-bottom:48px;
}
.legal-page__header h1{
  font-size:clamp(2rem,4vw,3rem);
  margin-top:12px;
}
.legal-page__date{
  font-size:.85rem;color:var(--dim);margin-top:8px;
}
.legal-page__content{
  max-width:900px;
}
.legal-page__content h1{
  font-size:clamp(1.6rem,3vw,2.2rem);
  margin-top:16px;margin-bottom:8px;
}
.legal-page__content h2{
  font-size:1.3rem;
  margin-top:32px;margin-bottom:12px;
  padding-top:32px;
  border-top:1px solid var(--glass-border);
  color:var(--white);
}
.legal-page__content h2:first-child{
  border-top:none;padding-top:0;
}
.legal-page__content h3{
  font-size:1rem;
  margin-top:24px;margin-bottom:8px;
  color:var(--white);
}
.legal-page__content p{
  font-size:.9rem;line-height:1.8;
  color:var(--gray);font-weight:300;
  margin-bottom:16px;
}
.legal-page__content ul{
  list-style:none;padding:0;margin:0 0 16px;
}
.legal-page__content li{
  font-size:.9rem;line-height:1.8;
  color:var(--gray);font-weight:300;
  padding-left:16px;
  position:relative;
  margin-bottom:8px;
}
.legal-page__content li::before{
  content:'';
  position:absolute;left:0;top:10px;
  width:5px;height:5px;
  border-radius:50%;
  background:rgba(32,52,204,.5);
}
.legal-page__content a{
  color:#2034CC;text-decoration:underline;
}
.legal-page__content strong{
  color:var(--white);font-weight:600;
}
.legal-page__table-wrap{
  overflow-x:auto;
  margin:20px 0;
}
.legal-page__table{
  width:100%;
  border-collapse:collapse;
  font-size:.85rem;
}
.legal-page__table th,.legal-page__table td{
  padding:10px 14px;
  border:1px solid var(--glass-border);
  text-align:left;
  color:var(--gray);
}
.legal-page__table th{
  color:var(--white);
  font-weight:600;
  background:rgba(12,26,66,.4);
}
.legal-page__divider{
  height:1px;
  background:var(--glass-border);
  margin:48px 0;
}

/* ===== FOOTER ===== */
.ftr{padding:64px 0 28px}
.ftr__layout{
  display:grid;grid-template-columns:30% 1fr;gap:20px;
  margin:0 auto 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,.custom-api .bene-grid,.custom-api__usecases-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;gap:32px}
  .tech-right{align-items:center;transform:scale(0.85);transform-origin:top center}
  .tech-section{padding:48px 32px}
  .horizon-frame{grid-template-columns:1fr}
  .horizon__left{min-height:auto;aspect-ratio:4/3;border-radius:32px}
  .ftr__layout{grid-template-columns:1fr}
  .ftr__right-box{grid-template-columns:1fr 1fr}
  .persona-panel{grid-template-columns:1fr}
  .persona-panel__text{padding:32px 20px}
  .persona-panel__img{padding:10px;aspect-ratio:auto}
}
@media(max-width:768px){
  .sect{padding:80px 0}
  .nav__links,.nav .btn{display:none}
  .nav .theme-switch{display:none}
  .mob-nav .theme-switch{display:block}
  .burger--nav{display:none!important}
  .nav-dropdown{display:none}
  .burger{display:flex}
  .custom-api .bene-grid,.custom-api__usecases-grid{grid-template-columns:repeat(2,1fr)}
  .hero__stats{grid-template-columns:repeat(3,1fr)}
  .hero__stat:nth-child(4),.hero__stat:nth-child(5){display:none}
  .hero__stats.has-carousel{position:relative;overflow:hidden}
  .hero__stats.has-carousel .hero__stat{display:block}
  .hero__stats-dots{
    display:none;
    justify-content:center;gap:6px;
    padding:12px 0 0;
    grid-column:1/-1;
  }
  .hero__stats.has-carousel .hero__stats-dots{display:flex}
  .hero__stats-dot{
    width:6px;height:6px;border-radius:50%;
    background:rgba(139,157,195,.25);
    border:none;padding:0;cursor:pointer;
    transition:all .3s;
  }
  .hero__stats-dot.is-active{background:rgba(139,157,195,.7);width:18px;border-radius:3px}
  .hero__actions{flex-wrap:wrap}
  .hero__actions .btn{justify-content:center}
  .hero__badge--float{display:none}
  .hero__sphere{display:none}
  .sect__sub{max-width:100%!important;width:100%}
  .sect-head{width:100%}
  .roles-header .sect__sub{max-width:100%}
  .bene-outer{padding:0 20px}
  .tech-outer{padding:0 20px}
  .bene-section{padding:32px 20px}
  .bene-section__right img{width:260px}
  .tech-section{padding:32px 20px}
  .tech-right{overflow:hidden}
  .tech-steps{flex-wrap:wrap;justify-content:center}
  .tech-right{gap:24px}
  .tech-lines,.tech-lines--top{margin:-15px auto -20px}
  .tech-feed{margin-top:-10px}
  .tech-bottom{margin-top:-60px}
  .tech-section__globe{width:140%;top:-5%;left:-20%}
  .horizon-outer{padding:0 20px}
  .horizon-frame{grid-template-columns:1fr}
  .horizon__left{padding:32px;min-height:auto;aspect-ratio:3/4;border-radius:32px}
  .horizon__right{padding:20px}
  .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__layout{grid-template-columns:1fr}
  .cta__left,.cta__right{padding:48px 24px}
  .cta__right{border-left:none;border-top:1px solid rgba(32,52,204,.25)}
  .comp th,.comp td{padding:14px 16px;font-size:.85rem}
  .wrap{padding:0 20px}
  .trust__fade{width:60px}
  .persona-tabs{gap:6px}
  .persona-tab{padding:10px 18px;font-size:.82rem}
  .persona-tabs__arrow{width:38px;height:38px}
  .hero__stats-bar{padding:0 20px}
}
@media(max-width:580px){
  .feat-grid,.bene-grid,.custom-api__usecases-grid{grid-template-columns:1fr}
}
@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}
}

/* ===== SUBSCRIBE POPUP ===== */
.popup-overlay{
  position:fixed;inset:0;z-index:9999;
  display:flex;align-items:center;justify-content:center;
  background:rgba(3,10,35,.75);
  backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);
  opacity:0;visibility:hidden;
  transition:opacity .35s ease,visibility .35s ease;
}
.popup-overlay.is-open{
  opacity:1;visibility:visible;
}
.popup{
  position:relative;
  width:90%;max-width:480px;
  background:linear-gradient(165deg,rgba(12,26,66,.92) 0%,rgba(3,10,35,.97) 100%);
  border:1px solid var(--glass-border);
  border-radius:var(--radius);
  padding:48px 40px 40px;
  box-shadow:0 32px 80px rgba(0,0,0,.45),0 0 120px rgba(32,52,204,.12);
  transform:translateY(24px) scale(.97);
  transition:transform .4s cubic-bezier(.4,0,.2,1);
}
.popup-overlay.is-open .popup{
  transform:translateY(0) scale(1);
}
.popup__close{
  position:absolute;top:16px;right:16px;
  width:36px;height:36px;border-radius:50%;
  background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.08);
  color:var(--gray);cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  transition:all .25s ease;
}
.popup__close:hover{
  background:rgba(32,52,204,.12);border-color:rgba(32,52,204,.5);color:var(--white);
}
.popup__icon{
  margin-bottom:20px;
  display:flex;align-items:center;justify-content:center;
  font-size:24px;color:var(--gray);
}
.popup__title{
  font-size:1.6rem;font-weight:700;
  color:var(--white);text-align:center;
  line-height:100%;margin-bottom:30px;
  letter-spacing:-0.02em;
}
.popup__tag-wrap{
  text-align:center;margin-bottom:0;
}
.popup__title{
  margin-top:15px;
}
.popup__field{
  position:relative;margin-bottom:16px;
}
.popup__input{
  width:100%;padding:16px 20px;
  border-radius:60px;border:1px solid var(--glass-border);
  background:rgba(255,255,255,.04);
  color:var(--white);font-family:inherit;font-size:.95rem;
  outline:none;transition:border-color .25s ease;
}
.popup__input::placeholder{color:var(--dim)}
.popup__input:focus{
  border-color:var(--blue);
}
.popup__checkbox{
  display:flex;align-items:flex-start;gap:10px;
  margin-bottom:24px;cursor:pointer;
  font-size:.8rem;line-height:1.45;color:var(--gray);
}
.popup__checkbox input{
  position:absolute;opacity:0;width:0;height:0;
}
.popup__check-mark{
  flex-shrink:0;width:18px;height:18px;margin-top:1px;
  border-radius:5px;border:1px solid var(--glass-border);
  background:rgba(255,255,255,.04);
  display:flex;align-items:center;justify-content:center;
  transition:all .2s ease;
}
.popup__checkbox input:checked+.popup__check-mark{
  background:var(--blue);border-color:var(--blue);
}
.popup__checkbox input:checked+.popup__check-mark::after{
  content:'';display:block;width:5px;height:9px;
  border:solid var(--white);border-width:0 2px 2px 0;
  transform:rotate(45deg) translateY(-1px);
}
.popup__check-text a{
  color:var(--blue);text-decoration:underline;
  text-underline-offset:2px;
}
.popup__check-text a:hover{color:var(--white)}
.popup__form-actions{
  display:flex;justify-content:center;
}
.popup__submit:disabled{opacity:.6;cursor:not-allowed}
.popup__success{
  display:none;text-align:center;
  color:var(--yellow);font-size:.95rem;
  margin-top:16px;
}
.popup__success.is-visible{display:block}

@media(max-width:480px){
  .popup{padding:36px 24px 28px}
  .popup__title{font-size:1.35rem}
}

/* ===== NEWS PAGE ===== */
.news-page{
  padding:160px 0 100px;
  min-height:100vh;
}
.news-page__header{
  text-align:left;
  margin-bottom:60px;
}
.news-page__header h1{
  margin-top:0;
}
.news-page__sub{
  color:var(--gray);
  font-size:clamp(1rem,1.4vw,1.15rem);
  margin-top:14px;
  line-height:1.5;
}
.news-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.news-card{
  display:flex;flex-direction:column;
  background:var(--glass);
  border:1px solid var(--glass-border);
  border-radius:var(--radius);
  overflow:hidden;
  transition:all .35s cubic-bezier(.4,0,.2,1);
}
.news-card:hover{
  border-color:rgba(32,52,204,.5);
  background:var(--glass-hover);
  transform:translateY(-4px);
}
.news-card__img{
  width:100%;aspect-ratio:16/9;overflow:hidden;
}
.news-card__img img{
  width:100%;height:100%;object-fit:cover;
  transition:transform .4s ease;
}
.news-card:hover .news-card__img img{
  transform:scale(1.04);
}
.news-card__body{
  padding:24px;display:flex;flex-direction:column;flex:1;
  position:relative;
}
.news-card__title{
  font-size:1.15rem;font-weight:700;
  color:var(--white);line-height:1.25;
  letter-spacing:-0.02em;
  margin-bottom:10px;
}
.news-card__desc{
  color:var(--gray);font-size:.88rem;
  line-height:1.5;margin-bottom:16px;
  flex:1;
  display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;
  padding-bottom:16px;
  border-bottom:1px solid var(--glass-border);
}
.news-card__meta{
  display:flex;align-items:center;gap:8px;
  font-size:.78rem;color:var(--dim);
}
.news-card__arrow{
  position:absolute;bottom:8px;right:8px;
  border-color:rgba(36,53,108,.55);
  transition:border-color .35s ease;
}
.news-card:hover .news-card__arrow{
  border-color:rgba(32,52,204,.5);
}
.news-card__dot{
  width:3px;height:3px;border-radius:50%;background:var(--dim);
}
.news-card__author{
  margin-top:10px;font-size:.78rem;color:var(--gray);
  display:flex;align-items:center;gap:8px;
}
.news-card__avatar{
  width:24px;height:24px;border-radius:50%;object-fit:cover;
}

@media(max-width:900px){
  .news-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:580px){
  .news-page{padding:130px 0 60px}
  .news-grid{grid-template-columns:1fr}
}

/* ===== ARTICLE PAGE ===== */
.article-page{
  padding:140px 0 80px;
}
.article-page .wrap{
  max-width:var(--max-w);
}
.article-page__header{
  margin-bottom:32px;
}
.article-page__header h1{
  font-size:clamp(2rem,4.5vw,3rem);
  line-height:1.08;letter-spacing:-0.03em;
  margin-bottom:16px;
}
.article-page__desc{
  font-size:clamp(1rem,1.4vw,1.2rem);
  color:var(--gray);line-height:1.5;
  margin-bottom:20px;
}
.article-page__meta{
  display:inline-flex;align-items:center;gap:10px;flex-wrap:wrap;
  font-size:.85rem;color:var(--dim);
  padding:8px 24px 8px 8px;
  background:rgba(6,14,40,.4);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border:1px solid rgba(139,157,195,.15);
  border-radius:60px;
}
.article-page__author{
  color:var(--gray);font-weight:600;
}
.article-page__date-wrap{
  display:inline-flex;align-items:center;gap:10px;
}
.article-page__read{
  color:var(--blue);
}
.article-page__avatar{
  width:36px;height:36px;border-radius:50%;object-fit:cover;
}
.article-page__dot{
  width:3px;height:3px;border-radius:50%;background:var(--dim);
}
.article-page__hero{
  margin-bottom:40px;border-radius:var(--radius);overflow:hidden;
}
.article-page__hero img{
  width:100%;display:block;
}
.article-page__body{
  font-size:1.05rem;line-height:1.75;color:var(--gray);
}
.article-page__body h1,
.article-page__body h2,
.article-page__body h3,
.article-page__body h4{
  color:var(--white);margin:2em 0 .6em;
}
.article-page__body h2{font-size:1.5rem}
.article-page__body h3{font-size:1.25rem}
.article-page__body p{margin-bottom:1.2em}
.article-page__body a{
  color:var(--blue);text-decoration:underline;
  text-underline-offset:2px;
}
.article-page__body a:hover{color:var(--white)}
.article-page__body ul,
.article-page__body ol{
  margin-bottom:1.2em;padding-left:1.5em;
}
.article-page__body li{margin-bottom:.4em}
.article-page__body ul{list-style:disc}
.article-page__body ol{list-style:decimal}
.article-page__body blockquote{
  border-left:3px solid var(--blue);
  padding:12px 20px;margin:1.5em 0;
  color:var(--white);font-style:italic;
  background:rgba(32,52,204,.06);
  border-radius:0 12px 12px 0;
}
.article-page__body img{
  max-width:100%;height:auto;border-radius:16px;
  margin:1.5em 0;
}
.article-page__body hr{
  border:none;height:1px;background:var(--glass-border);margin:2em 0;
}
.article-page__body figure{margin:1.5em 0}
.article-page__body figcaption{
  font-size:.82rem;color:var(--dim);text-align:center;margin-top:8px;
}
.article-page__divider{
  height:1px;background:var(--glass-border);
  margin:48px 0;
}
.article-page__cta h3{
  font-size:1.35rem;margin-bottom:16px;
}
.article-page__cta p{
  color:var(--gray);font-size:.95rem;line-height:1.6;margin-bottom:12px;
}
.article-page__cta p:last-child{margin-bottom:0}
.article-page__source{
  font-size:.85rem;color:var(--dim);margin-top:-15px;
}
.article-page__source a{
  color:var(--blue);text-decoration:underline;text-underline-offset:2px;
}
.article-page__source a:hover{color:var(--white)}
.article-page__related{
  margin-top:80px;
}
.article-page__related .news-card{
  text-decoration:none;
  color:inherit;
  border:1px solid var(--glass-border);
}
.article-page__related .news-card:hover{
  border-color:rgba(32,52,204,.5);
  background:var(--glass-hover);
  transform:translateY(-4px);
}
.article-page__related .news-card *{
  text-decoration:none;
}
.article-page__related .news-card__img img{
  border-radius:0;margin:0;max-width:100%;width:100%;height:100%;object-fit:cover;
}
.article-page__related .news-card__title{
  color:var(--white);
}
.article-page__related .news-card__desc{
  color:var(--gray);
}
.article-page__related h2{
  font-size:1.6rem;margin-bottom:32px;
}
.article-page__related .news-grid{
  grid-template-columns:repeat(3,1fr);
}

@media(max-width:900px){
  .article-page__related .news-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:580px){
  .article-page{padding:120px 0 60px}
  .article-page__date-wrap{flex-direction:column;align-items:flex-start;gap:2px}
  .article-page__dot--read{display:none}
  .article-page__related .news-grid{grid-template-columns:1fr}
}

/* ===== ABOUT PAGE ===== */

/* Hero */
.about-hero{
  position:relative;
  padding:180px 0 100px;
  background:linear-gradient(180deg,#030A23 0%,#060F2F 100%);
  overflow:hidden;
}
.about-hero__orb{
  position:absolute;
  width:600px;height:600px;
  top:50%;left:50%;
  transform:translate(-50%,-55%);
  border-radius:50%;
  background:radial-gradient(circle,rgba(32,52,204,.35) 0%,rgba(2,51,153,.12) 40%,transparent 70%);
  filter:blur(80px);
  pointer-events:none;
}
.about-hero__inner{
  position:relative;z-index:2;
}
.about-hero__inner h1{
  margin-bottom:24px;
  max-width:70%;
}
.about-hero__desc{
  font-size:clamp(1rem,1.4vw,1.15rem);
  color:var(--gray);
  line-height:1.75;
  font-weight:300;
  max-width:70%;
}

/* Infographic */
.about-infographic{
  position:absolute;
  right:0;top:50%;
  transform:translateY(calc(-50% + 50px));
  width:50vw;
  height:500px;
  display:flex;
  align-items:center;
  justify-content:center;
  pointer-events:none;
}
.about-infographic__sphere{
  position:absolute;
  top:50%;left:50%;
  transform:translate(-50%,-50%);
  width:180px;height:180px;
  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:about-sphere-pulse 6s ease-in-out infinite;
  z-index:1;
}
@keyframes about-sphere-pulse{
  0%,100%{transform:translate(-50%,-50%) scale(1)}
  50%{transform:translate(-50%,-50%) scale(0.92)}
}
.about-infographic__blur{
  position:absolute;
  top:0;left:0;
  width:50%;height:100%;
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  z-index:2;
}
.about-infographic__ring{
  position:absolute;
  border-radius:50%;
  z-index:3;
}
.about-infographic__ring--outer{
  width:500px;height:500px;
  border:1px solid rgba(32,52,204,.35);
}
.about-infographic__ring--mid{
  width:340px;height:340px;
  border:1px solid rgba(32,52,204,.5);
}

/* Orbiting dots */
.about-infographic__orbit{
  position:absolute;
  border-radius:50%;
  z-index:3;
}
.about-infographic__orbit--outer{
  width:500px;height:500px;
  animation:orbit-cw 20s linear infinite;
}
.about-infographic__orbit--mid{
  width:340px;height:340px;
  animation:orbit-ccw 16s linear infinite;
}
.about-infographic__dot{
  position:absolute;
  width:5px;height:5px;
  border-radius:50%;
  background:#2034CC;
  top:50%;left:50%;
  margin:-2.5px 0 0 -2.5px;
}
.about-infographic__orbit--outer .about-infographic__dot{
  transform:rotate(var(--angle)) translateY(-250px);
}
.about-infographic__orbit--mid .about-infographic__dot{
  transform:rotate(var(--angle)) translateY(-170px);
}
@keyframes orbit-cw{
  from{transform:rotate(0deg)}
  to{transform:rotate(360deg)}
}
@keyframes orbit-ccw{
  from{transform:rotate(0deg)}
  to{transform:rotate(-360deg)}
}
.about-infographic__ring--center{
  width:180px;height:180px;
  background:rgba(0,19,190,.4);
  border:1px solid rgba(32,52,204,.4);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}
.about-infographic__title{
  position:absolute;
  z-index:3;
  text-align:center;
  font-family:'Atkinson Hyperlegible Next',system-ui,sans-serif;
  font-size:1.3rem;
  font-weight:700;
  color:#fff;
  line-height:1.1;
  letter-spacing:-0.02em;
}
.about-infographic__title .accent{
  color:var(--yellow);
}
.about-infographic__stat{
  position:absolute;
  text-align:left;
  pointer-events:auto;
  z-index:3;
}
.about-infographic__stat strong{
  display:block;
  font-family:'Unbounded',sans-serif;
  font-size:1.8rem;
  font-weight:500;
  color:#2034CC;
  line-height:1;
  letter-spacing:-0.03em;
  margin-bottom:4px;
}
.about-infographic__stat span{
  display:block;
  max-width:100px;
  font-size:.72rem;
  color:var(--gray);
  line-height:1.1;
  font-weight:400;
}
.about-infographic__stat--1{
  top:15%;right:60%;
}
.about-infographic__stat--2{
  bottom:10%;right:calc(55% - 30px);
}
.about-infographic__stat--3{
  top:30%;left:calc(60% + 40px);
}

/* Story */
.about-story{
  padding:100px 0;
  background:linear-gradient(180deg,#060F2F 0%,#030A23 100%);
  position:relative;z-index:2;
}
.about-story__content .sect__label{
  margin-bottom:15px;
}
.about-story__content h2{
  margin-bottom:24px;
  max-width:70%;
}
.about-story__content > p{
  font-size:clamp(1rem,1.4vw,1.15rem);
  color:var(--gray);
  line-height:1.75;
  font-weight:300;
  margin-bottom:12px;
  max-width:70%;
}
.about-story .bene-grid{
  margin-top:40px;
}
.about-story .bene__icon svg{width:20px;height:20px}

/* Team */
.about-team{
  padding:100px 0;
  background:linear-gradient(180deg,#030A23 0%,#060F2F 100%);
  position:relative;z-index:2;
  overflow:hidden;
}
.about-team__header{
  margin-bottom:64px;
}
.about-team__header h2{
  margin-bottom:24px;
  max-width:70%;
}
.about-team__sub{
  font-size:clamp(1rem,1.4vw,1.15rem);
  color:var(--gray);
  line-height:1.75;
  font-weight:300;
  max-width:70%;
}
.about-team__grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:60px;
}
.about-team__item{
  display:flex;
  flex-direction:column;
}
.about-team__badge{
  position:relative;
  border-radius:20px;
}
.about-team__back{
  position:absolute;
  inset:0;
  z-index:-1;
  border-radius:20px;
  background:linear-gradient(180deg,#0166FF 0%,#2034CC 100%);
  transition:transform .45s cubic-bezier(.4,0,.2,1);
  overflow:hidden;
  box-shadow:0 4px 24px rgba(0,0,0,.15);
}
.about-team__badge:hover .about-team__back{
  transform:translateX(-30px) rotate(10deg);
  transform-origin:center center;
}
.about-team__back-logo{
  position:absolute;
  bottom:20px;left:50px;
  width:auto;height:40px;
  transform:rotate(-90deg);
  transform-origin:left bottom;
  opacity:1;
  filter:brightness(0) invert(1);
}
.about-team__photo{
  position:relative;
  z-index:1;
  overflow:hidden;
  border-radius:20px 20px 0 0;
  box-shadow:0 4px 24px rgba(0,0,0,.12);
}
.about-team__photo img{
  width:100%;
  display:block;
}
.about-team__info{
  position:relative;
  margin-top:-46px;
  z-index:2;
}
.about-team__info-tab{
  display:block;
  width:100%;
  height:auto;
}
.about-team__info-content{
  background:#CFD5EC;
  border-radius:0 0 20px 20px;
  padding:0 10px 20px 20px;
  position:relative;
  display:flex;
  flex-direction:column;
  min-height:140px;
}
.about-team__position{
  font-size:.75rem;
  font-weight:600;
  color:#2034CC;
  margin-bottom:6px;
}
.about-team__name{
  font-size:1.4rem;
  font-weight:700;
  color:#15224A;
  margin-bottom:0;
  line-height:1;
  letter-spacing:-0.02em;
}
.about-team__bottom{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  flex:1;
}
.about-team__field{
  font-size:.82rem;
  font-weight:600;
  color:#15224A;
}
.about-team__linkedin{
  position:absolute;
  bottom:10px;right:10px;
  width:38px;height:38px;
  border-radius:12px;
  background:transparent;
  border:1px solid #2034CC;
  display:flex;align-items:center;justify-content:center;
  transition:all .2s;
}
.about-team__linkedin:hover{
  background:#2034CC;
  border-color:#2034CC;
}
.about-team__linkedin svg{
  width:16px;height:16px;
  fill:#2034CC;
  transition:fill .2s;
}
.about-team__linkedin:hover svg{fill:#fff}
.about-team__bio{
  font-size:.88rem;
  color:var(--gray);
  line-height:1.6;
  margin-top:26px;
}
.about-team__wider{
  font-size:clamp(1rem,1.4vw,1.15rem);
  color:var(--gray);
  line-height:1.75;
  font-weight:300;
  max-width:70%;
  margin-top:56px;
}

/* CTA */
.about-cta{
  padding:100px 0;
  background:linear-gradient(180deg,#060F2F 0%,#030A23 100%);
  position:relative;z-index:2;
}
.about-cta__inner{
  position:relative;
  padding:80px 40px;
  border-radius:var(--radius);
  background:linear-gradient(180deg,#2034CC 0%,#0D1FA6 100%);
  border:1px solid rgba(32,52,204,.2);
  overflow:visible;
}
.about-cta__orb{
  position:absolute;
  width:500px;height:500px;
  top:50%;left:50%;
  transform:translate(-50%,-50%);
  border-radius:50%;
  background:radial-gradient(circle,rgba(32,52,204,.25) 0%,transparent 70%);
  filter:blur(60px);
  pointer-events:none;
}
.about-cta__inner h2{
  margin-bottom:16px;
}
.about-cta__inner p{
  font-size:clamp(1rem,1.4vw,1.15rem);
  color:var(--gray);
  line-height:1.75;
  font-weight:300;
  margin-bottom:36px;
}
.about-cta__content{
  position:relative;z-index:2;
  display:grid;
  grid-template-columns:7fr 3fr;
  gap:20px;
  align-items:center;
}
.about-cta__col-text{
  min-width:0;
}
.about-cta__col-chart{
  min-width:0;
}
.about-cta__chart-frame{
  width:100%;
  aspect-ratio:1;
  border:1px solid rgba(139,157,195,.5);
  border-radius:20px;
  padding:20px 30px 30px;
  overflow:visible;
  display:flex;
  flex-direction:column;
  position:relative;
}
.about-cta__chart-title{
  color:#fff;
  font-size:0.85rem;
  font-weight:500;
  line-height:1;
  margin-bottom:auto;
}
.about-cta__chart{
  display:block;
  width:100%;
  height:auto;
  overflow:visible;
  margin:auto 0 -10px;
}
.about-cta__actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

/* About responsive */
@media(max-width:900px){
  .about-story__grid{
    grid-template-columns:1fr;
    gap:32px;
  }
  .about-team__grid{
    grid-template-columns:repeat(2,1fr);
  }
  .about-team__header h2{max-width:100%}
}
@media(max-width:768px){
  .bene.is-touched{border-color:rgba(32,52,204,.5)}
  .bene.is-touched .bene__arrow{background:#2034CC;border-color:#2034CC}
  .custom-api__usecase.is-touched{border-color:rgba(32,52,204,.5)}
  .custom-api__usecase.is-touched .custom-api__usecase-arrow{background:#2034CC;border-color:#2034CC}
  .about-story__content h2,
  .about-story__content > p,
  .about-team__header h2,
  .about-team__sub,
  .about-team__wider,
  .about-cta__inner h2,
  .about-cta__inner p{max-width:100%}
  .about-team__info{margin-top:-48px}
  .about-team__back{transform:translateX(0) rotate(0);transition:transform .45s cubic-bezier(.4,0,.2,1)}
  .about-team__badge.is-touched .about-team__back{transform:translateX(-30px) rotate(10deg)}
  .about-cta{padding:80px 0}
  .about-cta__inner{padding:50px 28px}
  .about-cta__content{grid-template-columns:6fr 4fr;gap:24px}
}
@media(max-width:580px){
  .about-hero{padding:140px 0 70px}
  .about-story{padding:70px 0}
  .about-story .bene-grid{grid-template-columns:1fr}
  .about-team{padding:70px 0}
  .about-team__grid{grid-template-columns:1fr}
  .about-team__badge{max-width:65%;margin:0 auto}
  .about-team__back{transform:translateX(0) rotate(0);transition:transform .45s cubic-bezier(.4,0,.2,1)}
  .about-team__badge.is-touched .about-team__back{transform:translateX(-30px) rotate(10deg)}
  .about-team__info-tab{margin-bottom:-1px}
  .about-cta{padding:70px 0 80px}
  .about-cta__inner{padding:50px 24px}
  .about-cta__content{display:flex;flex-direction:column;gap:30px}
  .about-cta__col-text,.about-cta__col-chart{width:100%}
  .about-cta__col-chart{order:-1;max-width:100%}
  .about-cta__col-text{text-align:center}
  .about-cta__actions{justify-content:center;flex-wrap:nowrap}
}

/* ===== CUSTOM & API PAGE ===== */
body.page-custom{background:#060F2F}
.flow-hub__glow{animation:hubPulse 2s ease-in-out infinite}
@keyframes hubPulse{0%,100%{opacity:.6}50%{opacity:1}}
.custom-hero{
  position:relative;
  padding:180px 0 100px;
  background:linear-gradient(to top left,#3290F6 0%,#2034CC 55%);
  overflow:hidden;
  border-radius:0 0 34px 34px;
}
.custom-hero__visual{
  position:absolute;
  bottom:0;right:0;
  height:100%;
  aspect-ratio:8/9;
  pointer-events:none;
  z-index:1;
  animation:customHeroSlideIn 1s ease-out both;
}
.custom-hero__hand{
  display:block;
  width:100%;height:100%;
  object-fit:cover;
  object-position:center bottom;
}
@keyframes customHeroSlideIn{
  from{opacity:0;transform:translateX(80px)}
  to{opacity:1;transform:translateX(0)}
}
@keyframes customGlowPulse{
  from{opacity:.7;transform:scale(1)}
  to{opacity:1;transform:scale(1.15)}
}
.custom-hero__orb{
  position:absolute;
  width:600px;height:600px;
  top:50%;left:50%;
  transform:translate(-50%,-55%);
  border-radius:50%;
  background:radial-gradient(circle,rgba(32,52,204,.35) 0%,rgba(2,51,153,.12) 40%,transparent 70%);
  filter:blur(80px);
  pointer-events:none;
}
.custom-hero__loupe{
  position:absolute;
  width:36%;
  aspect-ratio:1;
  bottom:42%;right:39%;
  z-index:2;
  pointer-events:none;
  border-radius:14px;
  overflow:hidden;
  transform:rotate(-16deg);
}
.custom-hero__loupe-canvas{
  width:100%;height:100%;
  position:absolute;inset:0;
}
.custom-hero__inner{
  position:relative;z-index:3;
}
.custom-hero__inner h1{
  margin-bottom:24px;
  max-width:70%;
}
.custom-hero__desc{
  font-size:clamp(1rem,1.4vw,1.15rem);
  color:#fff;
  line-height:1.75;
  font-weight:300;
  max-width:70%;
  margin-bottom:32px;
}
.custom-hero__actions{
  display:flex;gap:16px;flex-wrap:wrap;
}

/* Features */
.custom-features{
  padding:100px 0;
  background:linear-gradient(180deg,#060F2F 0%,#030A23 100%);
  position:relative;z-index:2;
}
.custom-features__content .sect__label{
  margin-bottom:15px;
}
.custom-features__content h2{
  margin-bottom:24px;
  max-width:70%;
}
.custom-features .bene__icon svg{width:20px;height:20px}

/* API */
.custom-api{
  padding:100px 0;
  background:linear-gradient(180deg,#030A23 0%,#060F2F 100%);
  position:relative;z-index:2;
}
.custom-api__content .sect__label{
  margin-bottom:15px;
}
.custom-api__content h2{
  margin-bottom:24px;
  max-width:70%;
}
.custom-api__content > p{
  font-size:clamp(1rem,1.4vw,1.15rem);
  color:var(--gray);
  line-height:1.75;
  font-weight:300;
  margin-bottom:12px;
  max-width:70%;
}
.custom-api .bene__icon svg{width:20px;height:20px}

/* Custom page responsive */
@media(max-width:1024px){
  .custom-hero__visual{height:100%}
}
@media(max-width:768px){
  .custom-hero{
    padding:140px 0 70px;
    min-height:100svh;
    margin:0 5px;
  }
  .custom-hero__visual{
    height:auto;
    width:100%;
    aspect-ratio:8/9;
  }
  .custom-hero__inner{
    display:flex;
    flex-direction:column;
    min-height:calc(100svh - 210px);
    align-items:flex-start;
  }
  .custom-hero__actions{margin-top:auto}
  .custom-hero__inner h1{max-width:100%}
  .custom-hero__desc{max-width:100%}
  .custom-features{padding:70px 0}
  .custom-features__content h2{max-width:100%}
  .custom-features .bene-grid{grid-template-columns:1fr}
  .custom-api{padding:70px 0}
  .custom-api__content h2{max-width:100%}
  .custom-api__content > p{max-width:100%}
  .custom-api .bene-grid{grid-template-columns:1fr}
}
