:root {
  --slate: #101821;
  --slate-2: #162432;
  --slate-3: #203244;
  --orange: #f18a2d;
  --orange-2: #ffb36c;
  --teal: #2ec4b6;
  --white: #fffaf3;
  --muted: #b8c3c9;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: var(--slate);
  color: var(--white);
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
p {
  margin: 0;
  color: var(--muted);
}
h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}
h1 {
  font-size: clamp(2.5rem, 7vw, 5.8rem);
  letter-spacing: -0.06em;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.04em;
}
h3 {
  font-size: 1.35rem;
}
.boh-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(16, 24, 33, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.boh-nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.boh-logo {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}
.boh-logo span {
  color: var(--orange);
}
.boh-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}
.boh-nav-link {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.94rem;
}
.boh-nav-link:hover,
.boh-nav-link.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}
.boh-menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--white);
  border-radius: 999px;
  padding: 9px 14px;
}
.boh-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 96px 22px 70px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  gap: 50px;
  align-items: center;
}
.boh-hero-copy {
  display: grid;
  gap: 24px;
}
.boh-eyebrow {
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 800;
}
.boh-hero-text {
  font-size: 1.2rem;
  max-width: 690px;
}
.boh-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}
.boh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 800;
  border: 1px solid transparent;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}
.boh-btn:hover {
  transform: translateY(-2px);
}
.boh-btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #211407;
}
.boh-btn-soft {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}
.boh-orbit-card {
  position: relative;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: 42px;
  background:
    radial-gradient(
      circle at 70% 20%,
      rgba(46, 196, 182, 0.24),
      transparent 34%
    ),
    linear-gradient(145deg, var(--slate-2), #0b1118);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.boh-orbit-ring {
  width: 270px;
  height: 270px;
  border: 34px solid rgba(241, 138, 45, 0.78);
  border-top-color: var(--teal);
  border-radius: 50%;
  filter: drop-shadow(0 16px 35px rgba(0, 0, 0, 0.32));
  animation: bohSpin 18s linear infinite;
}
.boh-orbit-content {
  position: absolute;
  inset: auto 34px 34px 34px;
  border-radius: 28px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.boh-orbit-content strong {
  display: block;
  font-size: 2.6rem;
  letter-spacing: -0.06em;
}
.boh-orbit-content span {
  color: var(--muted);
}
.boh-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 22px;
}
.boh-grid-section {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: 36px;
  align-items: start;
}
.boh-grid-section > div:first-child {
  display: grid;
  gap: 18px;
}
.boh-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.boh-feature-card,
.boh-detail-card,
.boh-plan-card,
.boh-contact-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
  border-radius: 28px;
  padding: 26px;
}
.boh-feature-card {
  display: grid;
  gap: 14px;
  min-height: 220px;
}
.boh-feature-card a,
.boh-plan-card a {
  color: var(--orange-2);
  font-weight: 800;
}
.boh-band {
  border-radius: 40px;
  background: linear-gradient(
    135deg,
    rgba(46, 196, 182, 0.16),
    rgba(241, 138, 45, 0.13)
  );
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 28px;
}
.boh-band-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.boh-band-list span {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  background: rgba(0, 0, 0, 0.12);
  color: var(--white);
}
.boh-price-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.boh-plan-card {
  display: grid;
  gap: 14px;
}
.boh-plan-card strong {
  font-size: 1.8rem;
  color: var(--white);
}
.boh-plan-card-highlight {
  background: linear-gradient(
    145deg,
    rgba(241, 138, 45, 0.22),
    rgba(46, 196, 182, 0.14)
  );
  transform: translateY(-12px);
}
.boh-subhero {
  max-width: 980px;
  margin: 0 auto;
  padding: 86px 22px 34px;
  text-align: center;
  display: grid;
  gap: 22px;
}
.boh-subhero .boh-actions {
  justify-content: center;
}
.boh-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.boh-detail-card {
  min-height: 150px;
}
.boh-detail-card span {
  display: block;
  width: 46px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--teal));
  margin-bottom: 22px;
}
.boh-detail-card p {
  color: var(--white);
}
.boh-contact-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: start;
}
.boh-form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.055);
}
.boh-form label {
  display: grid;
  gap: 7px;
  color: var(--white);
  font-weight: 700;
}
.boh-form input,
.boh-form select,
.boh-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px 14px;
  background: #0d141c;
  color: var(--white);
  font: inherit;
}
.boh-form-note {
  font-size: 0.92rem;
}
.boh-contact-card {
  display: grid;
  gap: 12px;
}
.boh-cta {
  margin-top: 20px;
  margin-bottom: 30px;
  border-radius: 42px;
  text-align: center;
  display: grid;
  gap: 18px;
  background: linear-gradient(
    135deg,
    rgba(241, 138, 45, 0.18),
    rgba(46, 196, 182, 0.16)
  );
  border: 1px solid var(--line);
}
.boh-cta .boh-btn {
  justify-self: center;
}
.boh-cookie {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  max-width: 860px;
  margin: 0 auto;
  display: none;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  background: #0d141c;
  box-shadow: var(--shadow);
}
.boh-cookie.is-visible {
  display: flex;
}
.boh-cookie p {
  font-size: 0.94rem;
}
.boh-cookie div {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.boh-cookie a {
  color: var(--orange-2);
  font-weight: 800;
}
.boh-cookie button {
  border: 0;
  border-radius: 999px;
  background: var(--teal);
  color: #061b19;
  padding: 10px 16px;
  font-weight: 900;
}
.boh-footer {
  border-top: 1px solid var(--line);
  max-width: 1180px;
  margin: 0 auto;
  padding: 38px 22px 46px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  color: var(--muted);
}
.boh-footer strong {
  display: block;
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.boh-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: flex-end;
}
.boh-footer-links a {
  color: var(--muted);
}
.boh-footer-links a:hover {
  color: var(--white);
}
.boh-small {
  grid-column: 1/-1;
  font-size: 0.88rem;
}
@keyframes bohSpin {
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 900px) {
  .boh-menu-toggle {
    display: inline-flex;
  }
  .boh-menu {
    display: none;
    position: absolute;
    left: 22px;
    right: 22px;
    top: 68px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #101821;
    flex-direction: column;
    align-items: stretch;
  }
  .boh-menu.is-open {
    display: flex;
  }
  .boh-nav-link {
    display: block;
  }
  .boh-hero,
  .boh-grid-section,
  .boh-band,
  .boh-contact-panel {
    grid-template-columns: 1fr;
  }
  .boh-feature-grid,
  .boh-price-preview,
  .boh-detail-grid {
    grid-template-columns: 1fr;
  }
  .boh-plan-card-highlight {
    transform: none;
  }
  .boh-orbit-card {
    min-height: 330px;
  }
  .boh-footer {
    grid-template-columns: 1fr;
  }
  .boh-footer-links {
    justify-content: flex-start;
  }
  .boh-cookie {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 560px) {
  .boh-hero {
    padding-top: 60px;
  }
  .boh-band-list {
    grid-template-columns: 1fr;
  }
  .boh-cookie {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
  .boh-cookie div {
    width: 100%;
    justify-content: space-between;
  }
  .boh-btn {
    width: 100%;
  }
}
