:root {
  --bg: #0a0f18;
  --bg-soft: #0f1522;
  --surface: #111a2a;
  --surface-2: #0d1421;
  --text: #e6ebf3;
  --muted: #8a94a6;
  --line: rgba(138, 148, 166, 0.2);
  --accent: #4f7eb5;
  --accent-2: #6b93c0;
  --radius: 18px;
  --shadow: 0 30px 70px rgba(2, 6, 14, 0.6);
}

/* Auralith Brand Book v1.0 / dev branch */
body.auralith-brand-dev {
  --bg: #050B16;
  --bg-soft: #0b1220;
  --surface: #111827;
  --surface-2: #0a1020;
  --text: #F8FAFC;
  --muted: #9fb0c8;
  --line: rgba(74, 158, 255, .2);
  --accent: #4A9EFF;
  --accent-2: #00D4FF;
  --violet: #A259FF;
  --shadow: 0 30px 80px rgba(0, 0, 0, .68);
  font-family: "Manrope", "Inter", sans-serif;
  background:
    radial-gradient(circle at 16% 12%, rgba(0, 212, 255, .18), transparent 32%),
    radial-gradient(circle at 86% 8%, rgba(162, 89, 255, .22), transparent 30%),
    radial-gradient(circle at 65% 72%, rgba(74, 158, 255, .12), transparent 36%),
    linear-gradient(180deg, #050B16 0%, #081120 48%, #050B16 100%);
}

body.auralith-brand-dev h1,
body.auralith-brand-dev h2,
body.auralith-brand-dev h3,
body.auralith-brand-dev .brand,
body.auralith-brand-dev .btn {
  font-family: "Manrope", "Inter", sans-serif;
}

body.auralith-brand-dev .brand-logo,
body.auralith-brand-dev .footer-logo img,
body.auralith-brand-dev .orbit-logo img,
body.auralith-brand-dev .client-orbit-logo img {
  background: #050B16;
  border-radius: 14px;
  box-shadow: 0 0 0 1px rgba(74, 158, 255, .24), 0 16px 42px rgba(0, 212, 255, .16);
}

body.auralith-brand-dev .btn-primary,
body.auralith-brand-dev .hero-cta .btn:first-child,
body.auralith-brand-dev .pricing-card.is-featured .btn {
  background: linear-gradient(135deg, #4A9EFF 0%, #00D4FF 48%, #A259FF 100%);
  color: #F8FAFC;
  border-color: rgba(0, 212, 255, .42);
  box-shadow: 0 16px 44px rgba(74, 158, 255, .28);
}

body.auralith-brand-dev .btn-secondary,
body.auralith-brand-dev .profile-icon-btn,
body.auralith-brand-dev .nav-links a {
  border-color: rgba(74, 158, 255, .24);
}

body.auralith-brand-dev .hero-panel,
body.auralith-brand-dev .pricing-card,
body.auralith-brand-dev .feature-card,
body.auralith-brand-dev .service-card,
body.auralith-brand-dev .terminal,
body.auralith-brand-dev .auralith-orbit-card {
  background: linear-gradient(160deg, rgba(17, 24, 39, .92), rgba(5, 11, 22, .96));
  border-color: rgba(74, 158, 255, .2);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .46), inset 0 1px 0 rgba(248, 250, 252, .04);
}

body.auralith-brand-dev .page-glow,
body.auralith-brand-dev .hero-signal-map li,
body.auralith-brand-dev .orbital-node,
body.auralith-brand-dev .traffic-star {
  filter: hue-rotate(34deg) saturate(1.35);
}

/* Public pages final cleanup: no horizontal drift, no terminal scrollbars */
.home-apple,
.b2b-page {
  width: 100%;
  overflow-x: clip;
}

.home-apple main,
.b2b-page main {
  width: 100%;
  overflow: hidden;
}

.home-apple .home-hero .hero-grid,
.b2b-page .b2b-hero .hero-grid {
  width: min(1160px, calc(100vw - 32px));
  padding-left: 0;
  padding-right: 0;
}

.home-apple .hero-panel,
.b2b-page .b2b-command-panel {
  transform: none !important;
  max-width: 100%;
  overflow: hidden;
}

.home-apple .terminal,
.b2b-page .terminal {
  max-width: 100%;
  overflow: hidden;
}

.home-apple pre,
.b2b-page pre {
  max-width: 100%;
  overflow: hidden;
  white-space: pre-wrap;
  word-break: normal;
  overflow-wrap: anywhere;
}

.home-apple .terminal code,
.b2b-page .terminal code {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.home-apple .hero-signal-map {
  display: grid;
}

.hero-signal-map li:nth-child(5) {
  left: 50%;
  top: 30%;
  animation-delay: 1.4s;
}

.hero-signal-map li:nth-child(6) {
  left: 73%;
  top: 55%;
  animation-delay: 1.75s;
}

.hero-signal-map li {
  animation-name: home-pulse, home-float;
  animation-duration: 2.6s, 7s;
  animation-timing-function: ease-in-out, ease-in-out;
  animation-iteration-count: infinite, infinite;
}

@keyframes home-float {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -8px;
  }
}

.b2b-page .b2b-command-panel {
  transition: transform .35s ease, border-color .35s ease;
}

.b2b-page .b2b-command-panel:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(143, 183, 167, .34);
}

.home-apple .footer-bottom-inner,
.b2b-page .footer-bottom-inner {
  grid-template-columns: minmax(220px, 1.4fr) minmax(150px, .8fr) minmax(170px, .8fr);
}

.home-apple .footer-brand-block,
.b2b-page .footer-brand-block {
  grid-column: auto;
  align-items: flex-start;
  text-align: left;
}

.home-apple .footer-logo,
.b2b-page .footer-logo {
  justify-content: flex-start;
}

.home-apple .footer-tagline,
.b2b-page .footer-tagline {
  margin-left: 0;
  text-align: left;
}

.home-apple .footer-nav-block,
.b2b-page .footer-nav-block {
  align-items: flex-start;
  text-align: left;
}

@media (max-width: 760px) {
  .home-apple,
  .b2b-page {
    overflow-x: hidden;
  }

  .home-apple .home-hero .hero-grid,
  .b2b-page .b2b-hero .hero-grid {
    width: 100%;
    max-width: 100%;
  }

  .home-apple .hero-panel,
  .b2b-page .b2b-command-panel {
    margin-inline: auto;
  }

  .home-apple .hero-status-strip {
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 9px 10px;
    font-size: .72rem;
  }

  .home-apple .hero-status-strip strong {
    display: none;
  }

  .home-apple .hero-signal-map {
    display: block;
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    height: 96px;
    margin-top: 10px;
    border-radius: 18px;
  }

  .home-apple .hero-signal-map li {
    width: 7px;
    height: 7px;
  }

  .home-apple .footer-bottom-inner,
  .b2b-page .footer-bottom-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 22px 18px;
  }

  .home-apple .footer-brand-block,
  .b2b-page .footer-brand-block {
    grid-column: 1 / -1 !important;
    align-items: flex-start !important;
    text-align: left !important;
  }

  .home-apple .footer-logo,
  .b2b-page .footer-logo {
    justify-content: flex-start !important;
  }

  .home-apple .footer-tagline,
  .b2b-page .footer-tagline {
    max-width: 240px;
    margin-left: 0 !important;
    text-align: left !important;
  }
}

/* Apple-inspired home presentation */
.home-apple {
  background:
    linear-gradient(180deg, rgba(7, 11, 18, 0.2), rgba(7, 11, 18, 0.96) 78%),
    radial-gradient(ellipse at 50% -12%, rgba(111, 156, 209, 0.2), transparent 42%),
    linear-gradient(115deg, rgba(28, 57, 63, 0.28), transparent 34%),
    #070b12;
}

.home-apple .site-header {
  background: rgba(7, 11, 18, 0.58);
  border-bottom-color: rgba(214, 228, 248, 0.08);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  backdrop-filter: blur(24px) saturate(140%);
}

.home-apple .nav {
  min-height: 70px;
}

.home-apple .brand-logo,
.home-apple .profile-icon-btn {
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.22);
}

.home-hero {
  position: relative;
  min-height: calc(100svh - 70px);
  display: grid;
  align-items: start;
  padding: clamp(36px, 5vw, 64px) 0 clamp(42px, 7vw, 88px);
  overflow: clip;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 72%);
  opacity: 0.34;
}

.home-hero .hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.78fr);
  gap: clamp(30px, 4.8vw, 64px);
  align-items: start;
}

.home-apple .eyebrow,
.home-apple .section-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 14px;
  padding: 7px 12px;
  color: #00d4ff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(0, 212, 255, .24);
  border-radius: 999px;
  background: rgba(0, 212, 255, .07);
  box-shadow: none;
}

.home-hero h1 {
  max-width: 15.5ch;
  margin-bottom: 22px;
  color: #f4f8ff;
  font-size: clamp(3rem, 6.7vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.home-hero .hero-text {
  max-width: 680px;
  color: rgba(223, 232, 246, 0.78);
  font-size: clamp(1.08rem, 1.7vw, 1.42rem);
  line-height: 1.55;
}

.home-apple .btn {
  min-height: 48px;
  border-radius: 999px;
  padding-inline: 1.35rem;
}

.home-apple .btn-primary {
  background: linear-gradient(135deg, #50d486 0%, #62a6df 100%);
  color: #04100d;
  box-shadow: 0 18px 44px rgba(67, 185, 133, 0.22);
}

.home-apple .btn-secondary {
  border-color: rgba(202, 219, 242, 0.2);
  background: rgba(13, 21, 34, 0.54);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.home-apple .hero-metrics {
  gap: 10px;
}

.home-apple .hero-metrics li {
  border-color: rgba(202, 219, 242, 0.14);
  background: rgba(13, 21, 34, 0.42);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.home-apple .hero-metrics strong {
  color: #f5f8ff;
}

.home-apple .hero-panel {
  position: relative;
  min-height: 560px;
  border-color: rgba(188, 211, 242, 0.18);
  border-radius: 34px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(20, 33, 52, 0.88), rgba(6, 10, 18, 0.96)),
    rgba(10, 15, 24, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 44px 120px rgba(0, 0, 0, 0.55);
  transform: perspective(1200px) rotateY(-5deg) rotateX(3deg);
  transform-origin: center;
  transition: transform 0.5s ease;
}

.home-apple .hero-panel:hover {
  transform: perspective(1200px) rotateY(-3deg) rotateX(2deg) translateY(-4px);
}

.hero-device-glow {
  position: absolute;
  inset: 18px;
  border-radius: 28px;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 28%, rgba(111, 180, 224, 0.2) 42%, transparent 58%),
    linear-gradient(180deg, rgba(80, 212, 134, 0.11), transparent 42%);
  opacity: 0.72;
}

.hero-status-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding: 11px 13px;
  border: 1px solid rgba(202, 219, 242, 0.14);
  border-radius: 18px;
  background: rgba(5, 9, 16, 0.48);
  color: rgba(223, 232, 246, 0.78);
  font-size: 0.82rem;
}

.hero-status-strip span {
  color: #7df0a7;
  font-weight: 700;
}

.hero-status-strip strong {
  color: #f2f7ff;
  font-size: 0.86rem;
}

.hero-status-strip em {
  color: #9fc8ba;
  font-style: normal;
}

.home-apple .terminal {
  position: relative;
  z-index: 2;
  border-color: rgba(202, 219, 242, 0.15);
  border-radius: 22px;
  background: rgba(4, 7, 13, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.home-apple pre {
  padding: 22px;
  color: #c5d9ef;
  font-size: clamp(0.8rem, 1.05vw, 0.95rem);
  line-height: 1.65;
}

.hero-signal-map {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  z-index: 1;
  height: 150px;
  border: 1px solid rgba(202, 219, 242, 0.1);
  border-radius: 24px;
  background:
    linear-gradient(90deg, transparent 0 24%, rgba(98, 166, 223, 0.16) 24% 25%, transparent 25% 50%, rgba(80, 212, 134, 0.14) 50% 51%, transparent 51%),
    rgba(7, 12, 20, 0.58);
  overflow: hidden;
}

.hero-signal-map {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-signal-map li {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7df0a7;
  box-shadow: 0 0 26px rgba(125, 240, 167, 0.9);
  animation: home-pulse 2.6s ease-in-out infinite;
}

.hero-signal-map li:nth-child(1) { left: 16%; top: 34%; }
.hero-signal-map li:nth-child(2) { left: 38%; top: 62%; animation-delay: .35s; }
.hero-signal-map li:nth-child(3) { left: 64%; top: 38%; animation-delay: .7s; }
.hero-signal-map li:nth-child(4) { left: 82%; top: 68%; animation-delay: 1.05s; }

@keyframes home-pulse {
  0%, 100% { transform: scale(0.82); opacity: 0.58; }
  50% { transform: scale(1.35); opacity: 1; }
}

.home-story {
  padding: clamp(70px, 10vw, 150px) 0;
}

.home-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: clamp(36px, 8vw, 110px);
  align-items: start;
}

.home-story__sticky {
  position: sticky;
  top: 112px;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-story__sticky h2 {
  max-width: 12ch;
  color: #f4f8ff;
  font-size: clamp(2.65rem, 6vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.home-story__sticky p:not(.eyebrow) {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(223, 232, 246, 0.72);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
}

.home-orbit {
  position: relative;
  width: min(430px, 78vw);
  aspect-ratio: 1;
  margin-top: 42px;
  display: grid;
  place-items: center;
}

.home-orbit__ring {
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(202, 219, 242, 0.16);
  border-radius: 50%;
  background:
    conic-gradient(from 180deg, rgba(80, 212, 134, 0.38), rgba(98, 166, 223, 0.1), rgba(159, 200, 186, 0.36), rgba(80, 212, 134, 0.38));
  mask: radial-gradient(circle, transparent 58%, black 59%);
  animation: home-spin 16s linear infinite;
}

.home-orbit__core {
  width: 116px;
  height: 116px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(202, 219, 242, 0.2);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.home-orbit__core img {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.home-orbit__node {
  position: absolute;
  min-width: 78px;
  padding: 8px 12px;
  border: 1px solid rgba(202, 219, 242, 0.18);
  border-radius: 999px;
  background: rgba(10, 16, 27, 0.8);
  color: #dcecff;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.home-orbit__node--one { top: 17%; right: 8%; }
.home-orbit__node--two { bottom: 18%; right: 12%; }
.home-orbit__node--three { left: 7%; top: 50%; }

@keyframes home-spin {
  to { transform: rotate(360deg); }
}

.home-story__steps {
  display: grid;
  gap: 18px;
}

.home-story-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(202, 219, 242, 0.14);
  border-radius: 28px;
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(145deg, rgba(17, 29, 46, 0.78), rgba(6, 10, 18, 0.94)),
    rgba(10, 15, 24, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  opacity: 0.72;
  transform: translateY(28px) scale(0.985);
  transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.6s ease;
}

.home-story-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  border-color: rgba(125, 240, 167, 0.24);
}

.home-story-card span {
  color: #7df0a7;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: auto;
}

.home-story-card h3 {
  max-width: 15ch;
  color: #f4f8ff;
  font-size: clamp(1.45rem, 2.5vw, 2.05rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.home-story-card p {
  margin: 14px 0 0;
  color: rgba(223, 232, 246, 0.68);
}

.home-apple .section {
  position: relative;
}

.home-apple .section-head h2,
.home-apple .b2b-bridge h2,
.home-apple .seo-copy h2,
.home-apple .site-footer h2 {
  color: #f4f8ff;
  letter-spacing: -0.03em;
}

.home-apple .access-section .container,
.home-apple .pricing-section .container,
.home-apple #services .container {
  border: 1px solid rgba(202, 219, 242, 0.1);
  border-radius: 34px;
  padding: clamp(24px, 4vw, 46px);
  background: linear-gradient(145deg, rgba(13, 22, 36, 0.68), rgba(7, 11, 18, 0.88));
}

.home-apple .access-badge,
.home-apple .access-stat,
.home-apple .pricing-card,
.home-apple .card,
.home-apple .seo-copy,
.home-apple .contact-form {
  border-color: rgba(202, 219, 242, 0.14);
  background: linear-gradient(160deg, rgba(18, 30, 48, 0.72), rgba(7, 12, 20, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.home-apple .pricing-card {
  border-radius: 24px;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.home-apple .pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(125, 240, 167, 0.24);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.home-apple .pricing-card--highlight {
  border-color: rgba(125, 240, 167, 0.34);
}

.home-apple .pricing-badge {
  background: linear-gradient(135deg, #50d486, #62a6df);
  color: #f4f7ff;
}

.home-apple .b2b-bridge-inner {
  min-height: 290px;
  border-radius: 34px;
  border-color: rgba(159, 200, 186, 0.22);
  background:
    linear-gradient(135deg, rgba(19, 45, 47, 0.78), rgba(7, 11, 18, 0.96)),
    rgba(10, 15, 24, 0.92);
}

.home-apple .site-footer {
  background: linear-gradient(180deg, rgba(7, 11, 18, 0), #05080d 80px);
}

.home-apple .reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.home-apple .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .home-hero {
    min-height: auto;
  }

  .home-hero .hero-grid,
  .home-story__grid {
    grid-template-columns: 1fr;
  }

  .home-apple .hero-panel {
    min-height: 440px;
    transform: none;
  }

  .home-story__sticky {
    position: relative;
    top: auto;
    min-height: 0;
  }

  .home-story__sticky h2 {
    max-width: 14ch;
  }

  .home-orbit {
    margin-inline: auto;
  }
}

@media (max-width: 760px) {
  .home-apple {
    background:
      radial-gradient(ellipse at 50% 0%, rgba(111, 156, 209, 0.18), transparent 34%),
      #070b12;
  }

  .home-hero {
    padding: 44px 0 34px;
  }

  .home-hero h1 {
    max-width: 10ch;
    font-size: clamp(3rem, 17vw, 4.6rem);
    letter-spacing: -0.055em;
  }

  .home-hero .hero-text {
    font-size: 1rem;
  }

  .home-apple .hero-panel {
    display: block;
    min-height: auto;
    border-radius: 24px;
    padding: 14px;
  }

  .hero-status-strip,
  .hero-signal-map {
    display: none;
  }

  .home-apple pre {
    padding: 16px;
    font-size: 0.72rem;
  }

  .home-story {
    padding: 52px 0;
  }

  .home-story__sticky h2 {
    font-size: clamp(2.6rem, 14vw, 3.8rem);
  }

  .home-orbit {
    width: min(330px, 90vw);
  }

  .home-orbit__core {
    width: 92px;
    height: 92px;
    border-radius: 24px;
  }

  .home-orbit__core img {
    width: 66px;
    height: 66px;
  }

  .home-story-card {
    min-height: 230px;
    border-radius: 22px;
  }

  .home-apple .access-section .container,
  .home-apple .pricing-section .container,
  .home-apple #services .container {
    border-radius: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-apple *,
  .home-apple *::before,
  .home-apple *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  font-family: "Inter", sans-serif;
  background: radial-gradient(circle at 90% 0%, #152237 0%, transparent 30%), var(--bg);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
  max-width: 100vw;
}

body.b2b-page {
  background:
    linear-gradient(115deg, rgba(20, 43, 50, 0.34) 0%, transparent 34%),
    radial-gradient(circle at 86% 8%, rgba(87, 125, 119, 0.22) 0%, transparent 28%),
    linear-gradient(180deg, #080d14 0%, #0b111b 48%, #070b12 100%);
}

.b2b-page .page-glow {
  display: none;
}

.page-glow {
  position: fixed;
  width: 560px;
  height: 560px;
  filter: blur(70px);
  z-index: -1;
  opacity: 0.28;
  pointer-events: none;
}

.page-glow-top {
  top: -280px;
  right: -140px;
  background: #4f7eb5;
}

.page-glow-bottom {
  bottom: -300px;
  left: -200px;
  background: #375d8b;
}

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(10, 15, 24, 0.78);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(138, 148, 166, 0.12);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: clamp(10px, 1.1vw, 16px);
  text-decoration: none;
  color: var(--text);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: clamp(1.08rem, 1.15vw, 1.35rem);
}

.brand-logo {
  width: clamp(44px, 3.2vw, 64px);
  height: clamp(44px, 3.2vw, 64px);
  object-fit: contain;
  border-radius: 12px;
  background: none;
}

.nav-links {
  display: inline-flex;
  gap: 26px;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #f4f8ff;
  box-shadow: 0 4px 12px rgba(79, 126, 181, 0.25);
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
  box-shadow: 0 6px 16px rgba(79, 126, 181, 0.3);
}

.btn-secondary {
  border-color: var(--line);
  color: var(--text);
  background: rgba(17, 26, 42, 0.55);
}

.btn-secondary:hover {
  border-color: rgba(107, 147, 192, 0.6);
}

.profile-icon-btn {
  width: clamp(44px, 2.8vw, 52px);
  height: clamp(44px, 2.8vw, 52px);
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 16px;
  border: 1px solid rgba(107, 147, 192, 0.42);
  color: #dceaff;
  text-decoration: none;
  background:
    linear-gradient(145deg, rgba(79, 126, 181, 0.24), rgba(15, 24, 37, 0.86)),
    rgba(17, 26, 42, 0.75);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 28px rgba(5, 10, 18, 0.28);
  transition: transform 0.2s ease, border-color 0.2s ease, filter 0.2s ease;
}

.profile-icon-btn svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.profile-icon-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(151, 190, 234, 0.72);
  filter: brightness(1.08);
}

.hero {
  padding: 86px 0 62px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 38px;
  align-items: center;
}

.eyebrow {
  color: var(--muted);
  margin: 0 0 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  line-height: 1.2;
}

h1 {
  font-size: clamp(1.9rem, 5vw, 3.35rem);
  max-width: 14ch;
  margin-bottom: 16px;
}

.hero-text {
  max-width: 57ch;
  color: #c7d0df;
  margin: 0 0 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-metrics {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-metrics li {
  min-width: 130px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  background: linear-gradient(180deg, rgba(17, 26, 42, 0.75), rgba(10, 15, 24, 0.95));
}

.hero-metrics strong {
  display: block;
  font-size: 1.05rem;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.85rem;
}

.hero-panel {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(16, 24, 39, 0.85), rgba(10, 15, 24, 0.94));
  box-shadow: var(--shadow);
}

.terminal {
  border: 1px solid rgba(138, 148, 166, 0.28);
  border-radius: 16px;
  background: #080c14;
  overflow: hidden;
}

.terminal code {
  position: relative;
  white-space: pre;
}

.terminal--typing code::after {
  content: "";
  display: inline-block;
  width: 0.58em;
  height: 1.05em;
  margin-left: 2px;
  transform: translateY(2px);
  border-radius: 1px;
  background: #9db6d3;
  animation: terminal-caret 0.85s steps(1) infinite;
}

.terminal--typed code::after {
  content: "";
  display: inline-block;
  width: 0.58em;
  height: 1.05em;
  margin-left: 2px;
  transform: translateY(2px);
  border-radius: 1px;
  background: rgba(157, 182, 211, 0.72);
  animation: terminal-caret 1.1s steps(1) infinite;
}

@keyframes terminal-caret {
  50% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .terminal--typing code::after,
  .terminal--typed code::after {
    animation: none;
  }
}

.terminal-head {
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(138, 148, 166, 0.2);
}

.terminal-dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #6e788a;
  font-style: normal;
}

pre {
  margin: 0;
  padding: 16px;
  color: #9db6d3;
  font-size: 0.85rem;
  overflow: auto;
}

.section {
  padding: 68px 0;
}

.section-dim {
  background: linear-gradient(180deg, rgba(15, 21, 34, 0.75), rgba(10, 15, 24, 0.8));
}

.section-head {
  margin-bottom: 24px;
}

.section-head h2 {
  margin-top: 8px;
  font-size: clamp(1.45rem, 3.7vw, 2.45rem);
  max-width: 24ch;
}

.pricing-section {
  padding-top: 42px;
}

.pricing-section-head {
  max-width: 720px;
}

.pricing-section-head h2 {
  max-width: 22ch;
}

.b2b-bridge {
  padding-top: 24px;
  padding-bottom: 24px;
}

.b2b-bridge-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(107, 147, 192, 0.28);
  border-radius: 20px;
  padding: clamp(20px, 3vw, 32px);
  background: linear-gradient(135deg, rgba(17, 26, 42, 0.86), rgba(10, 15, 24, 0.94));
  box-shadow: 0 24px 70px rgba(2, 6, 14, 0.32);
}

.b2b-bridge h2 {
  margin: 0 0 8px;
  font-size: clamp(1.28rem, 3vw, 2rem);
  max-width: 680px;
}

.b2b-bridge p:not(.eyebrow) {
  margin: 0;
  color: #c7d0df;
  max-width: 720px;
}

.b2b-hero h1 {
  max-width: 15ch;
}

.b2b-command-panel pre {
  min-height: 0;
  padding: 16px;
}

.b2b-command-panel {
  width: 100%;
  max-width: none;
  justify-self: stretch;
  padding: 18px;
}

.b2b-command-panel .terminal {
  min-height: auto;
}

.b2b-command-panel .terminal-head {
  padding: 8px 10px;
}

.b2b-page .site-header {
  background: rgba(7, 12, 18, 0.82);
}

.b2b-page .btn-primary {
  background: linear-gradient(135deg, #5f8f84 0%, #8fb7a7 100%);
  color: #06110f;
  box-shadow: 0 4px 16px rgba(95, 143, 132, 0.24);
}

.b2b-page .btn-secondary:hover {
  border-color: rgba(143, 183, 167, 0.64);
}

.b2b-page .hero-panel,
.b2b-page .card,
.b2b-page .timeline-item,
.b2b-page .contact-form {
  border-color: rgba(143, 183, 167, 0.22);
  background: linear-gradient(180deg, rgba(12, 22, 27, 0.82), rgba(7, 12, 18, 0.92));
}

.b2b-page .terminal {
  border-color: rgba(143, 183, 167, 0.22);
  background: #070b10;
}

.b2b-page .hero-metrics li {
  border-color: rgba(143, 183, 167, 0.24);
  background: rgba(9, 18, 22, 0.78);
}

.b2b-page .hero-metrics strong,
.b2b-page .timeline-item span,
.b2b-page .footer-nav-title {
  color: #9fc8ba;
}

.b2b-page .timeline-item span {
  background: rgba(95, 143, 132, 0.18);
}

.b2b-capabilities {
  padding-top: 42px;
}

.b2b-pricing-section {
  padding-top: 24px;
}

.b2b-pricing-head {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 420px);
  column-gap: 36px;
  align-items: end;
}

.b2b-pricing-head .eyebrow,
.b2b-pricing-head h2 {
  grid-column: 1;
}

.b2b-pricing-head p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0;
  color: #c3cec9;
  line-height: 1.65;
}

.b2b-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.b2b-pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid rgba(143, 183, 167, 0.22);
  border-radius: 18px;
  padding: 26px;
  background: linear-gradient(155deg, rgba(12, 23, 27, 0.92), rgba(8, 13, 19, 0.96));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.b2b-pricing-card--featured {
  border-color: rgba(143, 183, 167, 0.48);
  background: linear-gradient(155deg, rgba(20, 45, 48, 0.94), rgba(8, 13, 19, 0.96));
}

.b2b-pricing-card__top {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.b2b-pricing-card__top span {
  color: #9fc8ba;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.b2b-pricing-card__top strong {
  color: #f0f6f2;
  font-size: clamp(1.18rem, 1.7vw, 1.45rem);
  line-height: 1.15;
  text-align: left;
  white-space: normal;
}

.b2b-pricing-card h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  margin-bottom: 18px;
}

.b2b-pricing-card ul {
  flex: 1;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.b2b-pricing-card li {
  position: relative;
  padding-left: 24px;
  color: #d6dfdc;
}

.b2b-pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9fc8ba;
}

.b2b-pricing-card .btn {
  width: 100%;
}

.b2b-page .section-dim {
  background: transparent;
}

.b2b-process-section {
  padding-top: 46px;
  padding-bottom: 46px;
}

.cards {
  display: grid;
  gap: 16px;
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: linear-gradient(180deg, rgba(17, 26, 42, 0.75), rgba(10, 15, 24, 0.92));
}

.card h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.card ul {
  margin: 0 0 14px;
  padding: 0 0 0 18px;
}

.card li {
  margin: 0 0 8px;
  color: #d2dae7;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  background: rgba(17, 26, 42, 0.52);
}

.timeline-item span {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(79, 126, 181, 0.18);
  color: #bed1e8;
  font-weight: 600;
}

.timeline-item h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
}

.specs {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.spec {
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(13, 20, 33, 0.8);
}

.spec strong {
  display: block;
  margin-bottom: 4px;
}

.spec span {
  color: var(--muted);
}

.site-footer {
  padding: 62px 0 0;
  border-top: none;
  background: linear-gradient(180deg, rgba(6,10,18,.0) 0%, #060a12 60px);
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
  padding-bottom: 48px;
}

.site-footer h2 {
  margin-bottom: 10px;
  font-size: clamp(1.4rem, 4vw, 2rem);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  max-width: 52ch;
}

.contact-form {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  background: rgba(13, 20, 33, 0.8);
  display: grid;
  gap: 12px;
}

.contact-form label {
  font-size: 0.88rem;
  color: var(--muted);
  display: grid;
  gap: 7px;
}

.contact-form input,
.contact-form textarea {
  background: rgba(10, 15, 24, 0.95);
  border: 1px solid rgba(138, 148, 166, 0.3);
  border-radius: 10px;
  color: var(--text);
  font: inherit;
  padding: 0.7rem 0.8rem;
}

.contact-form textarea {
  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(107, 147, 192, 0.8);
  outline: none;
}

.footer-bottom {
  margin-top: 0;
  padding: 0 0 28px;
  border-top: 1px solid rgba(138,148,166,.15);
}

.footer-bottom-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  padding-top: 32px;
  padding-bottom: 8px;
  align-items: start;
}

.footer-brand-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  text-decoration: none;
  color: var(--text);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: clamp(1.05rem, 1.2vw, 1.28rem);
}
.footer-logo img {
  width: clamp(38px, 2.7vw, 52px);
  height: clamp(38px, 2.7vw, 52px);
  border-radius: 11px;
  background: transparent;
  mix-blend-mode: lighten;
}

.footer-tagline {
  margin: 0;
  color: rgba(199, 208, 223, .78);
  font-size: .94rem;
  line-height: 1.5;
  position: relative;
  padding-left: 16px;
  width: fit-content;
  text-align: center;
}
.footer-tagline::before {
  content: '\201C';
  position: absolute;
  left: 0;
  top: -2px;
  font-size: 1.4rem;
  line-height: 1;
  color: #4f7eb5;
  font-family: Georgia, serif;
}
.footer-tagline::after {
  content: '\201D';
  font-size: 1.4rem;
  line-height: 1;
  color: #4f7eb5;
  font-family: Georgia, serif;
  vertical-align: -4px;
  margin-left: 2px;
}

.footer-nav-block {
  padding-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
}

.footer-nav-title {
  margin: 0 0 14px;
  display: inline-flex;
  width: fit-content;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(107, 147, 192, .36);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #6b93c0;
}

.footer-nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(138,148,166,.8);
  text-decoration: none;
  font-size: .85rem;
  margin-bottom: 6px;
  transition: color .15s;
}
.footer-nav-link:hover { color: #6b93c0; }

.footer-divider {
  height: 1px;
  background: rgba(138,148,166,.1);
  margin-bottom: 20px;
}

.footer-copy {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(138,148,166,.4);
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px 0 10px;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal-link {
  font-size: 0.78rem;
  color: rgba(138,148,166,.45);
  text-decoration: none;
  transition: color .15s;
}

.footer-legal-link:hover {
  color: #6b93c0;
}

.footer-requisites {
  margin: 0;
  padding-bottom: 20px;
  font-size: 0.75rem;
  color: rgba(138,148,166,.3);
}

@media (max-width: 600px) {
  .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-top: 12px;
  }
  .footer-legal-links {
    gap: 12px;
  }
  .footer-bottom-inner {
    margin-bottom: 16px;
  }
}

@media (max-width: 700px) {
  .footer-bottom-inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer-brand-block { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .footer-bottom-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand-block { grid-column: 1 / -1; }
}

@media (max-width: 1024px) {
  .hero-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  html, body {
    overflow-x: hidden;
    max-width: 100%;
  }

  .container {
    width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
  }

  .nav {
    min-height: 60px;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 0 4px;
    gap: 8px;
  }

  .nav-links {
    display: none;
  }

  .brand-logo { width: 42px; height: 42px; }

  .profile-icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .btn {
    padding: 0.6rem 1rem;
    font-size: 0.88rem;
  }

  .hero {
    padding: 36px 0 28px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  h1 {
    font-size: 1.75rem;
    max-width: 100%;
    line-height: 1.25;
  }

  .hero-text {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    flex-wrap: unset;
  }

  .hero-metrics li {
    min-width: 0;
    padding: 10px 8px;
    border-radius: 12px;
  }

  .hero-metrics strong {
    font-size: 0.85rem;
    display: block;
  }

  .hero-metrics span {
    font-size: 0.7rem;
    line-height: 1.3;
  }

  /* Hide terminal on mobile */
  .hero-panel {
    display: none;
  }

  .cards-3,
  .cards-2,
  .specs {
    grid-template-columns: 1fr;
  }

  .b2b-bridge-inner {
    align-items: stretch;
    flex-direction: column;
    width: calc(100% - 32px);
    margin-inline: auto;
    gap: 18px;
    border-radius: 16px;
    padding: 18px;
  }

  .b2b-bridge .eyebrow {
    margin-bottom: 8px;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }

  .b2b-bridge h2 {
    max-width: none;
    font-size: 1.25rem;
    line-height: 1.25;
  }

  .b2b-bridge p:not(.eyebrow) {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .b2b-bridge .btn {
    width: 100%;
    min-height: 44px;
    border-radius: 12px;
    padding: 0.72rem 1rem;
    text-align: center;
  }

  .section {
    padding: 36px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-bottom: 40px;
  }

  .site-footer h2 {
    font-size: 1.3rem;
  }

  .contact-form {
    padding: 14px;
  }

  .b2b-pricing-card {
    padding: 20px;
  }

  .b2b-pricing-card__top {
    display: grid;
    gap: 8px;
  }

  .b2b-pricing-card__top strong {
    text-align: left;
    white-space: normal;
  }

  .seo-section {
    padding-top: 18px;
    padding-bottom: 30px;
  }

  .seo-copy {
    padding: 18px;
    border-radius: 14px;
  }

  .seo-copy-grid {
    gap: 12px;
  }

  .seo-copy-grid p {
    font-size: .9rem;
    line-height: 1.62;
  }
}

@media (max-width: 380px) {
  h1 { font-size: 1.5rem; }

  .hero-metrics {
    grid-template-columns: 1fr;
  }
}

.site-footer-simple {
  background: #060a12;
  margin-top: 0;
}

/* ── Auralith Access section ── */
.access-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.access-content p {
  margin: 0 0 20px;
  color: #c7d0df;
  font-size: 1.05rem;
  line-height: 1.65;
}

.access-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.access-features li {
  padding-left: 28px;
  position: relative;
  color: #d2dae7;
  font-size: .95rem;
}

.access-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: 700;
  font-size: 1.1rem;
}

.access-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.access-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border: 1px solid rgba(74,222,128,.35);
  border-radius: 16px;
  background: rgba(74,222,128,.08);
  color: #4ade80;
  font-weight: 600;
  font-size: 1.05rem;
  width: fit-content;
}

.access-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.access-stat {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 12px;
  background: linear-gradient(180deg, rgba(17,26,42,.75), rgba(10,15,24,.95));
  text-align: center;
}

.access-stat strong {
  display: block;
  font-size: 1.15rem;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 4px;
  color: #6b93c0;
}

.access-stat span {
  font-size: .8rem;
  color: var(--muted);
}

/* ── Pricing section ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pricing-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  background: linear-gradient(180deg, rgba(17,26,42,.75), rgba(10,15,24,.92));
  display: flex;
  flex-direction: column;
}

.pricing-card--highlight {
  border-color: rgba(107,147,192,.5);
  box-shadow: 0 20px 50px rgba(11,21,36,.6);
}

.pricing-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: .7rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.pricing-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.pricing-price {
  margin-bottom: 12px;
}

.pricing-amount {
  font-size: 2.2rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: var(--text);
}

.pricing-period {
  font-size: .85rem;
  color: var(--muted);
}

.pricing-headline {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: .9rem;
}

.pricing-features {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  flex: 1;
}

.pricing-features li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 10px;
  color: #d2dae7;
  font-size: .88rem;
}

.pricing-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #6b93c0;
  font-size: 1.2rem;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

.seo-section {
  padding-top: 24px;
  padding-bottom: 42px;
}

.seo-copy {
  border: 1px solid rgba(138,148,166,.16);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(15,24,37,.72), rgba(8,13,22,.88));
  padding: 28px;
}

.seo-copy--compact {
  border-radius: 16px;
  padding: clamp(20px, 3vw, 26px);
}

.seo-copy h2 {
  max-width: 760px;
  margin: 8px 0 16px;
  font-size: clamp(1.22rem, 2.6vw, 1.75rem);
}

.seo-copy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.seo-copy-grid p {
  margin: 0;
  color: #c7d0df;
  font-size: .95rem;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .access-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .access-stats {
    grid-template-columns: repeat(3, 1fr);
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .seo-copy-grid {
    grid-template-columns: 1fr;
  }

  .b2b-pricing-head,
  .b2b-pricing-grid {
    grid-template-columns: 1fr;
  }

  .b2b-pricing-head .eyebrow,
  .b2b-pricing-head h2,
  .b2b-pricing-head p:last-child {
    grid-column: auto;
    grid-row: auto;
  }
}

/* Footer TG pills */
.footer-tg-pills {
  display: none;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.footer-tg-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(79,126,181,.35);
  background: rgba(79,126,181,.08);
  color: #6b93c0;
  text-decoration: none;
  font-size: .82rem;
  font-weight: 500;
  transition: background .15s, border-color .15s;
}
.footer-tg-pill:hover {
  background: rgba(79,126,181,.16);
  border-color: rgba(79,126,181,.55);
}

@media (max-width: 700px) {
  .footer-tg-pills { display: flex; }
  .footer-nav-block--desktop { display: none; }
  .footer-bottom-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand-block { grid-column: 1 / -1; }
}

/* Footer TG pills — column layout under heading */
.footer-tg-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid rgba(79,126,181,.35);
  background: rgba(79,126,181,.08);
  color: #6b93c0;
  text-decoration: none;
  font-size: .82rem;
  font-weight: 500;
  margin-bottom: 8px;
  transition: background .15s, border-color .15s;
  width: 145px;
}
.footer-tg-pill svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}
.footer-tg-pill:hover {
  background: rgba(79,126,181,.16);
  border-color: rgba(79,126,181,.55);
}

@media (max-width: 700px) {
  .footer-bottom-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand-block { grid-column: 1 / -1; }
}

/* Unified public header/footer rhythm */
.site-header .nav {
  min-height: 76px;
  gap: 20px;
}

.site-header .brand {
  gap: 12px;
  font-size: clamp(1.05rem, 1.1vw, 1.22rem);
}

.site-header .brand-logo {
  width: clamp(46px, 3vw, 52px);
  height: clamp(46px, 3vw, 52px);
  border-radius: 12px;
}

.site-header .profile-icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 14px;
}

.site-header .profile-icon-btn svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  padding-bottom: 30px;
}

.footer-bottom-inner {
  grid-template-columns: minmax(240px, 1.4fr) minmax(160px, .8fr) minmax(180px, .8fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
}

.footer-logo {
  min-height: 52px;
}

.footer-logo img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}

.footer-tagline {
  max-width: 260px;
  color: rgba(210, 218, 231, .82);
  margin-left: 24px;
}

.footer-nav-link,
.footer-legal-link {
  line-height: 1.45;
}

@media (max-width: 760px) {
  .site-header .nav {
    min-height: 64px;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: max(18px, env(safe-area-inset-left));
    padding-right: max(18px, env(safe-area-inset-right));
    gap: 10px;
  }

  .site-header .brand {
    gap: 10px;
    font-size: 1rem;
  }

  .site-header .brand-logo {
    width: 44px;
    height: 44px;
    border-radius: 11px;
  }

  .site-header .profile-icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }
}

@media (max-width: 420px) {
  .site-header .nav {
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }
}

@media (max-width: 700px) {
  .footer-bottom {
    padding-bottom: 24px;
  }

  .footer-bottom-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 22px 18px;
    margin-bottom: 24px;
    padding-top: 28px;
  }

  .footer-brand-block {
    grid-column: 1 / -1;
    align-items: flex-end;
    gap: 8px;
    text-align: right;
  }

  .footer-logo {
    justify-content: center;
    min-height: 46px;
  }

  .footer-logo img {
    width: 44px;
    height: 44px;
  }

  .footer-nav-block {
    padding-top: 0;
    gap: 4px;
  }

  .footer-nav-title {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin: 0 0 8px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(143, 183, 167, .34);
    font-size: .68rem;
    letter-spacing: .12em;
  }

  .footer-nav-link {
    margin-bottom: 5px;
    font-size: .78rem;
    line-height: 1.35;
  }

  .footer-tagline {
    max-width: 180px;
    margin-left: 0;
    padding-left: 0;
    font-size: .78rem;
    line-height: 1.35;
    color: rgba(199, 208, 223, .74);
    text-align: center;
  }

  .footer-tagline::before,
  .footer-tagline::after {
    position: static;
    font-size: 1rem;
    vertical-align: -2px;
  }

  .footer-tagline::before {
    margin-right: 4px;
  }

  .footer-tagline::after {
    margin-left: 4px;
  }

  .footer-tg-pill {
    width: fit-content;
    min-width: 0;
    justify-content: center;
    padding: 6px 12px;
    font-size: .76rem;
    margin-bottom: 7px;
  }

  .footer-bottom-row {
    padding-top: 16px;
  }
}

/* Final home presentation overrides */
.home-apple .home-hero {
  min-height: calc(100svh - 70px);
  padding: clamp(58px, 8vw, 110px) 0 clamp(42px, 7vw, 88px);
}

.home-apple .hero-panel {
  transform:
    perspective(1200px)
    rotateY(calc(-5deg + (var(--home-scroll, 0) * 3deg)))
    rotateX(calc(3deg - (var(--home-scroll, 0) * 1.5deg)))
    translateY(calc(var(--home-scroll, 0) * -16px));
}

.home-apple .home-story-card.reveal-on-scroll {
  opacity: 0.72;
}

.home-apple .home-story-card.reveal-on-scroll.is-visible {
  opacity: 1;
}

@media (max-width: 1024px) {
  .home-apple .hero-panel {
    transform: none;
  }
}

@media (max-width: 760px) {
  .home-apple .home-hero {
    padding: 44px 0 34px;
  }

  .home-apple .hero-panel {
    display: block;
  }
}

/* Final public pages polish */
.home-apple .home-hero,
.b2b-page .b2b-hero {
  overflow: hidden;
}

.home-apple .home-hero .hero-grid,
.b2b-page .b2b-hero .hero-grid {
  align-items: center;
}

.home-apple .home-hero h1,
.b2b-page .b2b-hero h1 {
  max-width: 15.8ch;
  font-size: clamp(2.55rem, 5.6vw, 5.1rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.home-apple .home-hero .hero-text,
.b2b-page .b2b-hero .hero-text {
  max-width: 620px;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
}

.home-apple .home-hero .hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
  gap: clamp(28px, 5vw, 72px);
}

.home-apple .hero-panel {
  width: 100%;
  max-width: 480px;
  justify-self: end;
  min-height: 500px;
}

/* Auralith orbital hero scene */
.home-apple .product-stage {
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 38%, rgba(62, 205, 132, .22), transparent 24%),
    radial-gradient(circle at 15% 8%, rgba(96, 166, 223, .14), transparent 32%),
    linear-gradient(145deg, rgba(8, 16, 29, .95), rgba(2, 6, 12, .98));
}

.home-apple .product-stage::before,
.home-apple .product-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
}

.home-apple .product-stage::before {
  z-index: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(125, 240, 167, .9) 0 1px, transparent 2px),
    radial-gradient(circle at 32% 72%, rgba(125, 240, 167, .7) 0 1px, transparent 2px),
    radial-gradient(circle at 84% 26%, rgba(125, 240, 167, .75) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 82%, rgba(98, 166, 223, .7) 0 1px, transparent 2px);
  background-size: 86px 86px, 112px 112px, 134px 134px, 152px 152px;
  animation: node-field-drift 18s linear infinite;
  opacity: .5;
}

.home-apple .product-stage::after {
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 42%, transparent 0 42%, rgba(3, 7, 13, .45) 70%),
    linear-gradient(180deg, transparent 0 70%, rgba(2, 6, 12, .72));
}

.home-apple .product-orbit-scene {
  position: relative;
  z-index: 2;
  min-height: 315px;
  display: grid;
  place-items: center;
  margin: 4px 0 16px;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 48%, rgba(63, 226, 137, .22), transparent 23%),
    radial-gradient(circle at 44% 44%, rgba(100, 185, 220, .16), transparent 34%);
}

.space-node-field,
.traffic-stars,
.planet-atmosphere,
.planet-shadow,
.orbit-track,
.product-orbit-ring {
  position: absolute;
  pointer-events: none;
}

.space-node-field {
  inset: 0;
  z-index: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.space-node-field li {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #65f59c;
  box-shadow: 0 0 18px rgba(101, 245, 156, .9);
  animation: node-pulse 2.8s ease-in-out infinite;
}

.space-node-field li:nth-child(1) { left: 10%; top: 20%; animation-delay: -.2s; }
.space-node-field li:nth-child(2) { left: 22%; top: 74%; animation-delay: -.9s; }
.space-node-field li:nth-child(3) { left: 33%; top: 14%; animation-delay: -1.4s; }
.space-node-field li:nth-child(4) { left: 48%; top: 82%; animation-delay: -.5s; }
.space-node-field li:nth-child(5) { left: 62%; top: 17%; animation-delay: -1.8s; }
.space-node-field li:nth-child(6) { left: 82%; top: 30%; animation-delay: -1.1s; }
.space-node-field li:nth-child(7) { left: 88%; top: 72%; animation-delay: -.4s; }
.space-node-field li:nth-child(8) { left: 16%; top: 46%; animation-delay: -2.1s; }
.space-node-field li:nth-child(9) { left: 72%; top: 52%; animation-delay: -1.6s; }
.space-node-field li:nth-child(10) { left: 40%; top: 35%; animation-delay: -.7s; }
.space-node-field li:nth-child(11) { left: 54%; top: 62%; animation-delay: -2.4s; }
.space-node-field li:nth-child(12) { left: 92%; top: 12%; animation-delay: -1.2s; }

.planet-atmosphere {
  z-index: 1;
  width: 250px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 28%, rgba(139, 255, 183, .48), transparent 18%),
    radial-gradient(circle at 54% 58%, rgba(40, 145, 102, .58), transparent 48%),
    radial-gradient(circle at 50% 50%, rgba(13, 41, 38, .92), rgba(3, 8, 16, .15) 68%);
  box-shadow:
    inset -36px -42px 70px rgba(0, 0, 0, .5),
    0 0 70px rgba(66, 221, 136, .25),
    0 0 130px rgba(98, 166, 223, .16);
  animation: planet-breathe 5.8s ease-in-out infinite;
}

.planet-atmosphere::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 220'%3E%3Cg fill='none' stroke='%2362a6df' stroke-width='3.6' stroke-linecap='round' stroke-linejoin='round' opacity='.62'%3E%3Cpath d='M43 82c17-20 38-30 62-28 14 1 23 7 35 8 11 1 24-4 36-11'/%3E%3Cpath d='M35 124c20-12 41-16 62-12 18 4 28 15 45 18 15 3 29-1 45-9'/%3E%3Cpath d='M61 159c14-10 31-14 50-10 16 3 27 12 43 12 11 0 21-4 31-12'/%3E%3Cpath d='M78 45c-11 22-12 45-4 70 8 24 9 42-2 61'/%3E%3Cpath d='M139 42c8 22 8 43 0 64-9 23-8 44 4 69'/%3E%3C/g%3E%3Cg fill='%2362a6df' opacity='.24'%3E%3Cpath d='M68 70c20-12 39-13 56-3-9 11-22 17-38 16-9-1-15-4-18-13Z'/%3E%3Cpath d='M121 119c25-8 45-4 60 11-14 10-31 13-51 7-8-3-12-8-9-18Z'/%3E%3Cpath d='M65 143c20-5 37-2 50 10-11 9-27 12-45 8-7-2-9-8-5-18Z'/%3E%3C/g%3E%3C/svg%3E")
    center / 100% 100% no-repeat;
  opacity: .78;
  mix-blend-mode: screen;
  filter:
    drop-shadow(0 0 10px rgba(98, 166, 223, .32))
    drop-shadow(0 0 18px rgba(79, 126, 181, .18));
}

.planet-atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(98, 166, 223, .18), transparent 24%),
    linear-gradient(110deg, transparent 0 45%, rgba(255, 255, 255, .08) 50%, transparent 58%);
  opacity: .54;
  mix-blend-mode: screen;
}

.planet-shadow {
  z-index: 2;
  width: 330px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(1, 5, 10, .58), transparent 64%);
  transform: translateY(54px);
}

.product-orbit-ring {
  z-index: 3;
  border: 1px solid rgba(161, 233, 207, .18);
  border-radius: 50%;
  transform: rotateX(68deg) rotateZ(-12deg);
  box-shadow: 0 0 34px rgba(125, 240, 167, .08);
}

.product-orbit-ring--outer {
  width: 390px;
  height: 390px;
  border-top-color: rgba(125, 240, 167, .52);
  animation: orbit-ring-glow 4.4s ease-in-out infinite;
}

.product-orbit-ring--middle {
  width: 318px;
  height: 318px;
  border-right-color: rgba(98, 166, 223, .42);
  animation: orbit-ring-glow 5.2s ease-in-out infinite reverse;
}

.product-orbit-ring--inner {
  width: 244px;
  height: 244px;
  border-left-color: rgba(125, 240, 167, .5);
  animation: orbit-ring-glow 3.8s ease-in-out infinite;
}

.orbit-track {
  z-index: 6;
  width: 330px;
  aspect-ratio: 1;
  display: grid;
  place-items: start center;
  --orbit-duration: 16s;
  --orbit-delay: 0s;
  animation: product-orbit var(--orbit-duration) linear infinite;
  animation-delay: var(--orbit-delay);
}

.orbit-track--access { width: 350px; --orbit-duration: 15s; }
.orbit-track--core { width: 282px; --orbit-duration: 19s; animation-direction: reverse; }
.orbit-track--b2b { width: 396px; --orbit-duration: 23s; --orbit-delay: -7s; }
.orbit-track--traffic { z-index: 5; width: 376px; --orbit-duration: 8s; --orbit-delay: -3s; }

.home-apple .product-node {
  position: relative;
  min-width: 84px;
  padding: 9px 15px;
  border: 1px solid rgba(202, 219, 242, .22);
  border-radius: 999px;
  background: rgba(4, 10, 18, .74);
  color: #eef7ff;
  text-align: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .08),
    0 14px 34px rgba(0, 0, 0, .34),
    0 0 28px rgba(89, 209, 142, .14);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  animation: satellite-counter var(--orbit-duration) linear infinite;
  animation-delay: var(--orbit-delay);
}

.orbit-track--core .product-node {
  animation-name: satellite-counter-reverse;
}

.product-node--access { color: #dffcff; }
.product-node--core { color: #7df0a7; }
.product-node--b2b { color: #f0f6ff; }

.traffic-packet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #8fffb5;
  box-shadow:
    0 0 18px rgba(143, 255, 181, .95),
    0 0 42px rgba(98, 166, 223, .45);
}

.traffic-stars {
  inset: 0;
  z-index: 4;
  overflow: hidden;
}

.traffic-star {
  position: absolute;
  display: block;
  font-style: normal;
  width: 92px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(134, 255, 177, .98), transparent);
  filter: drop-shadow(0 0 10px rgba(134, 255, 177, .72));
  transform: rotate(-28deg);
  animation: traffic-fall 2.9s linear infinite;
}

.traffic-stars .traffic-star:nth-child(1) { left: -18%; top: 18%; animation-delay: -.1s; }
.traffic-stars .traffic-star:nth-child(2) { left: 18%; top: -4%; animation-delay: -.8s; animation-duration: 3.4s; }
.traffic-stars .traffic-star:nth-child(3) { left: 48%; top: 8%; animation-delay: -1.7s; animation-duration: 2.7s; }
.traffic-stars .traffic-star:nth-child(4) { left: 72%; top: 28%; animation-delay: -2.2s; animation-duration: 3.1s; }
.traffic-stars .traffic-star:nth-child(5) { left: 4%; top: 62%; animation-delay: -2.8s; animation-duration: 3.8s; }
.traffic-stars .traffic-star:nth-child(6) { left: 58%; top: 72%; animation-delay: -1.1s; animation-duration: 3.5s; }

.home-apple .product-core-card {
  z-index: 20;
  position: relative;
  width: clamp(128px, 12vw, 148px);
  height: clamp(128px, 12vw, 148px);
  display: grid;
  place-items: center;
  padding: clamp(14px, 1.2vw, 18px);
  border: 1px solid rgba(74, 158, 255, .28);
  border-radius: 32px;
  background:
    radial-gradient(circle at 40% 30%, rgba(255, 255, 255, .08), transparent 34%),
    linear-gradient(145deg, rgba(17, 24, 39, .96), rgba(5, 11, 22, .98) 62%, rgba(17, 24, 39, .9));
  box-shadow:
    0 28px 72px rgba(0, 0, 0, .48),
    0 0 52px rgba(0, 212, 255, .14),
    inset 0 1px 0 rgba(255, 255, 255, .12),
    inset 0 -20px 48px rgba(0, 0, 0, .42);
  -webkit-backdrop-filter: blur(16px) saturate(92%);
  backdrop-filter: blur(16px) saturate(92%);
  animation: core-float 4.8s ease-in-out infinite;
}

.home-apple .product-core-card::before,
.home-apple .product-core-card::after,
.product-core-card__halo {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: inherit;
}

.home-apple .product-core-card::before {
  display: none;
}

.home-apple .product-core-card::after {
  inset: -18px;
  z-index: -1;
  background:
    conic-gradient(from 210deg, transparent, rgba(236, 245, 252, .34), transparent 32%, rgba(95, 221, 143, .18), transparent 58%);
  filter: blur(16px);
  opacity: .72;
  animation: core-aura-spin 12s linear infinite;
}

.product-core-card__halo {
  inset: -34px;
  z-index: -2;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(236, 245, 252, .18), transparent 56%),
    radial-gradient(circle, rgba(102, 224, 145, .14), transparent 64%);
}

.home-apple .product-core-card img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, .4)) drop-shadow(0 0 18px rgba(0, 212, 255, .22));
  mix-blend-mode: normal;
  opacity: 1;
}

@keyframes product-orbit {
  to { transform: rotate(360deg); }
}

@keyframes satellite-counter {
  to { transform: rotate(-360deg); }
}

@keyframes satellite-counter-reverse {
  to { transform: rotate(360deg); }
}

@keyframes traffic-fall {
  0% { translate: -60px -30px; opacity: 0; }
  12% { opacity: 1; }
  100% { translate: 260px 132px; opacity: 0; }
}

@keyframes node-pulse {
  0%, 100% { transform: scale(.72); opacity: .45; }
  50% { transform: scale(1.45); opacity: 1; }
}

@keyframes node-field-drift {
  to { background-position: 86px 86px, -112px 112px, 134px -134px, -152px -152px; }
}

@keyframes planet-breathe {
  0%, 100% { transform: scale(.98); filter: saturate(1); }
  50% { transform: scale(1.035); filter: saturate(1.22); }
}

@keyframes orbit-ring-glow {
  0%, 100% { opacity: .55; }
  50% { opacity: 1; }
}

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

@keyframes core-aura-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 760px) {
  .home-apple .product-orbit-scene {
    min-height: 300px;
    margin-bottom: 12px;
  }

  .planet-atmosphere {
    width: 210px;
  }

  .planet-shadow {
    width: 280px;
    height: 130px;
  }

  .product-orbit-ring--outer { width: 320px; height: 320px; }
  .product-orbit-ring--middle { width: 262px; height: 262px; }
  .product-orbit-ring--inner { width: 208px; height: 208px; }

  .orbit-track--access { width: 292px; }
  .orbit-track--core { width: 238px; }
  .orbit-track--b2b { width: 326px; }
  .orbit-track--traffic { width: 304px; }

  .home-apple .product-node {
    min-width: 72px;
    padding: 8px 12px;
    font-size: .76rem;
  }

  .home-apple .product-core-card {
    width: 124px;
    height: 124px;
    border-radius: 32px;
    padding: 16px;
  }

  .home-apple .product-core-card img {
    width: 92px;
    height: 92px;
  }

  .traffic-star {
    width: 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-apple .product-stage::before,
  .space-node-field li,
  .traffic-star,
  .planet-atmosphere,
  .product-orbit-ring,
  .orbit-track,
  .home-apple .product-core-card {
    animation: none !important;
  }
}

/* Refined orbital scene: readable satellites, individual traffic traces. */
.home-apple .product-orbit-scene {
  min-height: 300px;
}

.home-apple .product-orbit-scene .product-core-card {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 20;
  transform: translate(-50%, -50%);
  animation-name: core-float-centered;
}

.orbit-track {
  display: block;
  width: auto;
  aspect-ratio: auto;
  animation: none;
}

.orbit-track--access,
.orbit-track--core,
.orbit-track--b2b {
  z-index: 9;
}

.orbit-track--access {
  top: 24px;
  right: 38px;
}

.orbit-track--core {
  left: 34px;
  top: 126px;
}

.orbit-track--b2b {
  right: 46px;
  bottom: 42px;
}

.orbit-track--traffic {
  display: none;
}

.home-apple .product-node {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  min-height: 38px;
  padding: 0 16px;
  animation: satellite-hover 5.2s ease-in-out infinite;
  transform: none;
}

.orbit-track--core .product-node {
  animation-name: satellite-hover;
  animation-delay: -1.4s;
}

.orbit-track--b2b .product-node {
  animation-delay: -2.6s;
}

.traffic-star {
  left: var(--x0);
  top: var(--y0);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(151, 255, 188, .95);
  filter: drop-shadow(0 0 12px rgba(134, 255, 177, .85));
  animation: traffic-comet var(--dur, 4.8s) linear infinite;
  animation-delay: var(--delay, 0s);
  opacity: 0;
}

.traffic-star::before {
  content: "";
  position: absolute;
  right: 3px;
  top: 50%;
  width: var(--tail, 64px);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(120, 255, 172, .88));
  transform: translateY(-50%) rotate(var(--angle, -18deg));
  transform-origin: right center;
}

.traffic-star:nth-child(1) {
  --x0: -12%;
  --y0: 22%;
  --x1: 48%;
  --y1: 4%;
  --angle: -18deg;
  --dur: 5.4s;
  --delay: -.8s;
}

.traffic-star:nth-child(2) {
  --x0: 16%;
  --y0: -8%;
  --x1: 86%;
  --y1: 32%;
  --angle: 29deg;
  --tail: 74px;
  --dur: 6.2s;
  --delay: -3.2s;
}

.traffic-star:nth-child(3) {
  --x0: 90%;
  --y0: 16%;
  --x1: 34%;
  --y1: 72%;
  --angle: 134deg;
  --tail: 58px;
  --dur: 5.8s;
  --delay: -1.9s;
}

.traffic-star:nth-child(4) {
  --x0: 78%;
  --y0: 100%;
  --x1: 12%;
  --y1: 58%;
  --angle: 210deg;
  --tail: 68px;
  --dur: 6.8s;
  --delay: -4.7s;
}

.traffic-star:nth-child(5) {
  --x0: -8%;
  --y0: 76%;
  --x1: 42%;
  --y1: 50%;
  --angle: -26deg;
  --tail: 54px;
  --dur: 7.2s;
  --delay: -5.4s;
}

.traffic-star:nth-child(6) {
  --x0: 104%;
  --y0: 58%;
  --x1: 54%;
  --y1: 12%;
  --angle: 138deg;
  --tail: 62px;
  --dur: 6.4s;
  --delay: -2.7s;
}

@keyframes satellite-hover {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -8px; }
}

@keyframes core-float-centered {
  0%, 100% { transform: translate(-50%, -50%); }
  50% { transform: translate(-50%, calc(-50% - 7px)); }
}

@keyframes traffic-comet {
  0% {
    left: var(--x0);
    top: var(--y0);
    scale: .8;
    opacity: 0;
  }
  8%, 18% {
    opacity: .95;
  }
  34% {
    left: var(--x1);
    top: var(--y1);
    scale: 1;
    opacity: 0;
  }
  100% {
    left: var(--x1);
    top: var(--y1);
    scale: 1;
    opacity: 0;
  }
}

/* Final traffic pass: thin shooting traces that appear, cross, and fade. */
.traffic-star {
  left: var(--sx) !important;
  top: var(--sy) !important;
  width: var(--len, 118px) !important;
  height: 1px !important;
  border-radius: 999px !important;
  background:
    linear-gradient(90deg,
      rgba(139, 255, 184, 0) 0%,
      rgba(139, 255, 184, .08) 18%,
      rgba(139, 255, 184, .46) 58%,
      rgba(226, 255, 239, .98) 100%) !important;
  box-shadow:
    0 0 10px rgba(116, 255, 170, .42),
    0 0 22px rgba(98, 166, 223, .18) !important;
  filter: none !important;
  transform-origin: right center !important;
  animation: traffic-shoot var(--dur, 5.8s) cubic-bezier(.16, .72, .32, 1) infinite !important;
  animation-delay: var(--delay, 0s) !important;
  opacity: 0;
}

.traffic-star::before {
  display: none !important;
}

.traffic-star::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(238, 255, 245, .96);
  box-shadow:
    0 0 8px rgba(150, 255, 190, .9),
    0 0 18px rgba(150, 255, 190, .42);
  transform: translateY(-50%);
}

.traffic-star:nth-child(1) {
  --sx: -22%;
  --sy: 34%;
  --angle: -22deg;
  --travel: 320px;
  --len: 126px;
  --dur: 5.8s;
  --delay: -.3s;
}

.traffic-star:nth-child(2) {
  --sx: 12%;
  --sy: -10%;
  --angle: 24deg;
  --travel: 340px;
  --len: 108px;
  --dur: 7.1s;
  --delay: -2.7s;
}

.traffic-star:nth-child(3) {
  --sx: -18%;
  --sy: 12%;
  --angle: 18deg;
  --travel: 300px;
  --len: 94px;
  --dur: 6.4s;
  --delay: -4.8s;
}

.traffic-star:nth-child(4) {
  --sx: 22%;
  --sy: 104%;
  --angle: -24deg;
  --travel: 330px;
  --len: 120px;
  --dur: 8.2s;
  --delay: -6.1s;
}

.traffic-star:nth-child(5) {
  --sx: -18%;
  --sy: 78%;
  --angle: -21deg;
  --travel: 240px;
  --len: 82px;
  --dur: 6.9s;
  --delay: -5.2s;
}

.traffic-star:nth-child(6) {
  --sx: 58%;
  --sy: -12%;
  --angle: 23deg;
  --travel: 230px;
  --len: 72px;
  --dur: 7.6s;
  --delay: -1.7s;
}

@keyframes traffic-shoot {
  0%, 12% {
    transform: rotate(var(--angle)) translateX(0) scaleX(.08);
    opacity: 0;
  }
  18% {
    opacity: .85;
  }
  32% {
    transform: rotate(var(--angle)) translateX(calc(var(--travel) * .48)) scaleX(1);
    opacity: 1;
  }
  46% {
    transform: rotate(var(--angle)) translateX(var(--travel)) scaleX(.72);
    opacity: 0;
  }
  100% {
    transform: rotate(var(--angle)) translateX(var(--travel)) scaleX(.72);
    opacity: 0;
  }
}

.home-orbit__node--four {
  left: 50%;
  bottom: 2%;
  transform: translateX(-50%);
  color: #7df0a7;
}

.home-apple .home-story__sticky h2 {
  font-size: clamp(2.2rem, 4.7vw, 4.35rem);
  line-height: 1;
}

.home-apple .section-head h2,
.home-apple .b2b-bridge h2,
.home-apple .seo-copy h2,
.home-apple .site-footer h2,
.b2b-page .section-head h2,
.b2b-page .seo-copy h2,
.b2b-page .site-footer h2 {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.12;
}

.b2b-page {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(143, 183, 167, 0.18), transparent 34%),
    radial-gradient(ellipse at 82% 18%, rgba(87, 125, 119, 0.2), transparent 32%),
    linear-gradient(180deg, #070c12 0%, #0a1118 54%, #05080d 100%);
}

.b2b-page .site-header {
  background: rgba(7, 12, 18, 0.62);
  -webkit-backdrop-filter: blur(24px) saturate(135%);
  backdrop-filter: blur(24px) saturate(135%);
}

.b2b-page .b2b-hero {
  min-height: calc(100svh - 70px);
  display: grid;
  align-items: center;
  padding: clamp(58px, 8vw, 104px) 0 clamp(42px, 6vw, 78px);
}

.b2b-page .b2b-hero .hero-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 500px);
  gap: clamp(30px, 5vw, 74px);
}

.b2b-page .b2b-command-panel {
  position: relative;
  display: grid;
  gap: 14px;
  min-height: 540px;
  border-radius: 34px;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(14, 33, 35, 0.86), rgba(6, 10, 15, 0.96)),
    rgba(7, 12, 18, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 44px 120px rgba(0, 0, 0, 0.48);
}

.b2b-radar {
  position: relative;
  min-height: 170px;
  display: grid;
  align-content: center;
  justify-items: center;
  overflow: hidden;
  border: 1px solid rgba(143, 183, 167, 0.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 50%, rgba(143, 183, 167, 0.18), transparent 18%),
    rgba(6, 11, 16, 0.54);
}

.b2b-radar::before,
.b2b-radar::after {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(143, 183, 167, 0.16);
  border-radius: 50%;
}

.b2b-radar::after {
  inset: 48px;
}

.b2b-radar span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9fc8ba;
  box-shadow: 0 0 24px rgba(159, 200, 186, 0.84);
}

.b2b-radar span:nth-child(1) { left: 24%; top: 42%; }
.b2b-radar span:nth-child(2) { right: 28%; top: 32%; }
.b2b-radar span:nth-child(3) { right: 38%; bottom: 26%; }

.b2b-radar strong {
  color: #f0f6f2;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.b2b-radar em {
  color: rgba(214, 223, 220, 0.62);
  font-size: 0.82rem;
  font-style: normal;
}

.b2b-health-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.b2b-health-grid div {
  min-height: 70px;
  padding: 12px;
  border: 1px solid rgba(143, 183, 167, 0.15);
  border-radius: 16px;
  background: rgba(7, 12, 18, 0.58);
}

.b2b-health-grid span,
.b2b-health-grid strong {
  display: block;
}

.b2b-health-grid span {
  color: rgba(159, 200, 186, 0.72);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.b2b-health-grid strong {
  margin-top: 6px;
  color: #f0f6f2;
  font-size: 0.92rem;
}

.home-apple .footer-bottom-inner,
.b2b-page .footer-bottom-inner {
  align-items: start;
}

.home-apple .footer-brand-block,
.b2b-page .footer-brand-block {
  align-items: flex-start;
  text-align: left;
}

.home-apple .footer-logo,
.b2b-page .footer-logo {
  justify-content: flex-start;
}

.home-apple .footer-tagline,
.b2b-page .footer-tagline {
  margin-left: 0;
  max-width: 300px;
  text-align: left;
}

@media (max-width: 1024px) {
  .home-apple .home-hero .hero-grid,
  .b2b-page .b2b-hero .hero-grid {
    grid-template-columns: 1fr;
  }

  .home-apple .hero-panel,
  .b2b-page .b2b-command-panel {
    justify-self: stretch;
    max-width: none;
    transform: none;
  }
}

@media (max-width: 760px) {
  .home-apple .site-header .nav,
  .b2b-page .site-header .nav {
    min-height: 62px;
  }

  .home-apple .home-hero,
  .b2b-page .b2b-hero {
    min-height: auto;
    padding: 30px 0 28px;
  }

  .home-apple .home-hero .hero-grid,
  .b2b-page .b2b-hero .hero-grid {
    gap: 18px;
  }

  .home-apple .home-hero h1,
  .b2b-page .b2b-hero h1 {
    max-width: 11.8ch;
    font-size: clamp(2.35rem, 11.4vw, 3.3rem);
    line-height: 1.03;
    letter-spacing: -0.035em;
  }

  .home-apple .eyebrow,
  .b2b-page .eyebrow {
    margin-bottom: 10px;
    font-size: 0.68rem;
    letter-spacing: 0.13em;
  }

  .home-apple .home-hero .hero-text,
  .b2b-page .b2b-hero .hero-text {
    margin-bottom: 18px;
    font-size: 0.88rem;
    line-height: 1.52;
  }

  .home-apple .hero-actions,
  .b2b-page .hero-actions {
    margin-bottom: 16px;
  }

  .home-apple .hero-metrics,
  .b2b-page .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-apple .hero-metrics li,
  .b2b-page .hero-metrics li {
    padding: 10px 8px;
  }

  .home-apple .hero-panel,
  .b2b-page .b2b-command-panel {
    min-height: 0;
    border-radius: 20px;
    padding: 12px;
  }

  .home-apple pre,
  .b2b-page pre {
    padding: 14px;
    font-size: 0.64rem;
    line-height: 1.55;
  }

  .home-apple .home-story__sticky h2,
  .home-apple .section-head h2,
  .home-apple .b2b-bridge h2,
  .home-apple .seo-copy h2,
  .home-apple .site-footer h2,
  .b2b-page .section-head h2,
  .b2b-page .seo-copy h2,
  .b2b-page .site-footer h2 {
    font-size: clamp(1.6rem, 7.4vw, 2.35rem);
    line-height: 1.08;
  }

  .home-orbit {
    width: min(290px, 82vw);
    margin-top: 28px;
  }

  .home-orbit__node {
    min-width: 62px;
    padding: 6px 9px;
    font-size: 0.68rem;
  }

  .b2b-radar {
    min-height: 136px;
  }

  .b2b-health-grid {
    grid-template-columns: 1fr;
  }

  .b2b-health-grid div {
    min-height: 58px;
  }

  .home-apple .footer-bottom-inner,
  .b2b-page .footer-bottom-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 22px 18px;
  }

  .home-apple .footer-brand-block,
  .b2b-page .footer-brand-block {
    grid-column: 1 / -1;
    align-items: flex-start;
    text-align: left;
  }

  .home-apple .footer-logo,
  .b2b-page .footer-logo {
    justify-content: flex-start;
  }

  .home-apple .footer-tagline,
  .b2b-page .footer-tagline {
    max-width: 260px;
    text-align: left;
  }
}

/* Overflow and mobile finish */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.home-apple .hero-content,
.b2b-page .hero-content,
.home-apple .hero-panel,
.b2b-page .b2b-command-panel,
.home-story,
.home-story__grid,
.home-orbit,
.b2b-radar {
  min-width: 0;
}

.b2b-page .b2b-command-panel {
  transform:
    perspective(1200px)
    rotateY(calc(4deg - (var(--home-scroll, 0) * 2.5deg)))
    rotateX(calc(2deg - (var(--home-scroll, 0) * 1deg)))
    translateY(calc(var(--home-scroll, 0) * -12px));
  transition: transform 0.5s ease;
}

.b2b-radar span {
  animation: b2b-pulse 2.8s ease-in-out infinite;
}

.b2b-radar span:nth-child(2) {
  animation-delay: .45s;
}

.b2b-radar span:nth-child(3) {
  animation-delay: .9s;
}

@keyframes b2b-pulse {
  0%, 100% {
    transform: scale(.78);
    opacity: .58;
  }
  50% {
    transform: scale(1.35);
    opacity: 1;
  }
}

.b2b-page .reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.b2b-page .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 761px) {
  .home-apple .hero-panel,
  .b2b-page .b2b-command-panel {
    contain: layout paint;
  }
}

@media (max-width: 760px) {
  .home-apple .container,
  .b2b-page .container {
    width: 100%;
    max-width: 100%;
    padding-left: max(14px, env(safe-area-inset-left));
    padding-right: max(14px, env(safe-area-inset-right));
  }

  .home-apple .home-hero,
  .b2b-page .b2b-hero {
    padding-top: 24px;
  }

  .home-apple .home-hero h1,
  .b2b-page .b2b-hero h1 {
    max-width: 10.9ch;
    font-size: clamp(2.05rem, 10vw, 2.85rem);
  }

  .home-apple .hero-panel,
  .b2b-page .b2b-command-panel {
    width: 100%;
    max-width: 100%;
    transform: none !important;
    overflow: hidden;
  }

  .home-orbit {
    width: min(270px, 76vw);
    margin-left: auto;
    margin-right: auto;
  }

  .home-orbit__core {
    width: 76px;
    height: 76px;
    border-radius: 20px;
  }

  .home-orbit__core img {
    width: 56px;
    height: 56px;
  }

  .home-orbit__node--one {
    top: 12%;
    right: 1%;
  }

  .home-orbit__node--two {
    right: 3%;
    bottom: 14%;
  }

  .home-orbit__node--three {
    left: 0;
    top: 48%;
  }

  .home-orbit__node--four {
    bottom: 0;
  }

  .b2b-radar {
    width: 100%;
    overflow: hidden;
  }

  .b2b-radar::before {
    inset: 24px 28px;
  }

  .b2b-radar::after {
    inset: 48px 64px;
  }

  .b2b-health-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .b2b-health-grid div {
    min-height: 62px;
    padding: 10px 8px;
  }

  .b2b-health-grid span {
    font-size: .64rem;
  }

  .b2b-health-grid strong {
    font-size: .78rem;
  }

  .home-apple .footer-bottom-inner,
  .b2b-page .footer-bottom-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  }

  .home-apple .footer-brand-block,
  .b2b-page .footer-brand-block {
    grid-column: 1 / -1 !important;
    align-items: flex-start !important;
    text-align: left !important;
  }

  .home-apple .footer-logo,
  .b2b-page .footer-logo {
    justify-content: flex-start !important;
  }

  .home-apple .footer-tagline,
  .b2b-page .footer-tagline {
    margin-left: 0 !important;
    text-align: left !important;
  }
}

/* Absolute final public page cleanup */
.home-apple,
.b2b-page {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
}

.home-apple main,
.b2b-page main,
.home-apple .home-hero,
.b2b-page .b2b-hero {
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden !important;
}

.home-apple .home-hero .hero-grid,
.b2b-page .b2b-hero .hero-grid {
  width: min(1160px, calc(100vw - 32px)) !important;
  max-width: calc(100vw - 32px) !important;
  min-width: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.home-apple .hero-panel,
.b2b-page .b2b-command-panel {
  max-width: 100% !important;
  min-width: 0 !important;
  overflow: hidden !important;
  transform: none !important;
}

.home-apple .terminal,
.b2b-page .terminal {
  max-width: 100% !important;
  overflow: hidden !important;
}

.home-apple pre,
.b2b-page pre {
  max-width: 100% !important;
  overflow: hidden !important;
  white-space: pre-wrap !important;
  overflow-wrap: anywhere !important;
}

.home-apple .terminal code,
.b2b-page .terminal code {
  white-space: pre-wrap !important;
  overflow-wrap: anywhere !important;
}

.hero-signal-map li:nth-child(5) {
  left: 50%;
  top: 30%;
  animation-delay: 1.4s;
}

.hero-signal-map li:nth-child(6) {
  left: 73%;
  top: 55%;
  animation-delay: 1.75s;
}

.home-apple .footer-bottom-inner,
.b2b-page .footer-bottom-inner {
  grid-template-columns: minmax(220px, 1.4fr) minmax(150px, .8fr) minmax(170px, .8fr) !important;
}

.home-apple .footer-brand-block,
.b2b-page .footer-brand-block {
  grid-column: auto !important;
  align-items: flex-start !important;
  text-align: left !important;
}

.home-apple .footer-logo,
.b2b-page .footer-logo {
  justify-content: flex-start !important;
}

.home-apple .footer-tagline,
.b2b-page .footer-tagline {
  margin-left: 0 !important;
  text-align: left !important;
}

@media (max-width: 760px) {
  .home-apple .container,
  .b2b-page .container,
  .home-apple .home-hero .hero-grid,
  .b2b-page .b2b-hero .hero-grid {
    width: 100% !important;
    max-width: 100% !important;
  }

  .home-apple .hero-status-strip {
    grid-template-columns: 1fr auto !important;
    font-size: .72rem !important;
  }

  .home-apple .hero-status-strip strong {
    display: none !important;
  }

  .home-apple .hero-signal-map {
    display: block !important;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    height: 96px !important;
    margin-top: 10px !important;
    border-radius: 18px !important;
  }

  .home-apple .footer-bottom-inner,
  .b2b-page .footer-bottom-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 22px 18px !important;
  }

  .home-apple .footer-brand-block,
  .b2b-page .footer-brand-block {
    grid-column: 1 / -1 !important;
  }
}

/* Orbital hero: logo stays above the globe and readable on all breakpoints. */
.home-apple .product-orbit-scene .product-core-card {
  z-index: 20;
}

.home-apple .product-core-card img {
  width: 100% !important;
  height: 100% !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  mix-blend-mode: normal;
  clip-path: none;
  transform: none;
}

@media (max-width: 760px) {
  .home-apple .hero-panel.product-stage {
    min-height: 0 !important;
    padding: 14px !important;
    border-radius: 22px !important;
  }

  .home-apple .product-orbit-scene {
    min-height: 185px !important;
    margin: 12px 0 8px !important;
    border-radius: 18px !important;
  }

  .planet-atmosphere {
    width: 176px !important;
    opacity: .84 !important;
  }

  .planet-shadow {
    width: 230px !important;
    height: 100px !important;
    transform: translateY(42px) !important;
  }

  .product-orbit-ring--outer {
    width: 250px !important;
    height: 250px !important;
  }

  .product-orbit-ring--middle {
    width: 208px !important;
    height: 208px !important;
  }

  .product-orbit-ring--inner {
    width: 164px !important;
    height: 164px !important;
  }

  .home-apple .product-orbit-scene .product-core-card {
    width: clamp(96px, 24vw, 118px);
    height: clamp(96px, 24vw, 118px);
    padding: 12px;
    border-radius: 24px;
  }

  .home-apple .product-core-card img {
    width: 100%;
    height: 100%;
  }

  .orbit-track--access {
    top: 16px !important;
    right: 20px !important;
  }

  .orbit-track--core {
    left: 18px !important;
    top: 112px !important;
  }

  .orbit-track--b2b {
    right: 20px !important;
    bottom: 28px !important;
  }

  .home-apple .product-node {
    min-width: 62px !important;
    min-height: 30px !important;
    padding: 0 10px !important;
    border-radius: 999px !important;
    font-size: .64rem !important;
  }

  .traffic-star {
    width: calc(var(--len, 92px) * .66) !important;
  }
}

@media (max-width: 420px) {
  .home-apple .product-orbit-scene {
    min-height: 170px !important;
  }

  .home-apple .product-orbit-scene .product-core-card {
    width: 62px !important;
    height: 62px !important;
  }

  .home-apple .product-core-card img {
    width: 54px !important;
    height: 54px !important;
  }

  .orbit-track--access {
    right: 14px !important;
  }

  .orbit-track--core {
    left: 14px !important;
    top: 104px !important;
  }

  .orbit-track--b2b {
    right: 14px !important;
    bottom: 22px !important;
  }
}

/* Final planet geography pass: visible Auralith-blue continents. */
.planet-atmosphere {
  overflow: hidden !important;
}

.planet-atmosphere::before {
  z-index: 3 !important;
  inset: 7% !important;
  opacity: .98 !important;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 220'%3E%3Cg fill='none' stroke='%2362a6df' stroke-width='6.2' stroke-linecap='round' stroke-linejoin='round' opacity='.88'%3E%3Cpath d='M35 75c24-22 51-31 82-27 18 2 29 11 44 12 12 1 23-4 35-12'/%3E%3Cpath d='M27 122c25-15 52-19 80-12 22 6 35 21 57 23 15 2 28-2 43-11'/%3E%3Cpath d='M55 165c18-13 39-16 62-10 17 4 29 13 47 12 12-1 23-5 33-13'/%3E%3Cpath d='M77 38c-14 27-15 55-5 84 9 27 9 47-5 70'/%3E%3Cpath d='M145 35c11 28 10 54 0 79-11 28-10 52 6 78'/%3E%3C/g%3E%3Cg fill='%2362a6df' opacity='.46'%3E%3Cpath d='M61 69c23-15 48-17 72-4-12 16-30 24-52 22-11-1-18-7-20-18Z'/%3E%3Cpath d='M117 116c31-10 56-5 76 14-17 14-40 17-67 9-11-4-14-11-9-23Z'/%3E%3Cpath d='M55 142c26-8 48-4 66 12-15 13-36 17-61 11-9-3-11-11-5-23Z'/%3E%3C/g%3E%3C/svg%3E")
    center / 108% 108% no-repeat !important;
  filter:
    drop-shadow(0 0 10px rgba(98, 166, 223, .62))
    drop-shadow(0 0 22px rgba(79, 126, 181, .34)) !important;
}

.planet-atmosphere::after {
  z-index: 2 !important;
  opacity: .34 !important;
}

.home-apple .product-orbit-scene {
  min-height: 282px !important;
}

@media (max-width: 760px) {
  .home-apple .product-orbit-scene {
    min-height: 170px !important;
  }
}

@media (max-width: 420px) {
  .home-apple .product-orbit-scene {
    min-height: 158px !important;
  }
}

/* Fix planet geography: no thick ribs, only subtle continent outlines. */
.planet-atmosphere::before {
  z-index: 2 !important;
  inset: 10% !important;
  opacity: .72 !important;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 220'%3E%3Cg fill='%2362a6df' fill-opacity='.16' stroke='%2362a6df' stroke-opacity='.58' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M52 73c10-15 28-23 45-20 9 2 15 8 25 8 8 0 15-4 23-1 8 3 12 11 9 18-4 10-17 10-27 12-14 3-21 13-35 16-13 3-26-2-34-12-5-6-10-13-6-21Z'/%3E%3Cpath d='M128 111c12-9 31-11 46-5 13 5 22 17 20 29-2 11-14 18-28 17-11 0-19-6-29-9-11-3-22-1-28-8-7-8 6-17 19-24Z'/%3E%3Cpath d='M67 137c14-7 31-5 42 5 8 8 8 20-2 27-9 7-25 7-38 1-14-7-22-23-2-33Z'/%3E%3Cpath d='M92 37c7-5 18-4 25 2 6 6 4 16-4 20-9 5-23 2-28-6-4-6 0-12 7-16Z'/%3E%3C/g%3E%3Cg fill='none' stroke='%2362a6df' stroke-opacity='.22' stroke-width='1.2' stroke-linecap='round'%3E%3Cpath d='M45 112c35-12 78-13 129-2'/%3E%3Cpath d='M58 151c30 8 63 8 100 0'/%3E%3C/g%3E%3C/svg%3E")
    center / 96% 96% no-repeat !important;
  filter:
    drop-shadow(0 0 6px rgba(98, 166, 223, .28))
    drop-shadow(0 0 14px rgba(79, 126, 181, .14)) !important;
  mix-blend-mode: screen !important;
}

.planet-atmosphere::after {
  z-index: 3 !important;
  opacity: .22 !important;
}

/* Final planet map: clear line-art continents in Auralith blue. */
.planet-atmosphere::before,
.planet-atmosphere::after {
  display: none !important;
}

.home-apple .product-orbit-scene::before {
  content: "";
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 50%;
  width: 250px;
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 240'%3E%3Cg fill='none' stroke='%2362a6df' stroke-width='4.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M33 73c20-14 42-17 64-8 15 6 27 7 43 0 22-10 44-6 65 9'/%3E%3Cpath d='M28 121c18-12 37-16 58-12 20 4 34 18 55 21 23 4 45-3 68-18'/%3E%3Cpath d='M42 168c25-10 47-10 66 0 18 10 36 12 55 5 15-5 26-14 39-25'/%3E%3Cpath d='M76 43c-13 20-18 43-13 67 5 23 4 45-3 68'/%3E%3Cpath d='M152 39c10 24 9 48-2 72-11 25-9 50 7 75'/%3E%3C/g%3E%3Cg fill='none' stroke='%238fc7ff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' opacity='.9'%3E%3Cpath d='M56 87c14-21 41-27 66-13 12 7 19 4 31-1 12-5 28-3 40 8'/%3E%3Cpath d='M49 132c23-12 49-10 71 7 14 11 34 13 55 4 10-4 19-9 27-16'/%3E%3Cpath d='M71 165c20-7 38-4 55 7 17 11 39 9 61-7'/%3E%3C/g%3E%3C/svg%3E")
    center / 96% 96% no-repeat;
  opacity: .82;
  mix-blend-mode: screen;
  filter:
    drop-shadow(0 0 8px rgba(98, 166, 223, .62))
    drop-shadow(0 0 18px rgba(79, 126, 181, .36));
}

@media (max-width: 760px) {
  .home-apple .product-orbit-scene::before {
    width: 176px;
  }
}

/* Actual final planet surface: contained blue land masses, no overlay scribbles. */
.home-apple .product-orbit-scene::before {
  display: none !important;
}

.planet-atmosphere::before {
  display: block !important;
  z-index: 2 !important;
  inset: 8% !important;
  opacity: .72 !important;
  border-radius: 50% !important;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 240'%3E%3Cg fill='%2362a6df' fill-opacity='.22' stroke='%238fc7ff' stroke-opacity='.44' stroke-width='1.6' stroke-linejoin='round'%3E%3Cpath d='M48 83c15-24 43-35 72-28 13 3 20 11 32 12 10 1 19-5 29-2 13 4 19 16 12 28-8 14-29 12-44 18-17 7-23 22-43 25-22 3-40-8-55-24-9-10-10-19-3-29Z'/%3E%3Cpath d='M132 125c18-15 47-19 68-7 18 10 23 30 10 45-13 15-37 17-58 8-12-5-20-14-32-17-11-3-21-2-25-10-5-9 17-14 37-19Z'/%3E%3Cpath d='M66 157c20-11 46-8 61 6 12 12 7 29-12 36-20 8-49 1-62-14-10-12-5-20 13-28Z'/%3E%3Cpath d='M92 39c10-7 27-5 35 5 7 9 1 22-14 26-16 4-34-4-35-17 0-6 5-11 14-14Z'/%3E%3C/g%3E%3C/svg%3E")
    center / 102% 102% no-repeat !important;
  mix-blend-mode: screen !important;
  filter:
    drop-shadow(0 0 8px rgba(98, 166, 223, .28))
    drop-shadow(0 0 16px rgba(79, 126, 181, .16)) !important;
}

.planet-atmosphere::after {
  display: block !important;
  z-index: 3 !important;
  opacity: .18 !important;
}

/* Literal planet icon surface: cropped black globe with Auralith-blue land lines. */
.home-apple .product-orbit-scene::before {
  display: none !important;
}

.planet-atmosphere {
  background:
    radial-gradient(circle at 36% 30%, rgba(98, 166, 223, .12), transparent 22%),
    radial-gradient(circle at 58% 62%, rgba(80, 212, 134, .1), transparent 44%),
    radial-gradient(circle at 50% 50%, #03070d 0 64%, rgba(3, 7, 13, .74) 66%, transparent 70%) !important;
  animation: none !important;
}

.planet-atmosphere::before {
  display: block !important;
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  border-radius: 50% !important;
  opacity: .9 !important;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 240'%3E%3Ccircle cx='120' cy='120' r='110' fill='none' stroke='%2362a6df' stroke-width='3.2'/%3E%3Cg fill='none' stroke='%2362a6df' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M72 44c24 12 34 22 28 35-8 17-19 29-17 53 1 15 13 22 30 19 11-2 20-10 31-4 10 5 9 18 3 30-8 14-8 26 4 34'/%3E%3Cpath d='M149 31c-20 21-23 41-11 58 9 13 26-5 44 7 13 9 6 31 24 48 8 8 19 9 29 5'/%3E%3Cpath d='M20 135c22 12 35-3 47 7 12 9 1 31 16 42 18 14 39 10 52 28'/%3E%3Cpath d='M108 172c22-13 42 19 58 4 11-10 24-18 36 1 6 9 7 23 20 27'/%3E%3Cpath d='M105 103c10-22 22 9 34 0 11-8 26 8 15 24-10 15-7 24-18 33-11 8-24-5-21-18 3-12-22-1-23-18-1-9 8-10 13-21Z'/%3E%3C/g%3E%3C/svg%3E")
    center / 100% 100% no-repeat !important;
  mix-blend-mode: screen !important;
  filter:
    drop-shadow(0 0 8px rgba(98, 166, 223, .6))
    drop-shadow(0 0 18px rgba(79, 126, 181, .34)) !important;
}

.planet-atmosphere::after {
  display: block !important;
  z-index: 3 !important;
  opacity: .22 !important;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, .1), transparent 23%),
    radial-gradient(circle at 70% 72%, rgba(0, 0, 0, .48), transparent 46%) !important;
}

/* Final correction: the globe edge is the planet border, not a separate SVG ring. */
.planet-atmosphere {
  border: 2px solid rgba(98, 166, 223, .68) !important;
  box-shadow:
    inset -36px -42px 70px rgba(0, 0, 0, .54),
    0 0 42px rgba(98, 166, 223, .18),
    0 0 90px rgba(80, 212, 134, .16) !important;
}

.planet-atmosphere::before {
  inset: 9% !important;
  opacity: .62 !important;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 240'%3E%3Cg fill='none' stroke='%2362a6df' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M50 68c21-14 43-17 64-7 13 6 25 8 41 2 13-5 26-4 38 3'/%3E%3Cpath d='M44 112c20-11 42-14 64-6 21 8 35 22 61 18 13-2 24-7 34-15'/%3E%3Cpath d='M57 158c24-9 45-7 63 5 19 12 43 9 66-8'/%3E%3Cpath d='M82 42c-13 20-17 42-11 66 6 23 4 45-5 67'/%3E%3Cpath d='M151 38c10 24 8 47-3 70-11 24-9 47 6 70'/%3E%3Cpath d='M104 100c9-18 21 8 33 0 11-7 24 8 13 22-9 12-6 22-17 30-10 7-22-5-19-16 3-10-20-1-20-15-1-8 6-9 10-21Z'/%3E%3C/g%3E%3C/svg%3E")
    center / 100% 100% no-repeat !important;
  filter:
    drop-shadow(0 0 5px rgba(98, 166, 223, .36))
    drop-shadow(0 0 12px rgba(79, 126, 181, .18)) !important;
}

/* Core logo scale on desktop (overrides earlier mobile shrink rules). */
@media (min-width: 761px) {
  .home-apple .product-orbit-scene .product-core-card {
    width: clamp(128px, 12vw, 148px);
    height: clamp(128px, 12vw, 148px);
    padding: clamp(14px, 1.2vw, 18px);
    border-radius: 32px;
  }
}

.planet-atmosphere::before {
  z-index: 4 !important;
  inset: 8% !important;
  opacity: .86 !important;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 240'%3E%3Cg fill='none' stroke='%2362a6df' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M67 38c23 9 51 23 43 42-4 9-15 15-22 30-8 17-3 34-17 46-11 10-28 7-39-5-12-12-9-28 1-39 9-10 18-14 15-27-3-12-18-21-9-33 6-8 17-17 28-14Z'/%3E%3Cpath d='M111 92c10-19 25 10 38 0 9-7 26 2 28 16 2 12-10 19-15 30-5 12 2 25-10 36-9 9-24 7-31-4-8-12 1-23-3-35-4-11-21-8-22-22-1-9 10-12 15-21Z'/%3E%3Cpath d='M154 36c25 10 36 28 31 48-3 11 4 20 17 22 16 3 27 15 23 33-4 19-22 28-39 20-16-7-14-23-12-38 2-16-6-24-22-24-14 0-24-10-20-24 4-15 8-29 22-37Z'/%3E%3Cpath d='M25 143c19 13 33-5 49 5 15 10 4 28 17 40 14 13 36 8 48 25-25 8-55 3-78-12-23-15-39-37-47-62 4 0 8 1 11 4Z'/%3E%3Cpath d='M104 171c18-12 39 17 54 4 12-10 31-24 45-6 9 12 4 29 19 35-22 16-55 23-83 16-23-6-42-20-35-49Z'/%3E%3C/g%3E%3C/svg%3E")
    center / 98% 98% no-repeat !important;
  filter:
    drop-shadow(0 0 6px rgba(98, 166, 223, .5))
    drop-shadow(0 0 13px rgba(79, 126, 181, .24)) !important;
}

@media (max-width: 760px) {
  .home-apple .product-orbit-scene .product-core-card {
    width: 58px !important;
    height: 58px !important;
    padding: 7px !important;
    border-radius: 16px !important;
  }

  .home-apple .product-core-card img {
    width: 100%;
    height: 100%;
    transform: none;
  }
}

/* True final globe: black planet, border edge, reference-style continent outlines only. */
.planet-atmosphere {
  border: 2px solid rgba(98, 166, 223, .74) !important;
  background:
    radial-gradient(circle at 35% 30%, rgba(98, 166, 223, .1), transparent 22%),
    radial-gradient(circle at 54% 62%, rgba(80, 212, 134, .08), transparent 42%),
    #02060b !important;
  animation: none !important;
}

.planet-atmosphere::before {
  display: block !important;
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  border-radius: 50% !important;
  opacity: .78 !important;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 240'%3E%3Cg fill='none' stroke='%2362a6df' stroke-width='3.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M82 16C58 30 43 48 38 70c-5 23 8 37 25 34 16-3 21-20 23-37 2-15 9-28 22-39'/%3E%3Cpath d='M154 11c-19 18-24 37-14 56 8 15 24-6 43 8 17 13 1 41 21 58 11 10 25 9 36-2'/%3E%3Cpath d='M7 126c19 18 34 4 48 13 17 10 2 31 19 43 15 10 37 8 49 28'/%3E%3Cpath d='M101 165c22-16 42 21 61 7 13-10 25-27 43-9 9 10 6 31 22 37'/%3E%3Cpath d='M98 86c10-20 21 10 34 1 11-8 27 7 16 23-9 14-7 23-18 35-11 11-25-1-21-16 3-12-21-2-22-18-1-10 7-12 11-25Z'/%3E%3C/g%3E%3C/svg%3E")
    center / 94% 94% no-repeat !important;
  mix-blend-mode: screen !important;
  filter:
    drop-shadow(0 0 4px rgba(98, 166, 223, .42))
    drop-shadow(0 0 10px rgba(79, 126, 181, .2)) !important;
}

.planet-atmosphere::after {
  display: block !important;
  z-index: 3 !important;
  opacity: .2 !important;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, .08), transparent 22%),
    radial-gradient(circle at 70% 72%, rgba(0, 0, 0, .5), transparent 48%) !important;
}

/* Mobile orbital scene final: compact, readable, no noisy mini-desktop. */
@media (max-width: 760px) {
  .home-apple .hero-panel.product-stage {
    padding: 12px !important;
    border-radius: 20px !important;
  }

  .home-apple .product-orbit-scene {
    min-height: 205px !important;
    margin: 10px 0 6px !important;
    border-radius: 18px !important;
  }

  .planet-atmosphere {
    width: 156px !important;
    border-width: 1.4px !important;
    opacity: .92 !important;
    box-shadow:
      inset -22px -28px 44px rgba(0, 0, 0, .58),
      0 0 28px rgba(98, 166, 223, .16),
      0 0 58px rgba(80, 212, 134, .14) !important;
  }

  .planet-atmosphere::before {
    opacity: .46 !important;
    background-size: 88% 88% !important;
    filter:
      drop-shadow(0 0 3px rgba(98, 166, 223, .26))
      drop-shadow(0 0 7px rgba(79, 126, 181, .12)) !important;
  }

  .planet-atmosphere::after {
    opacity: .16 !important;
  }

  .planet-shadow {
    width: 196px !important;
    height: 78px !important;
    transform: translateY(34px) !important;
  }

  .product-orbit-ring--outer {
    width: 210px !important;
    height: 210px !important;
    opacity: .42 !important;
  }

  .product-orbit-ring--middle,
  .product-orbit-ring--inner {
    opacity: .18 !important;
  }

  .home-apple .product-orbit-scene .product-core-card {
    width: clamp(92px, 22vw, 112px);
    height: clamp(92px, 22vw, 112px);
    padding: 11px;
    border-radius: 22px;
  }

  .home-apple .product-core-card img {
    width: 100%;
    height: 100%;
    transform: none;
  }

  .orbit-track--access {
    top: 18px !important;
    right: 24px !important;
  }

  .orbit-track--core {
    left: 22px !important;
    top: 122px !important;
  }

  .orbit-track--b2b {
    right: 24px !important;
    bottom: 30px !important;
  }

  .home-apple .product-node {
    min-width: 64px !important;
    min-height: 31px !important;
    padding: 0 10px !important;
    font-size: .64rem !important;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, .06),
      0 10px 24px rgba(0, 0, 0, .28) !important;
  }

  .traffic-star:nth-child(n + 4) {
    display: none !important;
  }
}

@media (max-width: 420px) {
  .home-apple .product-orbit-scene {
    min-height: 190px !important;
  }

  .planet-atmosphere {
    width: 142px !important;
  }

  .home-apple .product-orbit-scene .product-core-card {
    width: clamp(88px, 20vw, 104px);
    height: clamp(88px, 20vw, 104px);
  }

  .home-apple .product-core-card img {
    width: 100%;
    height: 100%;
  }

  .orbit-track--access {
    right: 16px !important;
  }

  .orbit-track--core {
    left: 16px !important;
    top: 112px !important;
  }

  .orbit-track--b2b {
    right: 16px !important;
    bottom: 24px !important;
  }
}

/* B2B final polish: home-like rounded panels and scroll-reactive green glow. */
.b2b-page {
  background:
    radial-gradient(
      ellipse at 18% var(--b2b-bg-one-y, 0%),
      rgba(80, 212, 134, .15),
      transparent 34%
    ),
    radial-gradient(
      ellipse at 86% var(--b2b-bg-two-y, 14%),
      rgba(98, 166, 223, .12),
      transparent 32%
    ),
    linear-gradient(180deg, #070c12 0%, #0a1118 54%, #05080d 100%) !important;
}

.b2b-page .page-glow {
  width: min(620px, 80vw);
  height: min(620px, 80vw);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(80, 212, 134, .18), rgba(98, 166, 223, .08) 38%, transparent 68%);
  filter: blur(8px);
  opacity: .9;
  pointer-events: none;
  transform: translate3d(0, var(--b2b-glow-up, 0px), 0);
  transition: transform .12s linear;
}

.b2b-page .page-glow-bottom {
  transform: translate3d(0, var(--b2b-glow-down, 0px), 0);
}

.b2b-page .b2b-hero,
.b2b-page .b2b-capabilities,
.b2b-page .b2b-pricing-section,
.b2b-page .b2b-process-section,
.b2b-page .b2b-seo,
.b2b-page .site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.b2b-page .b2b-hero::before,
.b2b-page .b2b-capabilities::before,
.b2b-page .b2b-pricing-section::before,
.b2b-page .b2b-process-section::before,
.b2b-page .b2b-seo::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(520px, 78vw);
  height: min(520px, 78vw);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(80, 212, 134, .17), rgba(98, 166, 223, .06) 42%, transparent 70%);
  filter: blur(10px);
  opacity: .88;
  pointer-events: none;
  transform: translate3d(0, var(--b2b-section-up, 0px), 0);
}

.b2b-page .b2b-hero::before {
  right: -120px;
  top: 12%;
}

.b2b-page .b2b-capabilities::before {
  left: -170px;
  top: 8%;
}

.b2b-page .b2b-pricing-section::before {
  right: -160px;
  top: 18%;
  transform: translate3d(0, var(--b2b-section-down, 0px), 0);
}

.b2b-page .b2b-process-section::before {
  left: -140px;
  bottom: 0;
  transform: translate3d(0, var(--b2b-section-deep-up, 0px), 0);
}

.b2b-page .b2b-seo::before {
  right: -180px;
  top: -18%;
  transform: translate3d(0, var(--b2b-section-deep-down, 0px), 0);
}

.b2b-page .b2b-command-panel,
.b2b-page .hero-panel,
.b2b-page .card,
.b2b-page .b2b-pricing-card,
.b2b-page .timeline-item,
.b2b-page .contact-form {
  border-radius: 30px !important;
  overflow: hidden !important;
  border-color: rgba(143, 183, 167, .24) !important;
  background:
    linear-gradient(145deg, rgba(14, 31, 34, .84), rgba(5, 10, 16, .96)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .06),
    0 26px 76px rgba(0, 0, 0, .3) !important;
}

.b2b-page .b2b-pricing-card--featured {
  border-color: rgba(80, 212, 134, .42) !important;
  background:
    linear-gradient(145deg, rgba(18, 48, 46, .92), rgba(5, 10, 16, .96)) !important;
}

.b2b-page .terminal,
.b2b-page .b2b-radar,
.b2b-page .b2b-health-grid div,
.b2b-page .hero-metrics li {
  border-radius: 22px !important;
}

.b2b-page .btn {
  border-radius: 14px !important;
}

@media (max-width: 760px) {
  .b2b-page .page-glow {
    width: 360px;
    height: 360px;
    opacity: .72;
  }

  .b2b-page .b2b-hero::before,
  .b2b-page .b2b-capabilities::before,
  .b2b-page .b2b-pricing-section::before,
  .b2b-page .b2b-process-section::before,
  .b2b-page .b2b-seo::before {
    width: 340px;
    height: 340px;
    opacity: .64;
  }

  .b2b-page .b2b-command-panel,
  .b2b-page .hero-panel,
  .b2b-page .card,
  .b2b-page .b2b-pricing-card,
  .b2b-page .timeline-item,
  .b2b-page .contact-form {
    border-radius: 24px !important;
  }

  .b2b-page .terminal,
  .b2b-page .b2b-radar,
  .b2b-page .b2b-health-grid div,
  .b2b-page .hero-metrics li {
    border-radius: 18px !important;
  }

  .b2b-page .hero-metrics {
    display: none !important;
  }
}
