/* ONEO-style product / hub / plan pages */

.oneo-phero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  padding: 160px 0 80px;
  background: #0a0a0a;
  color: #fff;
  overflow: hidden;
}
.oneo-phero--sky {
  background: linear-gradient(180deg, #5eb8f6 0%, #8ecff8 45%, #c5e7fb 100%);
  color: #fff;
}
.oneo-phero--blue {
  background: linear-gradient(135deg, #0666eb 0%, #043d99 100%);
}
.oneo-phero--green {
  background: linear-gradient(180deg, #0b3d2e 0%, #06261c 100%);
}
.oneo-phero--purple {
  background: linear-gradient(135deg, #2d1b69 0%, #0a0a0a 100%);
}
.oneo-phero__inner {
  width: min(var(--oneo-max), 100% - 48px);
  margin: 0 auto;
  max-width: 720px;
}
.oneo-phero__label {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.88;
  margin-bottom: 16px;
}
.oneo-phero__title {
  font-size: clamp(44px, 7.5vw, 80px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.98;
  margin: 0 0 20px;
}
.oneo-phero__desc {
  font-size: 17px;
  line-height: 1.55;
  opacity: 0.85;
  margin: 0 0 32px;
  max-width: 480px;
}
.oneo-phero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.oneo-phero--sky .oneo-btn--signup,
.oneo-phero--sky .oneo-btn--white {
  background: #fff;
  color: #0a0a0a;
}

/* Content bands */
.oneo-band { padding: 96px 0; }
.oneo-band--gray { background: var(--oneo-gray-50); color: #0a0a0a; }
.oneo-band--black { background: #0a0a0a; color: #fff; }
.oneo-band__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: min(var(--oneo-max), 100% - 48px);
  margin: 0 auto;
}
.oneo-band__row--rev .oneo-band__media { order: 2; }
.oneo-band__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--oneo-blue);
  margin-bottom: 12px;
}
.oneo-band--black .oneo-band__eyebrow { color: #5eb3ff; }
.oneo-band__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 16px;
  color: inherit;
}
.oneo-band--gray .oneo-band__title {
  color: #0a0a0a;
}
.oneo-band__text {
  font-size: 17px;
  line-height: 1.65;
  color: var(--oneo-gray-700);
  margin: 0 0 24px;
}
.oneo-band--black .oneo-band__text { color: rgba(255,255,255,0.72); }
.oneo-band__list { margin: 0 0 24px; padding: 0; list-style: none; }
.oneo-band__list li {
  position: relative;
  padding: 8px 0 8px 22px;
  font-size: 15px;
  color: var(--oneo-gray-700);
}
.oneo-band__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--oneo-blue);
}
.oneo-band--black .oneo-band__list li { color: rgba(255,255,255,0.75); }
.oneo-band__media img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--oneo-shadow-lg);
}
.oneo-band__link {
  display: inline-flex;
  font-size: 15px;
  font-weight: 700;
  color: var(--oneo-blue);
}
.oneo-band--black .oneo-band__link { color: #5eb3ff; }

/* Plan chooser strip (ONEO) — light surface always uses dark type */
.oneo-choose {
  padding: 80px 0;
  background: var(--oneo-gray-50);
  color: #0a0a0a;
}
.oneo-choose__head {
  text-align: center;
  margin-bottom: 40px;
}
.oneo-choose__head h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0a0a0a;
}
.oneo-choose__head p {
  color: var(--oneo-gray-700);
  margin-top: 8px;
}
.oneo-choose__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: min(var(--oneo-max), 100% - 48px);
  margin: 0 auto;
}
.oneo-choose__card {
  display: block;
  padding: 28px 24px;
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--oneo-gray-200);
  transition: var(--oneo-transition);
  color: inherit;
}
.oneo-choose__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--oneo-shadow-lg);
}
.oneo-choose__card h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 8px;
}
.oneo-choose__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 10px;
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 12px;
}
.oneo-choose__price span {
  font-size: 14px;
  font-weight: 500;
  color: var(--oneo-gray-500);
}
.oneo-choose__eligible {
  font-size: 12px;
  font-weight: 600;
  color: var(--oneo-gray-600);
  line-height: 1.35;
  flex: 1 1 108px;
  max-width: 152px;
}
.oneo-choose__card p {
  font-size: 14px;
  color: var(--oneo-gray-700);
  line-height: 1.55;
  margin: 0;
}

/* Breadcrumb */
.oneo-crumb {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
}
.oneo-crumb a { color: rgba(255,255,255,0.75); }
.oneo-crumb a:hover { color: #fff; }

body.oneo-site.has-scrolled .oneo-phero { /* no-op */ }

.oneo-footer__grid--rev {
  grid-template-columns: repeat(6, 1fr);
  gap: 28px 20px;
}

@media (max-width: 1100px) {
  .oneo-footer__grid--rev { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1000px) {
  .oneo-band__row { grid-template-columns: 1fr; gap: 32px; }
  .oneo-band__row--rev .oneo-band__media { order: 0; }
  .oneo-choose__grid { grid-template-columns: 1fr; }
  .oneo-footer__grid--rev { grid-template-columns: repeat(2, 1fr); }
  .oneo-phero { min-height: 60vh; padding: 140px 0 64px; }
}
@media (max-width: 640px) {
  .oneo-footer__grid--rev { grid-template-columns: 1fr 1fr; }
}
