/* =====================================================================
   SCHEDMATE LUXURY EXPERIENCE — 2026
   A quiet-luxury design layer for the public site, application shell,
   authentication, billing, invoice, and dynamic dashboard modules.
   Loaded after the legacy styles to preserve all working behavior.
===================================================================== */

:root {
  --lux-ink: #07111f;
  --lux-ink-2: #0d1a2b;
  --lux-ink-3: #13233a;
  --lux-paper: #f7f8f5;
  --lux-paper-2: #eef2f4;
  --lux-white: #ffffff;
  --lux-text: #102033;
  --lux-muted: #647286;
  --lux-line: rgba(31, 49, 72, 0.12);
  --lux-blue: #5068f2;
  --lux-blue-2: #7690ff;
  --lux-mint: #64d9c5;
  --lux-gold: #d5b77d;
  --lux-danger: #dc5f62;
  --lux-success: #16846b;
  --lux-shadow-sm: 0 12px 35px rgba(6, 17, 31, 0.07);
  --lux-shadow: 0 30px 80px rgba(6, 17, 31, 0.11);
  --lux-shadow-lg: 0 50px 130px rgba(6, 17, 31, 0.18);
  --lux-radius-sm: 14px;
  --lux-radius: 20px;
  --lux-radius-lg: 30px;
  --lux-shell: 1200px;
  --lux-ease: cubic-bezier(.22, 1, .36, 1);
  --lux-font: "Avenir Next", "Segoe UI Variable", "SF Pro Display", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body { text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: rgba(80, 104, 242, .22); color: #07111f; }

.sm-skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10000;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 12px;
  background: #fff;
  color: #07111f;
  font-weight: 750;
  box-shadow: var(--lux-shadow);
  transition: transform .2s ease;
}
.sm-skip-link:focus { transform: translateY(0); }
/* The skip link paints its own white chip, so it must keep dark text in both
   themes. theme.css's generic `body.dark a { color:#8ab4ff }` was winning on
   specificity and dropping it to 2.09:1 once focused. */
html.dark .sm-skip-link,
html[data-theme="dark"] .sm-skip-link { color: #07111f; }

/* =========================== PUBLIC WEBSITE ======================== */
body.sm-lux-public {
  margin: 0;
  min-height: 100%;
  color: var(--lux-text);
  background: var(--lux-paper);
  font-family: var(--lux-font);
  overflow-x: clip;
}
.sm-lux-public::before,
.sm-lux-public::after { display: none !important; }
.sm-lux-public a { text-decoration: none; }
.sm-lux-public img { max-width: 100%; }

.lux-shell { width: min(var(--lux-shell), calc(100% - 48px)); margin-inline: auto; }
.lux-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 5000;
  height: 78px;
  color: #f7fbff;
  background: rgba(7, 17, 31, .78);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(24px) saturate(1.25);
  transition: height .3s var(--lux-ease), background .3s ease, box-shadow .3s ease;
}
.lux-nav.is-scrolled { height: 68px; background: rgba(7,17,31,.94); box-shadow: 0 20px 50px rgba(0,0,0,.18); }
.lux-nav-inner { height: 100%; display: flex; align-items: center; gap: 30px; }
.lux-brand { display: inline-flex; align-items: center; gap: 12px; color: inherit; flex: 0 0 auto; }
.lux-brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(145deg, #7185ff 0%, #4963ee 52%, #344bd2 100%);
  border: 1px solid rgba(255,255,255,.3);
  box-shadow: inset 0 1px rgba(255,255,255,.36), 0 10px 30px rgba(58,79,218,.35);
}
.lux-brand-mark svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2.25; stroke-linecap: round; stroke-linejoin: round; }
.lux-brand-copy { display: grid; line-height: 1.06; }
.lux-brand-copy strong { font-size: 17px; letter-spacing: -.03em; }
.lux-brand-copy small { margin-top: 5px; color: rgba(226,235,246,.58); font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.lux-nav-links { display: flex; align-items: center; justify-content: center; gap: 4px; margin: 0 auto; }
.lux-nav-links a { color: rgba(235,241,249,.74); padding: 10px 13px; border-radius: 12px; font-size: 13px; font-weight: 700; transition: color .2s, background .2s; }
.lux-nav-links a:hover { color: #fff; background: rgba(255,255,255,.07); }
.lux-nav-actions { display: flex; align-items: center; gap: 8px; }
.lux-nav-toggle { display: none; width: 42px; height: 42px; border: 0; border-radius: 13px; color: #fff; background: rgba(255,255,255,.08); padding: 11px; }
.lux-nav-toggle span { display: block; width: 100%; height: 1.5px; background: currentColor; margin: 4px 0; transition: transform .22s, opacity .22s; }

.lux-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 17px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 780;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: transform .2s var(--lux-ease), box-shadow .2s, border-color .2s, background .2s, color .2s;
}
.lux-btn:hover { transform: translateY(-2px); }
.lux-btn:active { transform: translateY(0) scale(.985); }
.lux-btn-primary { color: #fff; background: linear-gradient(135deg, #657bf8, #4760e8 55%, #3a4fc9); box-shadow: inset 0 1px rgba(255,255,255,.24), 0 14px 28px rgba(60,82,211,.28); }
.lux-btn-primary:hover { box-shadow: inset 0 1px rgba(255,255,255,.3), 0 18px 42px rgba(60,82,211,.38); }
.lux-btn-quiet { color: inherit; background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.12); }
.lux-btn-quiet:hover { background: rgba(255,255,255,.12); }
.lux-btn-glass { color: #eaf1fa; background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.15); backdrop-filter: blur(10px); }
.lux-btn-glass:hover { background: rgba(255,255,255,.12); }
.lux-btn-light { color: var(--lux-ink); background: #fff; box-shadow: 0 15px 40px rgba(0,0,0,.18); }
.lux-btn-lg { min-height: 52px; padding: 13px 21px; border-radius: 16px; font-size: 14px; }
.lux-btn-full { width: 100%; }
.lux-play { width: 22px; height: 22px; display: grid; place-items: center; border-radius: 999px; background: rgba(255,255,255,.12); font-size: 8px; padding-left: 1px; }

.lux-hero {
  position: relative;
  min-height: 830px;
  padding: 150px 0 54px;
  color: #f6f9fc;
  background:
    radial-gradient(900px 550px at 70% 36%, rgba(80,104,242,.22), transparent 68%),
    radial-gradient(600px 440px at 14% 26%, rgba(100,217,197,.10), transparent 70%),
    linear-gradient(145deg, #06101e 0%, #0a1727 58%, #0d1d31 100%);
  overflow: hidden;
}
.lux-hero::before { content:""; position:absolute; inset:0; opacity:.22; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 54px 54px; mask-image: linear-gradient(to bottom, #000, transparent 90%); }
.lux-hero-glow { position:absolute; width:700px; height:700px; right:-250px; top:-260px; border-radius:50%; background:radial-gradient(circle,rgba(118,144,255,.18),transparent 68%); filter:blur(12px); }
.lux-hero-grid { position:relative; z-index:2; display:grid; grid-template-columns:minmax(0,.9fr) minmax(500px,1.1fr); align-items:center; gap:70px; }
.lux-hero-copy { max-width: 620px; }
.lux-eyebrow, .lux-kicker { display:inline-flex; align-items:center; gap:9px; color:#4c63d2; font-size:11px; font-weight:820; text-transform:uppercase; letter-spacing:.17em; }
.lux-live-dot { width:7px; height:7px; border-radius:50%; background:var(--lux-mint); box-shadow:0 0 0 6px rgba(100,217,197,.09), 0 0 18px rgba(100,217,197,.65); }
.lux-hero h1 { margin:20px 0 22px; max-width:780px; color:#f8fafc; font-size:clamp(48px,5.6vw,82px); line-height:.99; letter-spacing:-.066em; font-weight:720; }
.lux-hero h1 em { font-style:normal; color:#b8c4ff; font-weight:720; }
.lux-hero-lead { max-width:620px; margin:0; color:rgba(223,231,242,.72); font-size:clamp(17px,1.55vw,20px); line-height:1.7; letter-spacing:-.015em; }
.lux-hero-actions { display:flex; flex-wrap:wrap; gap:11px; margin-top:32px; }
.lux-proof-row { display:flex; flex-wrap:wrap; gap:18px; margin-top:23px; color:rgba(220,229,240,.64); font-size:12px; font-weight:650; }
.lux-proof-row span { display:inline-flex; align-items:center; gap:7px; }
.lux-proof-row svg { width:17px; height:17px; fill:none; stroke:var(--lux-mint); stroke-width:2.3; stroke-linecap:round; stroke-linejoin:round; }
.lux-niche-line { margin-top:38px; display:flex; gap:10px; color:rgba(218,228,240,.52); font-size:13px; }
.lux-niche-line strong { color:#fff; min-width:205px; transition:opacity .25s, transform .25s; }
.lux-niche-line strong.is-changing { opacity:0; transform:translateY(5px); }

.lux-product-stage { position:relative; min-width:0; padding:42px 0 55px; }
.lux-browser-frame { position:relative; z-index:2; border:1px solid rgba(255,255,255,.15); border-radius:24px; padding:8px; background:rgba(255,255,255,.09); box-shadow:0 65px 120px rgba(0,0,0,.46), inset 0 1px rgba(255,255,255,.16); backdrop-filter:blur(20px); transform:perspective(1500px) rotateY(-4deg) rotateX(1.5deg); transform-origin:center; transition:transform .8s var(--lux-ease); }
.lux-product-stage:hover .lux-browser-frame { transform:perspective(1500px) rotateY(-1deg) rotateX(.5deg) translateY(-4px); }
.lux-browser-bar { height:42px; display:grid; grid-template-columns:70px 1fr 70px; align-items:center; padding:0 11px; color:rgba(237,242,249,.5); }
.lux-browser-dots { display:flex; gap:6px; }.lux-browser-dots i { width:7px; height:7px; border-radius:50%; background:rgba(255,255,255,.22); }.lux-browser-dots i:first-child{background:#f17d76}.lux-browser-dots i:nth-child(2){background:#d9bd69}.lux-browser-dots i:nth-child(3){background:#6ecaa8}
.lux-browser-address { justify-self:center; min-width:220px; padding:7px 14px; border-radius:9px; background:rgba(0,0,0,.16); text-align:center; font-size:10px; letter-spacing:.02em; }
.lux-lock { margin-right:6px; font-size:7px; color:var(--lux-mint); }
.lux-browser-status { display:flex; align-items:center; justify-content:flex-end; gap:6px; font-size:9px; text-transform:uppercase; letter-spacing:.08em; }.lux-browser-status span{width:6px;height:6px;border-radius:50%;background:var(--lux-mint);box-shadow:0 0 10px var(--lux-mint)}
.lux-browser-frame picture { display:block; overflow:hidden; border-radius:17px; background:#fff; }
.lux-browser-frame img { display:block; width:100%; height:auto; }
.lux-stage-orbit { position:absolute; border:1px solid rgba(118,144,255,.15); border-radius:50%; pointer-events:none; }.orbit-one{width:620px;height:620px;right:-150px;top:-45px}.orbit-two{width:450px;height:450px;right:-55px;top:45px}
.lux-float-card { position:absolute; z-index:4; display:flex; align-items:center; gap:11px; min-width:228px; padding:12px 14px; color:#122035; background:rgba(255,255,255,.93); border:1px solid rgba(255,255,255,.8); border-radius:16px; box-shadow:0 25px 60px rgba(0,0,0,.23); backdrop-filter:blur(18px); }
.lux-float-card small { display:block; color:#78869a; font-size:9px; font-weight:750; text-transform:uppercase; letter-spacing:.08em; }.lux-float-card strong { display:block; margin-top:3px; font-size:11px; white-space:nowrap; }
.lux-float-icon { width:36px;height:36px;display:grid;place-items:center;border-radius:11px; }.lux-float-icon svg{width:18px;height:18px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}.lux-float-icon.mint{background:#e3f8f3;color:#14816d}.lux-float-icon.blue{background:#e9edff;color:#4c61dc}
.lux-float-booking { left:-36px; top:85px; animation:lux-float 6s ease-in-out infinite; }.lux-float-paid{right:-33px;bottom:22px;animation:lux-float 7s ease-in-out -2s infinite}
.lux-float-metric { position:absolute; z-index:4; left:55px; bottom:-3px; width:190px; padding:14px; border-radius:16px; color:#eaf2ff; background:rgba(8,21,36,.92); border:1px solid rgba(255,255,255,.1); box-shadow:0 25px 60px rgba(0,0,0,.28); }.lux-float-metric span{display:block;color:rgba(225,235,247,.55);font-size:9px;text-transform:uppercase;letter-spacing:.08em}.lux-float-metric strong{display:block;margin-top:5px;color:var(--lux-mint);font-size:19px}.lux-mini-chart{height:26px;display:flex;align-items:flex-end;gap:4px;margin-top:-20px;justify-content:flex-end}.lux-mini-chart i{width:8px;border-radius:3px 3px 1px 1px;background:linear-gradient(var(--lux-mint),rgba(100,217,197,.18))}.lux-mini-chart i:nth-child(1){height:20%}.lux-mini-chart i:nth-child(2){height:38%}.lux-mini-chart i:nth-child(3){height:31%}.lux-mini-chart i:nth-child(4){height:57%}.lux-mini-chart i:nth-child(5){height:70%}.lux-mini-chart i:nth-child(6){height:90%}
@keyframes lux-float { 0%,100%{transform:translateY(0)}50%{transform:translateY(-7px)} }
.lux-industry-rail { position:relative; z-index:3; display:flex; justify-content:space-between; gap:18px; margin-top:75px; padding-top:25px; border-top:1px solid rgba(255,255,255,.08); color:rgba(217,227,239,.42); font-size:10px; font-weight:760; text-transform:uppercase; letter-spacing:.12em; }

.lux-section { padding:120px 0; }
.lux-section-heading { margin-bottom:48px; }.lux-section-heading h2,.lux-sticky-copy h2 { margin:12px 0 0; max-width:800px; color:var(--lux-ink); font-size:clamp(38px,4.8vw,64px); line-height:1.08; letter-spacing:-.055em; font-weight:680; }.lux-section-heading p,.lux-sticky-copy p{color:var(--lux-muted);font-size:16px;line-height:1.75}
.lux-heading-split { display:grid; grid-template-columns:1.4fr .6fr; gap:80px; align-items:end; }.lux-heading-split p{margin:0 0 4px}.lux-centered{text-align:center}.lux-centered h2,.lux-centered p{margin-left:auto;margin-right:auto}.lux-centered p{max-width:650px;margin-top:17px}

.lux-intro { background:linear-gradient(#f8f9f6,#f1f4f5); }
.lux-bento-grid { display:grid; grid-template-columns:repeat(12,1fr); gap:18px; }
.lux-bento-card { position:relative; grid-column:span 4; min-height:370px; padding:30px; overflow:hidden; border:1px solid rgba(19,35,58,.10); border-radius:28px; background:rgba(255,255,255,.8); box-shadow:0 22px 60px rgba(15,30,48,.06); transition:transform .4s var(--lux-ease),box-shadow .4s,border-color .4s; }
.lux-bento-card:hover { transform:translateY(-7px); box-shadow:0 35px 80px rgba(15,30,48,.1); border-color:rgba(80,104,242,.18); }
.lux-bento-large { grid-column:span 8; display:grid; grid-template-columns:.8fr 1.2fr; gap:20px; min-height:520px; }.lux-bento-wide{grid-column:span 8;min-height:260px;display:grid;grid-template-columns:.85fr 1.15fr;align-items:center;gap:25px}.lux-bento-dark{color:#f6f8fb;background:linear-gradient(145deg,#0a1727,#10233a);border-color:rgba(255,255,255,.09)}
.lux-card-icon { width:46px;height:46px;display:grid;place-items:center;border-radius:15px;color:#5068f2;background:#edf0ff;border:1px solid #dfe5ff; }.lux-card-icon svg{width:23px;height:23px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}.lux-bento-card>span,.lux-card-copy>span,.lux-bento-wide>div>span{display:block;margin-top:25px;color:#5068f2;font-size:10px;font-weight:830;text-transform:uppercase;letter-spacing:.14em}.lux-bento-card h3{margin:10px 0 12px;color:var(--lux-ink);font-size:clamp(24px,2.3vw,34px);line-height:1.12;letter-spacing:-.045em}.lux-bento-card p{margin:0;color:#6e7c8d;font-size:14px;line-height:1.7}.lux-bento-dark .lux-card-icon{color:#92a3ff;background:rgba(118,144,255,.12);border-color:rgba(118,144,255,.2)}.lux-bento-dark>span{color:#91a1ff}.lux-bento-dark h3{color:#fff}.lux-bento-dark p{color:rgba(229,237,246,.62)}
.lux-calendar-demo { align-self:end; margin:30px -15px -15px 0; padding:22px; border-radius:22px; background:#fff; border:1px solid #edf0f4; box-shadow:0 20px 50px rgba(14,32,53,.10); }.lux-cal-head{display:flex;justify-content:space-between;align-items:center;margin-bottom:17px}.lux-cal-head strong{font-size:13px}.lux-cal-head span{padding:6px 9px;border-radius:8px;background:#f0f3ff;color:#5068f2;font-size:9px;font-weight:750}.lux-cal-week,.lux-cal-grid{display:grid;grid-template-columns:repeat(7,1fr);gap:5px;text-align:center}.lux-cal-week{margin-bottom:8px;color:#6b7787;font-size:8px;font-weight:800}.lux-cal-grid i{position:relative;display:grid;place-items:center;aspect-ratio:1;border-radius:8px;color:#647286;font-size:9px;font-style:normal}.lux-cal-grid i.active{color:#fff;background:#5068f2;box-shadow:0 7px 15px rgba(80,104,242,.25)}.lux-cal-grid i.has-event::after{content:"";position:absolute;bottom:3px;width:3px;height:3px;border-radius:50%;background:#64d9c5}
.lux-client-stack{margin-top:28px;display:grid;gap:9px}.lux-client-stack>div{display:flex;align-items:center;gap:10px;padding:11px;border-radius:15px;background:#f6f8fa;border:1px solid #edf0f3}.lux-client-stack b{width:35px;height:35px;display:grid;place-items:center;border-radius:12px;color:#5068f2;background:#e9edff;font-size:10px}.lux-client-stack span{display:grid;flex:1}.lux-client-stack strong{font-size:11px}.lux-client-stack small{margin-top:2px;color:#8b96a4;font-size:9px}.lux-client-stack em{padding:5px 7px;border-radius:999px;color:#16846b;background:#e7f7f2;font-size:8px;font-style:normal;font-weight:800}
.lux-invoice-demo{position:absolute;right:24px;bottom:24px;left:24px;display:flex;justify-content:space-between;align-items:center;padding:18px;border-radius:17px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.1)}.lux-invoice-demo div{display:grid}.lux-invoice-demo small{color:rgba(235,242,249,.5);font-size:9px}.lux-invoice-demo strong{margin-top:5px;font-size:22px}.lux-invoice-demo>span{padding:7px 10px;border-radius:999px;color:#8ee9d8;background:rgba(100,217,197,.12);font-size:9px;font-weight:820;text-transform:uppercase;letter-spacing:.08em}
.lux-bars{position:absolute;right:28px;bottom:28px;left:28px;height:110px;display:flex;align-items:flex-end;gap:9px;border-bottom:1px solid #e3e8ee}.lux-bars i{flex:1;min-height:12px;border-radius:7px 7px 2px 2px;background:linear-gradient(#7690ff,#5068f2);opacity:.9}.lux-bars i:last-child{background:linear-gradient(#78e0cf,#4cb8a6)}
.lux-flow-demo{display:flex;align-items:center;justify-content:center;gap:10px;flex-wrap:wrap;padding:28px;border-radius:22px;background:linear-gradient(135deg,#f4f6ff,#eef7f6);border:1px solid #e6eaf1}.lux-flow-demo span{padding:10px 12px;border-radius:11px;background:#fff;color:#30445a;font-size:10px;font-weight:750;box-shadow:0 7px 18px rgba(18,36,57,.06)}.lux-flow-demo b{color:#96a4b4}

.lux-workflow { background:#fff; }
.lux-workflow-grid,.lux-faq-grid { display:grid; grid-template-columns:.75fr 1.25fr; gap:110px; align-items:start; }.lux-sticky-copy{position:sticky;top:115px}.lux-sticky-copy p{max-width:480px;margin-top:20px}.lux-text-link{display:inline-flex;align-items:center;gap:8px;margin-top:20px;color:#5068f2;font-weight:800;font-size:13px}.lux-text-link span{transition:transform .2s}.lux-text-link:hover span{transform:translateX(4px)}
.lux-process-list { list-style:none; padding:0; margin:0; border-top:1px solid #dfe4e9; }.lux-process-list li{display:grid;grid-template-columns:65px 1fr;gap:25px;padding:34px 0;border-bottom:1px solid #dfe4e9}.lux-process-list>li>span{color:#6b7787;font-size:10px;font-weight:850;letter-spacing:.12em}.lux-process-list h3{margin:0;color:#122239;font-size:24px;letter-spacing:-.035em}.lux-process-list p{margin:10px 0 0;color:#5c6b7d;line-height:1.65;font-size:14px}

.lux-product-showcase { color:#f5f8fc; background:linear-gradient(145deg,#07111f,#0b1a2d); }.lux-product-showcase .lux-section-heading h2{color:#fff}.lux-product-showcase .lux-section-heading p{color:rgba(228,235,244,.58)}.lux-showcase{margin-top:50px}.lux-showcase-tabs{display:flex;justify-content:center;gap:5px;margin-bottom:20px;padding:5px;border-radius:16px;background:rgba(255,255,255,.06);width:max-content;max-width:100%;margin-left:auto;margin-right:auto;overflow-x:auto}.lux-showcase-tabs button{border:0;border-radius:11px;padding:10px 17px;color:rgba(229,237,246,.55);background:transparent;font-size:11px;font-weight:770;cursor:pointer;white-space:nowrap}.lux-showcase-tabs button[aria-selected="true"]{color:#fff;background:rgba(255,255,255,.12);box-shadow:inset 0 1px rgba(255,255,255,.1)}.lux-showcase-frame{padding:8px;border-radius:28px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);box-shadow:0 65px 140px rgba(0,0,0,.38)}.lux-showcase-frame img{display:block;width:100%;border-radius:19px;background:#fff;transition:opacity .2s,transform .35s var(--lux-ease)}.lux-showcase-frame img.is-changing{opacity:.25;transform:scale(.995)}.lux-showcase-top{height:38px;display:flex;align-items:center;gap:6px;padding:0 11px}.lux-showcase-top>span{width:7px;height:7px;border-radius:50%;background:rgba(255,255,255,.2)}.lux-showcase-top small{margin-left:12px;color:rgba(230,238,247,.5);font-size:9px}.lux-showcase-caption{text-align:center;margin:18px 0 0;color:rgba(228,235,244,.55);font-size:12px}

.lux-use-cases { background:#f3f5f5; }.lux-use-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;margin-top:55px;background:#dfe4e7;border:1px solid #dfe4e7;border-radius:26px;overflow:hidden}.lux-use-grid article{min-height:300px;padding:30px;background:#f9faf8;transition:background .25s,transform .25s}.lux-use-grid article:hover{background:#fff}.lux-use-grid span{color:#6b7787;font-size:10px;font-weight:850;letter-spacing:.12em}.lux-use-grid h3{margin:85px 0 13px;color:#122239;font-size:24px;letter-spacing:-.04em}.lux-use-grid p{margin:0;color:#5c6b7d;font-size:13px;line-height:1.7}

.lux-pricing { background:#fff; }.lux-pricing-grid{max-width:850px;margin:50px auto 0;display:grid;grid-template-columns:1fr 1fr;gap:18px;align-items:stretch}.lux-price-card{position:relative;padding:32px;border-radius:27px;border:1px solid #dfe4e8;background:#f9faf8}.lux-price-featured{color:#fff;background:linear-gradient(145deg,#0a1728,#10233b);border-color:#1c3454;box-shadow:0 32px 75px rgba(5,18,34,.2)}.lux-price-label{position:absolute;right:22px;top:22px;padding:6px 9px;border-radius:999px;color:#b9c7ff;background:rgba(118,144,255,.12);font-size:8px;font-weight:850;text-transform:uppercase;letter-spacing:.11em}.lux-price-head{display:grid}.lux-price-head>span{color:#5068f2;font-size:10px;font-weight:830;text-transform:uppercase;letter-spacing:.13em}.lux-price-head>strong{margin-top:20px;color:#102033;font-size:48px;letter-spacing:-.06em}.lux-price-head>strong small{margin-left:5px;font-size:13px;letter-spacing:0;color:#7c8998}.lux-price-head>small{margin-top:4px;color:#8893a1;font-size:11px}.lux-price-card ul{list-style:none;padding:22px 0;margin:25px 0;border-top:1px solid #e2e6ea;display:grid;gap:12px}.lux-price-card li{position:relative;padding-left:24px;color:#5f6d7e;font-size:12px}.lux-price-card li::before{content:"✓";position:absolute;left:0;color:#16846b;font-weight:850}.lux-price-featured .lux-price-head>span{color:#aebcff}.lux-price-featured .lux-price-head>strong{color:#fff}.lux-price-featured .lux-price-head>small,.lux-price-featured .lux-price-head>strong small{color:rgba(229,237,246,.52)}.lux-price-featured ul{border-color:rgba(255,255,255,.1)}.lux-price-featured li{color:rgba(231,238,247,.7)}.lux-price-featured li::before{color:var(--lux-mint)}.lux-price-card:not(.lux-price-featured) .lux-btn-quiet{color:#30445a;background:#fff;border-color:#dfe4e8}.lux-pricing-note{text-align:center;color:#8b96a2;font-size:10px;margin-top:18px}

.lux-faq { background:#f2f4f3; }.lux-accordion{border-top:1px solid #dce2e5}.lux-accordion details{border-bottom:1px solid #dce2e5;padding:0}.lux-accordion summary{list-style:none;display:flex;align-items:center;justify-content:space-between;gap:20px;padding:28px 0;color:#16273b;font-size:17px;font-weight:720;cursor:pointer}.lux-accordion summary::-webkit-details-marker{display:none}.lux-accordion summary span{position:relative;width:22px;height:22px;flex:0 0 auto}.lux-accordion summary span::before,.lux-accordion summary span::after{content:"";position:absolute;left:4px;top:10px;width:14px;height:1.5px;background:#7e8b99;transition:transform .25s}.lux-accordion summary span::after{transform:rotate(90deg)}.lux-accordion details[open] summary span::after{transform:rotate(0)}.lux-accordion details p{margin:-5px 45px 25px 0;color:#6b798a;line-height:1.72;font-size:14px}.lux-accordion a{color:#5068f2}

.lux-final-cta { padding:0 0 110px; background:#f2f4f3; }.lux-final-card{display:flex;align-items:center;justify-content:space-between;gap:45px;padding:55px 60px;border-radius:32px;color:#fff;background:radial-gradient(500px 240px at 84% 18%,rgba(118,144,255,.25),transparent 75%),linear-gradient(145deg,#07111f,#10243b);box-shadow:0 45px 100px rgba(5,18,34,.2)}.lux-final-card h2{max-width:760px;margin:12px 0 10px;font-size:clamp(36px,4.5vw,58px);line-height:1.05;letter-spacing:-.055em;font-weight:680}.lux-final-card p{margin:0;color:rgba(230,238,247,.6)}
.lux-footer{padding:75px 0 25px;color:#dfe7f0;background:#06101d}.lux-footer-grid{display:grid;grid-template-columns:2fr repeat(3,1fr);gap:60px;padding-bottom:55px}.lux-footer-brand{color:#fff}.lux-footer-grid>div:first-child>p{max-width:300px;margin:20px 0 0;color:rgba(224,233,243,.48);font-size:13px;line-height:1.7}.lux-footer-grid>div:not(:first-child){display:grid;align-content:start;gap:12px}.lux-footer-grid>div>strong{margin-bottom:4px;color:#fff;font-size:11px;text-transform:uppercase;letter-spacing:.12em}.lux-footer-grid a:not(.lux-brand){color:rgba(225,234,243,.55);font-size:12px}.lux-footer-grid a:hover{color:#fff}.lux-footer-bottom{display:flex;justify-content:space-between;gap:25px;padding-top:22px;border-top:1px solid rgba(255,255,255,.08);color:rgba(225,234,243,.38);font-size:10px}

[data-lux-reveal] { opacity:0; transform:translateY(25px); transition:opacity .75s var(--lux-ease),transform .75s var(--lux-ease); }.lux-revealed{opacity:1;transform:none}

/* ============================ APP SHELL ============================ */
body.sm-body {
  /* --sm-bg/--sm-card/--sm-text/--sm-muted are owned by theme.css; this file
     previously shadowed all four on body.sm-body, so the dashboard used a
     different palette than every other surface. */
  font-family: var(--lux-font) !important;
  color: #15263b !important;
  background:
    radial-gradient(900px 500px at 100% 0%, rgba(80,104,242,.08), transparent 68%),
    linear-gradient(135deg,#f2f4f5,#f7f8f6) !important;
}
.sm-app { min-height:100dvh; }
.sm-sidebar {
  width: 276px !important;
  background: radial-gradient(450px 260px at 25% 0%, rgba(80,104,242,.17), transparent 70%), linear-gradient(180deg,#07111f,#091728 70%,#07111f) !important;
  border-right:1px solid rgba(255,255,255,.07) !important;
  box-shadow:16px 0 55px rgba(4,13,25,.13) !important;
}
.sm-side-top { padding:21px 18px 8px !important; }
.sm-brand { min-height:52px; padding:7px 8px !important; border-radius:15px; }
.sm-logo { width:38px !important;height:38px !important;border-radius:13px !important;background:linear-gradient(145deg,#7185ff,#4963ee 55%,#344bd2)!important;border:1px solid rgba(255,255,255,.25)!important;box-shadow:inset 0 1px rgba(255,255,255,.35),0 12px 30px rgba(61,82,215,.34)!important; }
.sm-logo-dot { display:none!important; }.sm-logo::before{content:"";width:21px;height:21px;background:no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8.5 16.5l4.4 4.4L23.8 10'/%3E%3Cpath d='M16 3.5a12.5 12.5 0 1 1-8.84 3.66'/%3E%3C/svg%3E")}.sm-brand-name{font-size:16px!important;letter-spacing:-.03em!important}.sm-brand-sub{margin-top:4px!important;color:rgba(217,227,240,.42)!important;font-size:8px!important;text-transform:uppercase;letter-spacing:.13em!important}
.sm-collapse-btn{width:34px!important;height:34px!important;border-radius:11px!important}.sm-collapse-btn .sm-ico{font-size:0}.sm-collapse-btn .sm-ico::after{content:"‹";font-size:20px}.sm-sidebar.is-collapsed .sm-collapse-btn .sm-ico::after{content:"›"}
.sm-side-search{margin:12px 3px 15px!important;height:42px!important;border-radius:13px!important;background:rgba(255,255,255,.055)!important;border:1px solid rgba(255,255,255,.08)!important}.sm-side-search input{color:#e8eef6!important;background:transparent!important;border:0!important;box-shadow:none!important;font-size:11px!important}.sm-side-search input::placeholder{color:rgba(214,225,238,.38)}.sm-search-ico{color:rgba(214,225,238,.5)!important}
.sm-nav{padding:0 18px 16px!important}.sm-nav-section{margin:18px 10px 8px!important;color:rgba(208,220,235,.31)!important;font-size:8px!important;font-weight:850!important;text-transform:uppercase!important;letter-spacing:.16em!important}.sm-nav-item{position:relative;min-height:42px!important;margin:3px 0!important;padding:9px 11px!important;border-radius:12px!important;color:rgba(224,233,243,.62)!important;border:1px solid transparent!important;font-size:11px!important}.sm-nav-item:hover{color:#fff!important;background:rgba(255,255,255,.055)!important;transform:translateX(2px)!important}.sm-nav-item.is-active{color:#fff!important;background:linear-gradient(90deg,rgba(89,112,241,.21),rgba(89,112,241,.08))!important;border-color:rgba(118,144,255,.13)!important;box-shadow:inset 2px 0 #7b8fff!important}.sm-nav-item.is-active::after{content:"";position:absolute;right:11px;width:5px;height:5px;border-radius:50%;background:#8094ff;box-shadow:0 0 12px rgba(128,148,255,.8)}.sm-nav-item .sm-icon{width:20px!important;display:grid!important;place-items:center!important;font-size:0!important;opacity:.9!important}.sm-nav-item .sm-icon svg{width:17px;height:17px;fill:none;stroke:currentColor;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}.sm-nav-item .sm-label{font-weight:660!important;letter-spacing:-.01em!important}.sm-pill,.sm-badge{font-size:7px!important;letter-spacing:.08em!important}.sm-side-bottom{padding:12px 18px 18px!important;border-color:rgba(255,255,255,.07)!important}.sm-user{padding:10px!important;background:rgba(255,255,255,.045)!important;border:1px solid rgba(255,255,255,.07)!important;border-radius:15px!important}.sm-avatar{width:34px!important;height:34px!important;border-radius:11px!important;background:linear-gradient(145deg,#6e83f7,#485fdf)!important}.sm-user-name{font-size:10px!important}.sm-user-plan{margin-top:3px!important;color:rgba(219,229,241,.4)!important;font-size:8px!important}.sm-bottom-actions{gap:6px!important;margin-top:8px!important}.sm-bottom-actions button{min-height:36px!important;border-radius:11px!important;font-size:10px!important}

/* Desktop app layout: the sidebar stays in normal flex flow so the workspace
   genuinely expands when the rail is collapsed. */
@media (min-width: 901px) {
  .sm-app {
    display: flex !important;
    width: 100% !important;
    min-width: 0 !important;
  }
  .sm-sidebar {
    position: sticky !important;
    flex: 0 0 276px !important;
    width: 276px !important;
    min-width: 276px !important;
    transition: flex-basis .25s var(--lux-ease), width .25s var(--lux-ease), min-width .25s var(--lux-ease) !important;
  }
  .sm-sidebar.is-collapsed {
    flex-basis: 82px !important;
    width: 82px !important;
    min-width: 82px !important;
  }
  .sm-main,
  .sm-sidebar.is-collapsed + .sm-side-overlay + .sm-main,
  .sm-sidebar.is-collapsed ~ .sm-main {
    flex: 1 1 0 !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    overflow-x: clip;
  }
  .sm-content {
    width: 100% !important;
    max-width: 1800px !important;
    margin-inline: auto !important;
  }
}
/* .sm-topbar sizing/color superseded by schedmate.polish-v105.css, which loads last */.sm-topbar-left{min-width:0}.sm-page-title{color:#122239!important;font-size:22px!important;font-weight:710!important;letter-spacing:-.045em!important}.sm-page-sub{margin-top:3px!important;color:#8792a0!important;font-size:10px!important}.sm-topbar-right{gap:7px!important}/* .sm-topbar sizing/color superseded by schedmate.polish-v105.css, which loads last */.sm-btn-primary{background:linear-gradient(135deg,#657bf8,#4760e8 58%,#3a4fc9)!important;box-shadow:0 10px 23px rgba(59,79,204,.22)!important}.sm-btn-ghost{color:#4f5f72!important;background:rgba(255,255,255,.7)!important;border-color:rgba(31,49,72,.10)!important}/* theme toggle geometry is owned by theme.css (canonical, loaded on every page) */.sm-command-trigger{display:flex!important;align-items:center!important;gap:8px!important;min-width:160px!important;justify-content:flex-start!important}.sm-command-trigger kbd{margin-left:auto;padding:3px 6px;border-radius:6px;color:#8c97a4;background:#eef1f4;border:1px solid #e0e5e9;font-size:8px;font-family:inherit}.sm-sync-state{display:inline-flex;align-items:center;gap:6px;margin-top:4px;color:#84909e;font-size:8px;font-weight:650}.sm-sync-state i{width:5px;height:5px;border-radius:50%;background:#46b99f;box-shadow:0 0 0 4px rgba(70,185,159,.1)}.sm-sync-state.is-offline i{background:#dc5f62}.sm-sync-state.is-offline{color:#b55256}
.sm-content{max-width:1540px!important;margin:0 auto!important;padding:clamp(20px,2.6vw,38px)!important}.sm-view{animation:lux-view-in .4s var(--lux-ease)}@keyframes lux-view-in{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none}}
.sm-overview-welcome{display:flex;align-items:center;justify-content:space-between;gap:30px;margin-bottom:20px;padding:25px 28px;border-radius:24px;color:#f4f8fc;background:radial-gradient(430px 190px at 82% 0%,rgba(118,144,255,.22),transparent 75%),linear-gradient(145deg,#091727,#112640);box-shadow:0 25px 60px rgba(6,17,31,.14);overflow:hidden}.sm-overview-welcome small{display:block;color:#8298ff;font-size:8px;font-weight:850;text-transform:uppercase;letter-spacing:.15em}.sm-overview-welcome h2{margin:7px 0 5px;font-size:25px;letter-spacing:-.045em}.sm-overview-welcome p{margin:0;color:rgba(226,235,245,.55);font-size:11px}.sm-overview-welcome-actions{display:flex;gap:7px;flex-wrap:wrap}.sm-overview-welcome .sm-btn-ghost{color:#e8eef6!important;background:rgba(255,255,255,.08)!important;border-color:rgba(255,255,255,.1)!important}
.sm-grid-kpis{gap:14px!important}.sm-card,.sm-panel,.dashboard-card{border-radius:20px!important;background:rgba(255,255,255,.86)!important;border:1px solid rgba(27,44,65,.09)!important;box-shadow:0 15px 45px rgba(17,35,56,.055)!important;backdrop-filter:blur(12px)!important;transition:transform .3s var(--lux-ease),box-shadow .3s,border-color .3s!important}.sm-card:hover,.sm-panel:hover{transform:translateY(-3px)!important;border-color:rgba(80,104,242,.16)!important;box-shadow:0 24px 60px rgba(17,35,56,.09)!important}.sm-card{min-height:132px!important;padding:20px!important}.sm-card::after{height:2px!important;background:linear-gradient(90deg,#5068f2,#7a8cf6,#64d9c5)!important;opacity:.55!important}.sm-card-title,.sm-panel-title{color:#213248!important;font-size:10px!important;font-weight:760!important;letter-spacing:.005em!important}.sm-metric{color:#102033!important;font-size:clamp(27px,2.7vw,38px)!important;font-weight:710!important;letter-spacing:-.055em!important}.sm-muted{color:#82909f!important;font-size:10px!important;line-height:1.55!important}.sm-chip{padding:5px 8px!important;border-radius:999px!important;color:#667588!important;background:#f1f3f5!important;border:1px solid #e6eaed!important;font-size:7px!important;font-weight:850!important;text-transform:uppercase;letter-spacing:.08em}.sm-chip-good{color:#147963!important;background:#e8f7f2!important;border-color:#d3eee7!important}.sm-chip-warn{color:#a87528!important;background:#fdf4e4!important;border-color:#f4e5c9!important}.sm-grid-2{gap:14px!important}.sm-panel{padding:22px!important}.sm-panel-head{margin-bottom:17px!important}
.sm-table-wrap{border:1px solid #e5e9ed!important;border-radius:17px!important;background:#fff!important;box-shadow:none!important;overflow:auto!important}.sm-table-wrap table,table{width:100%;border-collapse:separate!important;border-spacing:0!important}.sm-table-wrap thead th,thead th{height:43px!important;padding:11px 13px!important;border-bottom:1px solid var(--sm-border)!important;font-size:11px!important;font-weight:800!important;text-transform:uppercase!important;letter-spacing:.08em!important;white-space:nowrap}.sm-table-wrap tbody td,tbody td{padding:13px!important;color:#42546a!important;border-bottom:1px solid #eef1f3!important;font-size:10px!important}.sm-table-wrap tbody tr:last-child td,tbody tr:last-child td{border-bottom:0!important}.sm-table-wrap tbody tr:hover,tbody tr:hover{background:#f8f9ff!important}
.sm-btn,.btn,button{font-family:var(--lux-font)}.sm-btn{border-radius:12px!important;font-size:10px!important;font-weight:740!important}.sm-btn:hover,.btn:hover{transform:translateY(-1px)}.sm-btn:active,.btn:active{transform:translateY(0) scale(.985)}
input,select,textarea{min-height:42px;border-radius:12px!important;color:#25374c!important;background:#fff!important;border:1px solid #dfe4e9!important;font-size:11px!important;box-shadow:inset 0 1px 1px rgba(14,31,50,.025)!important}textarea{min-height:100px}input::placeholder,textarea::placeholder{color:#a3adb8!important}input:focus,select:focus,textarea:focus{border-color:#7e8ff2!important;box-shadow:0 0 0 4px rgba(80,104,242,.11)!important}
.sm-empty{padding:30px!important;border-radius:17px!important;background:linear-gradient(145deg,#fafbf9,#f5f7f7)!important;border:1px dashed #d9e0e5!important}.sm-empty-title{color:#3e5064!important;font-size:12px!important;font-weight:740!important}.sm-modal,.modal-content,[role="dialog"],.support-card{border-radius:24px!important;border:1px solid rgba(31,49,72,.1)!important;box-shadow:0 40px 110px rgba(7,17,31,.24)!important}.sm-modal-backdrop,.modal-backdrop{backdrop-filter:blur(9px)!important;background:rgba(6,16,29,.48)!important}.sm-toast-root{top:88px!important}.sm-toast{border-radius:14px!important;font-size:11px!important;box-shadow:0 18px 45px rgba(7,17,31,.2)!important}

/* Command palette */
.sm-command-backdrop{position:fixed;inset:0;z-index:9900;display:grid;place-items:start center;padding-top:min(16vh,150px);background:rgba(5,14,26,.55);backdrop-filter:blur(10px);opacity:0;visibility:hidden;transition:opacity .2s,visibility .2s}.sm-command-backdrop.is-open{opacity:1;visibility:visible}.sm-command-panel{width:min(620px,calc(100% - 28px));overflow:hidden;border-radius:22px;background:rgba(255,255,255,.97);border:1px solid rgba(255,255,255,.8);box-shadow:0 45px 120px rgba(0,0,0,.28);transform:translateY(-12px) scale(.985);transition:transform .25s var(--lux-ease)}.sm-command-backdrop.is-open .sm-command-panel{transform:none}.sm-command-search{display:flex;align-items:center;gap:11px;padding:17px 18px;border-bottom:1px solid #e9edf0}.sm-command-search svg{width:19px;height:19px;fill:none;stroke:#8491a0;stroke-width:1.8}.sm-command-search input{height:auto!important;min-height:0!important;flex:1;padding:0!important;border:0!important;background:transparent!important;box-shadow:none!important;font-size:15px!important}.sm-command-search kbd{padding:4px 7px;border-radius:7px;color:#8491a0;background:#f0f2f4;border:1px solid #e3e7ea;font-size:8px}.sm-command-results{max-height:370px;overflow:auto;padding:8px}.sm-command-group-label{padding:8px 10px 5px;color:#9aa4af;font-size:8px;font-weight:850;text-transform:uppercase;letter-spacing:.13em}.sm-command-item{width:100%;display:flex;align-items:center;gap:11px;padding:11px 12px;border:0;border-radius:12px;color:#32465c;background:transparent;text-align:left;cursor:pointer}.sm-command-item:hover,.sm-command-item.is-active{background:#f0f3ff;color:#3f57d1}.sm-command-item svg{width:17px;height:17px;fill:none;stroke:currentColor;stroke-width:1.75;stroke-linecap:round;stroke-linejoin:round}.sm-command-item span{font-size:11px;font-weight:720}.sm-command-item small{margin-left:auto;color:#9ba5b0;font-size:8px}.sm-command-empty{padding:30px;text-align:center;color:#8995a2;font-size:11px}
.sm-offline-banner{position:fixed;z-index:10000;left:50%;top:12px;transform:translate(-50%,-160%);padding:9px 14px;border-radius:999px;color:#fff;background:#aa4b50;box-shadow:0 12px 35px rgba(130,45,50,.3);font-size:10px;font-weight:750;transition:transform .3s var(--lux-ease)}.sm-offline-banner.is-visible{transform:translate(-50%,0)}
.sm-mobile-dock{display:none}

/* Auth / billing / public invoice */
body:not(.sm-body):not(.sm-lux-public) { font-family:var(--lux-font)!important; }
body:not(.sm-body):not(.sm-lux-public)::before { content:"";position:fixed;inset:0;z-index:-2;background:radial-gradient(650px 500px at 20% 0%,rgba(80,104,242,.2),transparent 68%),radial-gradient(600px 450px at 100% 100%,rgba(100,217,197,.13),transparent 70%),linear-gradient(145deg,#07111f,#0c1b2e)!important; }
.auth-card,.billing-card,.sm-invpub-card,.upgrade-card,.plan-card,.plan-glow,.support-card { border-radius:27px!important; border:1px solid rgba(255,255,255,.45)!important; box-shadow:0 45px 110px rgba(0,0,0,.28)!important; backdrop-filter:blur(22px) saturate(1.2)!important; }
.auth-card,.billing-card,.sm-invpub-card,.upgrade-card,.plan-card { background:rgba(255,255,255,.94)!important; }
.auth-brand .mark,.logo,.brand-icon { border-radius:14px!important;background:linear-gradient(145deg,#7185ff,#4963ee 55%,#344bd2)!important;box-shadow:inset 0 1px rgba(255,255,255,.32),0 14px 35px rgba(58,79,210,.3)!important; }
.site-theme-toggle{border-radius:13px!important;background:rgba(255,255,255,.1)!important;border:1px solid rgba(255,255,255,.15)!important;box-shadow:0 10px 30px rgba(0,0,0,.15)!important}

/* Dark app */
body.dark.sm-body,body.sm-body[data-theme="dark"]{background:radial-gradient(900px 500px at 100% 0%,rgba(80,104,242,.13),transparent 68%),#07101d!important;color:#e5edf6!important}/* .sm-topbar sizing/color superseded by schedmate.polish-v105.css, which loads last */.dark .sm-page-title,[data-theme="dark"] .sm-page-title{color:#f2f6fa!important}.dark .sm-card,.dark .sm-panel,[data-theme="dark"] .sm-card,[data-theme="dark"] .sm-panel{background:rgba(14,27,45,.88)!important;border-color:rgba(255,255,255,.07)!important}.dark .sm-card-title,.dark .sm-panel-title,.dark .sm-metric,[data-theme="dark"] .sm-card-title,[data-theme="dark"] .sm-panel-title,[data-theme="dark"] .sm-metric{color:#edf3f9!important}.dark .sm-muted,[data-theme="dark"] .sm-muted{color:#8e9bad!important}.dark .sm-table-wrap,[data-theme="dark"] .sm-table-wrap{background:#0e1b2d!important;border-color:#203047!important}.dark thead th,[data-theme="dark"] thead th{color:#8f9cad!important;background:#122239!important;border-color:#21334c!important}.dark tbody td,[data-theme="dark"] tbody td{color:#c8d3e0!important;border-color:#1c2d43!important}.dark tbody tr:hover,[data-theme="dark"] tbody tr:hover{background:#13243b!important}.dark input,.dark select,.dark textarea,[data-theme="dark"] input,[data-theme="dark"] select,[data-theme="dark"] textarea{color:#e4ebf3!important;background:#0b192b!important;border-color:#263950!important}.dark .sm-command-panel,[data-theme="dark"] .sm-command-panel{background:#0e1c2f;border-color:#26384f}.dark .sm-command-search,[data-theme="dark"] .sm-command-search{border-color:#25364c}.dark .sm-command-item,[data-theme="dark"] .sm-command-item{color:#c9d4df}.dark .sm-command-item:hover,.dark .sm-command-item.is-active,[data-theme="dark"] .sm-command-item:hover,[data-theme="dark"] .sm-command-item.is-active{color:#fff;background:#172a45}.dark .sm-command-search input,[data-theme="dark"] .sm-command-search input{background:transparent!important}.dark .sm-overview-welcome,[data-theme="dark"] .sm-overview-welcome{border:1px solid rgba(255,255,255,.06)}

/* ============================ RESPONSIVE =========================== */
@media (max-width: 1080px) {
  .lux-hero-grid { grid-template-columns:1fr; gap:35px; }.lux-hero-copy{max-width:780px}.lux-product-stage{max-width:850px;margin:0 auto;width:100%}.lux-hero{padding-top:135px}.lux-industry-rail{overflow:hidden;justify-content:flex-start;flex-wrap:wrap}.lux-heading-split{grid-template-columns:1fr;gap:20px}.lux-heading-split p{max-width:680px}.lux-bento-card{grid-column:span 6}.lux-bento-large,.lux-bento-wide{grid-column:span 12}.lux-use-grid{grid-template-columns:repeat(2,1fr)}
  .sm-command-trigger{min-width:auto!important}.sm-command-trigger .sm-command-label,.sm-command-trigger kbd{display:none}
}
@media (max-width: 900px) {
  .lux-nav{height:70px}.lux-nav-inner{gap:10px}.lux-nav-toggle{display:block;margin-left:auto}.lux-nav-links{position:absolute;top:calc(100% + 8px);left:24px;right:24px;display:grid;padding:9px;border-radius:18px;background:rgba(7,17,31,.98);border:1px solid rgba(255,255,255,.1);box-shadow:0 25px 70px rgba(0,0,0,.35);opacity:0;visibility:hidden;transform:translateY(-8px);transition:.22s}.lux-nav-links.is-open{opacity:1;visibility:visible;transform:none}.lux-nav-links a{padding:13px}.lux-nav-actions .lux-btn-quiet{display:none}.lux-brand-copy small{display:none}.lux-hero{min-height:auto;padding-top:120px}.lux-hero-grid{gap:20px}.lux-float-booking{left:-10px}.lux-float-paid{right:-10px}.lux-workflow-grid,.lux-faq-grid{grid-template-columns:1fr;gap:45px}.lux-sticky-copy{position:static}.lux-footer-grid{grid-template-columns:2fr 1fr 1fr}.lux-footer-grid>div:last-child{grid-column:2}.lux-final-card{padding:45px;align-items:flex-start;flex-direction:column}.lux-use-grid article{min-height:260px}
  .sm-sidebar{transform:translateX(-110%);width:min(310px,86vw)!important;z-index:6000!important}.sm-sidebar.is-open{transform:translateX(0)}.sm-main,.sm-sidebar.is-collapsed~.sm-main{margin-left:0!important}.sm-topbar{padding:10px 14px!important}.sm-content{padding:17px 14px 90px!important}.sm-overview-welcome{align-items:flex-start;flex-direction:column}.sm-mobile-dock{position:fixed;z-index:5000;left:12px;right:12px;bottom:max(10px,env(safe-area-inset-bottom));display:grid;grid-template-columns:repeat(5,1fr);padding:6px;border-radius:19px;background:rgba(7,17,31,.94);border:1px solid rgba(255,255,255,.1);box-shadow:0 20px 60px rgba(0,0,0,.32);backdrop-filter:blur(18px)}.sm-mobile-dock button{min-width:0;height:49px;display:grid;place-items:center;gap:2px;border:0;border-radius:13px;color:rgba(222,232,243,.52);background:transparent;font-size:7px;font-weight:750}.sm-mobile-dock button svg{width:17px;height:17px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}.sm-mobile-dock button.is-active{color:#fff;background:rgba(118,144,255,.18)}
}
@media (max-width: 680px) {
  .lux-shell{width:min(100% - 28px,var(--lux-shell))}.lux-hero{padding-top:105px}.lux-hero h1{font-size:clamp(42px,13vw,62px)}.lux-hero-lead{font-size:16px}.lux-hero-actions{display:grid}.lux-hero-actions .lux-btn{width:100%}.lux-proof-row{gap:9px 14px}.lux-product-stage{padding-bottom:35px}.lux-browser-frame{padding:5px;border-radius:19px;transform:none}.lux-browser-bar{height:34px;grid-template-columns:50px 1fr 45px}.lux-browser-address{min-width:0;padding:5px;font-size:7px}.lux-browser-status{font-size:0}.lux-browser-frame picture{border-radius:14px}.lux-float-card{display:none}.lux-float-metric{left:14px;bottom:0;transform:scale(.84);transform-origin:left bottom}.lux-industry-rail{margin-top:45px;gap:12px 18px}.lux-section{padding:82px 0}.lux-section-heading h2,.lux-sticky-copy h2{font-size:clamp(35px,10vw,49px)}.lux-bento-grid{display:block}.lux-bento-card{min-height:auto;margin-bottom:13px;padding:24px;border-radius:22px}.lux-bento-large,.lux-bento-wide{display:block}.lux-calendar-demo{margin:25px 0 0}.lux-bento-card:not(.lux-bento-large):not(.lux-bento-wide){min-height:340px}.lux-bento-wide .lux-flow-demo{margin-top:25px}.lux-process-list li{grid-template-columns:42px 1fr;gap:12px}.lux-showcase-tabs{justify-content:flex-start;width:100%}.lux-showcase-frame{padding:5px;border-radius:19px}.lux-showcase-frame img{border-radius:14px}.lux-use-grid{grid-template-columns:1fr}.lux-use-grid article{min-height:220px}.lux-use-grid h3{margin-top:55px}.lux-pricing-grid{grid-template-columns:1fr}.lux-final-card{padding:35px 25px;border-radius:25px}.lux-footer-grid{grid-template-columns:1fr 1fr;gap:35px}.lux-footer-grid>div:first-child{grid-column:1/-1}.lux-footer-grid>div:last-child{grid-column:auto}.lux-footer-bottom{flex-direction:column}.lux-nav-actions .lux-btn-primary{padding:9px 12px;min-height:40px;font-size:11px}
  .sm-page-title{font-size:17px!important}.sm-page-sub{max-width:210px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.sm-topbar-right .sm-help-btn,.sm-topbar-right #smUpgradeBtn{display:none!important}.sm-grid-kpis{grid-template-columns:1fr 1fr!important}.sm-card{min-height:118px!important;padding:16px!important}.sm-metric{font-size:25px!important}.sm-overview-welcome{padding:21px}.sm-overview-welcome h2{font-size:21px}.sm-command-backdrop{padding-top:8vh}.sm-table-wrap{margin-inline:-2px}.sm-table-wrap table{min-width:680px}.sm-toast-root{left:12px!important;right:12px!important}.sm-toast{min-width:0!important;max-width:none!important;width:100%!important}
}
@media (max-width: 420px) { .sm-grid-kpis{grid-template-columns:1fr!important}.lux-brand-mark{width:35px;height:35px}.lux-brand-copy strong{font-size:15px}.lux-nav-actions .lux-btn-primary span{display:none}.lux-price-card{padding:25px}.lux-hero h1{font-size:43px}.lux-cal-grid i{font-size:8px}.lux-float-metric{display:none} }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *,*::before,*::after { animation-duration:.01ms!important; animation-iteration-count:1!important; transition-duration:.01ms!important; }
  [data-lux-reveal] { opacity:1; transform:none; }
}

/* ======================== COMPANY / LEGAL PAGES =================== */
.lux-info-hero{padding:170px 0 90px;color:#f5f8fc;background:radial-gradient(650px 400px at 80% 10%,rgba(118,144,255,.2),transparent 72%),linear-gradient(145deg,#07111f,#10243b)}.lux-info-hero h1{max-width:900px;margin:16px 0 18px;color:#fff;font-size:clamp(48px,7vw,82px);line-height:1;letter-spacing:-.065em;font-weight:680}.lux-info-hero p{max-width:670px;margin:0;color:rgba(230,238,247,.62);font-size:18px;line-height:1.75}.lux-info-content{padding:100px 0;background:#f3f5f4}.lux-story-grid{display:grid;grid-template-columns:1.25fr .75fr;gap:24px}.lux-story-main,.lux-story-card,.lux-contact-card,.lux-open-call{border-radius:28px;border:1px solid rgba(24,42,63,.09);background:#fff;box-shadow:0 22px 65px rgba(15,31,50,.06)}.lux-story-main{padding:48px}.lux-story-main h2{margin:14px 0 22px;color:#102033;font-size:clamp(35px,4vw,54px);line-height:1.08;letter-spacing:-.055em}.lux-story-main p{color:#687789;font-size:15px;line-height:1.82}.lux-story-card{padding:35px;background:linear-gradient(145deg,#0a1728,#10243b);color:#fff}.lux-story-card>small,.lux-contact-card>small{color:#8398ff;font-size:9px;font-weight:850;text-transform:uppercase;letter-spacing:.14em}.lux-story-card ul{list-style:none;padding:0;margin:25px 0 0;display:grid;gap:20px}.lux-story-card li{display:grid;gap:5px;padding-bottom:20px;border-bottom:1px solid rgba(255,255,255,.09)}.lux-story-card li:last-child{border-bottom:0;padding-bottom:0}.lux-story-card li strong{font-size:14px}.lux-story-card li span{color:rgba(229,237,246,.55);font-size:11px;line-height:1.6}.lux-values-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;margin-top:24px;border:1px solid #dde3e6;border-radius:27px;overflow:hidden;background:#dde3e6}.lux-values-grid article{min-height:270px;padding:32px;background:#fafbf9}.lux-values-grid span{color:#6b7787;font-size:9px;font-weight:850;letter-spacing:.12em}.lux-values-grid h3{margin:75px 0 12px;color:#102033;font-size:23px;letter-spacing:-.04em}.lux-values-grid p{margin:0;color:#5c6b7d;font-size:13px;line-height:1.7}.lux-contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px}.lux-contact-card{padding:42px}.lux-contact-card h2{margin:13px 0 15px;color:#102033;font-size:38px;letter-spacing:-.05em}.lux-contact-card p{color:#6d7c8e;line-height:1.75}.lux-contact-card>a{margin-top:15px}.lux-contact-card>strong{display:block;margin-top:20px;color:#5068f2;font-size:12px}.lux-contact-dark{color:#fff;background:linear-gradient(145deg,#0a1728,#10243b)}.lux-contact-dark .lux-card-icon{color:#95a6ff;background:rgba(118,144,255,.12);border-color:rgba(118,144,255,.2)}.lux-contact-dark h2{color:#fff}.lux-contact-dark ul{list-style:none;padding:0;margin:25px 0;display:grid;gap:12px}.lux-contact-dark li{position:relative;padding-left:24px;color:rgba(230,238,247,.7);font-size:13px}.lux-contact-dark li::before{content:"✓";position:absolute;left:0;color:var(--lux-mint);font-weight:850}.lux-contact-dark p{color:rgba(230,238,247,.48)}.lux-open-call{display:flex;align-items:center;justify-content:space-between;gap:35px;margin-top:25px;padding:38px 42px}.lux-open-call h3{margin:10px 0;color:#102033;font-size:30px;letter-spacing:-.045em}.lux-open-call p{margin:0;color:#5c6b7d}.lux-404{min-height:100vh;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:30px;text-align:center;color:#fff;background:radial-gradient(600px 420px at 50% 30%,rgba(118,144,255,.17),transparent 70%),linear-gradient(145deg,#07111f,#10243b)}.lux-404 .lux-brand{position:absolute;top:28px;left:30px}.lux-404-code{margin-top:50px;color:rgba(118,144,255,.18);font-size:clamp(110px,25vw,250px);font-weight:820;line-height:.75;letter-spacing:-.1em}.lux-404 h1{margin:35px 0 12px;font-size:clamp(34px,5vw,56px);letter-spacing:-.055em}.lux-404 p{margin:0 0 28px;color:rgba(229,237,246,.55)}.lux-404>div:last-child{display:flex;gap:10px;flex-wrap:wrap;justify-content:center}
/* Existing privacy and terms documents */
body:has(.legal){background:#f3f5f4!important;color:#203247!important}.navbar{position:sticky!important;top:0!important;z-index:100!important;min-height:68px!important;display:flex!important;align-items:center!important;justify-content:space-between!important;padding:12px max(24px,calc((100% - 1200px)/2))!important;color:#f3f7fc!important;background:rgba(7,17,31,.94)!important;border-color:rgba(255,255,255,.08)!important;backdrop-filter:blur(20px)!important}.navbar .brand{color:#fff!important;font-size:17px!important}.navbar .nav-links{margin:0!important}.navbar .nav-links a{color:rgba(232,239,247,.7)!important}.legal.container{width:min(860px,calc(100% - 38px))!important;margin:70px auto!important;padding:60px!important;border-radius:28px;background:#fff!important;border:1px solid #e0e5e9!important;box-shadow:0 25px 70px rgba(15,31,50,.07)!important}.legal h1{color:#102033!important;font-size:clamp(40px,6vw,64px)!important;letter-spacing:-.06em!important}.legal h2{margin-top:38px!important;color:#1a2c42!important;font-size:24px!important;letter-spacing:-.035em!important}.legal h3{color:#30465d!important}.legal p,.legal li{color:#687789!important;line-height:1.8!important}.legal a{color:#5068f2!important}.legal-meta{padding-bottom:20px;border-bottom:1px solid #e7ebee}.legal-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:40px;padding-top:25px;border-top:1px solid #e7ebee}.legal+.footer{background:#07111f!important}
@media(max-width:800px){.lux-story-grid,.lux-contact-grid{grid-template-columns:1fr}.lux-values-grid{grid-template-columns:1fr}.lux-values-grid article{min-height:220px}.lux-open-call{align-items:flex-start;flex-direction:column}.legal.container{padding:35px 24px!important}.navbar .nav-links a:not(.btn-primary):not(.btn-outline){display:none}.lux-info-hero{padding:135px 0 70px}}
.sm-lux-confirm{position:fixed;inset:0;z-index:10050;display:grid;place-items:center;padding:20px;background:rgba(5,14,26,.55);backdrop-filter:blur(10px);opacity:0;visibility:hidden;transition:opacity .2s,visibility .2s}.sm-lux-confirm.is-open{opacity:1;visibility:visible}.sm-lux-confirm-card{width:min(440px,100%);display:grid;grid-template-columns:45px 1fr;gap:15px;padding:24px;border-radius:23px;color:#24374d;background:rgba(255,255,255,.98);border:1px solid rgba(255,255,255,.8);box-shadow:0 45px 110px rgba(0,0,0,.28);transform:translateY(10px) scale(.985);transition:transform .25s var(--lux-ease)}.sm-lux-confirm.is-open .sm-lux-confirm-card{transform:none}.sm-lux-confirm-icon{width:42px;height:42px;display:grid;place-items:center;border-radius:14px;color:#a56f20;background:#fff4df;font-weight:850}.sm-lux-confirm.is-danger .sm-lux-confirm-icon{color:#b7474d;background:#fdebed}.sm-lux-confirm-card h2{margin:2px 0 7px;color:#15283e;font-size:17px;letter-spacing:-.03em}.sm-lux-confirm-card p{margin:0;color:#6e7c8c;font-size:11px;line-height:1.65}.sm-lux-confirm-actions{grid-column:1/-1;display:flex;justify-content:flex-end;gap:7px;margin-top:8px}.sm-lux-confirm.is-danger [data-confirm-ok]{background:linear-gradient(135deg,#e36a6d,#c54f54)!important;box-shadow:0 10px 25px rgba(197,79,84,.22)!important}
