@charset "UTF-8";
@font-face {
  font-family: Jakarta;
  src: url("jakarta-400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

body.rb-aeline .tool-embed{padding-top:var(--rb10-section-space-compact);padding-bottom:var(--rb10-section-space)}
body.rb-aeline .tool-embed iframe{display:block;width:100%;min-height:600px;border:1px solid var(--cosmic-edge);border-radius:20px;background:#fff}
body.rb-aeline .error-page{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1.2fr);align-items:center;gap:48px;padding-top:var(--rb10-section-space);padding-bottom:var(--rb10-section-space)}
body.rb-aeline .error-copy h1{max-width:620px}
body.rb-aeline .error-art{display:block;width:100%;height:auto;border-radius:28px;box-shadow:var(--cosmic-shadow)}
body.rb-aeline .error-links{grid-column:1/-1}
body.rb-aeline .error-links h2{margin-bottom:28px}
.error-link-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}
.error-link-grid a{display:flex;flex-direction:column;gap:10px;padding:22px;border:1px solid var(--cosmic-edge);border-radius:18px;background:var(--cosmic-surface);color:var(--ink);transition:border-color .2s,transform .2s}
.error-link-grid a:hover{border-color:var(--cosmic-accent);transform:translateY(-2px)}
.error-link-grid strong{font-size:18px}.error-link-grid span{font-size:14px;line-height:1.55;color:var(--muted)}
@media(max-width:900px){.error-link-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:760px){body.rb-aeline .error-page{display:flex;flex-direction:column;align-items:stretch;gap:32px;padding-top:var(--rb10-section-space-compact)}body.rb-aeline .error-copy{text-align:center}body.rb-aeline .error-copy h1{margin-inline:auto}.error-link-grid{grid-template-columns:1fr}body.rb-aeline .error-art{border-radius:20px}}
@font-face {
  font-family: Jakarta;
  src: url("jakarta-600.woff2") format("woff2");
  font-weight: 600 800;
  font-display: swap;
}
@font-face {
  font-family: Anta;
  src: url("anta-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
:root {
  --ink:#161918;
  --muted:#626965;
  --blue:#1279c1;
  --lime:#dcff78;
  --paper:#fff;
  --soft:#f3f4f2;
  --line:#e6e8e4;
  --radius:28px;
  --max:1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 35px;
}

body.rb-aeline {
  margin: 0 !important;
  background: var(--paper) !important;
  color: var(--ink) !important;
  font-family: Jakarta, sans-serif !important;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.rb-aeline h1, body.rb-aeline h2, body.rb-aeline h3, body.rb-aeline p {
  font-family: inherit;
  color: inherit;
  margin: 0;
}

body.rb-aeline h1, body.rb-aeline h2 {
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1.12;
}

body.rb-aeline h1 {
  font-size: clamp(40px, 4.35vw, 64px);
}

body.rb-aeline h2 {
  font-size: clamp(32px, 3.35vw, 48px);
}

body.rb-aeline h3 {
  font-size: 23px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.035em;
}

body.rb-aeline p {
  color: var(--muted);
}

body.rb-aeline a {
  color: inherit;
  text-decoration: none;
}

body.rb-aeline p a:not(.button), .legal-copy a {
  color: #1759ba;
  text-decoration: underline;
  text-underline-offset: 4px;
}

body.rb-aeline ul, body.rb-aeline ol {
  margin: 0;
  padding: 0;
}

button, a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid #357bee;
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  padding: 12px;
  background: #fff;
  z-index: 100;
}

.skip-link:focus {
  top: 15px;
}

.site-header {
  height: 100px;
  max-width: var(--max);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 146px;
  flex-shrink: 0;
}

.brand svg {
  display: block;
  width: 100%;
  height: 48px;
  overflow: visible;
}

.site-header nav {
  display: flex;
  gap: 34px;
}

.site-header nav a, .header-actions, .eyebrow, .button, .site-footer nav > div > span {
  font-family: "Courier New", monospace;
  font-size: 13px;
  letter-spacing: 0.11em;
}

.site-header nav a {
  text-transform: uppercase;
  position: relative;
}

.site-header nav a:after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  height: 2px;
  width: 0;
  background: currentColor;
  transition: width 0.2s;
}

.site-header nav a:hover:after, .site-header nav a[aria-current]:after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 20px;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--lime) !important;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  white-space: normal;
  text-align: center;
}

.button:not(.button-secondary):after {
  content: "↗";
  display: inline-grid;
  place-items: center;
  background: var(--lime);
  color: var(--ink);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  font: 20px Jakarta, sans-serif;
  margin: -7px -12px -7px 0;
  flex-shrink: 0;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.0784313725);
}

.button-secondary {
  background: transparent;
  border-color: #cfd4ce;
  color: var(--ink) !important;
}

.button-small {
  padding: 12px 18px;
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink) !important;
}

.button-small:after {
  display: none !important;
}

.menu-toggle {
  display: none;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 100px 0;
}

.eyebrow {
  text-transform: uppercase;
  display: block;
  line-height: 1.3;
  margin-bottom: 25px;
  font-weight: 600;
}

.eyebrow:before {
  content: "▪";
  margin-right: 10px;
}

.heading-accent {
  color: #8a918c;
}

.hero {
  text-align: center;
  position: relative;
}

.hero-copy {
  max-width: 840px;
  margin: auto;
}

.hero-copy h1 {
  margin-bottom: 26px !important;
}

.hero-copy > p {
  max-width: 680px;
  margin: 0 auto 26px !important;
  font-size: 17px;
  line-height: 1.7;
}

.hero-copy > .hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px !important;
}

.hero-copy .eyebrow {
  margin-bottom: 23px;
}

.hero-pricing {
  padding: 60px 24px 30px;
}

.hero-pricing h1 {
  max-width: 730px;
  margin-left: auto !important;
  margin-right: auto !important;
}

.hero-pricing .heading-accent {
  color: inherit;
}

.rb-home .site-header {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 160px);
  color: white;
}

.rb-home .site-header .brand {
  background: rgba(255, 255, 255, 0.9294117647);
  border-radius: 12px;
  padding: 5px 10px;
  width: 152px;
}

.hero-sky {
  margin: 12px;
  border-radius: 32px;
  overflow: hidden;
  padding: 174px 35px 56px;
  min-height: 870px;
  color: white;
  background: #1379bd url("sky.png") center bottom/cover no-repeat;
}

.hero-sky .hero-copy {
  position: relative;
  z-index: 2;
}

.hero-sky .eyebrow {
  font-family: Anta, sans-serif;
  text-transform: none;
  letter-spacing: -0.02em;
  font-size: 40px;
  line-height: 1;
  margin-bottom: 20px;
  color: white;
}

.hero-sky h1 {
  max-width: 820px;
  margin-inline: auto !important;
  font-size: clamp(40px, 4.15vw, 60px);
}

.hero-sky .heading-accent {
  color: #d4ebf8;
}

.hero-sky .hero-copy p {
  color: #f1f7fd;
  max-width: 690px;
}

.hero-sky .button {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink) !important;
}

.hero-sky .button:after {
  background: var(--ink);
  color: var(--lime);
}

.hero-sky .button-secondary {
  background: rgba(7, 84, 134, 0.4588235294);
  border-color: transparent;
  color: white !important;
}

.hero-sky:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(5, 68, 107, 0.2392156863), transparent 75%);
  pointer-events: none;
}

.product-ribbon {
  display: flex;
  justify-content: center;
  gap: 18px;
  max-width: 1210px;
  margin: 60px auto 22px;
  perspective: 1100px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.product-ribbon .product-art {
  width: 224px;
  height: 214px;
  flex-shrink: 0;
  font-size: 10px;
  padding: 17px;
  box-shadow: 0 10px 35px rgba(6, 61, 98, 0.168627451);
  animation: card-drift 7s ease-in-out infinite;
}

.product-ribbon .product-art:nth-child(1) {
  transform: rotateY(27deg) rotate(-8deg) translateY(38px);
  --turn:rotateY(27deg) rotate(-8deg) translateY(38px);
  animation-delay: -3s;
}

.product-ribbon .product-art:nth-child(2) {
  transform: rotateY(12deg) rotate(-5deg) translateY(9px);
  --turn:rotateY(12deg) rotate(-5deg) translateY(9px);
  animation-delay: -2s;
}

.product-ribbon .product-art:nth-child(3) {
  --turn:translateY(0);
  z-index: 2;
}

.product-ribbon .product-art:nth-child(4) {
  --turn:rotateY(-12deg) rotate(5deg) translateY(9px);
  animation-delay: -4s;
}

.product-ribbon .product-art:nth-child(5) {
  --turn:rotateY(-27deg) rotate(8deg) translateY(38px);
  animation-delay: -1s;
}

.product-art {
  background: #fff;
  border: 1px solid #edf0ec;
  border-radius: 19px;
  box-shadow: 0 20px 40px rgba(19, 42, 70, 0.0784313725);
  padding: 26px;
  text-align: left;
  width: 340px;
  font-size: 14px;
  line-height: 1.45;
}

.mini-heading {
  font-weight: 600;
  font-size: 1.08em;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  letter-spacing: -0.03em;
}

.mini-symbol {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: var(--lime);
  border-radius: 9px;
  font-size: 19px;
  flex-shrink: 0;
}

.mini-dot {
  width: 6px;
  height: 6px;
  background: #198761;
  border-radius: 50%;
  margin-left: auto;
}

.review-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-row b {
  display: block;
  font-size: 0.8em;
  font-weight: 600;
}

.review-row em {
  font-style: normal;
  color: #dda11c;
  letter-spacing: 1px;
  font-size: 1em;
}

.avatar {
  font-style: normal;
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  background: #d8e8fc;
  color: #2c5c98;
  border-radius: 50%;
  font-weight: 600;
  flex-shrink: 0;
}

.avatar.peach {
  background: #f6e3c6;
  color: #906722;
}

.status {
  font-size: 0.68em;
  border-radius: 20px;
  background: #edf5ed;
  color: #29664a;
  padding: 3px 6px;
  margin-left: auto;
}

.skeleton {
  margin: 12px 0 20px;
  display: grid;
  gap: 7px;
}

.skeleton i {
  height: 5px;
  display: block;
  border-radius: 5px;
  background: #e9ece8;
  width: 100%;
}

.skeleton i:last-child {
  width: 72%;
}

.product-ribbon .skeleton {
  margin: 8px 0 13px;
}

.product-ribbon .mini-heading {
  margin-bottom: 12px;
}

.product-ribbon .mini-symbol {
  width: 23px;
  height: 23px;
  font-size: 15px;
}

.product-ribbon .avatar {
  width: 24px;
  height: 24px;
}

.rule {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid #ecefeb;
  padding: 12px 0;
  font-size: 0.8em;
}

.rule span {
  color: #7a827c;
}

.rule b {
  font-weight: 400;
}

.rule-line {
  display: flex;
  gap: 7px;
  margin-top: 20px;
}

.rule-line i {
  height: 7px;
  background: #d9e9fa;
  border-radius: 9px;
  width: 30%;
}

.rule-line i:nth-child(2) {
  background: var(--lime);
  width: 45%;
}

.draft-label {
  font-size: 0.8em;
  color: #7b837d;
  margin-bottom: 18px;
}

.approval-state {
  background: #eff6e8;
  border-radius: 10px;
  padding: 13px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85em;
}

.approval-state b {
  background: #1b573c;
  border-radius: 50%;
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
}

.team-orbit {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
  min-height: 85px;
}

.team-orbit .avatar {
  width: 48px;
  height: 48px;
  border: 4px solid #fff;
  box-shadow: 0 0 0 1px #e3e8e2;
}

.team-orbit > span {
  font-size: 22px;
  color: #9ca69c;
}

.source-node {
  padding: 12px;
  background: #f0f5f8;
  margin: 8px 0;
  border-radius: 8px;
  font-size: 0.83em;
}

.source-node:nth-child(3) {
  background: #f3f6ed;
}

.issue-stars {
  color: #db9e19;
  font-size: 32px;
  letter-spacing: 4px;
  margin: 15px 0;
}

.issue-stars span {
  color: #e9ece6;
}

.issue-progress {
  display: flex;
  gap: 7px;
  margin: 20px 0;
}

.issue-progress span {
  background: #f0f2ee;
  border-radius: 7px;
  padding: 7px;
  font-size: 0.7em;
}

.credit-number {
  font-size: 46px;
  letter-spacing: -0.05em;
}

.credit-number span {
  font-size: 12px;
  letter-spacing: 0;
  color: var(--muted);
}

.credit-meter {
  display: flex;
  gap: 5px;
  margin: 20px 0;
}

.credit-meter i {
  height: 30px;
  flex: 1;
  background: var(--lime);
  border-radius: 4px;
}

.credit-meter i:nth-last-child(-n+3) {
  background: #eff1ec;
}

.workflow {
  text-align: center;
  padding-top: 115px;
}

.workflow h2 {
  margin-bottom: 64px !important;
}

.workflow ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  gap: 45px;
  counter-reset: steps;
  text-align: left;
}

.workflow li {
  counter-increment: steps;
  color: var(--muted);
  font-size: 16px;
  padding-top: 26px;
  border-top: 1px solid #dfe4dc;
  position: relative;
}

.workflow li:before {
  content: "0" counter(steps);
  display: block;
  font-family: "Courier New", monospace;
  font-size: 14px;
  color: #8a9488;
  margin-bottom: 35px;
}

.workflow li:after {
  content: "↗";
  position: absolute;
  top: 20px;
  right: 0;
  font-size: 22px;
  color: #a1aca0;
}

.workflow strong {
  display: block;
  color: var(--ink);
  font-size: 23px;
  font-weight: 400;
  letter-spacing: -0.045em;
  margin-bottom: 17px;
}

.closing-cta {
  margin: 25px 12px 0;
  padding: 85px 24px;
  border-radius: 28px;
  text-align: center;
  background: #e1f3ff url("sky.png") center 78%/cover;
}

.closing-cta > p {
  max-width: 770px;
  margin: 0 auto 24px !important;
  color: #0c3854 !important;
  font-size: 18px;
}

.closing-cta strong {
  display: block;
  font-size: clamp(32px, 3.3vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.045em;
  color: #102e41;
  margin-bottom: 20px;
}

.closing-cta br {
  display: none;
}

.pricing-section {
  padding-top: 28px;
  padding-bottom: 85px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, .5fr) repeat(3, minmax(0, 1fr));
  padding: 12px;
  gap: 12px;
  background: var(--soft);
  border-radius: 28px;
}

.price-card {
  background: white;
  border-radius: 18px;
  padding: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
}

.price-card--featured {
  background: var(--lime);
}

.plan-icon {
  background: var(--lime);
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  font-size: 25px;
  margin-bottom: 22px;
}

.price-card--featured .plan-icon {
  background: var(--ink);
  color: var(--lime);
}

.price-card h3 {
  font-family: "Courier New", monospace !important;
  font-size: 16px !important;
  text-transform: uppercase;
  letter-spacing: 0.07em !important;
  margin-bottom: 26px !important;
}

.price-card > p:nth-of-type(1) {
  font-size: 56px;
  line-height: 1.2;
  letter-spacing: -0.06em;
  margin-bottom: 8px !important;
}

.price-card > p:nth-of-type(1) span {
  font-size: 15px;
  letter-spacing: -0.02em;
}

.price-card > p:nth-of-type(2) {
  font-size: 13px;
  color: #525c51;
  margin-bottom: 35px !important;
}

.price-card > p:nth-of-type(3) {
  font-size: 15px;
  color: #414a40;
  padding-top: 25px;
  border-top: 1px solid rgba(0, 0, 0, 0.0941176471);
  margin-bottom: 32px !important;
}

.price-card > .button {
  margin-top: auto;
  width: 100%;
}

.pricing-billing {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.pricing-billing button {
  border: 1px solid var(--cosmic-edge);
  border-radius: 12px;
  padding: 12px 18px;
  background: var(--cosmic-surface);
  color: var(--ink);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
.pricing-billing button[aria-pressed="true"] {
  border-color: var(--cosmic-accent);
  background: var(--soft);
  box-shadow: inset 0 0 0 1px var(--cosmic-accent);
}
.pricing-billing button span {
  display: inline-block;
  font-size: 12px;
  color: var(--muted);
  margin-left: 6px;
}
.pricing-billing button:focus-visible {
  outline: 2px solid var(--cosmic-accent);
  outline-offset: 3px;
}
.price-card > p:first-of-type .plan-price {
  font-size: inherit;
  letter-spacing: inherit;
}
.rb-pricing .price-card--free {
  padding: 30px 16px;
}
.rb-pricing .pricing-section .v8-section-intro,
.rb-pricing .pricing-section .v8-section-intro h2,
.rb-pricing .pricing-section .v8-section-intro p {
  max-width: none;
}
.rb-pricing .price-card--free > p:nth-of-type(2) {
  margin-bottom: 24px !important;
}
.rb-pricing .price-card--free > p:nth-of-type(3) {
  border-top: 0;
  padding-top: 0;
  margin-bottom: 20px !important;
}
.rb-pricing .price-card--free > p:first-of-type {
  font-size: 42px;
}
.rb-pricing .price-card--free > .button {
  font-size: 14px;
  padding-right: 8px;
  padding-left: 8px;
}
body.rb-aeline .free-plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 13px;
}
.free-plan-features li + li {
  margin-top: 10px;
}
body.rb-aeline .pricing-purchase-note {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin: 24px 0 0;
}
@media (min-width: 761px) and (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.hero-feature {
  margin: 0 12px;
  background: linear-gradient(150deg, #e5f3fd, #f1f8ff 55%, #e8f2dd);
  border-radius: 28px;
  padding: 65px 28px 42px;
  overflow: hidden;
}

.hero-feature .hero-copy {
  max-width: 820px;
}

.hero-feature .product-ribbon {
  margin-top: 50px;
  transform: scale(0.9);
}

.feature-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
  margin-bottom: 105px;
}

.feature-detail:nth-child(even) .detail-art {
  order: 2;
}

.detail-art {
  min-height: 370px;
  background: radial-gradient(ellipse at center, #dcecf8, #f3f7f7);
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-detail:nth-child(3n) .detail-art {
  background: radial-gradient(ellipse at center, #e7f5c2, #f4f8ed);
}

.detail-art .product-art {
  transform: rotate(-5deg);
  transition: transform 0.4s;
}

.feature-detail:nth-child(even) .product-art {
  transform: rotate(5deg);
}

.feature-detail:hover .product-art {
  transform: rotate(0);
}

.detail-copy h2 {
  font-size: 38px !important;
  margin-bottom: 23px !important;
}

.detail-copy p {
  margin-bottom: 20px !important;
}

.detail-copy p:last-child {
  margin-bottom: 0 !important;
}

.hero-legal {
  margin: 0 12px;
  padding: 75px 30px;
  background: #edf5fa;
  border-radius: 28px;
  overflow: hidden;
}

.hero-legal:before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}

.page-id-909 .hero-legal:before {
  background-image: url("../../../uploads/2026/09/repbot-terms-hero.png");
}

.page-id-911 .hero-legal:before {
  background-image: url("../../../uploads/2026/09/repbot-privacy-hero.png");
}

.page-id-912 .hero-legal:before {
  background-image: url("../../../uploads/2026/09/repbot-cookie-hero.png");
}

.hero-legal .hero-copy {
  position: relative;
  max-width: 880px;
}

.hero-legal h1 {
  font-size: 52px !important;
}

.hero-legal .hero-copy > p:first-of-type {
  font-family: "Courier New", monospace;
  font-size: 12px;
}

.hero-legal .hero-copy > p {
  font-size: 16px;
  max-width: 790px;
  color: #334a57;
}

.legal-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 760px);
  gap: 85px;
  justify-content: center;
  padding-top: 65px;
}

.legal-copy h2 {
  font-size: 27px !important;
  margin: 42px 0 18px !important;
  letter-spacing: -0.035em !important;
  line-height: 1.3 !important;
}

.legal-copy h2:first-child {
  margin-top: 0 !important;
}

.legal-copy h3 {
  font-size: 20px !important;
  margin: 25px 0 12px !important;
}

.legal-copy p {
  margin-bottom: 20px !important;
}

.legal-copy ul, .legal-copy ol {
  padding-left: 22px !important;
  margin-bottom: 20px !important;
  color: var(--muted);
}

.legal-copy li {
  margin-bottom: 12px;
}

.legal-copy table {
  border-collapse: collapse;
  font-size: 13px;
  width: 100%;
  margin: 25px 0;
}

.legal-copy td, .legal-copy th {
  padding: 14px;
  border: 1px solid var(--line);
  vertical-align: top;
  text-align: left;
  overflow-wrap: anywhere;
}

.site-footer {
  max-width: var(--max);
  margin: auto;
  padding: 75px 0 25px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 90px;
  padding-bottom: 65px;
}

.footer-top p {
  max-width: 405px;
  font-size: 14px;
  margin-top: 25px !important;
}

.site-footer nav {
  display: flex;
  justify-content: space-between;
  gap: 25px;
}

.site-footer nav > div {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.site-footer nav > div > span {
  color: #85907f;
  font-size: 11px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.site-footer nav a {
  font-size: 14px;
}

.site-footer nav a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: #7a8577;
}

.footer-bottom a {
  color: #475441 !important;
}

#mobile-menu {
  border: 0;
  border-radius: 22px;
  padding: 25px;
  width: min(90vw, 400px);
  background: #fff;
  color: var(--ink);
}

#mobile-menu::backdrop {
  background: rgba(11, 37, 57, 0.4666666667);
  backdrop-filter: blur(5px);
}

#mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-top: 25px;
}

#mobile-menu nav a {
  padding: 10px;
  font-size: 20px;
}

.menu-close {
  position: absolute;
  right: 15px;
  top: 8px;
  border: 0;
  background: transparent;
  font-size: 32px;
  cursor: pointer;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid #e4e9e0;
  border-radius: 12px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: #18231b;
}

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s, transform 0.65s;
}

.reveal-ready .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes card-drift {
  0%, 100% {
    transform: var(--turn, translateY(0));
  }
  50% {
    transform: var(--turn, translateY(0)) translateY(-9px);
  }
}
.hero-sky .heading-accent {
  display: block;
}

.hero-pricing h1 {
  max-width: 24ch;
}

.price-card > p:nth-of-type(3) {
  margin-bottom: 12px !important;
}

.closing-cta h2 {
  max-width: 740px;
  margin: 0 auto 24px !important;
  color: #123850 !important;
}

.pricing-faq {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 85px;
  padding-top: 20px;
}

.pricing-faq h2 {
  max-width: 420px;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 0;
  cursor: pointer;
  font-size: 18px;
  letter-spacing: -0.03em;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  font-size: 24px;
  transition: transform 0.2s;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  font-size: 15px;
  padding: 0 35px 25px 0 !important;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.site-header nav a, .eyebrow, .button, .price-card h3 {
  font-family: "Plus Jakarta Sans", sans-serif !important;
}

.button {
  font-weight: 600 !important;
  letter-spacing: 0.01em !important;
}

.hero-sky .eyebrow {
  font-family: Anta, sans-serif !important;
}

.hero-sky .hero-copy h1 {
  max-width: 900px;
}

.hero-copy > p:not(:has(.button)) {
  max-width: 660px;
  margin-inline: auto !important;
}

.site-header nav a, .header-actions, .eyebrow, .button, .price-card h3 {
  font-family: Jakarta, sans-serif !important;
}

.draft-options {
  display: flex;
  gap: 10px;
}

.draft-options span {
  padding: 8px 12px;
  background: #edf2f6;
  border-radius: 7px;
  font-size: 11px;
}

.draft-options span:last-child {
  background: var(--lime);
}

@media (min-width: 761px) {
  .price-card > p:nth-of-type(3) {
    min-height: 110px;
  }
}
@media (min-width: 1600px) {
  .hero-sky {
    padding-top: 195px;
    min-height: 930px;
  }
}
@media (max-width: 1390px) {
  .section, .site-header, .site-footer {
    max-width: calc(100% - 100px);
  }
  .product-ribbon {
    gap: 10px;
  }
  .product-ribbon .product-art {
    width: 205px;
  }
  .rb-home .site-header {
    width: calc(100% - 100px);
  }
}
@media (max-width: 1050px) {
  .section, .site-header, .site-footer {
    max-width: calc(100% - 60px);
  }
  .rb-home .site-header {
    width: calc(100% - 80px);
  }
  .header-actions {
    gap: 16px;
  }
  .hero-sky {
    padding-top: 155px;
    min-height: 800px;
  }
  .product-ribbon .product-art {
    width: 190px;
  }
  .product-ribbon {
    gap: 7px;
  }
  .product-ribbon .product-art:first-child, .product-ribbon .product-art:last-child {
    opacity: 0.85;
  }
  .price-card {
    padding: 23px;
  }
  .legal-layout {
    gap: 40px;
    grid-template-columns: 220px minmax(0, 1fr);
  }
  .footer-top {
    gap: 50px;
  }
  .feature-detail {
    gap: 40px;
  }
}
@media (max-width: 760px) {
  body.rb-aeline {
    font-size: 15px;
  }
  .section, .site-header, .site-footer {
    max-width: calc(100% - 40px);
  }
  .site-header {
    height: 83px;
  }
  .brand {
    width: 128px;
  }
  .brand svg {
    height: 42px;
  }
  .site-header nav, .header-actions {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .rb-home .site-header {
    top: 8px;
    width: calc(100% - 56px);
  }
  .rb-home .site-header .brand {
    width: 138px;
  }
  .hero-sky {
    margin: 8px;
    border-radius: 24px;
    padding: 133px 22px 34px;
  }
  .hero-sky .eyebrow {
    font-size: 32px;
  }
  .hero-copy h1 {
    font-size: 40px !important;
    line-height: 1.12;
    letter-spacing: -0.055em;
    margin-bottom: 24px !important;
  }
  .hero-copy > p {
    line-height: 1.7;
  }
  .hero-copy .eyebrow {
    font-size: 11px;
  }
  .hero-sky .hero-copy .eyebrow {
    font-size: 32px;
  }
  .hero-copy > p:has(.button) {
    gap: 8px;
  }
  .button {
    font-size: 11px;
    padding: 14px 17px;
    letter-spacing: 0.06em;
  }
  .product-ribbon {
    margin: 36px -220px 15px;
    gap: 11px;
    transform: scale(0.84);
    height: 205px;
  }
  .product-ribbon .product-art {
    width: 190px;
    height: 204px;
    flex-shrink: 0;
  }
  .section {
    padding: 65px 0;
  }
  .eyebrow {
    font-size: 11px;
    margin-bottom: 20px;
  }
  .workflow h2 {
    margin-bottom: 35px !important;
  }
  .workflow ol {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .workflow li {
    padding-left: 50px;
    padding-top: 24px;
  }
  .workflow li:before {
    position: absolute;
    top: 27px;
    left: 0;
  }
  .workflow li:after {
    display: none;
  }
  .workflow strong {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .closing-cta {
    margin: 10px 8px 0;
    padding: 60px 22px;
    border-radius: 24px;
  }
  .closing-cta > p {
    font-size: 15px;
  }
  .pricing-section {
    padding-top: 22px;
  }
  .hero-pricing {
    padding: 36px 23px 10px;
  }
  .hero-pricing h1 {
    font-size: 40px !important;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    padding: 8px;
    gap: 10px;
  }
  .price-card h3 {
    margin-bottom: 18px !important;
  }
  .price-card > p:nth-of-type(2) {
    margin-bottom: 25px !important;
  }
  .hero-feature {
    margin: 0 8px;
    padding: 45px 22px 25px;
  }
  .hero-feature .product-ribbon {
    transform: scale(0.8);
    margin-top: 30px;
  }
  .feature-detail {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 65px;
  }
  .feature-detail:nth-child(even) .detail-art {
    order: 0;
  }
  .detail-art {
    min-height: 310px;
  }
  .detail-art .product-art {
    width: min(300px, 85%);
  }
  .detail-copy h2 {
    font-size: 32px !important;
  }
  .hero-legal {
    margin: 0 8px;
    padding: 48px 24px;
  }
  .hero-legal h1 {
    font-size: 39px !important;
  }
  .hero-legal .hero-copy > p {
    font-size: 14px;
  }
  .legal-layout {
    display: block;
    padding-top: 45px;
  }
  .legal-copy h2 {
    font-size: 25px !important;
  }
  .legal-copy {
    overflow-wrap: anywhere;
  }
  .legal-copy table {
    display: block;
    overflow-x: auto;
  }
  .site-footer {
    padding-top: 50px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-bottom: 35px;
  }
  .site-footer nav {
    gap: 15px;
    flex-wrap: wrap;
  }
  .site-footer nav a {
    font-size: 13px;
  }
  .site-footer nav > div > span {
    font-size: 10px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    font-size: 11px;
  }
}
@media (max-width: 760px) {
  .pricing-faq {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-top: 10px;
  }
  .faq-list summary {
    font-size: 17px;
  }
  .hero-sky .hero-copy > p:not(:has(.button)) {
    max-width: 37ch;
  }
  .closing-cta h2 {
    font-size: 32px !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *:before, *:after {
    animation: none !important;
    transition: none !important;
  }
  .reveal-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
/* V3: Celestial / two complete palettes. V1 and V2 remain independent. */
html[data-celestial] {
  --ink:#17294c;
  --muted:#556581;
  --blue:#286cf0;
  --lime:#e5edff;
  --paper:#fbfcff;
  --soft:#eef3fb;
  --line:#d7e0ef;
  --cosmic-surface:#fff;
  --cosmic-well:#edf3fd;
  --cosmic-edge:#d8e3f4;
  --cosmic-accent:#235ecb;
  --cosmic-gold:#976520;
  --cosmic-gold-soft:#fff0d2;
  --cosmic-glow:#aacbff75;
  --cosmic-warm:#ffe7b766;
  --cosmic-shadow:0 24px 70px #365e9e19;
  --cosmic-star-opacity:.8;
  color-scheme: light;
}

html[data-celestial=dark] {
  --ink:#edf2ff;
  --muted:#b2c1dc;
  --blue:#a8caff;
  --lime:#263f69;
  --paper:#090f22;
  --soft:#111e37;
  --line:#2c3d5a;
  --cosmic-surface:#14213b;
  --cosmic-well:#1c3051;
  --cosmic-edge:#344b70;
  --cosmic-accent:#a8caff;
  --cosmic-gold:#efd297;
  --cosmic-gold-soft:#493d2b;
  --cosmic-glow:#2457ae65;
  --cosmic-warm:#82622d24;
  --cosmic-shadow:0 30px 80px #0000004d;
  --cosmic-star-opacity:1;
  color-scheme: dark;
}

body.rb-aeline {
  background: radial-gradient(ellipse at 10% 30%, var(--cosmic-glow), transparent 35%), radial-gradient(ellipse at 90% 65%, var(--cosmic-warm), transparent 28%), var(--paper) !important;
}

body.rb-aeline h1, body.rb-aeline h2 {
  letter-spacing: -0.045em;
}

.site-header {
  gap: 24px;
}

.rb-home .site-header {
  color: var(--ink);
  top: 12px;
}

.rb-home .site-header .brand {
  background: none;
  padding: 0;
  border-radius: 0;
  width: 146px;
}

.site-header nav {
  margin-left: auto;
  margin-right: auto;
}

.celestial-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 92px;
  min-height: 44px;
  background: var(--cosmic-surface);
  border: 1px solid var(--cosmic-edge);
  border-radius: 40px;
  color: var(--ink);
  font: 500 12px Jakarta, sans-serif;
  cursor: pointer;
}

.mode-icon {
  font-size: 23px;
  line-height: 1;
  color: var(--cosmic-gold);
}

.celestial-toggle:hover {
  border-color: var(--cosmic-accent);
}

.hero {
  isolation: isolate;
  overflow: hidden;
}

.hero-sky, .hero-feature, .hero-pricing, .hero-legal {
  background: radial-gradient(ellipse at 50% 78%, var(--cosmic-glow), transparent 60%), radial-gradient(ellipse at 85% 12%, var(--cosmic-warm), transparent 35%), var(--paper);
  color: var(--ink);
  border-radius: 0;
  margin: 0;
  border-bottom: 1px solid var(--line);
}

.hero-sky {
  padding: 160px 30px 46px;
  min-height: 1020px;
}

.hero-feature {
  padding: 64px 30px 40px;
}

.hero-pricing, .hero-legal {
  padding: 72px 30px 68px;
}

.hero-sky:before, .hero-legal:before {
  display: none;
}

.celestial-plane {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.celestial-chart {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: var(--cosmic-star-opacity);
}

.celestial-halo {
  position: absolute;
  width: 70%;
  height: 45%;
  left: 15%;
  bottom: 4%;
  border-radius: 50%;
  background: var(--cosmic-glow);
  filter: blur(65px);
  animation: celestial-breathe 12s ease-in-out infinite;
}

.satellite-star {
  position: absolute;
  width: 90px;
  filter: drop-shadow(0 12px 22px rgba(191, 140, 65, 0.1254901961));
  opacity: 0.85;
}

.satellite-one {
  left: 8%;
  top: 24%;
  transform: rotate(-21deg);
  animation: satellite-drift 10s ease-in-out infinite;
}

.satellite-two {
  right: 7%;
  top: 19%;
  width: 140px;
  transform: rotate(18deg);
  animation: satellite-drift 12s ease-in-out -5s infinite reverse;
}

.hero-pricing .satellite-star, .hero-legal .satellite-star {
  width: 65px;
  opacity: 0.55;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-sky .hero-copy {
  max-width: 880px;
}

.hero-sky .eyebrow {
  color: var(--ink);
  font-size: 76px;
  letter-spacing: -0.055em;
  margin-bottom: 26px;
  text-shadow: 0 4px 30px var(--cosmic-glow);
}

body.rb-aeline .hero-sky h1 {
  font-size: clamp(36px, 3.1vw, 49px);
  line-height: 1.18;
  max-width: 820px;
}

.heading-accent, .hero-sky .heading-accent, .hero-pricing .heading-accent {
  color: var(--cosmic-accent);
}

.hero-sky .hero-copy p, .hero-feature .hero-copy p, .hero-legal .hero-copy > p {
  color: var(--muted);
}

.hero-sky .hero-copy > p:not(:has(.button)) {
  max-width: 650px;
}

.eyebrow, .hero-copy .eyebrow {
  color: var(--cosmic-gold);
}

.eyebrow:before {
  content: "✦";
}

.hero-sky .eyebrow:before {
  display: none;
}

.button, .hero-sky .button {
  background: #286cf0;
  border-color: #286cf0;
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(40, 108, 240, 0.1411764706);
  border-radius: 16px;
}

.button:not(.button-secondary):after, .hero-sky .button:after {
  background: #fff;
  color: #235ecb;
}

.button:hover, .hero-sky .button:hover {
  background: #1e55c3;
  box-shadow: 0 10px 30px rgba(40, 108, 240, 0.2509803922);
}

.button-secondary, .hero-sky .button-secondary {
  background: transparent;
  border-color: var(--cosmic-edge);
  color: var(--ink) !important;
  box-shadow: none;
}

.button-secondary:hover, .hero-sky .button-secondary:hover {
  background: var(--cosmic-well);
}

[data-celestial=dark] .button, [data-celestial=dark] .hero-sky .button {
  background: #b6d3ff;
  border-color: #b6d3ff;
  color: #122b50 !important;
}

[data-celestial=dark] .button:after, [data-celestial=dark] .hero-sky .button:after {
  background: #193963;
  color: #e5efff;
}

[data-celestial=dark] .button:hover {
  background: #d5e5ff;
}

[data-celestial=dark] .button-secondary, [data-celestial=dark] .hero-sky .button-secondary {
  background: transparent;
  border-color: var(--cosmic-edge);
  color: var(--ink) !important;
}

[data-celestial=dark] .button-secondary:hover {
  background: var(--cosmic-well);
}

.cosmic-product, .hero-feature .cosmic-product {
  position: relative;
  height: 370px;
  max-width: 1100px;
  margin: 28px auto 0;
  transform: none;
  perspective: 1400px;
}

.cosmic-center {
  position: absolute;
  width: 250px;
  height: 250px;
  left: calc(50% - 125px);
  top: -12px;
  z-index: 2;
  transform: perspective(700px) rotateY(-20deg) rotateX(12deg) rotate(-10deg);
  animation: star-presence 9s ease-in-out infinite;
}

.cosmic-orbits {
  position: absolute;
  inset: 10px 70px 0;
}

.cosmic-orbits i {
  position: absolute;
  width: 100%;
  height: 205px;
  top: 70px;
  left: 0;
  border: 1px solid var(--cosmic-edge);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.cosmic-orbits i:nth-child(2) {
  transform: rotate(12deg);
  border-style: dashed;
  opacity: 0.55;
}

.cosmic-orbits i:nth-child(3) {
  width: 55%;
  height: 330px;
  left: 23%;
  top: 0;
  transform: rotate(-30deg);
  opacity: 0.35;
}

.cosmic-product > .product-art {
  position: absolute;
  z-index: 3;
  width: 260px;
  padding: 20px;
  border-radius: 20px;
  animation: none;
}

.cosmic-product > .art-inbox {
  left: 4%;
  top: 20px;
  transform: rotateY(15deg) rotate(-7deg) !important;
}

.cosmic-product > .art-rules {
  left: calc(50% - 130px);
  top: 210px;
  height: 155px;
  transform: rotateX(10deg) !important;
}

.cosmic-product > .art-rules .rule-line {
  display: none;
}

.cosmic-product > .art-rules .rule {
  padding: 7px 0;
}

.cosmic-product > .art-approval {
  right: 4%;
  top: 42px;
  transform: rotateY(-15deg) rotate(7deg) !important;
}

.product-art {
  background: var(--cosmic-surface);
  color: var(--ink);
  border: 1px solid var(--cosmic-edge);
  box-shadow: var(--cosmic-shadow);
}

.mini-symbol {
  background: var(--cosmic-gold-soft);
  color: var(--cosmic-gold);
}

.mini-dot {
  background: var(--cosmic-accent);
  box-shadow: 0 0 10px var(--cosmic-glow);
}

.avatar {
  background: var(--cosmic-well);
  color: var(--cosmic-accent);
}

.avatar.peach {
  background: var(--cosmic-gold-soft);
  color: var(--cosmic-gold);
}

.status {
  background: var(--cosmic-well);
  color: var(--cosmic-accent);
}

.skeleton i {
  background: var(--cosmic-edge);
}

.rule {
  border-color: var(--line);
}

.rule span, .draft-label, .credit-number span {
  color: var(--muted);
}

.rule-line i {
  background: var(--cosmic-edge);
}

.rule-line i:nth-child(2) {
  background: var(--cosmic-accent);
}

.approval-state {
  background: var(--cosmic-well);
}

.approval-state b {
  background: #2f66c8;
  color: #fff;
}

.source-node, .source-node:nth-child(3), .issue-progress span, .draft-options span {
  background: var(--cosmic-well);
}

.draft-options span:last-child {
  background: var(--cosmic-gold-soft);
  color: #76500f;
}
html[data-celestial="dark"] .draft-options span:last-child { color: #f1c96b; }

.team-orbit .avatar {
  border-color: var(--cosmic-surface);
  box-shadow: 0 0 0 1px var(--cosmic-edge);
}

.team-orbit > span {
  color: var(--muted);
}

.issue-stars span {
  color: var(--cosmic-edge);
}

.credit-meter i {
  background: var(--cosmic-accent);
}

.credit-meter i:nth-last-child(-n+3) {
  background: var(--cosmic-edge);
}

.workflow li {
  border-color: var(--cosmic-edge);
}

.workflow li:before, .workflow li:after {
  color: var(--cosmic-gold);
}

.pricing-section {
  padding-top: 60px;
}

.pricing-grid {
  padding: 0;
  gap: 20px;
  background: transparent;
}

.price-card {
  background: var(--cosmic-surface);
  color: var(--ink);
  border: 1px solid var(--cosmic-edge);
  border-radius: 26px;
  box-shadow: 0 10px 35px rgba(16, 39, 71, 0.031372549);
}

.price-card--featured {
  background: radial-gradient(ellipse at 70% 0, var(--cosmic-glow), transparent 65%), var(--cosmic-surface);
  border-color: var(--cosmic-accent);
  box-shadow: 0 15px 50px var(--cosmic-glow);
}

.plan-icon, .price-card--featured .plan-icon {
  width: 60px;
  height: 60px;
  background: url("celestial-star.svg") center/contain no-repeat;
  color: transparent;
  font-size: 0;
  border-radius: 0;
}

.price-card--featured .plan-icon {
  transform: rotate(15deg);
}

.price-card > p:nth-of-type(1) {
  color: var(--ink);
}

.price-card > p:nth-of-type(2), .price-card > p:nth-of-type(3) {
  color: var(--muted);
  border-color: var(--line);
}

.detail-art, .feature-detail:nth-child(3n) .detail-art {
  background: radial-gradient(ellipse at center, var(--cosmic-glow), transparent 65%), url("celestial-chart.svg") center/cover, var(--soft);
  border: 1px solid var(--cosmic-edge);
  border-radius: 50% 50% 25px 25px;
  min-height: 410px;
}

.feature-detail:nth-child(even) .detail-art {
  border-radius: 25px 25px 50% 50%;
}

.closing-cta {
  position: relative;
  padding: 100px 24px;
  margin: 25px 0 0;
  border-radius: 0;
  border-block: 1px solid var(--line);
  background: radial-gradient(ellipse at 50% 100%, var(--cosmic-glow), transparent 65%), url("celestial-chart.svg") center/cover, var(--paper);
}

.closing-cta:before {
  content: "";
  display: block;
  margin: 0 auto 25px;
  width: 110px;
  height: 110px;
  background: url("celestial-star.svg") center/contain no-repeat;
  transform: rotate(-12deg);
}

.closing-cta h2, .closing-cta > p, .closing-cta strong {
  color: var(--ink) !important;
}

.closing-cta > p {
  color: var(--muted) !important;
}

.site-footer nav > div > span, .footer-bottom, .footer-bottom a {
  color: var(--muted) !important;
}

.site-footer nav a:hover {
  color: var(--cosmic-accent) !important;
}

.legal-copy a, body.rb-aeline p a:not(.button) {
  color: var(--cosmic-accent);
}

.legal-copy th {
  background: var(--soft);
}

.menu-toggle, #mobile-menu {
  background: var(--cosmic-surface);
  color: var(--ink);
  border-color: var(--cosmic-edge);
}

.menu-toggle span {
  background: var(--ink);
}

.menu-close {
  color: var(--ink);
}

.skip-link {
  background: var(--cosmic-surface);
}

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline-color: var(--cosmic-accent);
}

@keyframes star-presence {
  0%, 100% {
    transform: perspective(700px) rotateY(-20deg) rotateX(12deg) rotate(-10deg) translateY(0);
  }
  50% {
    transform: perspective(700px) rotateY(10deg) rotateX(4deg) rotate(-3deg) translateY(-12px);
  }
}
@keyframes celestial-breathe {
  0%, 100% {
    opacity: 0.6;
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}
@keyframes satellite-drift {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -15px;
  }
}
@media (min-width: 1600px) {
  .hero-sky {
    padding-top: 170px;
  }
}
@media (max-width: 1050px) {
  .site-header {
    gap: 16px;
  }
  .header-actions {
    gap: 14px;
  }
  .celestial-toggle {
    min-width: 80px;
  }
  .cosmic-product > .product-art {
    width: 225px;
  }
  .cosmic-product > .art-inbox {
    left: 1%;
  }
  .cosmic-product > .art-approval {
    right: 1%;
  }
  .cosmic-product > .art-rules {
    left: calc(50% - 112px);
  }
  .satellite-one {
    left: 2%;
    width: 65px;
  }
  .satellite-two {
    right: 1%;
    width: 95px;
  }
  .cosmic-center {
    width: 205px;
    left: calc(50% - 102px);
    top: 0;
  }
}
@media (max-width: 760px) {
  .site-header {
    gap: 10px;
  }
  .site-header nav {
    display: none;
  }
  .header-actions {
    display: none;
  }
  .celestial-toggle {
    margin-left: auto;
    min-width: 76px;
    min-height: 40px;
    font-size: 11px;
    gap: 5px;
  }
  .mode-icon {
    font-size: 20px;
  }
  .rb-home .site-header {
    width: calc(100% - 40px);
    top: 4px;
  }
  .rb-home .site-header .brand, .brand {
    width: 122px;
  }
  .menu-toggle {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }
  .hero-sky {
    padding: 128px 20px 32px;
  }
  .hero-sky .hero-copy .eyebrow {
    font-size: 50px;
    margin-bottom: 25px;
  }
  body.rb-aeline .hero-sky h1 {
    font-size: 34px !important;
    line-height: 1.2;
  }
  .hero-copy > p {
    font-size: 15px;
  }
  .hero-sky .hero-copy > p:not(:has(.button)) {
    max-width: 34ch;
  }
  .hero-feature {
    padding: 45px 22px 30px;
  }
  .hero-pricing, .hero-legal {
    padding: 45px 23px;
  }
  .hero-pricing h1 {
    font-size: 37px !important;
  }
  .satellite-one {
    width: 40px;
    top: 17%;
    left: -8px;
  }
  .satellite-two {
    width: 52px;
    top: 10%;
    right: 0;
  }
  .hero-pricing .satellite-star, .hero-legal .satellite-star {
    width: 35px;
    opacity: 0.35;
  }
  .celestial-chart {
    width: 170%;
    max-width: none;
    left: -35%;
    opacity: 0.6;
  }
  .celestial-halo {
    width: 100%;
    left: 0;
  }
  .cosmic-product, .hero-feature .cosmic-product {
    height: 320px;
    margin: 20px -20px 0;
    transform: none;
  }
  .cosmic-center {
    width: 150px;
    height: 150px;
    left: calc(50% - 75px);
    top: 0;
  }
  .cosmic-orbits {
    inset: 30px -80px 0;
  }
  .cosmic-orbits i {
    height: 150px;
  }
  .cosmic-orbits i:nth-child(3) {
    height: 240px;
  }
  .cosmic-product > .product-art {
    width: 160px;
    height: 175px;
    font-size: 8px;
    padding: 13px;
    border-radius: 14px;
  }
  .cosmic-product > .art-inbox {
    left: -42px;
    top: 85px;
  }
  .cosmic-product > .art-approval {
    right: -42px;
    top: 85px;
  }
  .cosmic-product > .art-rules {
    width: 180px;
    height: 135px;
    left: calc(50% - 90px);
    top: 170px;
  }
  .cosmic-product .mini-heading {
    gap: 6px;
  }
  .cosmic-product .mini-symbol {
    width: 19px;
    height: 19px;
    font-size: 13px;
  }
  .cosmic-product .draft-label {
    margin-bottom: 10px;
  }
  .detail-art {
    min-height: 330px;
  }
  .pricing-grid {
    gap: 18px;
  }
  .pricing-section {
    padding-top: 35px;
  }
  .price-card {
    padding: 28px;
  }
  .closing-cta {
    padding: 65px 22px;
  }
  .closing-cta:before {
    width: 80px;
    height: 80px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cosmic-center, .satellite-star, .celestial-halo {
    animation: none !important;
  }
}
/* V4 / quieter celestial direction; loaded after the unchanged V3 palette. */
.hero-sky .hero-copy > .eyebrow {
  display: none;
}

.hero-sky {
  padding-top: 185px;
  min-height: 860px;
  padding-bottom: 50px;
}

body.rb-aeline .hero-sky h1 {
  font-size: clamp(40px, 4.1vw, 60px);
  max-width: 950px;
  line-height: 1.13;
}

.hero-sky .hero-copy {
  max-width: 950px;
}

.hero-sky .hero-copy > p:not(:has(.button)) {
  margin-top: 30px !important;
}

.satellite-star, .cosmic-center, .cosmic-orbits {
  display: none;
}

.celestial-chart {
  opacity: 0.23;
}

.celestial-halo {
  opacity: 0.38;
  animation: none;
  filter: blur(85px);
}

.hero-sky, .hero-feature, .hero-pricing, .hero-legal {
  background: radial-gradient(ellipse at 50% 100%, var(--cosmic-glow), transparent 65%), var(--paper);
}

.eyebrow, .hero-copy .eyebrow {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 400;
}

.eyebrow:before {
  display: none;
}

.brand, .rb-home .site-header .brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto;
}

.brand svg {
  width: 29px;
  height: 36px;
  flex-shrink: 0;
}

.brand .wordmark {
  font: 400 28px/1 Anta, sans-serif;
  letter-spacing: 0.015em;
  white-space: nowrap;
  color: #286cf0;
}

.brand .wordmark > span {
  color: #d99a22;
}

.cosmic-product, .hero-feature .cosmic-product {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  height: 290px;
  max-width: 1050px;
  margin: 55px auto 0;
}

.cosmic-product > .product-art {
  position: relative;
  inset: auto !important;
  width: 280px;
  height: 235px;
  flex-shrink: 0;
  padding: 22px;
  font-size: 11px;
  border-radius: 18px;
}

.cosmic-product > .art-inbox {
  transform: perspective(900px) rotateY(9deg) rotate(-3deg) !important;
}

.cosmic-product > .art-rules {
  transform: translateY(-14px) !important;
  height: 235px;
}

.cosmic-product > .art-rules .rule {
  padding: 12px 0;
}

.cosmic-product > .art-rules .rule-line {
  display: flex;
}

.cosmic-product > .art-approval {
  transform: perspective(900px) rotateY(-9deg) rotate(3deg) !important;
}

.mini-symbol {
  background: var(--cosmic-well);
  color: var(--cosmic-accent);
}

.detail-art, .feature-detail:nth-child(3n) .detail-art, .feature-detail:nth-child(even) .detail-art {
  border-radius: 24px;
  background: radial-gradient(ellipse at center, var(--cosmic-glow), transparent 72%), var(--soft);
  border-color: transparent;
}

.plan-icon, .price-card--featured .plan-icon {
  width: 30px;
  height: 3px;
  background: var(--cosmic-accent);
  transform: none;
  margin-bottom: 32px;
  border-radius: 4px;
}

.price-card--featured {
  box-shadow: 0 14px 45px rgba(40, 108, 240, 0.0705882353);
}

.closing-cta {
  background: radial-gradient(ellipse at 50% 100%, var(--cosmic-glow), transparent 75%), var(--paper);
}

.closing-cta:before {
  display: none;
}

.workflow li:before, .workflow li:after {
  color: var(--cosmic-accent);
}

.mode-icon {
  color: var(--muted);
}

@media (min-width: 1600px) {
  .hero-sky {
    padding-top: 190px;
    min-height: 910px;
  }
}
@media (max-width: 1050px) {
  .cosmic-product {
    gap: 18px;
  }
  .cosmic-product > .product-art {
    width: 235px;
    padding: 18px;
  }
}
@media (max-width: 760px) {
  .brand, .rb-home .site-header .brand {
    width: auto;
    gap: 6px;
  }
  .brand svg {
    width: 25px;
    height: 32px;
  }
  .brand .wordmark {
    font-size: 25px;
  }
  .hero-sky {
    padding: 140px 22px 35px;
    min-height: 0;
  }
  body.rb-aeline .hero-sky h1 {
    font-size: 37px !important;
    line-height: 1.16;
  }
  .cosmic-product, .hero-feature .cosmic-product {
    height: 220px;
    margin: 35px -145px 0;
    gap: 14px;
    max-width: none;
  }
  .cosmic-product > .product-art {
    width: 195px;
    height: 195px;
    padding: 15px;
    font-size: 9px;
    flex-shrink: 0;
  }
  .cosmic-product > .art-rules {
    height: 200px;
  }
  .cosmic-product > .art-rules .rule {
    padding: 9px 0;
  }
  .cosmic-product .mini-heading {
    font-size: 10px;
  }
  .celestial-chart {
    opacity: 0.18;
  }
}
/* V7 navigation and footer only; previous versions retain their layout. */
.celestial-toggle {
  min-width: 44px !important;
  width: 44px;
  height: 44px;
  padding: 0;
  justify-content: center;
  flex-shrink: 0;
}

.celestial-toggle .mode-icon {
  font-size: 23px;
  line-height: 1;
}

.site-header nav {
  gap: 22px;
}

.footer-bottom {
  align-items: center;
  gap: 24px;
}

.site-footer .footer-bottom .footer-policies {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-left: auto;
}

.site-footer .footer-bottom .footer-policies a {
  margin: 0;
  font: inherit;
  letter-spacing: normal;
  padding: 8px 0;
}

@media (max-width: 1100px) {
  .site-header > nav, .site-header .header-actions {
    display: none;
  }
  .site-header .celestial-toggle {
    margin-left: auto;
  }
  .site-header .menu-toggle {
    display: flex;
  }
}
@media (max-width: 760px) {
  .footer-bottom {
    align-items: flex-start;
    gap: 12px;
  }
  .site-footer .footer-bottom .footer-policies {
    margin-left: 0;
    justify-content: flex-start;
    gap: 8px 20px;
  }
}
/* V8: restore narrative sections while keeping V7 navigation and themes. */
.v8-feature-footnote {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  padding: 0 24px 45px;
  margin: 0 auto !important;
}

.feature-detail[id] {
  scroll-margin-top: 45px;
}

.v8-credit-feature .detail-art {
  order: 0 !important;
  background: radial-gradient(ellipse at center, #dce9fc, #edf3fc) !important;
}

.v8-credit-feature .product-art {
  background: #fff;
  color: #17345c;
}

.v8-credit-feature .mini-symbol {
  background: #e7efff;
  color: #286cf0;
}

.v8-credit-feature .credit-meter i:nth-child(-n+7) {
  background: #286cf0;
}

.v8-credit-feature .credit-meter i:nth-child(n+8) {
  background: #dce7f8;
}

[data-celestial=dark] .v8-credit-feature .detail-art {
  background: radial-gradient(ellipse at center, #203b65, #101d35) !important;
}

[data-celestial=dark] .v8-credit-feature .product-art {
  background: #14243d;
  color: #edf4ff;
  border-color: #38547d;
  box-shadow: 0 22px 50px rgba(3, 9, 22, 0.4);
}

[data-celestial=dark] .v8-credit-feature .mini-symbol {
  background: #243f68;
  color: #a9cbff;
}

[data-celestial=dark] .v8-credit-feature .credit-number span,
[data-celestial=dark] .v8-credit-feature .rule span {
  color: #b9cbea;
}

[data-celestial=dark] .v8-credit-feature .rule b {
  color: #edf4ff;
}

[data-celestial=dark] .v8-credit-feature .rule {
  border-color: #38547d;
}

[data-celestial=dark] .v8-credit-feature .credit-meter i:nth-child(-n+7) {
  background: #78aaff;
}

[data-celestial=dark] .v8-credit-feature .credit-meter i:nth-child(n+8) {
  background: #30476b;
}
@media (max-width: 600px) {
  .v8-credit-feature .detail-art {
    order: 0 !important;
  }
}
.rb-home .button.v8-center-features:hover {
  transform: translate(-50%, -50%) scale(1.035);
}

.rb-home .hero-copy .hero-actions .v8-trial-note {
  max-width: none !important;
  white-space: nowrap;
}

@media (min-width: 901px) {
  .rb-home .hero-actions {
    flex-wrap: nowrap !important;
  }
}
@media (max-width: 900px) {
  .rb-home .hero-actions {
    flex-direction: column !important;
    align-items: center;
  }
  .rb-home .hero-actions > .button {
    flex-basis: auto !important;
    max-width: none !important;
    margin: 0 !important;
    white-space: nowrap;
  }
  .rb-home .hero-copy .hero-actions .v8-trial-note {
    text-align: center !important;
    font-size: 12px !important;
  }
}
@media (max-width: 760px) {
  .rb-home .button.v8-center-features:hover {
    transform: scale(1.035);
  }
}
@media (prefers-reduced-motion: reduce) {
  .rb-home .button.v8-center-features {
    transition: none;
  }
}
.celestial-toggle {
  display: grid;
  place-items: center;
  padding: 0;
}

.celestial-toggle .mode-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  line-height: 1;
}

.celestial-toggle .mode-icon svg {
  display: none;
  width: 24px;
  height: 24px;
}

html[data-celestial="light"] .mode-icon [data-mode-icon="light"],
html[data-celestial="dark"] .mode-icon [data-mode-icon="dark"] {
  display: block;
}

.rb-home .hero-sky .cosmic-product {
  display: none !important;
}

.rb-home .hero-sky {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 60px !important;
  box-sizing: border-box;
}

.rb-home .hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.rb-home .hero-copy .hero-actions .v8-trial-note {
  font-size: 12px !important;
  max-width: 155px;
  text-align: left;
  line-height: 1.6;
}

.v8-feature-quartet {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding-top: 70px;
  padding-bottom: 70px;
}

.v8-feature-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 45px 30px 65px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.v8-feature-panel:nth-child(n+3) {
  padding-top: 65px;
}

.v8-panel-art {
  height: 270px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.v8-feature-quartet {
  grid-auto-rows: 1fr;
}

.v8-panel-art .product-art {
  width: 300px;
  max-width: 90%;
  transform: rotate(-5deg);
}

.v8-feature-panel:nth-child(even) .product-art {
  transform: rotate(5deg);
}

.v8-feature-panel h2 {
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.25;
  margin-bottom: 20px !important;
}

.v8-feature-panel p {
  color: var(--muted);
  max-width: 510px;
  line-height: 1.8;
}

.v8-center-features {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  white-space: nowrap;
  box-shadow: 0 0 0 12px var(--paper);
}

@media (max-width: 760px) {
  .v8-feature-quartet {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .v8-feature-panel {
    padding: 35px 22px !important;
  }
  .v8-feature-panel:nth-child(3) {
    grid-row: 4;
  }
  .v8-feature-panel:nth-child(4) {
    grid-row: 5;
  }
  .v8-center-features {
    position: static;
    grid-row: 3;
    transform: none;
    justify-self: center;
    margin: 24px 0;
    box-shadow: none;
  }
  .v8-panel-art {
    height: 240px;
  }
  .rb-home .hero-actions {
    gap: 14px 10px;
  }
  .rb-home .hero-actions > .button-secondary {
    flex-basis: 100%;
    max-width: 210px;
    margin: 0 20% !important;
  }
  .rb-home .hero-copy .hero-actions .v8-trial-note {
    max-width: 105px;
    font-size: 11px !important;
  }
}
.hero-sky .hero-copy > .eyebrow {
  display: block;
  font-family: Anta, sans-serif !important;
  font-size: clamp(30px, 4vw, 48px) !important;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 22px;
}

.hero-sky {
  min-height: 0;
  padding-bottom: 70px;
}

body.rb-aeline .hero-sky h1 {
  font-size: clamp(36px, 4vw, 58px);
  max-width: 960px;
}

.hero-copy .v8-trial-note {
  font-size: 13px !important;
  margin-top: 18px !important;
  color: var(--muted);
}

.feature-details {
  padding-top: 30px;
  padding-bottom: 0;
}

.feature-detail {
  margin-bottom: 95px;
}

.detail-copy p {
  max-width: 580px;
  line-height: 1.85;
}

.v8-section-intro {
  max-width: 790px;
  margin-bottom: 50px;
}

.v8-section-intro h2 {
  margin-bottom: 24px !important;
}

.v8-section-intro p, .v8-audience-grid p {
  color: var(--muted);
}

.v8-audiences {
  border-top: 0;
  border-bottom: 0;
}

.v8-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
  margin-top: 55px;
}

.v8-audience-grid article {
  border-top: 2px solid var(--cosmic-accent, var(--blue));
  padding-top: 25px;
}

.v8-audience-grid h3 {
  font-size: 23px;
  margin-bottom: 16px !important;
  line-height: 1.35;
}

.v8-included {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.v8-included ul {
  padding: 0;
  list-style: none;
  margin: 0;
}

.v8-included li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.price-card > p:nth-of-type(3) {
  min-height: 0 !important;
  margin-bottom: 30px !important;
}

.pricing-faq {
  padding-top: 55px;
}

.closing-cta p {
  margin-bottom: 28px !important;
}

@media (max-width: 760px) {
  .hero-sky {
    padding-top: 130px;
    padding-bottom: 35px;
  }
  .hero-sky .hero-copy > .eyebrow {
    font-size: 32px !important;
  }
  body.rb-aeline .hero-sky h1 {
    font-size: 36px !important;
  }
  .v8-audience-grid, .v8-included {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .v8-audience-grid {
    margin-top: 32px;
  }
  .feature-detail {
    margin-bottom: 60px;
  }
  .v8-section-intro {
    margin-bottom: 32px;
  }
}
/* V9: compact interactive feature index; body sections retain V8. */
.v9-feature-nav {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1160px;
  margin: 58px auto 20px;
  text-align: left;
}

.v9-feature-card {
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-width: 0;
  padding: 25px 22px;
  border: 1px solid var(--cosmic-edge);
  border-radius: 20px;
  background: linear-gradient(145deg, var(--cosmic-surface), var(--soft));
  box-shadow: 0 8px 25px rgba(16, 39, 71, 0.0235294118);
  transition: transform 0.22s, border-color 0.22s, box-shadow 0.22s;
}

.v9-card-heading {
  display: flex;
  align-items: center;
  gap: 10px;
}

.v9-card-heading strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.025em;
}

.v9-feature-icon {
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  height: 34px;
  border-radius: 11px;
  background: var(--cosmic-well);
  color: var(--cosmic-accent);
  font-size: 21px;
  line-height: 1;
}

.v9-card-arrow {
  margin-left: auto;
  color: var(--cosmic-accent);
  font-size: 17px;
  opacity: 0.55;
  transition: opacity 0.22s, transform 0.22s;
}

.v9-feature-summary {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  max-width: 230px;
}

.v9-feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--cosmic-accent);
  box-shadow: 0 14px 30px var(--cosmic-glow);
}

.v9-feature-card:hover .v9-card-arrow {
  opacity: 1;
  transform: translate(2px, -2px);
}

.v9-feature-card:focus-visible {
  outline: 3px solid var(--cosmic-accent);
  outline-offset: 4px;
}

@media (max-width: 1100px) {
  .v9-feature-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 780px;
  }
  .v9-feature-summary {
    max-width: none;
  }
}
@media (max-width: 520px) {
  .v9-feature-nav {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 35px;
  }
  .v9-feature-card {
    padding: 19px 20px;
    gap: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .v9-feature-card, .v9-card-arrow {
    transition: none;
  }
  .v9-feature-card:hover, .v9-feature-card:hover .v9-card-arrow {
    transform: none;
  }
}
/* V10: shared LocalWP marketing layout primitives. V8/V9 remain available. */
html[data-celestial] {
  --rb10-content-max: 1280px;
  --rb10-inline-space: 160px;
  --rb10-header-height: 100px;
  --rb10-section-space: clamp(76px, 8vw, 112px);
  --rb10-section-space-compact: clamp(52px, 5vw, 72px);
  --rb10-hero-space: clamp(64px, 6vw, 88px);
  --rb10-heading-body-space: 22px;
  --rb10-action-space: 28px;
  --rb10-column-gap: clamp(48px, 6vw, 80px);
  --rb10-card-gap: 16px;
}

/* Every shared shell surface now resolves to the same outer edge. */
.site-header,
.section,
.site-footer {
  width: min(var(--rb10-content-max), 100% - var(--rb10-inline-space)) !important;
  max-width: none !important;
}

.site-header,
.rb-home .site-header {
  height: var(--rb10-header-height);
  top: 0;
}

.rb-home .site-header {
  width: min(var(--rb10-content-max), 100% - var(--rb10-inline-space)) !important;
}

.site-header nav {
  gap: 32px;
}

.site-header nav a {
  padding-block: 4px;
}

.site-header nav a:after {
  bottom: 0;
}

.header-actions {
  gap: 20px;
}

.section {
  padding-block: var(--rb10-section-space);
}

.hero-feature,
.hero-pricing {
  padding: var(--rb10-hero-space) max(24px, var(--rb10-inline-space) / 2) var(--rb10-section-space-compact);
}

.hero-feature .hero-copy,
.hero-pricing .hero-copy {
  max-width: 840px;
}

.hero-copy h1 {
  margin-bottom: var(--rb10-heading-body-space) !important;
}

.hero-copy > p:has(.button) {
  margin-top: var(--rb10-action-space) !important;
}

.hero-actions {
  gap: 12px 14px;
}

.hero-actions .button {
  min-height: 52px;
}

/* Home remains intentionally centered; only its shell aligns to the shared header. */
.rb-home .hero-sky {
  min-height: 100svh !important;
  padding: calc(var(--rb10-header-height) + 48px) 24px 64px !important;
}

.rb-home .hero-copy .hero-actions .v8-trial-note {
  margin: 0 !important;
}

/* Keep the V9 feature index inside the same page rails as the header and body. */
.v9-feature-nav {
  width: min(var(--rb10-content-max), 100% - var(--rb10-inline-space));
  max-width: none;
  gap: var(--rb10-card-gap);
  margin: 48px auto 0;
}

.v9-feature-card {
  min-height: 166px;
}

.feature-details {
  padding-top: var(--rb10-section-space);
}

.feature-detail {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--rb10-column-gap);
  margin-bottom: var(--rb10-section-space);
}

.pricing-section {
  padding-top: var(--rb10-section-space);
  padding-bottom: var(--rb10-section-space-compact);
}

.v8-section-intro {
  margin-bottom: var(--rb10-section-space-compact);
}

.pricing-grid {
  gap: var(--rb10-card-gap);
}

/* Equivalent pricing pairs share their outer edges, gap, and midpoint. */
.v8-included,
.pricing-faq {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--rb10-column-gap);
}

.v8-included {
  padding-top: var(--rb10-section-space-compact);
  padding-bottom: var(--rb10-section-space);
}

.pricing-faq {
  padding-top: var(--rb10-section-space-compact);
}

.closing-cta {
  margin-top: 0;
}

@media (max-width: 1050px) {
  html[data-celestial] {
    --rb10-inline-space: 96px;
    --rb10-column-gap: 48px;
  }
  .site-header nav {
    gap: 20px;
  }
}
@media (max-width: 760px) {
  html[data-celestial] {
    --rb10-inline-space: 40px;
    --rb10-header-height: 76px;
    --rb10-section-space: 68px;
    --rb10-section-space-compact: 44px;
    --rb10-hero-space: 48px;
    --rb10-column-gap: 28px;
    --rb10-card-gap: 12px;
  }
  .site-header,
  .rb-home .site-header {
    width: calc(100% - var(--rb10-inline-space)) !important;
    height: var(--rb10-header-height);
    top: 0;
  }
  .brand,
  .rb-home .site-header .brand {
    width: 128px;
  }
  .hero-feature,
  .hero-pricing {
    padding: var(--rb10-hero-space) 20px var(--rb10-section-space-compact);
  }
  .rb-home .hero-sky {
    padding: calc(var(--rb10-header-height) + 36px) 20px 48px !important;
  }
  .hero-actions {
    width: 100%;
  }
  .rb-home .hero-actions {
    flex-direction: column !important;
    align-items: center;
  }
  .rb-home .hero-actions > .button,
  .rb-home .hero-actions > .button-secondary {
    flex-basis: auto !important;
    max-width: none !important;
    margin: 0 !important;
  }
  .rb-home .hero-copy .hero-actions .v8-trial-note {
    max-width: none;
    text-align: center !important;
  }
  .v9-feature-nav {
    width: calc(100% - var(--rb10-inline-space));
    margin-top: 36px;
  }
  .v9-feature-card {
    min-height: 0;
  }
  .v8-feature-panel,
  .v8-panel-art {
    min-width: 0;
    max-width: 100%;
  }
  .v8-panel-art .product-art {
    width: min(300px, 100%);
    max-width: 100%;
  }
  .feature-detail,
  .v8-included,
  .pricing-faq {
    grid-template-columns: 1fr;
    gap: var(--rb10-column-gap);
  }
  .feature-detail {
    margin-bottom: var(--rb10-section-space);
  }
}
/* Two WordPress tool pages use the V10 shell; styles remain scoped here. */
.rb-tools .hero-copy {
  max-width: 840px;
}

.rb-tools .keep-word {
  white-space: nowrap;
}

.rb-tools .hero-copy .heading-accent {
  display: block;
}

.rb-tools .tool-graphic {
  height: 350px;
  flex: 0 0 350px;
}

.rb-tools .hero-copy > p {
  margin-bottom: 0 !important;
}

.rb-tools .tools-subtitle {
  font-size: 20px;
  color: var(--cosmic-accent);
}

.rb-tools .tools-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding-block: var(--rb10-section-space-compact);
}

.rb-tools .tool-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--cosmic-edge);
  border-radius: 28px;
  background: var(--cosmic-surface);
  overflow: hidden;
  transition: border-color 0.22s, box-shadow 0.22s, transform 0.22s;
}

.rb-tools .tool-card:hover {
  border-color: var(--cosmic-accent);
  box-shadow: var(--cosmic-shadow);
  transform: translateY(-4px);
}

.rb-tools .tool-card:focus-visible {
  outline: 3px solid var(--cosmic-accent);
  outline-offset: 5px;
}

.rb-tools .tool-graphic {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 330px;
  padding: 40px 28px;
  background: radial-gradient(ellipse at center, var(--cosmic-glow), transparent 72%), var(--soft);
  overflow: hidden;
}

.rb-tools .tool-graphic .product-art {
  position: relative;
  z-index: 1;
  width: 310px;
  max-width: 90%;
  transform: rotate(-5deg);
  transition: transform 0.3s;
}

.rb-tools .tool-graphic-removal .product-art {
  transform: rotate(5deg);
}

.rb-tools .tool-card:hover .product-art {
  transform: rotate(0deg) translateY(-3px);
}

.rb-tools .tool-orbit {
  position: absolute;
  width: 85%;
  aspect-ratio: 1.6;
  border: 1px solid var(--cosmic-edge);
  border-radius: 50%;
  transform: rotate(-20deg);
}

.rb-tools .tool-spark {
  position: absolute;
  right: 10%;
  top: 14%;
  font-size: 42px;
  color: var(--cosmic-gold);
  z-index: 2;
}

.rb-tools .tool-card-copy {
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.rb-tools .tool-card-copy h2 {
  font-size: clamp(25px, 2.3vw, 34px);
  line-height: 1.22;
  margin: 0;
  text-wrap: balance;
  word-break: normal;
  hyphens: none;
}

.rb-tools .tool-card-body {
  padding: 28px 32px 32px;
  margin: 0;
  line-height: 1.8;
}

.rb-tools .tool-card-copy p {
  line-height: 1.8;
  margin-bottom: var(--rb10-action-space);
}

.rb-tools .tool-card-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  margin-top: auto;
  padding: 14px 18px;
  border: 1px solid var(--cosmic-edge);
  border-radius: 14px;
  background: var(--soft);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--cosmic-accent);
  text-wrap: balance;
  word-break: normal;
  hyphens: none;
}

.rb-tools .tool-card-action > span {
  flex-shrink: 0;
  font-size: 24px;
}

.rb-tools .tool-description {
  padding-block: var(--rb10-section-space-compact) 0;
}

.rb-tools .tool-description p {
  max-width: 840px;
  margin-inline: auto;
  line-height: 1.85;
}

.rb-tools .tool-description p + p {
  margin-top: var(--rb10-heading-body-space);
}

/* Semantic CTA groups retain the geometry formerly inherited from a paragraph. */
.hero-copy > .hero-actions {
  max-width: 680px;
  margin: var(--rb10-action-space) auto 26px !important;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
  gap: 12px;
}
.rb-home .hero-copy > .hero-actions { max-width: 690px; }
@media (max-width: 760px) {
  .hero-copy > .hero-actions { font-size: 15px; gap: 8px; }
}

.rb-tools .tool-coming-soon {
  text-align: center;
  padding-block: var(--rb10-section-space-compact);
}

.rb-tools .tool-coming-soon h2 {
  margin-bottom: 32px;
  color: var(--cosmic-accent);
}

.rb-tools .tool-coming-soon img {
  display: block;
  width: 100%;
  max-width: 1100px;
  height: auto;
  margin-inline: auto;
  border: 1px solid var(--cosmic-edge);
  border-radius: 28px;
  box-shadow: var(--cosmic-shadow);
}

@media (min-width: 761px) {
  .rb-tools .tool-card {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    gap: 0;
  }
}
@media (max-width: 760px) {
  .rb-tools .tools-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .rb-tools .tool-graphic {
    height: 300px;
    flex-basis: 300px;
    min-height: 280px;
    padding: 30px 16px;
  }
  .rb-tools .tool-graphic .product-art {
    max-width: 92%;
    padding: 20px;
    font-size: 12px;
  }
  .rb-tools .tool-card-copy {
    padding: 26px 22px;
  }
  .rb-tools .tool-card-body {
    padding: 26px 22px;
  }
  .rb-tools .tool-coming-soon img {
    border-radius: 20px;
  }
  .rb-tools .tools-subtitle {
    font-size: 17px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .rb-tools .tool-card, .rb-tools .tool-graphic .product-art {
    transition: none;
  }
  .rb-tools .tool-card:hover {
    transform: none;
  }
  .rb-tools .tool-card:hover .product-art {
    transform: none;
  }
}

/* Logo handoff: outlined Anta, cap-height alignment, original palette. */
body.rb-aeline .brand, body.rb-aeline.rb-home .site-header .brand {
  width:auto; max-width:none; height:50px; padding:0; gap:0; background:none; flex-shrink:0;
  justify-content:flex-start; text-align:left; margin-left:0;
}
body.rb-aeline .brand .brand-lockup { display:block; width:100%; height:50px; max-height:none; max-width:none; object-fit:contain; object-position:left center; }
body.rb-aeline .brand .brand-lockup-dark { display:none; }
html[data-celestial="dark"] body.rb-aeline .brand .brand-lockup-light { display:none; }
html[data-celestial="dark"] body.rb-aeline .brand .brand-lockup-dark { display:block; }
@media(max-width:760px) {
  body.rb-aeline .brand, body.rb-aeline.rb-home .site-header .brand { width:auto; height:35px; }
  body.rb-aeline .site-header { gap:10px; }
  body.rb-aeline .brand .brand-lockup { height:35px; }
  .footer-top { flex-wrap:wrap; }
}
