:root {
  --bo-bg: #070b14;
  --bo-bg-soft: #0b1323;
  --bo-surface: #121d33;
  --bo-surface-2: #17263f;
  --bo-border: rgba(138, 188, 239, 0.23);
  --bo-text: #edf4ff;
  --bo-muted: #9aafc8;
  --bo-accent: #2de0d7;
  --bo-accent-deep: #2a82ff;
  --bo-danger: #ff7f62;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  overflow-x: hidden;
  color: var(--bo-text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 14% 12%, rgba(45, 224, 215, 0.17), transparent 42%),
    radial-gradient(circle at 88% 24%, rgba(42, 130, 255, 0.15), transparent 44%),
    linear-gradient(155deg, #050812 0%, #091022 52%, #060913 100%);
}

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

.bo-wrap {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.bo-bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
}

.bo-bg-orb-a {
  width: 420px;
  height: 420px;
  top: -120px;
  left: -120px;
  background: rgba(45, 224, 215, 0.2);
}

.bo-bg-orb-b {
  width: 360px;
  height: 360px;
  right: -120px;
  top: 240px;
  background: rgba(42, 130, 255, 0.2);
}

.bo-nav {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  background: rgba(7, 12, 24, 0.8);
}

.bo-nav-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.bo-brand {
  display: inline-flex;
  align-items: center;
}

.bo-brand img {
  width: 155px;
  height: auto;
}

.bo-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.bo-menu a {
  color: #bfd0e7;
  font-size: 14px;
  font-weight: 600;
}

.bo-menu a:hover {
  color: #f1f6ff;
}

.bo-nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bo-btn {
  border: 0;
  cursor: pointer;
  border-radius: 12px;
  min-height: 42px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: transform 0.14s ease, filter 0.14s ease, box-shadow 0.14s ease;
}

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

.bo-btn-fill {
  color: #07131f;
  border: 1px solid rgba(156, 241, 236, 0.6);
  background: linear-gradient(120deg, var(--bo-accent) 0%, var(--bo-accent-deep) 100%);
  box-shadow: 0 14px 28px rgba(45, 170, 224, 0.32);
}

.bo-btn-ghost {
  color: #dce8f8;
  border: 1px solid rgba(154, 184, 218, 0.35);
  background: linear-gradient(145deg, rgba(21, 33, 54, 0.88) 0%, rgba(14, 22, 39, 0.94) 100%);
}

.bo-btn-lg {
  min-height: 50px;
  padding: 0 24px;
  font-size: 15px;
}

.bo-hero {
  padding: 84px 0 60px;
}

.bo-hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 30px;
  align-items: center;
}

.bo-pill {
  display: inline-flex;
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #c6fbf8;
  border: 1px solid rgba(105, 232, 226, 0.45);
  background: rgba(56, 191, 187, 0.15);
}

.bo-hero-copy h1 {
  margin: 14px 0 12px;
  font-family: "Rajdhani", "Segoe UI", sans-serif;
  font-size: clamp(46px, 7.2vw, 78px);
  line-height: 0.9;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.bo-hero-copy p {
  margin: 0;
  max-width: 620px;
  font-size: 18px;
  line-height: 1.6;
  color: #a8bfd8;
}

.bo-hero-buttons {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.bo-benefits {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.bo-benefits li {
  position: relative;
  border-radius: 14px;
  border: 1px solid var(--bo-border);
  background: linear-gradient(145deg, rgba(18, 32, 53, 0.88) 0%, rgba(12, 22, 38, 0.94) 100%);
  min-height: 66px;
  padding: 12px 12px 12px 38px;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 13px;
}

.bo-benefits li::before {
  content: "";
  position: absolute;
  left: 13px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, #7ffaf2 0%, #2baaff 100%);
  box-shadow: 0 0 12px rgba(88, 199, 255, 0.6);
}

.bo-hero-stage {
  position: relative;
  min-height: 490px;
}

.bo-terminal {
  position: relative;
  border-radius: 22px;
  border: 1px solid rgba(150, 197, 245, 0.25);
  background: linear-gradient(152deg, rgba(18, 31, 53, 0.97) 0%, rgba(10, 19, 35, 0.96) 100%);
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.4);
  padding: 18px;
}

.bo-terminal > header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bo-terminal > header span {
  font-size: 13px;
  color: #afc3db;
}

.bo-terminal > header strong {
  font-size: 14px;
  color: #98fae5;
}

.bo-terminal-shot {
  margin-top: 14px;
  display: block;
  width: 100%;
  height: 292px;
  border-radius: 16px;
  border: 1px solid rgba(136, 183, 227, 0.24);
  object-fit: cover;
  object-position: center;
}

.bo-candle-grid {
  margin-top: 14px;
  height: 292px;
  border-radius: 16px;
  border: 1px solid rgba(136, 183, 227, 0.24);
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, #192b49 0%, #111c33 100%);
  background-size: 100% 20%, 12.5% 100%, cover;
}

.bo-candle-line {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 64px;
  height: 292px;
  border-radius: 16px;
  pointer-events: none;
  background: linear-gradient(130deg, rgba(66, 238, 229, 0.86) 0%, rgba(50, 157, 255, 0.88) 100%);
  clip-path: polygon(0% 75%, 7% 69%, 14% 73%, 21% 63%, 28% 66%, 35% 56%, 42% 60%, 49% 49%, 56% 53%, 63% 40%, 70% 47%, 77% 34%, 84% 39%, 91% 26%, 100% 18%, 100% 100%, 0% 100%);
  animation: boPulse 3.2s ease-in-out infinite;
}

.bo-terminal > footer {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.bo-terminal > footer > div {
  border-radius: 12px;
  border: 1px solid rgba(155, 192, 229, 0.22);
  background: rgba(255, 255, 255, 0.03);
  padding: 10px;
}

.bo-terminal > footer label {
  display: block;
  font-size: 12px;
  color: #a9bdd4;
}

.bo-terminal > footer b {
  display: block;
  margin-top: 4px;
  font-size: 18px;
  font-family: "Rajdhani", "Segoe UI", sans-serif;
}

.bo-float {
  position: absolute;
  border-radius: 14px;
  border: 1px solid rgba(152, 209, 250, 0.3);
  background: linear-gradient(145deg, rgba(31, 73, 122, 0.64) 0%, rgba(23, 40, 74, 0.86) 100%);
  box-shadow: 0 18px 26px rgba(0, 0, 0, 0.28);
  padding: 11px 12px;
  min-width: 148px;
  animation: boFloat 4.3s ease-in-out infinite;
}

.bo-float span {
  display: block;
  color: #afc7e1;
  font-size: 12px;
}

.bo-float strong {
  display: block;
  margin-top: 2px;
  font-family: "Rajdhani", "Segoe UI", sans-serif;
  font-size: 26px;
  color: #e8f7ff;
}

.bo-float-a {
  left: -14px;
  bottom: 114px;
}

.bo-float-b {
  right: -12px;
  bottom: 40px;
  animation-delay: 0.6s;
}

.bo-years {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(11, 18, 32, 0.72) 0%, rgba(9, 16, 30, 0.8) 100%);
}

.bo-years-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  align-items: center;
  gap: 24px;
}

.bo-years-left {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.bo-years-left b {
  font-family: "Rajdhani", "Segoe UI", sans-serif;
  font-size: 76px;
  line-height: 1;
  color: #d7f6ff;
}

.bo-years-left span {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: #c3d8ed;
}

.bo-years p {
  margin: 0;
  color: #a2b9d2;
  font-size: 16px;
  line-height: 1.7;
}

.bo-section {
  padding: 84px 0;
}

.bo-section-alt {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(10, 16, 30, 0.76) 0%, rgba(8, 13, 24, 0.84) 100%);
}

.bo-section-head span,
.bo-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #93f4ec;
}

.bo-section-head h2 {
  margin: 10px 0 12px;
  font-family: "Rajdhani", "Segoe UI", sans-serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.92;
  text-transform: uppercase;
}

.bo-section-head p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--bo-muted);
}

.bo-center {
  text-align: center;
}

.bo-platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.bo-download-row {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bo-device {
  position: relative;
  min-height: 390px;
}

.bo-screen {
  border-radius: 18px;
  border: 1px solid rgba(153, 206, 255, 0.26);
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(145deg, #1a2e4e 0%, #10203a 100%);
  background-size: 100% 25%, 20% 100%, cover;
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.34);
}

.bo-screen > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bo-screen-main {
  position: absolute;
  inset: 0 56px 0 0;
}

.bo-screen-mini {
  position: absolute;
  width: 210px;
  right: 0;
  bottom: 22px;
  top: 74px;
}

.bo-tool-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.bo-card {
  border-radius: 16px;
  border: 1px solid var(--bo-border);
  background: linear-gradient(145deg, rgba(18, 30, 49, 0.88) 0%, rgba(11, 20, 35, 0.95) 100%);
  padding: 18px;
  min-height: 220px;
}

.bo-card h3 {
  margin: 0 0 8px;
  font-size: 21px;
  font-family: "Rajdhani", "Segoe UI", sans-serif;
  text-transform: uppercase;
  line-height: 1;
}

.bo-card-img {
  display: block;
  width: 100%;
  height: 132px;
  border-radius: 10px;
  border: 1px solid rgba(148, 197, 239, 0.22);
  object-fit: cover;
  object-position: center;
  margin-bottom: 12px;
}

.bo-card p {
  margin: 0;
  color: var(--bo-muted);
  line-height: 1.6;
  font-size: 14px;
}

.bo-card a {
  margin-top: 16px;
  display: inline-block;
  color: #9ef6ef;
  font-weight: 700;
  font-size: 13px;
}

.bo-learn-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  align-items: start;
}

.bo-learn-copy ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.bo-learn-copy li {
  position: relative;
  padding-left: 28px;
  color: #bfd2e8;
  line-height: 1.5;
  font-size: 15px;
}

.bo-learn-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(130deg, #3de7de 0%, #2988ff 100%);
  box-shadow: 0 0 10px rgba(69, 206, 255, 0.5);
}

.bo-learn-panel {
  border-radius: 18px;
  border: 1px solid rgba(144, 201, 250, 0.25);
  background: linear-gradient(150deg, rgba(18, 31, 53, 0.92) 0%, rgba(11, 21, 38, 0.95) 100%);
  padding: 16px;
  display: grid;
  gap: 10px;
}

.bo-learn-image {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  border: 1px solid rgba(148, 197, 239, 0.22);
  object-fit: cover;
  object-position: center;
  display: block;
}

.bo-kpi {
  border-radius: 12px;
  border: 1px solid rgba(148, 197, 239, 0.22);
  background: rgba(255, 255, 255, 0.03);
  padding: 12px;
}

.bo-kpi span {
  display: block;
  font-size: 12px;
  color: #a9bdd4;
}

.bo-kpi strong {
  display: block;
  margin-top: 4px;
  font-family: "Rajdhani", "Segoe UI", sans-serif;
  font-size: 32px;
  line-height: 1;
}

.bo-fast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.bo-fast-box {
  border-radius: 18px;
  border: 1px solid rgba(154, 205, 250, 0.24);
  background: linear-gradient(145deg, rgba(18, 32, 54, 0.9) 0%, rgba(12, 21, 36, 0.96) 100%);
  padding: 22px;
}

.bo-fast-box h2 {
  margin: 0 0 10px;
  font-family: "Rajdhani", "Segoe UI", sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 0.94;
  text-transform: uppercase;
}

.bo-fast-box p {
  margin: 0;
  color: #a7bdd5;
  line-height: 1.7;
}

.bo-fast-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.bo-fast-list article {
  border-radius: 12px;
  border: 1px solid var(--bo-border);
  background: rgba(255, 255, 255, 0.03);
  padding: 13px;
}

.bo-fast-list article.bo-fast-media {
  padding: 0;
  overflow: hidden;
  grid-column: 1 / -1;
  min-height: 190px;
}

.bo-fast-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.bo-fast-list span {
  display: block;
  color: #a7bdd5;
  font-size: 12px;
}

.bo-fast-list strong {
  display: block;
  margin-top: 4px;
  font-family: "Rajdhani", "Segoe UI", sans-serif;
  font-size: 30px;
}

.bo-ticker {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(152, 202, 247, 0.22);
  background: linear-gradient(145deg, rgba(16, 28, 46, 0.88) 0%, rgba(10, 20, 35, 0.95) 100%);
  margin-top: 20px;
}

.bo-ticker-track {
  display: flex;
  gap: 12px;
  width: max-content;
  padding: 14px;
  animation: boMarquee 32s linear infinite;
}

.bo-ticker article {
  width: 280px;
  min-width: 280px;
  border-radius: 12px;
  border: 1px solid rgba(146, 198, 244, 0.2);
  background: rgba(255, 255, 255, 0.03);
  padding: 14px;
}

.bo-ticker h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-family: "Rajdhani", "Segoe UI", sans-serif;
  text-transform: uppercase;
}

.bo-ticker p {
  margin: 0;
  color: #9fb6cf;
  font-size: 14px;
  line-height: 1.5;
  min-height: 84px;
}

.bo-ticker span {
  display: block;
  margin-top: 10px;
  color: #d9edff;
  font-weight: 700;
  font-size: 13px;
}

.bo-awards {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.bo-awards article {
  border-radius: 12px;
  border: 1px solid var(--bo-border);
  background: linear-gradient(145deg, rgba(18, 30, 48, 0.88) 0%, rgba(11, 20, 34, 0.95) 100%);
  padding: 15px;
}

.bo-awards b {
  display: inline-block;
  font-family: "Rajdhani", "Segoe UI", sans-serif;
  font-size: 28px;
  line-height: 1;
  color: #d8f8ff;
}

.bo-awards span {
  display: block;
  margin-top: 7px;
  color: #a3bad2;
  line-height: 1.45;
  font-size: 14px;
}

.bo-cta-final {
  padding: 76px 0;
}

.bo-cta-final-inner {
  border-radius: 24px;
  border: 1px solid rgba(166, 227, 255, 0.28);
  background:
    radial-gradient(circle at 15% 30%, rgba(45, 224, 215, 0.15), transparent 45%),
    radial-gradient(circle at 85% 70%, rgba(42, 130, 255, 0.17), transparent 48%),
    linear-gradient(145deg, rgba(17, 31, 52, 0.92) 0%, rgba(10, 20, 35, 0.97) 100%);
  text-align: center;
  padding: 36px 20px;
}

.bo-cta-final h2 {
  margin: 0 0 10px;
  font-family: "Rajdhani", "Segoe UI", sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.92;
  text-transform: uppercase;
}

.bo-cta-final p {
  margin: 0 auto;
  max-width: 680px;
  color: #a6bdd6;
  line-height: 1.65;
}

.bo-cta-final .bo-hero-buttons {
  justify-content: center;
}

.bo-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 38px 0 22px;
  background: rgba(6, 10, 18, 0.7);
}

.bo-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 16px;
}

.bo-footer-grid img {
  width: 140px;
  height: auto;
}

.bo-footer-grid p {
  margin: 10px 0 0;
  color: #98aec6;
  font-size: 14px;
}

.bo-footer-grid h4 {
  margin: 0 0 10px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #d7e9ff;
}

.bo-footer-grid a {
  display: block;
  color: #9eb4cc;
  font-size: 13px;
  margin-bottom: 7px;
}

.bo-footer-grid a:hover {
  color: #e7f5ff;
}

.bo-copyline {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  color: #8ea4bd;
  font-size: 12px;
}

@keyframes boPulse {
  0% {
    opacity: 0.78;
  }
  50% {
    opacity: 0.98;
  }
  100% {
    opacity: 0.78;
  }
}

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

@keyframes boMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 1120px) {
  .bo-menu {
    display: none;
  }

  .bo-hero-grid,
  .bo-platform-grid,
  .bo-learn-grid,
  .bo-fast-grid {
    grid-template-columns: 1fr;
  }

  .bo-hero-stage {
    min-height: 440px;
  }

  .bo-years-inner {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .bo-tool-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bo-awards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bo-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 760px) {
  .bo-nav-inner {
    min-height: 66px;
  }

  .bo-brand img {
    width: 122px;
  }

  .bo-nav-cta .bo-btn {
    min-height: 36px;
    padding: 6px 11px;
    font-size: 12px;
    border-radius: 10px;
  }

  .bo-hero {
    padding-top: 58px;
  }

  .bo-hero-copy p {
    font-size: 16px;
  }

  .bo-benefits {
    grid-template-columns: 1fr;
  }

  .bo-float {
    position: static;
    margin-top: 10px;
    animation: none;
  }

  .bo-hero-stage {
    min-height: 0;
  }

  .bo-candle-grid,
  .bo-terminal-shot,
  .bo-candle-line {
    height: 250px;
  }

  .bo-screen-main {
    position: relative;
    inset: auto;
    height: 300px;
  }

  .bo-screen-mini {
    position: relative;
    width: 100%;
    top: auto;
    right: auto;
    bottom: auto;
    margin-top: 10px;
    height: 180px;
  }

  .bo-tool-grid,
  .bo-awards,
  .bo-fast-list,
  .bo-footer-grid {
    grid-template-columns: 1fr;
  }

  .bo-section {
    padding: 62px 0;
  }

  .bo-ticker article {
    width: 248px;
    min-width: 248px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bo-candle-line,
  .bo-float,
  .bo-ticker-track {
    animation: none;
  }
}
