/* RubeloreOS Landing — design tokens */
:root {
  --bg: #0a0a0a;
  --bg-elev: #121212;
  --bg-elev-2: #181818;
  --border: #222222;
  --border-strong: #2e2e2e;
  --fg: #fafafa;
  --fg-muted: #9a9a9a;
  --fg-dim: #6a6a6a;
  --accent: #60a5fa;
  --accent-ink: #0a0a0a;
  --accent-dim: #4a90e2;
  --success: #4ade80;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1200px;

  --font-sans: "Geist", "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "Geist Mono", "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Background texture variants */
body[data-bg="grid"]::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
body[data-bg="glow"]::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, color-mix(in oklab, var(--accent) 18%, transparent), transparent 45%),
    radial-gradient(circle at 80% 100%, color-mix(in oklab, var(--accent) 10%, transparent), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

main, nav, footer { position: relative; z-index: 1; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 { margin: 0; letter-spacing: -0.02em; font-weight: 600; }
h1 { font-size: clamp(44px, 6.4vw, 84px); line-height: 0.98; letter-spacing: -0.035em; font-weight: 600; }
h2 { font-size: clamp(34px, 4vw, 52px); line-height: 1.02; letter-spacing: -0.025em; }
h3 { font-size: 20px; line-height: 1.25; }
p { margin: 0; color: var(--fg-muted); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

.muted { color: var(--fg-muted); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: color-mix(in oklab, var(--bg) 75%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease;
}
.nav.scrolled { border-bottom-color: var(--border); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 18px;
}
.logo-mark {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: var(--accent);
  display: grid; place-items: center;
  color: var(--accent-ink);
  font-weight: 700;
  font-family: var(--font-mono);
  font-size: 14px;
  box-shadow: 0 0 0 1px color-mix(in oklab, var(--accent) 60%, transparent);
}
.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}
.nav-link {
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--fg-muted);
  transition: color .2s, background .2s;
}
.nav-link:hover { color: var(--fg); background: var(--bg-elev); }
.nav-cta {
  display: flex;
  gap: 8px;
  align-items: center;
}
@media (max-width: 780px) {
  .nav-links { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  font-family: inherit;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
}
.btn-primary:hover { background: var(--accent-dim); }
.btn-ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--border-strong);
}
.btn-ghost:hover { background: var(--bg-elev); border-color: #3a3a3a; }
.btn-lg { height: 52px; padding: 0 26px; font-size: 15px; }

/* ---------- Hero ---------- */
.hero {
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.hero-shader {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
  opacity: 0.7;
  pointer-events: none;
}
.hero-shader-fade {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, transparent 0%, rgba(10,10,10,0.4) 55%, var(--bg) 92%),
    linear-gradient(180deg, transparent 0%, transparent 50%, var(--bg) 100%);
}
.hero > .container { position: relative; z-index: 1; }
.hero[data-layout="left"] { text-align: left; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 6px;
  border-radius: 999px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  font-size: 12px;
  color: var(--fg-muted);
  margin-bottom: 28px;
}
.hero-badge .dot {
  width: 18px; height: 18px; border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 700;
}
.hero h1 .accent { color: var(--accent); }
.hero h1 .italic { font-style: italic; font-family: "Instrument Serif", "Times New Roman", serif; font-weight: 400; letter-spacing: -0.02em; }
.hero-sub {
  margin: 24px auto 0;
  max-width: 580px;
  font-size: 18px;
  line-height: 1.5;
  color: var(--fg-muted);
}
.hero[data-layout="left"] .hero-sub { margin-left: 0; }
.hero-cta {
  margin-top: 36px;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.hero[data-layout="left"] .hero-cta { justify-content: flex-start; }

/* Hero preview mockup */
.hero-mockup {
  position: relative;
  margin: 60px auto 0;
  max-width: 1080px;
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  border: 1px solid var(--border-strong);
  background: var(--bg-elev);
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.04) inset,
    0 40px 80px -30px rgba(0,0,0,0.7),
    0 0 0 1px color-mix(in oklab, var(--accent) 12%, transparent);
}
.mockup-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  background: #0e0e0e;
}
.mockup-toolbar .dots { display: flex; gap: 6px; }
.mockup-toolbar .dots span {
  width: 10px; height: 10px; border-radius: 999px;
  background: #2a2a2a;
}
.mockup-toolbar .url {
  margin-left: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-dim);
}
.mockup-body {
  display: grid;
  grid-template-columns: 220px 1fr 280px;
  height: calc(100% - 45px);
}
.mockup-sidebar {
  border-right: 1px solid var(--border);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #0c0c0c;
}
.mockup-sidebar .side-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 12px;
  color: var(--fg-muted);
}
.mockup-sidebar .side-item.active {
  background: color-mix(in oklab, var(--accent) 14%, transparent);
  color: var(--fg);
}
.mockup-sidebar .side-item .ic {
  width: 14px; height: 14px;
  border-radius: 4px;
  background: var(--border-strong);
}
.mockup-sidebar .side-item.active .ic { background: var(--accent); }
.mockup-sidebar .side-section {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--fg-dim);
  margin: 14px 10px 6px;
}

.mockup-calendar { padding: 14px 16px; min-width: 0; overflow: hidden; }
.cal-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
}
.cal-title { font-size: 14px; font-weight: 600; }
.cal-controls { display: flex; gap: 6px; }
.cal-pill {
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 6px;
  background: var(--bg-elev-2);
  color: var(--fg-muted);
  border: 1px solid var(--border);
}
.cal-grid {
  display: grid;
  grid-template-columns: 36px repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.cal-grid > div { background: #0d0d0d; padding: 6px 8px; min-height: 36px; font-size: 10px; color: var(--fg-dim); }
.cal-grid .head { background: #111; font-weight: 500; color: var(--fg-muted); }
.cal-grid .slot { min-height: 56px; position: relative; }
.cal-event {
  position: absolute;
  inset: 4px;
  border-radius: 6px;
  padding: 6px 8px;
  font-size: 10px;
  line-height: 1.25;
  color: #0a0a0a;
  display: flex; flex-direction: column; gap: 2px;
}
.cal-event b { font-weight: 600; font-size: 11px; }
.cal-event .svc { opacity: 0.7; }
.ev-1 { background: #f3e26b; }
.ev-2 { background: #b9e8c1; }
.ev-3 { background: #e8b1d8; }
.ev-4 { background: #c5cfff; }
.ev-5 { background: #ffd6a8; }
.ev-6 { background: #d4d4d4; }

.mockup-right {
  border-left: 1px solid var(--border);
  padding: 16px;
  background: #0c0c0c;
  display: flex; flex-direction: column; gap: 14px;
}
.right-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  background: var(--bg-elev);
}
.right-card .label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-dim);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}
.right-card .stat {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.right-card .stat .pos { color: var(--success); font-size: 12px; font-weight: 500; margin-left: 6px; }

.client-row { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.avatar { width: 26px; height: 26px; border-radius: 999px; background: linear-gradient(135deg, #444, #222); flex: 0 0 auto; }
.client-row .name { font-size: 12px; }
.client-row .meta { font-size: 10px; color: var(--fg-dim); }

@media (max-width: 880px) {
  .mockup-body { grid-template-columns: 60px 1fr; }
  .mockup-right { display: none; }
  .mockup-sidebar .side-item span:not(.ic) { display: none; }
  .mockup-sidebar .side-section { display: none; }
}

/* ---------- Section ---------- */
section { padding: 100px 0; position: relative; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head .eyebrow { margin-bottom: 18px; display: inline-block; }
.section-head p { margin-top: 18px; font-size: 17px; }

/* ---------- Stats strip ---------- */
.stats {
  padding: 40px 0 80px;
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat-cell {
  background: var(--bg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-num {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--fg);
}
.stat-num .unit { color: var(--accent); }
.stat-label { font-size: 13px; color: var(--fg-muted); }
@media (max-width: 720px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Business types ---------- */
.biz-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  perspective: 1200px;
}
.biz-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--border);
  background: var(--bg-elev);
  cursor: pointer;
  transform: translate3d(0,0,0) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .3s ease, box-shadow .3s ease;
  will-change: transform;
  --mx: 50%;
  --my: 50%;
  opacity: 0;
  transform: translateY(20px);
}
.biz-card.in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}
.biz-card.in.hovered,
.biz-card.in:focus-visible {
  transform: translate3d(0,-6px,0) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  border-color: color-mix(in oklab, var(--accent) 40%, var(--border-strong));
  box-shadow:
    0 24px 40px -20px rgba(0,0,0,0.6),
    0 0 0 1px color-mix(in oklab, var(--accent) 20%, transparent),
    0 0 30px -10px color-mix(in oklab, var(--accent) 45%, transparent);
}
/* Spotlight overlay following mouse */
.biz-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(220px circle at var(--mx) var(--my),
    color-mix(in oklab, var(--accent) 22%, transparent),
    transparent 60%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
  z-index: 3;
  mix-blend-mode: screen;
}
.biz-card.hovered::before { opacity: 1; }

.biz-img {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.02) 0 8px, transparent 8px 16px),
    var(--biz-color, #1a1a1a);
  display: grid; place-items: center;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.biz-card.hovered .biz-img { transform: scale(1.06); }
.biz-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85) 100%);
}
.biz-img .ic {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background .3s, color .3s, border-color .3s, box-shadow .3s;
  border: 1px solid transparent;
  transform: translateZ(20px);
}
.biz-card.hovered .biz-img .ic {
  background: color-mix(in oklab, var(--accent) 22%, transparent);
  color: var(--accent);
  border-color: color-mix(in oklab, var(--accent) 40%, transparent);
  box-shadow: 0 0 28px -4px color-mix(in oklab, var(--accent) 45%, transparent);
}

/* Count badge */
.biz-count {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--fg-muted);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .3s ease, transform .3s ease, color .3s, border-color .3s;
}
.biz-card.hovered .biz-count {
  opacity: 1;
  transform: translateY(0);
  color: var(--accent);
  border-color: color-mix(in oklab, var(--accent) 35%, transparent);
}
.biz-count::before { content: "+"; opacity: 0.7; }

.biz-meta {
  position: absolute;
  inset: auto 16px 16px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  transform: translateZ(30px);
}
.biz-name {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color .3s ease;
}
.biz-card.hovered .biz-name { color: var(--accent); }
.biz-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-muted);
}
.biz-arrow {
  width: 32px; height: 32px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  display: grid; place-items: center;
  font-size: 14px;
  transform: translate(8px, 8px) scale(0.7);
  opacity: 0;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), opacity .25s;
}
.biz-card.hovered .biz-arrow {
  transform: translate(0,0) scale(1);
  opacity: 1;
}
@media (max-width: 900px) { .biz-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Features ---------- */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feat-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  background: var(--bg-elev);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: border-color .25s ease, transform .25s ease;
}
.feat-card:hover { border-color: var(--border-strong); }
.feat-card .icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--bg-elev-2);
  border: 1px solid var(--border);
  display: grid; place-items: center;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
}
.feat-card h3 { font-size: 18px; }
.feat-card p { font-size: 14px; line-height: 1.55; }
.feat-card .num {
  position: absolute; top: 20px; right: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-dim);
  letter-spacing: 0.1em;
}
@media (max-width: 880px) { .feat-grid { grid-template-columns: 1fr; } }

/* ---------- Product preview split ---------- */
.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 980px) { .split { grid-template-columns: 1fr; gap: 40px; } }
.split-text h2 { margin-bottom: 20px; }
.split-list {
  margin-top: 28px;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.split-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--fg);
}
.split-list .check {
  flex: 0 0 22px;
  width: 22px; height: 22px;
  border-radius: 999px;
  background: color-mix(in oklab, var(--accent) 20%, transparent);
  color: var(--accent);
  display: grid; place-items: center;
  font-size: 12px;
  margin-top: 1px;
}
.split-list span.sub { color: var(--fg-muted); font-size: 13px; display: block; margin-top: 2px; }

.phone-stack {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 540px;
}
.phone {
  width: 240px;
  height: 500px;
  border-radius: 36px;
  background: #0a0a0a;
  border: 1.5px solid #2a2a2a;
  padding: 10px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.03) inset;
  position: relative;
}
.phone::before {
  content: "";
  position: absolute;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 22px;
  border-radius: 999px;
  background: #050505;
  z-index: 3;
}
.phone-screen {
  width: 100%; height: 100%;
  background: #111;
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.phone-1 { transform: rotate(-6deg) translateX(-30px); z-index: 1; }
.phone-2 { transform: rotate(4deg) translateX(40px); z-index: 2; position: absolute; }

.phone-head { padding: 40px 16px 12px; }
.phone-head .greet { font-size: 11px; color: var(--fg-dim); }
.phone-head .name { font-size: 16px; font-weight: 600; }
.phone-stat-row { display: flex; gap: 8px; padding: 0 16px 12px; }
.phone-stat {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
  background: #161616;
}
.phone-stat .lbl { font-size: 9px; color: var(--fg-dim); font-family: var(--font-mono); letter-spacing: 0.1em; text-transform: uppercase; }
.phone-stat .val { font-size: 18px; font-weight: 600; margin-top: 4px; letter-spacing: -0.02em; }
.phone-stat .val .delta { font-size: 9px; color: var(--success); margin-left: 4px; }
.phone-list { padding: 8px 16px; display: flex; flex-direction: column; gap: 6px; }
.phone-row { display: flex; gap: 10px; padding: 8px; background: #161616; border-radius: 10px; border: 1px solid var(--border); align-items: center; }
.phone-row .av { width: 28px; height: 28px; border-radius: 999px; background: linear-gradient(135deg, #555, #222); }
.phone-row .info { flex: 1; min-width: 0; }
.phone-row .info .nm { font-size: 12px; font-weight: 500; }
.phone-row .info .sv { font-size: 10px; color: var(--fg-dim); }
.phone-row .time { font-size: 10px; color: var(--accent); font-family: var(--font-mono); }

.phone-cal { padding: 40px 0 0; }
.phone-cal .ph-cal-head { padding: 0 16px 12px; display: flex; justify-content: space-between; align-items: center; }
.phone-cal .ph-cal-head .day { font-size: 14px; font-weight: 600; }
.phone-cal .ph-cal-head .add { width: 24px; height: 24px; border-radius: 999px; background: var(--accent); color: var(--accent-ink); display: grid; place-items: center; font-size: 14px; }
.phone-cal .ph-cal-list { display: flex; flex-direction: column; padding: 0 14px; gap: 4px; }
.ph-event { padding: 10px 12px; border-radius: 8px; font-size: 10px; color: #0a0a0a; display: flex; flex-direction: column; gap: 2px; }
.ph-event b { font-size: 11px; }
.ph-event .t { font-size: 9px; opacity: 0.8; font-family: var(--font-mono); }

/* ---------- Pricing ---------- */

/* Pricing shader background — animated WebGL canvas */
.pricing-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.pricing-shader {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
  opacity: 0.6;
  pointer-events: none;
}
.pricing-shader-fade {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 95% 75% at 50% 50%, transparent 0%, rgba(10,10,10,0.6) 65%, var(--bg) 95%),
    linear-gradient(180deg, var(--bg) 0%, transparent 18%, transparent 82%, var(--bg) 100%);
}
.pricing-section > .container {
  position: relative;
  z-index: 1;
}
.pricing-section .plan {
  background: color-mix(in oklab, var(--bg-elev) 65%, transparent);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}
.pricing-section .plan.featured {
  background:
    linear-gradient(180deg,
      color-mix(in oklab, var(--accent) 10%, transparent),
      color-mix(in oklab, var(--bg-elev) 70%, transparent) 60%);
}
.pricing-section .pricing-toggle {
  background: color-mix(in oklab, var(--bg-elev) 75%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.pricing-toggle {
  display: inline-flex;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px;
  gap: 4px;
  margin: 0 auto 48px;
}
.pricing-toggle-wrap { display: flex; justify-content: center; }
.toggle-opt {
  border: none;
  background: transparent;
  color: var(--fg-muted);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  transition: all .2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.toggle-opt.active { background: var(--accent); color: var(--accent-ink); font-weight: 500; }
.toggle-opt .save {
  font-size: 10px;
  background: rgba(74, 222, 128, 0.18);
  color: var(--success);
  padding: 2px 6px;
  border-radius: 999px;
  font-family: var(--font-mono);
}
.toggle-opt.active .save { background: rgba(0,0,0,0.15); color: #0a0a0a; }

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}
@media (max-width: 900px) { .plan-grid { grid-template-columns: 1fr; } }

.plan {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  background: var(--bg-elev);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: border-color .25s ease, transform .25s ease;
}
.plan:hover { border-color: var(--border-strong); }
.plan.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, color-mix(in oklab, var(--accent) 6%, var(--bg-elev)), var(--bg-elev) 60%);
  box-shadow: 0 0 0 1px var(--accent), 0 20px 50px -20px color-mix(in oklab, var(--accent) 40%, transparent);
}
.plan-tag {
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
}
.plan-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--bg-elev-2);
  border: 1px solid var(--border);
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--accent);
}
.plan-name { font-size: 18px; font-weight: 600; }
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.plan-price .cur { font-size: 22px; color: var(--fg-muted); }
.plan-price .num { font-size: 56px; font-weight: 600; letter-spacing: -0.04em; line-height: 1; color: var(--accent); }
.plan-price .per { font-size: 13px; color: var(--fg-muted); margin-left: 4px; }
.plan-desc { font-size: 14px; color: var(--fg-muted); min-height: 42px; }
.plan ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  flex: 1;
}
.plan li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--fg);
}
.plan li.dim { color: var(--fg-dim); }
.plan li::before {
  content: "";
  flex: 0 0 16px;
  width: 16px; height: 16px;
  background: var(--accent);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 8.5l3 3 7-7' stroke='black' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / 16px no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 8.5l3 3 7-7' stroke='black' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / 16px no-repeat;
  margin-top: 2px;
}
.plan li.dim::before { background: var(--fg-dim); }
.plan li b { font-weight: 600; }

.plan-bottom-note {
  text-align: center;
  margin-top: 32px;
  font-size: 13px;
  color: var(--fg-dim);
}
.plan-bottom-note span { color: var(--fg-muted); }

/* ---------- FAQ ---------- */
.faq {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-elev);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item[open] { border-color: var(--border-strong); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  font-weight: 500;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .plus {
  flex: 0 0 24px;
  width: 24px; height: 24px;
  position: relative;
  transition: transform .25s ease;
}
.faq-item .plus::before,
.faq-item .plus::after {
  content: "";
  position: absolute;
  background: var(--fg);
  transition: opacity .2s, background .2s;
}
.faq-item .plus::before { top: 11px; left: 4px; right: 4px; height: 2px; border-radius: 2px; }
.faq-item .plus::after { top: 4px; bottom: 4px; left: 11px; width: 2px; border-radius: 2px; }
.faq-item[open] .plus { transform: rotate(45deg); }
.faq-item[open] .plus::before,
.faq-item[open] .plus::after { background: var(--accent); }
.faq-body {
  padding: 0 24px 22px;
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  max-width: 620px;
}

/* ---------- Final CTA ---------- */
.cta-block {
  margin: 0 24px;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 80px 40px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, color-mix(in oklab, var(--accent) 18%, transparent), transparent 55%),
    var(--bg-elev);
  position: relative;
  overflow: hidden;
}
.cta-block h2 { margin-bottom: 16px; }
.cta-block p { font-size: 17px; max-width: 480px; margin: 0 auto 32px; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
.footer-brand p { font-size: 14px; margin-top: 16px; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--fg-dim);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: var(--fg-muted);
  transition: color .2s;
}
.footer-col a:hover { color: var(--fg); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--fg-dim);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 32px; height: 32px;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-muted);
  transition: all .2s;
}
.footer-socials a:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Accent variants are driven by --accent variable on body ---------- */

/* ============================================================== */
/* BOOKING PAGE MOCKUP (Página de reservas)                       */
/* ============================================================== */
.booking-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 660px;
  padding: 20px 0;
}

.booking-phone {
  position: relative;
  width: 320px;
  height: 640px;
  border-radius: 44px;
  background: #0a0a0a;
  border: 1.5px solid #2a2a2a;
  padding: 8px;
  box-shadow:
    0 40px 80px -20px rgba(0,0,0,0.85),
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 0 80px -20px color-mix(in oklab, var(--accent) 35%, transparent);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.booking-phone::before {
  content: "";
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 96px; height: 24px;
  border-radius: 999px;
  background: #050505;
  z-index: 10;
}

/* iOS status bar */
.ios-bar {
  background: #0a0a0a;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 22px 8px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 36px 36px 0 0;
  font-family: -apple-system, system-ui, sans-serif;
}
.ios-time { font-variant-numeric: tabular-nums; }
.ios-icons { display: flex; gap: 6px; align-items: center; font-size: 11px; opacity: 0.95; }
.ios-icons .bell { font-size: 10px; opacity: 0.7; }
.ios-icons .sig { letter-spacing: -1px; font-size: 9px; }
.ios-icons .wifi { font-size: 13px; transform: rotate(-90deg); display: inline-block; }
.ios-icons .bat {
  font-size: 9px;
  background: linear-gradient(to right, #fff 76%, transparent 76%);
  color: #000;
  padding: 1px 4px;
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,0.6);
  font-weight: 700;
}

/* Safari address bar */
.safari-bar {
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
  gap: 10px;
  font-size: 11px;
  color: #fafafa;
  border-bottom: 1px solid #000;
}
.safari-x, .safari-menu {
  width: 22px; height: 22px;
  background: #2a2a2a;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 11px;
  color: #aaa;
}
.safari-url { font-size: 12px; color: #ddd; flex: 1; text-align: center; }

/* Booking content */
.booking-content {
  flex: 1;
  background: #0e0e0e;
  position: relative;
  overflow: hidden;
  color: #fff;
  display: flex;
  flex-direction: column;
}

/* Header bar */
.bk-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 10px;
  background: rgba(10,10,10,0.65);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative;
  z-index: 3;
}
.bk-menu {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  display: grid; place-items: center;
  font-size: 16px;
  color: #fff;
}
.bk-brand { display: flex; align-items: center; gap: 6px; }
.bk-logo {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.12);
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
}
.bk-name { font-size: 12px; font-weight: 600; letter-spacing: -0.01em; }
.bk-btn {
  border: none;
  font-family: inherit;
  font-size: 11px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 8px;
  cursor: pointer;
}
.bk-btn-ghost {
  background: rgba(255,255,255,0.05);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.08);
}
.bk-btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Hero block */
.bk-hero {
  position: relative;
  flex: 1;
  padding: 24px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  overflow: hidden;
}
.bk-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, color-mix(in oklab, var(--accent) 18%, transparent), transparent 60%),
    repeating-linear-gradient(45deg,
      rgba(255,255,255,0.015) 0 4px,
      transparent 4px 12px),
    #0a0a0a;
  z-index: 0;
}
.bk-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 35%, rgba(255,255,255,0.06), transparent 70%);
}
.bk-hero > * { position: relative; z-index: 1; }

.bk-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 999px;
  background: color-mix(in oklab, var(--accent) 14%, transparent);
  color: var(--accent);
  border: 1px solid color-mix(in oklab, var(--accent) 28%, transparent);
}
.bk-pill-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.bk-h1 {
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 4px 0 0;
  color: #fff;
}
.bk-h1-accent { color: var(--accent); }

.bk-sub {
  font-size: 12px;
  color: #b8b8b8;
  line-height: 1.45;
  margin: 0;
  max-width: 240px;
}

.bk-cta {
  width: 100%;
  border: none;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: 0 4px 16px -2px color-mix(in oklab, var(--accent) 50%, transparent);
}
.bk-secondary {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  color: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
}

.bk-stats {
  margin-top: 6px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  width: 100%;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.bk-stat { text-align: center; }
.bk-stat-num {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  font-family: var(--font-sans);
}
.bk-stat-lbl {
  font-size: 9px;
  color: #999;
  margin-top: 2px;
}

/* Floating whatsapp */
.bk-wa {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-family: var(--font-mono);
  font-size: 18px;
  box-shadow: 0 10px 24px -8px rgba(37, 211, 102, 0.6);
  z-index: 5;
  animation: bk-wa-pulse 2.5s ease-in-out infinite;
}
@keyframes bk-wa-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* Floating side tags */
.booking-tag {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 10px 12px;
  border-radius: 12px;
  background: var(--bg-elev);
  border: 1px solid var(--border-strong);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.7);
  z-index: 6;
  font-size: 12px;
  max-width: 230px;
  backdrop-filter: blur(8px);
}
.booking-tag-1 {
  left: -10px;
  top: 70px;
  transform: rotate(-3deg);
  animation: bk-float-1 6s ease-in-out infinite;
}
.booking-tag-2 {
  right: -20px;
  bottom: 110px;
  transform: rotate(3deg);
  animation: bk-float-2 7s ease-in-out infinite;
}
@keyframes bk-float-1 {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50% { transform: rotate(-3deg) translateY(-8px); }
}
@keyframes bk-float-2 {
  0%, 100% { transform: rotate(3deg) translateY(0); }
  50% { transform: rotate(3deg) translateY(10px); }
}
.bt-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 25%, transparent);
  flex: 0 0 10px;
}
.bt-dot-green {
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.2);
}
.bt-name { font-size: 12px; font-weight: 600; color: var(--fg); }
.bt-meta { font-size: 10px; color: var(--fg-dim); font-family: var(--font-mono); margin-top: 2px; }

@media (max-width: 980px) {
  .booking-wrap { min-height: 720px; }
  .booking-tag-1 { left: 10px; top: 30px; }
  .booking-tag-2 { right: 10px; bottom: 30px; }
}
@media (max-width: 540px) {
  .booking-tag { display: none; }
}

/* ============================================================== */
/* TESTIMONIOS — 3 columnas en loop vertical                      */
/* ============================================================== */
.testimonials-section {
  padding-top: 80px;
  padding-bottom: 80px;
}
.testimonials-cols {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 24px;
  height: 640px;
  margin-top: 8px;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 82%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 82%, transparent 100%);
}
.t-fade {
  position: absolute;
  left: 0; right: 0;
  height: 80px;
  z-index: 3;
  pointer-events: none;
}
.t-fade-top { top: 0; background: linear-gradient(180deg, var(--bg), transparent); }
.t-fade-bottom { bottom: 0; background: linear-gradient(0deg, var(--bg), transparent); }

.t-col {
  width: 320px;
  flex: 0 0 320px;
  position: relative;
  overflow: hidden;
}
.t-col-md { display: none; }
.t-col-lg { display: none; }
@media (min-width: 768px) {
  .t-col-md { display: block; }
}
@media (min-width: 1100px) {
  .t-col-lg { display: block; }
}

.t-track {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-bottom: 18px;
  animation: t-scroll var(--t-dur, 30s) linear infinite;
  will-change: transform;
}
.testimonials-cols:hover .t-track { animation-play-state: paused; }

@keyframes t-scroll {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}

.t-card {
  background: color-mix(in oklab, var(--bg-elev) 90%, transparent);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow:
    0 12px 30px -16px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.02) inset;
  transition: border-color .25s ease, transform .25s ease;
}
.t-card:hover {
  border-color: color-mix(in oklab, var(--accent) 30%, var(--border-strong));
  transform: translateY(-2px);
}
.t-stars {
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0.18em;
  line-height: 1;
}
.t-text {
  color: var(--fg);
  font-size: 14px;
  line-height: 1.55;
  text-wrap: pretty;
}
.t-author {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 4px;
}
.t-av {
  width: 40px; height: 40px;
  flex: 0 0 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--av, #555), color-mix(in oklab, var(--av, #333) 40%, #111));
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-mono);
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
  position: relative;
}
.t-av::before {
  content: attr(data-init);
}
.t-name {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.t-role {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 2px;
}

/* ---------- Trust strip ---------- */
.trust-strip {
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 28px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-elev);
  flex-wrap: wrap;
}
.trust-rating {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 0 0 auto;
}
.trust-stars {
  color: var(--accent);
  font-size: 18px;
  letter-spacing: 0.18em;
}
.trust-num {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-top: 4px;
}
.trust-meta {
  font-size: 12px;
  color: var(--fg-muted);
}
.trust-logos {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  flex: 1;
  justify-content: flex-end;
}
.trust-logo {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 18px;
  border-left: 1px solid var(--border);
  min-width: 130px;
}
.trust-logo:first-child { border-left: none; }
.trust-mono {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.trust-stars-sm {
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.12em;
}
@media (max-width: 720px) {
  .trust-strip { flex-direction: column; align-items: flex-start; gap: 18px; padding: 20px; }
  .trust-logos { justify-content: flex-start; gap: 8px; }
  .trust-logo { border-left: none; padding: 8px 12px; min-width: 110px; }
}
