:root {
  --bg: #070a12;
  --bg-soft: #0c1120;
  --surface: rgba(255, 255, 255, 0.055);
  --surface-strong: rgba(255, 255, 255, 0.085);
  --border: rgba(255, 255, 255, 0.11);
  --text: #f6f7fb;
  --muted: #9ea8bd;
  --purple: #8b6cff;
  --purple-strong: #6f4cff;
  --blue: #4fd8ff;
  --cyan: #7cf3ff;
  --green: #63e6a5;
  --max-width: 1180px;
  --radius: 28px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 15% -5%, rgba(111, 76, 255, .18), transparent 28%),
    radial-gradient(circle at 90% 12%, rgba(79, 216, 255, .11), transparent 28%),
    var(--bg);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  max-width: 100%;
}

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 120px 0;
}

.section--tight {
  padding-bottom: 78px;
}

.page-glow {
  position: fixed;
  z-index: -1;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  opacity: .12;
}

.page-glow--one {
  top: 12%;
  left: -180px;
  background: var(--purple);
}

.page-glow--two {
  right: -200px;
  top: 58%;
  background: var(--blue);
}

.site-header {
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: .3s ease;
}

.site-header.scrolled {
  border-color: rgba(255,255,255,.08);
  background: rgba(7, 10, 18, .78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  transform: rotate(45deg);
}

.brand-mark span {
  position: absolute;
  width: 19px;
  height: 19px;
  border: 2px solid var(--purple);
  border-radius: 7px;
}

.brand-mark span:nth-child(2) {
  transform: translate(7px, -7px);
  border-color: var(--blue);
}

.brand-mark span:nth-child(3) {
  transform: translate(-7px, 7px);
  border-color: #d06cff;
}

.brand-copy {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.brand-copy strong {
  font-size: 1.06rem;
  letter-spacing: -.03em;
}

.brand-copy small {
  color: var(--muted);
  font-size: .82rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a,
.site-footer a {
  color: var(--muted);
  font-size: .9rem;
  transition: .2s ease;
}

.desktop-nav a:hover,
.site-footer a:hover {
  color: var(--text);
}

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

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 650;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: linear-gradient(135deg, var(--purple-strong), #8c5dff 55%, #5b9cff);
  box-shadow: 0 12px 30px rgba(111, 76, 255, .28);
}

.button--primary:hover {
  box-shadow: 0 16px 40px rgba(111, 76, 255, .4);
}

.button--ghost {
  border-color: var(--border);
  background: rgba(255,255,255,.035);
}

.button--glass {
  border-color: var(--border);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(14px);
}

.button--large {
  min-height: 54px;
  padding: 0 25px;
  font-size: .96rem;
}

.button--light {
  color: #121426;
  background: #fff;
}

.button--transparent {
  border-color: rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 5px auto;
  background: #fff;
  transition: .25s ease;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(3.25px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero {
  min-height: 930px;
  padding-top: 180px;
}

.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1.02fr .98fr;
  gap: 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #b9c3d6;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px var(--green);
}

.hero h1 {
  max-width: 740px;
  margin: 24px 0;
  font-size: clamp(3.6rem, 7vw, 6.5rem);
  line-height: .98;
  letter-spacing: -.075em;
}

.hero h1 span,
.section-heading h2 span {
  background: linear-gradient(110deg, #fff, #a99bff 42%, #65dbff 76%, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-actions--center {
  justify-content: center;
}

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

.trust-row span {
  position: relative;
  color: #8792aa;
  font-size: .75rem;
  font-weight: 650;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.trust-row span:not(:last-child)::after {
  position: absolute;
  right: -12px;
  color: #3c4558;
  content: "·";
}

.hero-visual {
  position: relative;
  min-height: 580px;
  isolation: isolate;
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit--outer {
  width: 530px;
  height: 530px;
  animation: rotate 28s linear infinite;
}

.orbit--middle {
  width: 380px;
  height: 380px;
  border-style: dashed;
  animation: rotate-reverse 20s linear infinite;
}

.hub-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  width: 210px;
  height: 210px;
  overflow: hidden;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255,255,255,.16), transparent 28%),
    linear-gradient(145deg, rgba(118,76,255,.68), rgba(33,43,91,.82));
  box-shadow:
    inset 0 0 50px rgba(255,255,255,.08),
    0 0 100px rgba(111,76,255,.28);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(22px);
}

.hub-core__shine {
  position: absolute;
  top: -40px;
  left: -30px;
  width: 150px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  filter: blur(20px);
  transform: rotate(-25deg);
}

.hub-core__logo,
.map-core__logo {
  position: relative;
  width: 58px;
  height: 58px;
  margin-bottom: 14px;
  transform: rotate(45deg);
}

.hub-core__logo span,
.map-core__logo span {
  position: absolute;
  top: 17px;
  left: 17px;
  width: 26px;
  height: 26px;
  border: 2px solid #fff;
  border-radius: 8px;
}

.hub-core__logo span:nth-child(2),
.map-core__logo span:nth-child(2) {
  transform: translate(10px, -10px);
  opacity: .65;
}

.hub-core__logo span:nth-child(3),
.map-core__logo span:nth-child(3) {
  transform: translate(-10px, 10px);
  opacity: .45;
}

.hub-core strong {
  font-size: 1.2rem;
}

.hub-core small {
  margin-top: 6px;
  color: #c1c9d8;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  min-width: 205px;
  align-items: center;
  gap: 12px;
  padding: 15px 16px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  background: rgba(14,19,34,.72);
  box-shadow: 0 20px 50px rgba(0,0,0,.28);
  backdrop-filter: blur(18px);
  animation: float 5.5s ease-in-out infinite;
}

.floating-card small {
  display: block;
  margin-bottom: 3px;
  color: #8e9ab1;
  font-size: .68rem;
}

.floating-card strong {
  font-size: .84rem;
}

.floating-card--user {
  top: 20px;
  left: -10px;
}

.floating-card--license {
  top: 74px;
  right: -18px;
  animation-delay: -2s;
}

.floating-card--app {
  bottom: 68px;
  left: -26px;
  animation-delay: -3.5s;
}

.floating-card--device {
  right: 6px;
  bottom: 15px;
  animation-delay: -1s;
}

.mini-avatar {
  display: grid;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #7b5cff, #3fc0ff);
  font-size: .72rem;
  font-weight: 800;
}

.mini-avatar--large {
  width: 52px;
  height: 52px;
  font-size: .86rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  margin-left: auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(99,230,165,.8);
}

.mini-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 12px;
  color: var(--green);
  background: rgba(99,230,165,.11);
  font-weight: 900;
}

.device-dot {
  width: 36px;
  height: 36px;
  border: 6px solid rgba(79,216,255,.25);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(79,216,255,.25);
}

.rings-icon {
  position: relative;
  width: 38px;
  height: 38px;
}

.rings-icon span {
  position: absolute;
  inset: 2px;
  border: 3px solid #ff617b;
  border-radius: 50%;
}

.rings-icon span:nth-child(2) {
  inset: 8px;
  border-color: #6cff93;
}

.rings-icon span:nth-child(3) {
  inset: 14px;
  border-color: #6ccfff;
}

.metrics-strip {
  display: grid;
  margin-top: 90px;
  overflow: hidden;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255,255,255,.035);
}

.metrics-strip > div {
  padding: 25px;
  text-align: center;
}

.metrics-strip > div:not(:last-child) {
  border-right: 1px solid var(--border);
}

.metrics-strip strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1.65rem;
}

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

.section-heading {
  max-width: 720px;
  margin-bottom: 54px;
}

.section-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2,
.nova-copy h2,
.license-copy h2,
.developer-copy h2,
.future-copy h2,
.cta-card h2 {
  margin: 18px 0;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -.055em;
}

.section-heading p,
.nova-copy > p,
.license-copy > p,
.developer-copy > p,
.future-copy p,
.cta-card p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-card,
.security-card {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.feature-card:hover,
.security-card:hover {
  border-color: rgba(139,108,255,.45);
  background: linear-gradient(160deg, rgba(139,108,255,.12), rgba(255,255,255,.025));
  transform: translateY(-6px);
}

.feature-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  place-items: center;
  border: 1px solid rgba(139,108,255,.35);
  border-radius: 14px;
  color: #bcacff;
  background: rgba(139,108,255,.09);
  font-size: 1.35rem;
}

.feature-card h3,
.security-card h3 {
  margin: 0 0 12px;
  font-size: 1.06rem;
}

.feature-card p,
.security-card p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.7;
}

.ecosystem-map-section {
  padding-top: 50px;
}

.ecosystem-map {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 50%, rgba(111,76,255,.18), transparent 24%),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    rgba(255,255,255,.025);
  background-size: auto, 40px 40px, 40px 40px, auto;
}

.map-core {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: flex;
  width: 190px;
  height: 190px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(112,75,255,.88), rgba(40,50,102,.9));
  box-shadow: 0 0 90px rgba(111,76,255,.3);
  transform: translate(-50%, -50%);
}

.map-core__logo {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
}

.map-core__logo span {
  top: 14px;
  left: 14px;
  width: 22px;
  height: 22px;
}

.map-core small {
  margin-top: 6px;
  color: #cbd2df;
  font-size: .7rem;
}

.map-node {
  position: absolute;
  z-index: 2;
  width: 210px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(10,14,25,.85);
  box-shadow: var(--shadow);
  backdrop-filter: blur(15px);
}

.map-node strong,
.map-node small {
  display: block;
}

.map-node strong {
  margin: 10px 0 5px;
  font-size: .9rem;
}

.map-node small {
  color: var(--muted);
  font-size: .75rem;
}

.node-icon {
  color: #b5a7ff;
  font-size: 1.3rem;
}

.map-node--rings { top: 65px; left: 65px; }
.map-node--eforo { top: 65px; right: 65px; }
.map-node--friends { bottom: 65px; left: 65px; }
.map-node--access { right: 65px; bottom: 65px; }

.map-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-lines path {
  fill: none;
  stroke: url(#lineGradient);
  stroke-width: 2;
  stroke-dasharray: 8 12;
  animation: dash 18s linear infinite;
}

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

.app-card {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.02));
  transition: transform .3s ease, border-color .3s ease;
}

.app-card::after {
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  content: "";
  filter: blur(25px);
  opacity: .13;
}

.app-card--rings::after { background: #ff5577; }
.app-card--eforo::after { background: #4fd8ff; }
.app-card--friends::after { background: #9d7bff; }
.app-card--access::after { background: #63e6a5; }

.app-card:hover {
  border-color: rgba(255,255,255,.24);
  transform: translateY(-7px);
}

.app-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.app-logo {
  display: grid;
  position: relative;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 18px;
  font-weight: 800;
}

.app-logo--rings {
  background: #111520;
}

.app-logo--rings span {
  position: absolute;
  inset: 8px;
  border: 4px solid #ff5d76;
  border-radius: 50%;
}

.app-logo--rings span:nth-child(2) {
  inset: 16px;
  border-color: #6ee88f;
}

.app-logo--rings span:nth-child(3) {
  inset: 24px;
  border-width: 3px;
  border-color: #6fd7ff;
}

.app-logo--eforo {
  color: #06121a;
  background: linear-gradient(145deg, #66e6ff, #4f92ff);
  font-size: 1.7rem;
}

.app-logo--friends {
  background: linear-gradient(145deg, #9c7bff, #6e49ff);
}

.app-logo--access {
  color: #05150e;
  background: linear-gradient(145deg, #69e8a8, #42bff5);
  font-size: 1.4rem;
}

.pill,
.active-pill {
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  color: #aeb7c9;
  background: rgba(255,255,255,.04);
  font-size: .68rem;
  font-weight: 700;
}

.app-card h3 {
  margin: 28px 0 12px;
  font-size: 1.65rem;
  letter-spacing: -.035em;
}

.app-card p {
  max-width: 540px;
  color: var(--muted);
  line-height: 1.7;
}

.tag-list,
.dev-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.tag-list span,
.dev-badges span {
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 9px;
  color: #abb5c8;
  background: rgba(255,255,255,.03);
  font-size: .7rem;
  font-weight: 650;
}

.text-link {
  position: absolute;
  bottom: 32px;
  left: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d9d4ff;
  font-size: .83rem;
  font-weight: 700;
}

.text-link span {
  transition: transform .2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.nova-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 50%, rgba(79,216,255,.11), transparent 32%),
    linear-gradient(180deg, transparent, rgba(255,255,255,.025), transparent);
}

.nova-grid,
.license-grid,
.developer-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}

.check-list {
  display: grid;
  margin: 32px 0;
  padding: 0;
  gap: 14px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #d8ddea;
}

.check-list li span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: rgba(99,230,165,.1);
  font-size: .75rem;
}

.nova-visual {
  position: relative;
  display: grid;
  min-height: 580px;
  place-items: center;
}

.nova-aura {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79,216,255,.18), rgba(111,76,255,.05) 50%, transparent 72%);
  filter: blur(10px);
  animation: pulse 4s ease-in-out infinite;
}

.nova-device {
  position: relative;
  z-index: 2;
  width: 290px;
  height: 410px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 90px 90px 52px 52px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.025) 35%),
    #151b2b;
  box-shadow:
    inset 0 0 40px rgba(255,255,255,.04),
    0 45px 80px rgba(0,0,0,.42);
}

.nova-device::before {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: inherit;
  content: "";
}

.nova-ring {
  position: absolute;
  top: 46px;
  left: 50%;
  display: grid;
  width: 190px;
  height: 190px;
  place-items: center;
  border: 8px solid rgba(79,216,255,.2);
  border-radius: 50%;
  background:
    conic-gradient(from 0deg, #5de4ff, #785cff, #d36cff, #5de4ff);
  box-shadow: 0 0 55px rgba(79,216,255,.32);
  transform: translateX(-50%);
}

.nova-ring::before {
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: #121725;
  content: "";
}

.nova-center {
  z-index: 1;
  display: grid;
  width: 120px;
  height: 120px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,.1), #0d1220 68%);
}

.nova-symbol {
  color: #e9efff;
  font-size: 2.5rem;
  font-weight: 800;
  text-shadow: 0 0 25px rgba(79,216,255,.45);
}

.nova-speaker {
  position: absolute;
  right: 0;
  bottom: 60px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.nova-speaker span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
}

.nova-status {
  position: absolute;
  z-index: 3;
  right: 15px;
  bottom: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: #cbd4e3;
  background: rgba(10,14,25,.8);
  font-size: .76rem;
  backdrop-filter: blur(14px);
}

.nova-signal {
  position: absolute;
  border: 1px solid rgba(79,216,255,.12);
  border-radius: 50%;
  animation: signal 3.5s ease-out infinite;
}

.nova-signal--one { width: 330px; height: 330px; }
.nova-signal--two { width: 430px; height: 430px; animation-delay: 1s; }
.nova-signal--three { width: 520px; height: 520px; animation-delay: 2s; }

.flow-section {
  padding-top: 80px;
}

.sync-flow {
  display: grid;
  align-items: center;
  padding: 38px;
  grid-template-columns: 1fr auto 1fr auto 1.4fr;
  gap: 22px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255,255,255,.035);
}

.sync-node {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.sync-node--hub {
  padding: 24px;
  border: 1px solid rgba(139,108,255,.35);
  border-radius: 22px;
  background: rgba(139,108,255,.09);
}

.sync-icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 13px;
  place-items: center;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  font-weight: 800;
}

.sync-node strong {
  font-size: .92rem;
}

.sync-node small {
  margin-top: 4px;
  color: var(--muted);
  font-size: .7rem;
}

.sync-arrow {
  color: #556079;
  font-size: 1.6rem;
}

.sync-destinations {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.sync-destinations span {
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: #ccd3df;
  background: rgba(255,255,255,.04);
  font-size: .75rem;
  font-weight: 700;
}

.license-panel {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(111,76,255,.18), transparent 35%),
    linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  box-shadow: var(--shadow);
}

.license-panel__header,
.license-user,
.license-products > div {
  display: flex;
  align-items: center;
}

.license-panel__header {
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}

.license-panel__header small {
  color: var(--muted);
  font-size: .7rem;
}

.license-panel__header h3 {
  margin: 5px 0 0;
  font-size: 1.55rem;
}

.active-pill {
  color: var(--green);
  border-color: rgba(99,230,165,.2);
  background: rgba(99,230,165,.08);
}

.license-user {
  gap: 14px;
  padding: 25px 0;
}

.license-user strong,
.license-user span {
  display: block;
}

.license-user span {
  margin-top: 5px;
  color: var(--muted);
  font-size: .75rem;
}

.license-products {
  display: grid;
  gap: 10px;
}

.license-products > div {
  padding: 14px;
  gap: 11px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  color: #dfe4ed;
  background: rgba(255,255,255,.035);
  font-size: .8rem;
}

.license-products b {
  margin-left: auto;
  color: #bcb0ff;
  font-size: .65rem;
}

.product-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.product-dot--rings { background: #ff5e79; }
.product-dot--eforo { background: #55d9ff; }
.product-dot--access { background: #63e6a5; }

.mini-features {
  display: grid;
  margin-top: 28px;
  gap: 16px;
}

.mini-features > div {
  display: flex;
  gap: 13px;
}

.mini-features > div > span {
  color: var(--green);
  font-weight: 800;
}

.mini-features p {
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.6;
}

.mini-features strong {
  color: var(--text);
}

.developer-section {
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.025), transparent);
}

.code-window {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #0b0f1a;
  box-shadow: var(--shadow);
}

.code-window__bar {
  display: flex;
  min-height: 50px;
  align-items: center;
  gap: 7px;
  padding: 0 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.025);
}

.code-window__bar > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3b4355;
}

.code-window__bar small {
  margin-left: 10px;
  color: #6f7b92;
}

pre {
  margin: 0;
  padding: 32px;
  overflow-x: auto;
}

code {
  color: #d7deeb;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: .86rem;
  line-height: 1.9;
}

.code-purple { color: #c792ea; }
.code-blue { color: #82aaff; }
.code-green { color: #c3e88d; }

.security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.security-card > span {
  display: inline-block;
  margin-bottom: 40px;
  color: #6d7790;
  font-size: .72rem;
  font-weight: 800;
}

.future-card {
  position: relative;
  display: grid;
  overflow: hidden;
  padding: 65px;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  border: 1px solid var(--border);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(111,76,255,.13), rgba(79,216,255,.06) 50%, rgba(255,255,255,.025));
}

.future-glow {
  position: absolute;
  right: -90px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: var(--purple);
  filter: blur(120px);
  opacity: .18;
}

.future-roadmap {
  position: relative;
  display: grid;
  align-content: center;
  gap: 16px;
}

.future-roadmap > div {
  padding: 20px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px;
  background: rgba(255,255,255,.035);
}

.future-roadmap span,
.future-roadmap strong {
  display: block;
}

.future-roadmap span {
  margin-bottom: 7px;
  color: #8d98ad;
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.future-roadmap strong {
  font-size: .82rem;
}

.cta-card {
  position: relative;
  overflow: hidden;
  padding: 90px 35px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 36px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,.16), transparent 28%),
    linear-gradient(135deg, #6847f6, #744ff1 40%, #327fcf);
  box-shadow: 0 35px 90px rgba(58,54,185,.3);
  text-align: center;
}

.cta-card .eyebrow {
  color: rgba(255,255,255,.72);
}

.cta-card p {
  max-width: 690px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255,255,255,.76);
}

.cta-orb {
  position: absolute;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
}

.cta-orb--one {
  top: -130px;
  left: -80px;
  width: 360px;
  height: 360px;
}

.cta-orb--two {
  right: -110px;
  bottom: -180px;
  width: 460px;
  height: 460px;
}

.site-footer {
  padding: 80px 0 30px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  padding-bottom: 55px;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 45px;
}

.footer-grid p {
  max-width: 300px;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.6;
}

.footer-grid h4 {
  margin: 0 0 18px;
  font-size: .8rem;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-bottom {
  display: flex;
  padding-top: 24px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--border);
  color: #6f7a90;
  font-size: .72rem;
}

.footer-bottom > div {
  display: flex;
  gap: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: .12s;
}

@keyframes rotate {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes rotate-reverse {
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

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

@keyframes dash {
  to { stroke-dashoffset: -300; }
}

@keyframes pulse {
  0%, 100% { transform: scale(.95); opacity: .55; }
  50% { transform: scale(1.05); opacity: 1; }
}

@keyframes signal {
  0% { transform: scale(.75); opacity: 0; }
  35% { opacity: .8; }
  100% { transform: scale(1.15); opacity: 0; }
}

@media (max-width: 1050px) {
  .desktop-nav {
    display: none;
  }

  .feature-grid,
  .security-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero {
    padding-top: 155px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-lead {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions,
  .trust-row {
    justify-content: center;
  }

  .hero-visual {
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 860px) {
  .section {
    padding: 90px 0;
  }

  .desktop-only {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    display: block;
    max-height: 0;
    overflow: hidden;
    border-bottom: 1px solid transparent;
    background: rgba(7,10,18,.96);
    opacity: 0;
    transition: .3s ease;
  }

  .menu-open .mobile-menu {
    max-height: 520px;
    border-color: var(--border);
    opacity: 1;
  }

  .mobile-menu__inner {
    display: flex;
    padding-top: 25px;
    padding-bottom: 30px;
    flex-direction: column;
    gap: 22px;
  }

  .mobile-menu__inner > a {
    color: #dce2ed;
    font-size: 1rem;
  }

  .mobile-menu__actions {
    display: grid;
    margin-top: 8px;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .nova-grid,
  .license-grid,
  .developer-grid,
  .future-card {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .nova-copy,
  .license-copy,
  .developer-copy {
    max-width: 720px;
  }

  .sync-flow {
    grid-template-columns: 1fr;
  }

  .sync-arrow {
    transform: rotate(90deg);
  }

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

  .footer-grid > div:last-child {
    grid-column: 2 / 3;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .hero {
    min-height: auto;
    padding-top: 135px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .hero-visual {
    min-height: 490px;
  }

  .orbit--outer {
    width: 410px;
    height: 410px;
  }

  .orbit--middle {
    width: 300px;
    height: 300px;
  }

  .hub-core {
    width: 170px;
    height: 170px;
  }

  .floating-card {
    min-width: 165px;
    padding: 11px 12px;
  }

  .floating-card--user { top: 8px; left: 0; }
  .floating-card--license { top: 66px; right: 0; }
  .floating-card--app { bottom: 64px; left: 0; }
  .floating-card--device { right: 0; bottom: 10px; }

  .metrics-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .metrics-strip > div:nth-child(2) {
    border-right: 0;
  }

  .metrics-strip > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--border);
  }

  .feature-grid,
  .security-grid,
  .apps-grid {
    grid-template-columns: 1fr;
  }

  .ecosystem-map {
    min-height: 820px;
  }

  .map-core {
    width: 165px;
    height: 165px;
  }

  .map-node {
    width: calc(100% - 48px);
    left: 24px !important;
    right: auto !important;
  }

  .map-node--rings { top: 28px; }
  .map-node--eforo { top: 184px; }
  .map-node--friends { bottom: 184px; }
  .map-node--access { bottom: 28px; }

  .map-lines {
    display: none;
  }

  .nova-device {
    width: 245px;
    height: 360px;
  }

  .nova-ring {
    width: 160px;
    height: 160px;
  }

  .nova-status {
    right: 0;
  }

  .future-card {
    padding: 38px 25px;
  }

  .cta-card {
    padding: 65px 22px;
  }

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

  .footer-grid > div:first-child,
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .section-heading h2,
  .nova-copy h2,
  .license-copy h2,
  .developer-copy h2,
  .future-copy h2,
  .cta-card h2 {
    font-size: 2.35rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-row span:not(:last-child)::after {
    display: none;
  }

  .hero-visual {
    min-height: 450px;
  }

  .floating-card {
    min-width: 148px;
  }

  .floating-card strong {
    font-size: .72rem;
  }

  .floating-card small {
    font-size: .58rem;
  }

  .mini-avatar,
  .mini-icon,
  .device-dot,
  .rings-icon {
    width: 31px;
    height: 31px;
  }

  .metrics-strip > div {
    padding: 19px 12px;
  }

  .app-card {
    min-height: 420px;
    padding: 25px;
  }

  .text-link {
    left: 25px;
  }

  .nova-visual {
    min-height: 470px;
  }

  .nova-signal--three {
    width: 390px;
    height: 390px;
  }

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

  .footer-grid > div {
    grid-column: auto !important;
  }

  .mobile-menu__actions {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* Apps obtenidas dinámicamente desde el CPT omkrom_app */
.app-logo--dynamic {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(145deg, rgba(139,108,255,.22), rgba(79,216,255,.12));
}
.app-logo--dynamic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.app-logo__initials {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -.04em;
}
.app-card--dynamic::after {
  background: linear-gradient(135deg, var(--purple), var(--blue));
}
.omkrom-apps-empty {
  padding: 42px;
  border: 1px solid var(--border);
  border-radius: 22px;
  color: var(--muted);
  background: rgba(255,255,255,.035);
  text-align: center;
}


/* Omkrom Hub Landing 1.3.0 */
.app-logo--dynamic {
  overflow: hidden;
  padding: 7px;
  border: 1px solid rgba(15, 23, 42, .10);
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .16);
}

.app-logo--dynamic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
}

.app-logo--dynamic .app-logo__initials {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  border-radius: 10px;
  color: #111827;
  background: #fff;
}

.nova-visual--photo {
  min-height: 520px;
}

.nova-photo-frame {
  position: relative;
  width: min(100%, 620px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 34px;
  background: #11151d;
  box-shadow: 0 45px 100px rgba(0,0,0,.46);
  transform: perspective(1200px) rotateY(-4deg) rotateX(1deg);
}

.nova-photo-frame::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.nova-photo-frame img {
  display: block;
  width: 100%;
  min-height: 460px;
  object-fit: cover;
}

.nova-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(5,8,14,.58));
  pointer-events: none;
}

.nova-visual--photo .nova-status {
  right: 24px;
  bottom: 24px;
}

@media (max-width: 860px) {
  .nova-photo-frame { transform: none; }
  .nova-photo-frame img { min-height: 380px; }
}

@media (max-width: 480px) {
  .nova-visual--photo { min-height: 390px; }
  .nova-photo-frame { border-radius: 24px; }
  .nova-photo-frame img { min-height: 340px; }
}


/* Omkrom Hub Landing 1.4.0 */
.nova-photo-image--mirrored {
  transform: scaleX(-1);
}

.future-features-grid {
  display: grid;
  margin-bottom: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.future-feature-card {
  position: relative;
  min-height: 285px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(139, 108, 255, .12), transparent 34%),
    linear-gradient(155deg, rgba(255,255,255,.065), rgba(255,255,255,.022));
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.future-feature-card:hover {
  border-color: rgba(139,108,255,.44);
  background:
    radial-gradient(circle at 100% 0%, rgba(79,216,255,.14), transparent 38%),
    linear-gradient(155deg, rgba(139,108,255,.09), rgba(255,255,255,.025));
  transform: translateY(-6px);
}

.future-feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  place-items: center;
  border: 1px solid rgba(139,108,255,.28);
  border-radius: 15px;
  color: #c8bdff;
  background: rgba(139,108,255,.09);
  font-size: 1.28rem;
}

.future-feature-label {
  display: block;
  margin-bottom: 9px;
  color: #8793aa;
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.future-feature-card h3 {
  margin: 0 0 13px;
  font-size: 1.12rem;
  letter-spacing: -.025em;
}

.future-feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.72;
}

.future-card--roadmap {
  margin-top: 18px;
}

@media (max-width: 980px) {
  .future-features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .future-features-grid {
    grid-template-columns: 1fr;
  }

  .future-feature-card {
    min-height: 0;
    padding: 25px;
  }
}


/* Omkrom Hub Landing 1.5.0 */

/* Compensa la barra superior de WordPress cuando el usuario está autenticado. */
.admin-bar .site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

/* Evita que la cabecera tape el inicio del hero con la barra de administración activa. */
.admin-bar .hero {
  padding-top: 212px;
}

@media (max-width: 1050px) {
  .admin-bar .hero {
    padding-top: 187px;
  }
}

@media (max-width: 700px) {
  .admin-bar .hero {
    padding-top: 181px;
  }
}

/* Al subir la sección futura, reducimos un poco su separación superior. */
.hero + .future-section {
  padding-top: 52px;
}

.hero + .future-section .section-heading {
  margin-bottom: 42px;
}
