/* src/styles.css */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    "Inter",
    system-ui,
    sans-serif;
  background: #06172b;
  color: #e2e8f0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
:root {
  --red:#1d4ed8;
  --red-lt:rgba(29,78,216,.12);
  --red-md:rgba(29,78,216,.25);
  --navy:#06172b;
  --navy2:#0c1f35;
  --navy3:#071423;
  --white:#fff;
  --muted:rgba(255,255,255,.55);
  --dim:rgba(255,255,255,.25);
  --bd:rgba(255,255,255,.08);
  --bd2:rgba(255,255,255,.12);
  --r:8px;
  --r2:12px;
  --r3:20px;
}
.rv {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.rv.up {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: .06s !important;
}
.d2 {
  transition-delay: .12s !important;
}
.d3 {
  transition-delay: .18s !important;
}
.d4 {
  transition-delay: .24s !important;
}
.d5 {
  transition-delay: .30s !important;
}
.d6 {
  transition-delay: .36s !important;
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(6, 23, 43, .92);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bd);
}
.nav-in {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 5%;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}
.nav-ico {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-ico svg {
  width: 19px;
  height: 19px;
}
.nav-brand {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
}
.nav-links {
  display: flex;
  gap: 1.6rem;
  list-style: none;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: .84rem;
  font-weight: 500;
  color: var(--muted);
  transition: color .15s;
}
.nav-links a:hover {
  color: #fff;
}
.nav-end {
  display: flex;
  align-items: center;
  gap: .7rem;
  flex-shrink: 0;
}
.nav-login {
  font-size: .83rem;
  font-weight: 600;
  color: var(--muted);
  transition: color .15s;
}
.nav-login:hover {
  color: #fff;
}
.nav-cta {
  background: var(--red);
  color: #fff;
  padding: .48rem 1.1rem;
  border-radius: 6px;
  font-size: .82rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background .15s;
}
.nav-cta:hover {
  background: #1e40af;
}
.hero {
  background: var(--navy);
  padding: 120px 5% 90px;
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse at 70% 40%,
      rgba(29, 78, 216, .08) 0%,
      transparent 60%);
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, .025) 1px,
      transparent 1px);
  background-size: 80px 80px;
}
.hero-wrap {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;
  position: relative;
  z-index: 1;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--bd2);
  border-radius: 50px;
  padding: .3rem .9rem;
  font-size: .72rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 1.6rem;
}
.hero-tag-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
}
.hero-h1 {
  font-size: clamp(2.6rem, 4.8vw, 4.2rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.04em;
  color: #fff;
  margin-bottom: 1.3rem;
}
.hero-h1 .accent {
  color: var(--red);
}
.hero-sub {
  font-size: 1.02rem;
  color: var(--muted);
  line-height: 1.78;
  max-width: 460px;
  margin-bottom: 2.2rem;
}
.hero-btns {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.btn-red {
  background: var(--red);
  color: #fff;
  padding: .78rem 1.8rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: .9rem;
  border: none;
  cursor: pointer;
  transition: background .15s, transform .13s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.btn-red:hover {
  background: #1e40af;
  transform: translateY(-1px);
}
.btn-ghost-white {
  background: transparent;
  color: #fff;
  padding: .78rem 1.8rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: .9rem;
  border: 1px solid var(--bd2);
  cursor: pointer;
  transition: border-color .15s, background .15s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.btn-ghost-white:hover {
  border-color: rgba(255, 255, 255, .4);
  background: rgba(255, 255, 255, .05);
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.trust-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  color: var(--dim);
}
.trust-pill::before {
  content: "\2713";
  color: var(--red);
  font-weight: 700;
  font-size: .82rem;
}
.hero-panel {
  position: relative;
}
.hpanel {
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--bd2);
  border-radius: 16px;
  padding: 1.4rem;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.hp-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 1.1rem;
}
.hp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.hd1 {
  background: #ff5f57;
}
.hd2 {
  background: #febc2e;
}
.hd3 {
  background: #28c840;
}
.hp-title {
  font-size: .7rem;
  color: var(--dim);
  margin-left: 5px;
}
.hp-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-bottom: .9rem;
}
.hp-kpi {
  background: rgba(255, 255, 255, .05);
  border-radius: 8px;
  padding: .75rem .5rem;
  text-align: center;
  border: 1px solid var(--bd);
}
.hp-kpi-n {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.04em;
}
.hp-kpi-l {
  font-size: .58rem;
  color: var(--dim);
  margin-top: 1px;
}
.hp-rows {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: .9rem;
}
.hp-row {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: .52rem .75rem;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, .04);
  background: rgba(255, 255, 255, .03);
}
.hp-ric {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .74rem;
  flex-shrink: 0;
}
.hric1 {
  background: rgba(16, 185, 129, .18);
}
.hric2 {
  background: rgba(29, 78, 216, .15);
}
.hric3 {
  background: rgba(14, 165, 233, .18);
}
.hp-rt {
  font-size: .72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .8);
  flex: 1;
}
.hp-badge {
  font-size: .58rem;
  font-weight: 700;
  padding: .1rem .38rem;
  border-radius: 4px;
}
.hbg {
  background: rgba(16, 185, 129, .2);
  color: #34d399;
}
.hbr {
  background: rgba(29, 78, 216, .2);
  color: #93c5fd;
}
.hbb {
  background: rgba(14, 165, 233, .2);
  color: #7dd3fc;
}
.hp-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}
.hp-mini {
  border-radius: 9px;
  padding: .85rem;
}
.hpm1 {
  background:
    linear-gradient(
      135deg,
      rgba(29, 78, 216, .2),
      rgba(29, 78, 216, .05));
  border: 1px solid rgba(29, 78, 216, .2);
}
.hpm2 {
  background:
    linear-gradient(
      135deg,
      rgba(14, 165, 233, .15),
      rgba(14, 165, 233, .04));
  border: 1px solid rgba(14, 165, 233, .18);
}
.hp-ml {
  font-size: .58rem;
  color: var(--dim);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .2rem;
}
.hp-mn {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.04em;
}
.hfloat {
  position: absolute;
  background: rgba(6, 23, 43, .95);
  border: 1px solid var(--bd2);
  border-radius: 10px;
  padding: .6rem .9rem;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  gap: 7px;
}
.hf1 {
  top: -16px;
  right: -12px;
  animation: flt 4s ease-in-out infinite;
}
.hf2 {
  bottom: -14px;
  left: -12px;
  animation: flt2 4.5s ease-in-out 1.5s infinite;
}
@keyframes flt {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes flt2 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7px);
  }
}
.hf-ico {
  font-size: .9rem;
}
.hf-tt {
  font-size: .7rem;
  font-weight: 700;
  color: #fff;
}
.hf-ts {
  font-size: .6rem;
  color: var(--dim);
}
.hf-live {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(52, 211, 153, .4);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(52, 211, 153, 0);
  }
}
.bwm-sec {
  background: var(--navy2);
  padding: 90px 5%;
}
.bwm-in {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;
}
.bwm-visual {
  border-radius: 16px;
  overflow: hidden;
  background:
    linear-gradient(
      135deg,
      #0c1f35,
      #071e38);
  border: 1px solid var(--bd);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.bwm-dash {
  padding: 1.6rem;
  width: 100%;
}
.bwm-d-label {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 1rem;
}
.bwm-d-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem;
  padding: .7rem .85rem;
  background: rgba(255, 255, 255, .04);
  border-radius: 8px;
  border: 1px solid var(--bd);
}
.bwm-d-num {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.04em;
  width: 48px;
}
.bwm-d-bar {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, .08);
  border-radius: 4px;
  overflow: hidden;
}
.bwm-d-fill {
  height: 100%;
  border-radius: 4px;
}
.bf1 {
  width: 92%;
  background: var(--red);
}
.bf2 {
  width: 76%;
  background: #0ea5e9;
}
.bf3 {
  width: 88%;
  background: #10b981;
}
.bf4 {
  width: 65%;
  background: #f59e0b;
}
.bwm-d-label2 {
  font-size: .7rem;
  color: var(--muted);
  width: 90px;
  text-align: right;
}
.bwm-txt .kicker,
.kicker {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .8rem;
  display: block;
}
.bwm-h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.04em;
  color: #fff;
  margin-bottom: .9rem;
}
.bwm-desc {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.78;
  margin-bottom: 1.8rem;
  max-width: 440px;
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .88rem;
  font-weight: 700;
  color: var(--red);
  transition: gap .15s;
}
.link-arrow:hover {
  gap: 9px;
}
.toolbox-sec {
  background: #f7f8fa;
  padding: 90px 5%;
}
.toolbox-in {
  max-width: 1240px;
  margin: 0 auto;
}
.tb-head {
  margin-bottom: 3rem;
}
.tb-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: #0d1117;
  margin-bottom: .5rem;
}
.tb-head p {
  font-size: .95rem;
  color: #6b7280;
  max-width: 500px;
}
.tb-see {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--red);
  margin-top: .8rem;
  transition: gap .15s;
}
.tb-see:hover {
  gap: 9px;
}
.tb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.tb-feat {
  grid-column: span 3;
}
.prod-card {
  background: #fff;
  border: 1px solid #e8edf2;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow .22s, transform .22s;
  cursor: default;
}
.prod-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, .1);
  transform: translateY(-3px);
}
.prod-img {
  height: 170px;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  position: relative;
  overflow: hidden;
}
.pi1 {
  background:
    linear-gradient(
      135deg,
      #0f172a 0%,
      #1e3a8a 100%);
}
.pi2 {
  background:
    linear-gradient(
      135deg,
      #0c4a6e 0%,
      #075985 100%);
}
.pi3 {
  background:
    linear-gradient(
      135deg,
      #1e1b4b 0%,
      #312e81 100%);
}
.pi4 {
  background:
    linear-gradient(
      135deg,
      #052e16 0%,
      #14532d 100%);
}
.pi5 {
  background:
    linear-gradient(
      135deg,
      #450a0a 0%,
      #7f1d1d 100%);
}
.pi6 {
  background:
    linear-gradient(
      135deg,
      #431407 0%,
      #7c2d12 100%);
}
.prod-img-ico {
  font-size: 3.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  opacity: .8;
}
.prod-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(29, 78, 216, .9);
  color: #fff;
  font-size: .62rem;
  font-weight: 700;
  padding: .2rem .5rem;
  border-radius: 4px;
  letter-spacing: .04em;
  position: relative;
  z-index: 1;
}
.prod-body {
  padding: 1.1rem 1.2rem 1.3rem;
}
.prod-body h3 {
  font-size: .95rem;
  font-weight: 700;
  color: #0d1117;
  margin-bottom: .3rem;
  letter-spacing: -.01em;
}
.prod-body p {
  font-size: .78rem;
  color: #6b7280;
  line-height: 1.55;
}
.tb-feat .prod-img {
  height: 240px;
}
.tb-feat .prod-img-ico {
  font-size: 5rem;
}
.tb-feat .prod-body h3 {
  font-size: 1.1rem;
}
.tb-feat .prod-body p {
  font-size: .85rem;
}
.builder-sec {
  background: var(--navy);
  padding: 90px 5%;
}
.builder-in {
  max-width: 1240px;
  margin: 0 auto;
}
.builder-in .kicker {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .8rem;
  display: block;
}
.builder-h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: #fff;
  margin-bottom: 2.5rem;
}
.b-tabs {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--bd);
  padding-bottom: 0;
}
.b-tab {
  padding: .65rem 1.3rem;
  font-size: .84rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  border: none;
  background: transparent;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color .15s, border-color .15s;
  font-family: "Inter", sans-serif;
}
.b-tab.on {
  color: #fff;
  border-bottom-color: var(--red);
}
.b-tab:hover:not(.on) {
  color: rgba(255, 255, 255, .7);
}
.b-panel {
  display: none;
}
.b-panel.on {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.b-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .7rem;
  letter-spacing: -.02em;
}
.b-content p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.b-actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}
.b-visual {
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--bd);
  border-radius: 12px;
  overflow: hidden;
}
.b-vis-hdr {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: .8rem 1rem;
  border-bottom: 1px solid var(--bd);
}
.b-vis-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.bvd1 {
  background: #ff5f57;
}
.bvd2 {
  background: #febc2e;
}
.bvd3 {
  background: #28c840;
}
.b-vis-title {
  font-size: .68rem;
  color: var(--dim);
  margin-left: 4px;
}
.b-vis-body {
  padding: 1.2rem;
}
.b-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 1rem;
}
.bsg {
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--bd);
  border-radius: 8px;
  padding: .9rem .6rem;
  text-align: center;
}
.bsg-n {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.04em;
}
.bsg-l {
  font-size: .6rem;
  color: var(--dim);
  margin-top: 2px;
}
.b-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.b-list-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: .55rem .75rem;
  background: rgba(255, 255, 255, .03);
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, .04);
}
.b-list-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.bld-r {
  background: var(--red);
}
.bld-b {
  background: #0ea5e9;
}
.bld-g {
  background: #10b981;
}
.b-list-txt {
  font-size: .73rem;
  color: rgba(255, 255, 255, .75);
}
.b-list-badge {
  font-size: .58rem;
  font-weight: 700;
  padding: .1rem .35rem;
  border-radius: 4px;
  margin-left: auto;
}
.blb1 {
  background: rgba(16, 185, 129, .2);
  color: #34d399;
}
.blb2 {
  background: rgba(245, 158, 11, .2);
  color: #fbbf24;
}
.blb3 {
  background: rgba(14, 165, 233, .2);
  color: #7dd3fc;
}
.stats-sec {
  background: var(--navy3);
  padding: 90px 5%;
}
.stats-in {
  max-width: 1240px;
  margin: 0 auto;
}
.stats-in .kicker {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .8rem;
  display: block;
}
.stats-h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: #fff;
  margin-bottom: 3rem;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--bd);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 3rem;
}
.stat-col {
  padding: 2.4rem 2rem;
  border-right: 1px solid var(--bd);
  text-align: center;
}
.stat-col:last-child {
  border-right: none;
}
.stat-n {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -.05em;
  line-height: 1;
}
.stat-n sup {
  font-size: 1.5rem;
  vertical-align: super;
}
.stat-l {
  font-size: .82rem;
  color: var(--muted);
  margin-top: .5rem;
  line-height: 1.45;
}
.case-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--bd);
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.case-img {
  background:
    linear-gradient(
      135deg,
      #1a2d4a,
      #0c1f35);
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
}
.case-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      transparent 60%,
      rgba(6, 23, 43, .8));
}
.case-body {
  padding: 2.2rem 2rem;
}
.case-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: .9rem;
}
.case-body blockquote {
  font-size: 1.05rem;
  color: #fff;
  line-height: 1.62;
  font-style: italic;
  margin-bottom: 1.4rem;
  letter-spacing: -.01em;
}
.case-author {
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
}
.case-role {
  font-size: .75rem;
  color: var(--muted);
}
.case-tag {
  display: inline-block;
  background: var(--red-lt);
  color: var(--red);
  font-size: .68rem;
  font-weight: 700;
  padding: .2rem .5rem;
  border-radius: 4px;
  margin-top: .8rem;
}
.feat4-sec {
  background: var(--navy2);
  padding: 90px 5%;
}
.feat4-in {
  max-width: 1240px;
  margin: 0 auto;
}
.feat4-h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: #fff;
  margin-bottom: 3rem;
  max-width: 700px;
}
.feat4-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--bd);
  border: 1px solid var(--bd);
  border-radius: 12px;
  overflow: hidden;
}
.feat4-card {
  background: var(--navy2);
  padding: 2.4rem 2.2rem;
  transition: background .2s;
}
.feat4-card:hover {
  background: rgba(255, 255, 255, .03);
}
.feat4-ico {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  display: block;
}
.feat4-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .5rem;
  letter-spacing: -.02em;
}
.feat4-card p {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.68;
  margin-bottom: 1rem;
}
.feat4-link {
  font-size: .8rem;
  font-weight: 700;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap .15s;
}
.feat4-card:hover .feat4-link {
  gap: 8px;
}
.recog-sec {
  background: var(--navy);
  padding: 90px 5%;
}
.recog-in {
  max-width: 1240px;
  margin: 0 auto;
}
.recog-in .kicker {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .8rem;
  display: block;
}
.recog-h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: #fff;
  margin-bottom: 2.5rem;
  max-width: 680px;
}
.recog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}
.recog-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--bd);
  border-radius: 12px;
  padding: 2rem;
  transition: background .2s, border-color .2s;
}
.recog-card:hover {
  background: rgba(255, 255, 255, .07);
  border-color: var(--bd2);
}
.recog-ico {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}
.recog-card h3 {
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -.04em;
  margin-bottom: .3rem;
}
.recog-card p {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.55;
}
.recog-tag {
  display: inline-block;
  background: var(--red-lt);
  color: var(--red);
  font-size: .68rem;
  font-weight: 700;
  padding: .2rem .5rem;
  border-radius: 4px;
  margin-top: .6rem;
}
.tldr-card {
  background:
    linear-gradient(
      135deg,
      #1a2d4a,
      #0c1f35);
  border: 1px solid var(--bd);
  border-radius: 12px;
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.tldr-txt .tldr-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: .6rem;
  display: block;
}
.tldr-txt h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.03em;
  max-width: 500px;
  line-height: 1.3;
}
.tldr-txt h3 span {
  color: var(--red);
}
.cta-sec {
  background: var(--navy3);
  padding: 90px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 50% 0%,
      rgba(29, 78, 216, .12),
      transparent 60%);
  pointer-events: none;
}
.cta-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .02) 1px, transparent 1px),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, .02) 1px,
      transparent 1px);
  background-size: 64px 64px;
}
.cta-rel {
  position: relative;
  z-index: 1;
}
.cta-rel .kicker {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 1rem;
  display: block;
}
.cta-h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.04em;
  color: #fff;
  max-width: 600px;
  margin: 0 auto 1rem;
}
.cta-h2 span {
  color: var(--red);
}
.cta-desc {
  font-size: .95rem;
  color: var(--muted);
  margin-bottom: 2.2rem;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}
.cta-form {
  display: flex;
  gap: .6rem;
  max-width: 420px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.cta-inp {
  flex: 1;
  min-width: 160px;
  padding: .8rem 1.1rem;
  border-radius: 6px;
  border: 1px solid var(--bd2);
  background: rgba(255, 255, 255, .07);
  color: #fff;
  font-size: .88rem;
  outline: none;
  font-family: "Inter", sans-serif;
}
.cta-inp::placeholder {
  color: rgba(255, 255, 255, .28);
}
.cta-inp:focus {
  border-color: rgba(29, 78, 216, .5);
}
.cta-btn {
  background: var(--red);
  color: #fff;
  padding: .8rem 1.6rem;
  border-radius: 6px;
  border: none;
  font-weight: 700;
  font-size: .88rem;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  transition: background .15s;
  white-space: nowrap;
}
.cta-btn:hover {
  background: #1e40af;
}
footer {
  background: #020d1a;
  border-top: 1px solid var(--bd);
  padding: 4.5rem 5% 2.5rem;
}
.ft-in {
  max-width: 1240px;
  margin: 0 auto;
}
.ft-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.ft-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: .8rem;
}
.ft-brand {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
}
.ft-about {
  font-size: .8rem;
  color: rgba(255, 255, 255, .2);
  line-height: 1.7;
  max-width: 200px;
  margin-bottom: 1rem;
}
.ft-socs {
  display: flex;
  gap: .5rem;
}
.ft-soc {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid var(--bd);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  color: rgba(255, 255, 255, .35);
  transition: background .15s;
}
.ft-soc:hover {
  background: rgba(29, 78, 216, .2);
  color: #93c5fd;
}
.ft-col h5 {
  font-size: .66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .18);
  margin-bottom: .9rem;
}
.ft-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.ft-col ul li a {
  font-size: .8rem;
  color: rgba(255, 255, 255, .25);
  transition: color .15s;
}
.ft-col ul li a:hover {
  color: rgba(255, 255, 255, .65);
}
.ft-nl-sub {
  font-size: .78rem;
  color: rgba(255, 255, 255, .22);
  margin-bottom: .7rem;
  line-height: 1.5;
}
.ft-nl {
  display: flex;
  gap: .4rem;
}
.ft-nl-inp {
  flex: 1;
  padding: .58rem .8rem;
  border-radius: 6px;
  border: 1px solid var(--bd);
  background: rgba(255, 255, 255, .05);
  color: #fff;
  font-size: .77rem;
  outline: none;
  font-family: "Inter", sans-serif;
}
.ft-nl-inp::placeholder {
  color: rgba(255, 255, 255, .2);
}
.ft-nl-btn {
  background: var(--red);
  color: #fff;
  padding: .58rem .9rem;
  border-radius: 6px;
  border: none;
  font-size: .75rem;
  font-weight: 700;
  cursor: pointer;
  font-family: "Inter", sans-serif;
}
.ft-bot {
  border-top: 1px solid var(--bd);
  padding-top: 1.8rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .8rem;
}
.ft-bot p {
  font-size: .74rem;
  color: rgba(255, 255, 255, .14);
}
.policy-hero {
  padding: 140px 5% 60px;
  background: var(--navy);
  position: relative;
  text-align: center;
}
.policy-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 50% 0%,
      rgba(29, 78, 216, .1),
      transparent 60%);
  pointer-events: none;
}
.policy-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: #fff;
  position: relative;
  z-index: 1;
  margin-bottom: .8rem;
}
.policy-hero .updated {
  font-size: .85rem;
  color: var(--muted);
  position: relative;
  z-index: 1;
}
.policy-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 5% 100px;
}
.policy-body h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 2.5rem 0 1rem;
  letter-spacing: -.02em;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--bd);
}
.policy-body h2:first-child {
  margin-top: 0;
}
.policy-body p {
  font-size: .92rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.policy-body ul {
  list-style: none;
  margin: 0 0 1.2rem 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.policy-body ul li {
  font-size: .9rem;
  color: rgba(255, 255, 255, .45);
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.7;
}
.policy-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .6rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}
.policy-body strong {
  color: rgba(255, 255, 255, .7);
  font-weight: 600;
}
.policy-body a {
  color: #60a5fa;
  transition: color .15s;
}
.policy-body a:hover {
  color: #93c5fd;
}
.contact-box {
  background:
    linear-gradient(
      135deg,
      #1a2d4a,
      #0c1f35);
  border: 1px solid var(--bd);
  border-radius: 12px;
  padding: 2rem 2.5rem;
  margin-top: 2.5rem;
}
.contact-box h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .6rem;
}
.contact-box p {
  font-size: .88rem;
  color: rgba(255, 255, 255, .45);
  margin-bottom: .3rem;
}
.nav-back {
  font-size: .84rem;
  font-weight: 500;
  color: var(--muted);
  transition: color .15s;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.nav-back:hover {
  color: #fff;
}
.nav-back svg {
  width: 16px;
  height: 16px;
}
@media (max-width: 1040px) {
  .hero-wrap,
  .bwm-in,
  .b-panel.on {
    grid-template-columns: 1fr;
  }
  .hero-panel,
  .bwm-visual {
    display: none;
  }
  .tb-grid {
    grid-template-columns: 1fr 1fr;
  }
  .tb-feat {
    grid-column: span 2;
  }
  .feat4-grid,
  .recog-grid {
    grid-template-columns: 1fr;
  }
  .case-card {
    grid-template-columns: 1fr;
  }
  .case-img {
    display: none;
  }
  .stats-row {
    grid-template-columns: 1fr 1fr;
  }
  .tldr-card {
    flex-direction: column;
  }
  .ft-top {
    grid-template-columns: 1fr 1fr;
  }
  nav .nav-links {
    display: none;
  }
}
@media (max-width: 640px) {
  .tb-grid {
    grid-template-columns: 1fr;
  }
  .tb-feat {
    grid-column: span 1;
  }
  .stats-row {
    grid-template-columns: 1fr;
  }
  .bwm-sec,
  .toolbox-sec,
  .builder-sec,
  .stats-sec,
  .feat4-sec,
  .recog-sec,
  .cta-sec {
    padding: 60px 5%;
  }
  .policy-body {
    padding: 40px 5% 80px;
  }
  .contact-box {
    padding: 1.5rem;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
