:root {
  color-scheme: dark;
  --page: #121212;
  --page-deep: #0d0d0d;
  --surface: #1a1a1a;
  --surface-raised: #222;
  --surface-soft: rgba(255, 255, 255, 0.025);
  --text: #f2f2f2;
  --muted: #a8a8a8;
  --muted-strong: #c7c7c7;
  --signal: #4ade80;
  --action: #166534;
  --action-hover: #15803d;
  --border: rgba(255, 255, 255, 0.075);
  --border-strong: rgba(255, 255, 255, 0.13);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.5);
  --radius: 14px;
  --header-height: 68px;
  --container: 1200px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

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

html {
  background: var(--page);
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  min-width: 280px;
  margin: 0;
  background: var(--page);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button {
  font: inherit;
}

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

p,
h1,
h2,
h3,
h4,
ul,
ol,
dl {
  margin-top: 0;
}

h1,
h2,
h3,
h4,
strong {
  line-height: 1.18;
}

h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

::selection {
  background: rgba(74, 222, 128, 0.28);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 4px;
}

[hidden] {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--text);
  color: #111;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.icon {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.signal {
  color: var(--signal);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  border-bottom: 1px solid var(--border);
  background: rgba(18, 18, 18, 0.82);
  backdrop-filter: blur(18px);
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(18, 18, 18, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
}

.header-inner {
  position: relative;
  width: min(100% - 48px, var(--container));
  min-height: var(--header-height);
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  color: var(--signal);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(74, 222, 128, 0.28);
  border-radius: 12px;
  background: rgba(74, 222, 128, 0.1);
}

.brand-mark .icon {
  width: 20px;
  height: 20px;
}

.nav-region {
  min-width: 0;
}

.primary-nav,
.header-actions {
  display: flex;
  align-items: center;
}

.primary-nav {
  justify-content: center;
  gap: clamp(14px, 2vw, 30px);
}

.primary-nav a,
.footer-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--muted-strong);
  font-size: 0.875rem;
  font-weight: 600;
  transition: color 160ms ease;
}

.primary-nav a:hover,
.primary-nav a[aria-current="location"],
.footer-nav a:hover {
  color: var(--text);
}

.mobile-offer {
  display: none !important;
}

.header-actions {
  gap: 10px;
}

.language-menu {
  position: relative;
  flex: 0 0 auto;
}

.language-menu summary {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted-strong);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.2;
  list-style: none;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.language-menu summary::-webkit-details-marker {
  display: none;
}

.language-menu summary:hover,
.language-menu[open] summary {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.065);
  color: var(--text);
}

.language-options {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 20;
  min-width: 154px;
  display: grid;
  gap: 2px;
  padding: 6px;
  border: 1px solid var(--border-strong);
  border-radius: 11px;
  background: rgba(18, 18, 18, 0.985);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.42);
}

.language-options a,
.language-switcher a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--muted-strong);
  font-size: 0.8rem;
  font-weight: 700;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.language-options a:hover,
.language-switcher a:hover {
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
}

.language-options a[aria-current="page"],
.language-switcher a[aria-current="page"] {
  border-color: rgba(74, 222, 128, 0.24);
  background: rgba(74, 222, 128, 0.1);
  color: var(--signal);
}

.language-switcher-mobile {
  display: none;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 9px 15px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  border-color: rgba(74, 222, 128, 0.18);
  background: var(--action);
  box-shadow: 0 8px 24px rgba(22, 101, 52, 0.24);
  color: #fff;
}

.button-primary:hover {
  background: var(--action-hover);
}

.button-secondary,
.button-quiet {
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.035);
}

.button-secondary:hover,
.button-quiet:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.065);
}

.button-large {
  min-height: 50px;
  padding: 13px 22px;
  border-radius: 11px;
  font-size: 0.95rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button-row.centered {
  justify-content: center;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle .close-icon,
.menu-toggle[aria-expanded="true"] .menu-icon {
  display: none;
}

.menu-toggle[aria-expanded="true"] .close-icon {
  display: block;
}

.hero {
  position: relative;
  overflow: clip;
  border-bottom: 1px solid var(--border);
}

.hero-glow,
.cta-glow {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(74, 222, 128, 0.14), transparent 68%);
  filter: blur(8px);
}

.hero-glow {
  width: 760px;
  height: 760px;
  top: -260px;
  left: calc(50% - 760px);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(44px, 5vw, 72px);
  align-items: center;
  padding-block: 74px 62px;
}

.hero-copy {
  min-width: 0;
}

.eyebrow-pill {
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  padding: 7px 12px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted-strong);
  font-size: 0.77rem;
  line-height: 1.35;
}

.signal-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 11px var(--signal);
  animation: signal-pulse 2.6s ease-in-out infinite;
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 4.4vw, 4.15rem);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.hero-lead,
.section-heading > p:last-child,
.section-lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.65;
}

.hero-lead {
  max-width: 600px;
  margin-bottom: 30px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.8rem;
}

.hero-facts li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-facts .icon {
  color: var(--signal);
}

.app-window,
.operational-feed,
.invoice-demo,
.schedule-demo {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(27, 27, 27, 0.98), rgba(17, 17, 17, 0.99));
  box-shadow: var(--shadow);
}

.hero-window {
  position: relative;
}

.window-bar {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.012);
}

.window-dots {
  display: inline-flex;
  gap: 6px;
}

.window-dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ef4444;
  opacity: 0.72;
}

.window-dots i:nth-child(2) { background: #eab308; }
.window-dots i:nth-child(3) { background: #22c55e; }

.window-address {
  min-width: 0;
  overflow: hidden;
  color: #969696;
  font: 0.66rem/1.3 ui-monospace, SFMono-Regular, Menlo, monospace;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demo-label {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #b4b4b4;
  font-size: 0.7rem;
  line-height: 1.3;
}

.demo-label .icon {
  width: 12px;
  height: 12px;
  color: var(--signal);
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr);
  min-height: 398px;
}

.demo-sidebar {
  padding: 16px 10px;
  border-right: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.24);
}

.demo-sidebar strong {
  display: block;
  margin: 0 7px 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  color: var(--signal);
  font-size: 0.75rem;
}

.demo-sidebar span {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 3px 0;
  padding: 7px 8px;
  border-radius: 7px;
  color: #a0a0a0;
  font-size: 0.7rem;
}

.demo-sidebar span.active {
  background: var(--action);
  color: #fff;
  font-weight: 700;
}

.demo-sidebar .icon {
  width: 13px;
  height: 13px;
}

.dashboard-body {
  min-width: 0;
  padding: 16px;
}

.dashboard-title-row,
.card-heading,
.panel-heading,
.invoice-heading,
.schedule-heading,
.feed-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.dashboard-title-row {
  margin-bottom: 13px;
}

.dashboard-title-row h2,
.panel-heading h3,
.pos-layout h3 {
  margin: 0;
  font-size: 0.9rem;
}

.dashboard-title-row p,
.panel-heading p {
  margin: 3px 0 0;
  color: #aaa;
  font-size: 0.7rem;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(74, 222, 128, 0.1);
  color: var(--signal);
  font-size: 0.7rem;
  font-weight: 700;
}

.live-pill .signal-dot {
  width: 5px;
  height: 5px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 10px;
}

.metric-card,
.cash-grid article {
  min-width: 0;
  padding: 11px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface-soft);
}

.metric-card span,
.cash-grid article span {
  display: block;
  color: #aaa;
  font-size: 0.7rem;
}

.metric-card strong {
  display: block;
  margin-top: 3px;
  font-size: 1.25rem;
}

.metric-highlight {
  border-color: rgba(74, 222, 128, 0.24);
  background: rgba(74, 222, 128, 0.045);
}

.metric-highlight strong {
  color: var(--signal);
}

.occupancy-card {
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface-soft);
}

.card-heading {
  margin-bottom: 10px;
  font-size: 0.7rem;
}

.card-heading > span {
  color: var(--signal);
  font-size: 0.7rem;
  font-weight: 700;
}

.occupancy-row + .occupancy-row {
  margin-top: 9px;
}

.occupancy-row > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
  color: #c9c9c9;
  font-size: 0.7rem;
}

.occupancy-row small {
  color: #aaa;
}

.progress {
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
}

.progress i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--signal);
}

.fill-70 { width: 70%; }
.fill-60 { width: 60%; }

.trust-band,
.section-tinted {
  border-block: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.012);
}

.trust-list {
  min-height: 74px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 28px;
  padding-block: 14px;
}

.trust-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted-strong);
  font-size: 0.8rem;
}

.trust-list .icon {
  color: var(--signal);
}

.section {
  padding-block: 96px;
}

.section-heading {
  max-width: 690px;
  margin-bottom: 46px;
}

.section-heading h2,
.romania-grid h2,
.widget-grid h2,
.final-cta h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 840;
  letter-spacing: -0.035em;
}

.section-heading > p:last-child {
  margin-bottom: 0;
}

.kicker {
  margin-bottom: 11px;
  color: var(--signal);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.flow-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: clamp(40px, 5vw, 68px);
  align-items: start;
}

.timeline {
  position: relative;
  min-width: 0;
}

.timeline-line {
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 27px;
  width: 2px;
  overflow: hidden;
  background: linear-gradient(transparent, rgba(74, 222, 128, 0.3) 10%, rgba(74, 222, 128, 0.3) 90%, transparent);
}

.timeline-line i {
  position: absolute;
  top: -12px;
  left: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 14px 3px rgba(74, 222, 128, 0.55);
  animation: timeline-signal 6s linear infinite;
}

.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding-block: 15px;
}

.step-icon {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(74, 222, 128, 0.25);
  border-radius: 15px;
  background: #151515;
  color: var(--signal);
  box-shadow: 0 0 0 6px var(--page);
}

.step-icon .icon {
  width: 22px;
  height: 22px;
}

.timeline-step > div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  padding-top: 5px;
}

.step-number {
  grid-row: 1;
  margin: 5px 0 0;
  color: #929292;
  font: 0.67rem/1.2 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.timeline-step h3 {
  grid-row: 1;
  margin-bottom: 5px;
  font-size: 1.08rem;
}

.timeline-step div > p:last-child {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.operational-feed {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.36);
}

.feed-header,
.invoice-heading,
.schedule-heading {
  min-height: 54px;
  padding: 13px 17px;
  border-bottom: 1px solid var(--border);
}

.feed-header strong,
.invoice-heading strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
}

.feed-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 14px 17px;
  border-bottom: 1px solid var(--border);
}

.feed-summary div {
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: var(--surface-soft);
}

.feed-summary span,
.invoice-list article div span {
  display: block;
  color: #aaa;
  font-size: 0.7rem;
}

.feed-summary strong {
  display: block;
  margin-top: 4px;
  font-size: 0.94rem;
}

.feed-events {
  position: relative;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 16px 17px 20px;
  list-style: none;
}

.feed-events::before {
  content: "";
  position: absolute;
  top: 26px;
  bottom: 32px;
  left: 29px;
  width: 1px;
  background: var(--border-strong);
}

.feed-events li {
  position: relative;
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 12px;
}

.event-icon {
  position: relative;
  z-index: 1;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background: #181818;
}

.event-icon .icon {
  width: 12px;
  height: 12px;
}

.event-icon.green { color: var(--signal); }
.event-icon.blue { color: #60a5fa; }
.event-icon.purple { color: #c084fc; }
.event-icon.yellow { color: #fde047; }
.event-icon.cyan { color: #67e8f9; }

.feed-events p {
  margin: 1px 0 0;
  color: #dedede;
  font-size: 0.75rem;
}

.feed-events time {
  color: #aaa;
  font: 0.63rem/1.2 ui-monospace, SFMono-Regular, Menlo, monospace;
}

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

.feature-card,
.role-card {
  min-width: 0;
  padding: 23px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.feature-card:hover,
.role-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.035);
}

.feature-icon,
.role-card > span,
.market-list > li > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 15px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  color: #e3e3e3;
}

.feature-card h3,
.role-card h3,
.market-list h3 {
  margin-bottom: 7px;
  font-size: 1rem;
}

.feature-card p,
.role-card p,
.market-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
}

.noscript-note {
  margin: -24px 0 24px;
  padding: 12px 15px;
  border: 1px solid rgba(74, 222, 128, 0.23);
  border-radius: 10px;
  background: rgba(74, 222, 128, 0.06);
  color: var(--muted-strong);
}

.tab-list {
  display: none;
  gap: 8px;
  margin-bottom: 18px;
  padding: 4px 4px 8px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
}

.tab-list.is-enhanced {
  display: flex;
}

.tab-list button {
  min-height: 44px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  background: transparent;
  color: var(--muted-strong);
  font-size: 0.8rem;
  font-weight: 750;
  cursor: pointer;
}

.tab-list button[aria-selected="true"] {
  border-color: rgba(74, 222, 128, 0.32);
  background: rgba(74, 222, 128, 0.1);
  color: var(--signal);
}

.interface-window {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
}

.tab-panel {
  min-width: 0;
  padding: 22px;
}

.tab-panel + .tab-panel {
  border-top: 1px solid var(--border-strong);
}

.tabs-enhanced .tab-panel + .tab-panel {
  border-top: 0;
}

.panel-heading {
  margin-bottom: 15px;
}

.demo-action {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border-radius: 8px;
  background: var(--action);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 750;
}

.table-scroll {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 11px;
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 0.76rem;
}

th,
td {
  padding: 11px 14px;
  border-top: 1px solid var(--border);
  color: var(--muted-strong);
  text-align: left;
  white-space: nowrap;
}

thead th {
  border-top: 0;
  background: rgba(255, 255, 255, 0.025);
  color: #aaa;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

tbody th {
  color: var(--text);
  font-weight: 650;
}

.avatar {
  width: 29px;
  height: 29px;
  display: inline-grid;
  place-items: center;
  margin-right: 8px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.13);
  color: var(--signal);
  font-size: 0.7rem;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 750;
}

.status.success { background: rgba(34, 197, 94, 0.13); color: #86efac; }
.status.warning { background: rgba(234, 179, 8, 0.13); color: #fde047; }
.status.danger { background: rgba(239, 68, 68, 0.13); color: #fca5a5; }
.status.info { background: rgba(59, 130, 246, 0.14); color: #93c5fd; }
.status.neutral { background: rgba(255, 255, 255, 0.06); color: #d0d0d0; }
.warning-text { color: #fde047 !important; }
.danger-text { color: #fca5a5 !important; }

.pos-layout,
.analytics-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(250px, 1fr);
  gap: 18px;
}

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

.product-card {
  min-height: 105px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface-soft);
}

.product-card .icon {
  color: #d8d8d8;
}

.product-card strong {
  font-size: 0.75rem;
}

.product-card div {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  color: var(--signal);
  font-size: 0.73rem;
  font-weight: 750;
}

.product-card small {
  color: #aaa;
  font-weight: 500;
}

.cart-card,
.chart-card {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface-soft);
}

.cart-card h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 13px;
  font-size: 0.8rem;
}

.cart-card h4 .icon {
  color: var(--signal);
}

.cart-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 13px;
  padding: 0;
  list-style: none;
  font-size: 0.75rem;
}

.cart-card li,
.cart-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.cart-card dl {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  color: #aaa;
  font-size: 0.72rem;
}

.cart-card dd {
  margin: 0;
}

.cart-total {
  margin-top: 4px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 800;
}

.payment-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 14px;
}

.payment-options span {
  padding: 8px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
}

.payment-options .selected {
  border-color: var(--action);
  background: var(--action);
  color: #fff;
}

.cash-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-bottom: 13px;
}

.cash-grid article strong {
  display: block;
  margin-top: 6px;
  font-size: 1rem;
}

.reconciliation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px;
  border: 1px solid rgba(74, 222, 128, 0.22);
  border-radius: 11px;
  background: rgba(74, 222, 128, 0.045);
}

.reconciliation > div {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 34px;
}

.reconciliation span {
  color: #aaa;
  font-size: 0.7rem;
}

.reconciliation span strong {
  display: block;
  margin-top: 3px;
  color: var(--text);
  font-size: 0.94rem;
}

.reconciliation p {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  color: var(--signal);
  font-size: 0.75rem;
  font-weight: 750;
}

.chart-card h3 {
  margin: 0;
  font-size: 0.8rem;
}

.bar-chart {
  height: 190px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  padding-top: 14px;
}

.bar-chart > div {
  height: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 7px;
}

.bar-chart i {
  width: 100%;
  min-height: 8px;
  border-radius: 6px 6px 0 0;
  background: rgba(255, 255, 255, 0.14);
}

.bar-chart i.active { background: var(--signal); }
.bar-chart span { color: #aaa; font-size: 0.7rem; }
.bar-52 { height: 52%; }
.bar-61 { height: 61%; }
.bar-58 { height: 58%; }
.bar-73 { height: 73%; }
.bar-84 { height: 84%; }
.bar-96 { height: 96%; }

.membership-chart {
  display: flex;
  flex-direction: column;
}

.donut {
  width: 130px;
  height: 130px;
  display: grid;
  place-items: center;
  margin: 18px auto 14px;
  border-radius: 50%;
  background: conic-gradient(var(--signal) 0 46%, #22d3ee 46% 80%, #a855f7 80% 92%, #f97316 92% 100%);
}

.donut span {
  width: 80px;
  height: 80px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  background: #171717;
  color: #aaa;
  font-size: 0.7rem;
  text-align: center;
}

.donut strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
}

.membership-chart ul {
  display: grid;
  gap: 6px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.membership-chart li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  color: var(--muted-strong);
  font-size: 0.7rem;
}

.membership-chart li i {
  width: 9px;
  height: 9px;
  border-radius: 3px;
}

.membership-chart .premium { background: var(--signal); }
.membership-chart .standard { background: #22d3ee; }
.membership-chart .studio { background: #a855f7; }
.membership-chart .daily { background: #f97316; }

.romania-grid,
.widget-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 5vw, 64px);
  align-items: center;
}

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

.market-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
}

.market-list > li > span {
  width: 42px;
  height: 42px;
  margin: 0;
  border-color: rgba(74, 222, 128, 0.2);
  background: rgba(74, 222, 128, 0.06);
  color: var(--signal);
}

.invoice-list {
  display: grid;
  gap: 8px;
  padding: 15px;
}

.invoice-list article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: var(--surface-soft);
}

.invoice-list article div strong {
  display: block;
  font-size: 0.75rem;
}

.invoice-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 13px 16px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.73rem;
}

.invoice-note .icon {
  color: var(--signal);
}

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

.role-card > span {
  color: var(--signal);
}

.widget-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.schedule-demo {
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.36);
}

.schedule-heading strong {
  font-size: 0.82rem;
}

.schedule-list {
  display: grid;
  gap: 9px;
  padding: 15px;
}

.schedule-list article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 13px;
  align-items: center;
  padding: 11px 12px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: var(--surface-soft);
}

.schedule-list time {
  color: var(--signal);
  font: 0.72rem/1.2 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.schedule-list article div strong,
.schedule-list article div span {
  display: block;
}

.schedule-list article div strong { font-size: 0.78rem; }
.schedule-list article div span { color: #aaa; font-size: 0.7rem; }

.spots {
  font-size: 0.7rem;
  font-weight: 750;
  text-align: right;
}

.spots.available { color: var(--signal); }
.spots.limited { color: #fde047; }
.spots.waitlist { color: #fca5a5; }

.embed-code {
  max-width: 100%;
  margin: 22px 0 0;
  padding: 15px 17px;
  overflow-x: auto;
  border: 1px solid var(--border-strong);
  border-radius: 11px;
  background: #0e0e0e;
  color: #a7d7b7;
  font: 0.75rem/1.7 ui-monospace, SFMono-Regular, Menlo, monospace;
  white-space: pre;
}

.code-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.final-cta {
  position: relative;
  overflow: clip;
  padding-block: 100px;
  text-align: center;
}

.cta-glow {
  width: 780px;
  height: 500px;
  left: 50%;
  bottom: -330px;
  transform: translateX(-50%);
}

.cta-inner {
  position: relative;
  max-width: 760px;
}

.cta-inner > p {
  max-width: 620px;
  margin: 0 auto 26px;
  color: var(--muted);
  font-size: 1.05rem;
}

.pulse-line {
  position: relative;
  width: 120px;
  height: 2px;
  display: block;
  margin: 0 auto 26px;
  overflow: hidden;
  background: linear-gradient(90deg, transparent, rgba(74, 222, 128, 0.35), transparent);
}

.pulse-line i {
  position: absolute;
  top: -3px;
  left: -8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 13px var(--signal);
  animation: horizontal-signal 4.8s linear infinite;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--page-deep);
}

.footer-main {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-block: 24px;
}

.language-switcher-footer {
  display: flex;
  flex: 0 0 auto;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
}

.footer-brand > span:last-child {
  display: flex;
  flex-direction: column;
}

.footer-brand small {
  color: #aaa;
  font: 0.67rem/1.3 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 22px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  color: #aaa;
  font-size: 0.72rem;
}

.footer-bottom .container {
  padding-block: 13px;
}

.js.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms cubic-bezier(.22, 1, .36, 1), transform 600ms cubic-bezier(.22, 1, .36, 1);
}

.js.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes signal-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.5); }
}

@keyframes timeline-signal {
  0% { top: -12px; opacity: 0; }
  8%, 92% { opacity: 1; }
  100% { top: calc(100% + 12px); opacity: 0; }
}

@keyframes horizontal-signal {
  0% { left: -8px; opacity: 0; }
  10%, 90% { opacity: 1; }
  100% { left: calc(100% + 8px); opacity: 0; }
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: auto 1fr auto auto;
    gap: 12px;
  }

  .menu-toggle:not([hidden]) {
    display: grid;
  }

  .nav-region {
    grid-column: 1 / -1;
    order: 4;
  }

  .primary-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 8px 0 14px;
  }

  .nav-enhanced .nav-region {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    padding: 10px 24px 18px;
    max-height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    overscroll-behavior: contain;
    border-bottom: 1px solid var(--border-strong);
    background: rgba(18, 18, 18, 0.985);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
  }

  .nav-enhanced .nav-region[data-open="true"] {
    display: block;
  }

  .site-header:not(.nav-enhanced) {
    position: static;
  }

  .nav-enhanced .primary-nav {
    display: grid;
    gap: 2px;
    padding: 0;
  }

  .nav-enhanced .primary-nav a {
    padding-inline: 10px;
    border-radius: 8px;
  }

  .nav-enhanced .primary-nav a:hover {
    background: rgba(255, 255, 255, 0.04);
  }

  .nav-enhanced .mobile-offer {
    display: inline-flex !important;
    margin-top: 6px;
    background: var(--action);
    color: #fff;
  }

  .language-switcher-desktop {
    display: none;
  }

  .language-switcher-mobile {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 10px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
  }

  .language-switcher-mobile a {
    min-width: 92px;
  }

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

  .hero-copy {
    max-width: 760px;
  }

  .hero-window {
    width: min(100%, 760px);
  }

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

  .operational-feed {
    position: static;
  }

  .romania-grid,
  .widget-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .romania-grid > *,
  .widget-grid > * {
    min-width: 0;
    width: 100%;
  }

  .invoice-demo,
  .schedule-demo {
    width: min(100%, 760px);
  }
}

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

  .pos-layout,
  .analytics-layout {
    grid-template-columns: 1fr;
  }

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

  .role-card {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    column-gap: 15px;
  }

  .role-card > span {
    grid-row: 1 / 3;
    margin: 0;
  }

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

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

  .footer-nav {
    justify-content: flex-start;
  }

  .language-switcher-footer {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 64px;
  }

  .container,
  .header-inner {
    width: min(100% - 32px, var(--container));
  }

  .header-inner {
    grid-template-columns: auto 1fr auto auto;
  }

  .login-link {
    display: none;
  }

  .offer-link {
    padding-inline: 12px;
    font-size: 0.78rem;
  }

  .offer-link .icon {
    display: none;
  }

  .section {
    padding-block: 72px;
  }

  .hero-grid {
    gap: 38px;
    padding-block: 52px 48px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.2rem);
  }

  .eyebrow-pill {
    border-radius: 14px;
  }

  .button-row .button {
    flex: 1 1 170px;
  }

  .hero-facts {
    display: grid;
    gap: 9px;
  }

  .window-bar {
    min-height: 44px;
  }

  .window-address {
    display: none;
  }

  .demo-label {
    margin-left: 0;
  }

  .demo-sidebar {
    display: none;
  }

  .dashboard-layout {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
  }

  .trust-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: start;
  }

  .timeline-step {
    gap: 15px;
  }

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

  .tab-panel {
    padding: 16px;
  }

  .panel-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .invoice-list article {
    align-items: flex-start;
    flex-direction: column;
  }

  .schedule-list article {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .schedule-list .spots {
    grid-column: 2;
    text-align: left;
  }

  .final-cta {
    padding-block: 78px;
  }
}

@media (max-width: 420px) {
  .brand > span:last-child {
    display: none;
  }

  .header-inner {
    gap: 8px;
  }

  .offer-link {
    padding-inline: 10px;
    font-size: 0.73rem;
  }

  .metric-grid,
  .trust-list,
  .feed-summary,
  .cash-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-title-row {
    align-items: flex-start;
  }

  .live-pill {
    max-width: 92px;
    white-space: normal;
  }

  .timeline-line {
    left: 23px;
  }

  .timeline-step {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 13px;
  }

  .step-icon {
    width: 48px;
    height: 48px;
    border-radius: 13px;
  }

  .timeline-step > div {
    display: block;
    padding-top: 1px;
  }

  .step-number {
    margin-bottom: 2px;
  }

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

  .reconciliation > div {
    display: grid;
    gap: 12px;
  }

  .schedule-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .embed-code {
    font-size: 0.7rem;
  }

  .footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .language-switcher-footer {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }
}

@media print {
  .js.reveal-ready [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}

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

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

  .js.reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (forced-colors: active) {
  .button,
  .feature-card,
  .role-card,
  .app-window,
  .operational-feed,
  .invoice-demo,
  .schedule-demo,
  .status {
    border: 1px solid CanvasText;
  }

  .signal-dot,
  .progress i,
  .bar-chart i.active {
    background: Highlight;
  }
}
