:root {
  color-scheme: light;
  --bg: #f4f7f6;
  --ink: #17211f;
  --muted: #66736f;
  --line: #dbe4e1;
  --panel: #ffffff;
  --brand: #0d6efd;
  --brand-dark: #084298;
  --brand-soft: #e7f0ff;
  --hero-accent: rgba(13, 110, 253, 0.62);
  --company-cover: url("https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=1800&q=80");
  --success: #14824f;
  --success-soft: #dff8e9;
  --danger: #c73737;
  --danger-soft: #fff1f1;
  --shadow: 0 18px 50px rgba(23, 33, 31, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #05070b;
  --ink: #f8fafc;
  --muted: #a9b4c2;
  --line: #263244;
  --panel: #101722;
  --brand-soft: #0b2f6b;
  --success-soft: #082f20;
  --danger-soft: #320f13;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--bg);
  color: var(--ink);
}

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

button,
input,
select {
  font: inherit;
}

input[type="file"] {
  min-height: auto;
  border-style: dashed;
  padding: 11px;
  cursor: pointer;
  font-size: 0.88rem;
}

input[type="file"]::file-selector-button {
  min-height: 34px;
  margin-right: 10px;
  border: 0;
  border-radius: 8px;
  padding: 0 12px;
  background: var(--brand);
  color: #fff;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

button {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  padding: 0 16px;
  cursor: pointer;
  color: var(--ink);
  background: var(--brand-soft);
  transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
}

button:hover {
  filter: brightness(0.97);
  transform: translateY(-1px);
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

input,
select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: var(--panel);
  color: var(--ink);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  font-size: 1.08rem;
}

.landing-shell {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(255, 122, 0, 0.07), transparent 36%),
    #030405;
  color: #fff;
}

.landing-nav,
.landing-section,
.landing-hero {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.landing-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
}

.nav-brand-mark {
  display: inline-flex;
  width: clamp(104px, 12vw, 148px);
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
}

.nav-brand-mark img {
  display: block;
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 0 2px rgba(255, 255, 255, 0.82))
    drop-shadow(0 0 9px rgba(255, 122, 0, 0.34));
}

.landing-eyebrow,
.featured-plan h3 {
  color: #ff7a00;
}

.landing-nav div {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
}

.owner-link {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.82rem;
}

.nav-cta,
.landing-button {
  border-radius: 8px;
  font-weight: 850;
}

.nav-cta {
  padding: 10px 14px;
  background: #ff7a00;
  color: #090909;
}

.landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
  gap: 34px;
  align-items: center;
  min-height: min(760px, calc(100vh - 82px));
  padding: 42px 0 72px;
}

.hero-copy {
  display: grid;
  gap: 22px;
}

.mobile-hero-symbol {
  display: none;
}

.landing-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 900;
}

.hero-copy h1,
.final-cta h2 {
  max-width: 760px;
  font-size: clamp(2.7rem, 6.8vw, 6rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy p,
.split-section p,
.final-cta p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
  line-height: 1.65;
}

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

.landing-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
}

.landing-button.primary {
  background: #ff7a00;
  color: #070707;
}

.landing-button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.landing-button.whatsapp {
  background: #22c55e;
  color: #041007;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-proof span {
  border: 1px solid rgba(255, 122, 0, 0.35);
  border-radius: 999px;
  padding: 8px 11px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.86rem;
}

.hero-media {
  position: relative;
  display: grid;
  gap: clamp(10px, 2vh, 18px);
  place-items: center;
  border: 0;
  border-radius: 0;
  overflow: visible;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.hero-media img {
  display: block;
  max-width: 100%;
  height: auto;
}

.brand-showcase::before {
  display: none;
}

.brand-wordmark-stage,
.brand-symbol-stage {
  display: grid;
  place-items: center;
  position: relative;
  width: 100%;
}

.brand-wordmark-stage {
  z-index: 2;
}

.brand-symbol-stage {
  z-index: 1;
  width: min(78%, 430px);
  margin-top: clamp(-8px, -1.1vw, -16px);
}

.brand-wordmark {
  width: min(100%, 620px);
}

.brand-symbol {
  width: 100%;
  max-height: min(42vh, 430px);
  object-fit: contain;
  object-position: center;
}

.brand-wordmark,
.brand-symbol {
  position: relative;
  z-index: 2;
  filter:
    drop-shadow(0 16px 24px rgba(0, 0, 0, 0.42))
    drop-shadow(0 0 2px rgba(255, 255, 255, 0.56));
}

.brand-wordmark {
  filter:
    drop-shadow(0 18px 26px rgba(0, 0, 0, 0.46))
    drop-shadow(0 0 3px rgba(255, 255, 255, 0.72))
    drop-shadow(0 0 12px rgba(255, 122, 0, 0.18));
}

@media (min-width: 761px) {
  .landing-nav,
  .landing-section,
  .landing-hero {
    width: min(1320px, calc(100% - clamp(48px, 7vw, 132px)));
  }

  .landing-nav {
    min-height: 88px;
    padding: clamp(18px, 2.2vh, 28px) 0;
  }

  .landing-hero {
    grid-template-columns: minmax(410px, 0.92fr) minmax(430px, 1.08fr);
    gap: clamp(38px, 5.4vw, 86px);
    min-height: calc(100svh - 88px);
    padding: clamp(18px, 3vh, 46px) 0 clamp(42px, 6vh, 78px);
  }

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

  .hero-copy h1 {
    font-size: clamp(3.45rem, 5.1vw, 6.25rem);
  }

  .hero-copy p {
    max-width: 690px;
  }

  .hero-media {
    width: min(100%, 650px);
    justify-self: center;
  }

  .brand-symbol-stage {
    width: min(76%, 430px);
  }
}

@media (min-width: 1440px) {
  .landing-nav,
  .landing-section,
  .landing-hero {
    width: min(1420px, calc(100% - 144px));
  }

  .landing-hero {
    grid-template-columns: minmax(500px, 0.9fr) minmax(520px, 1.1fr);
  }
}

@media (min-width: 761px) and (max-height: 760px) {
  .landing-nav {
    min-height: 72px;
    padding: 14px 0;
  }

  .landing-hero {
    min-height: calc(100svh - 72px);
    padding: 14px 0 38px;
  }

  .hero-copy {
    gap: 16px;
  }

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

  .hero-copy p {
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-proof span {
    padding: 7px 10px;
  }

  .hero-media {
    width: min(100%, 560px);
  }
}

.landing-section {
  padding: 72px 0;
}

.feature-band,
.pricing-grid,
.dashboard-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-band article,
.pricing-grid article,
.brand-grid article,
.demo-grid article,
.preview-card {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.055);
}

.feature-band strong {
  color: #ff7a00;
}

.feature-band h2,
.split-section h2,
.pricing-section h2,
.preview-card strong {
  margin-top: 10px;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1;
}

.feature-band p,
.pricing-grid p {
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.55;
}

.brand-story {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  align-items: start;
}

.brand-story h2,
.demo-section h2 {
  margin-top: 10px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.96;
}

.brand-grid,
.demo-grid {
  display: grid;
  gap: 14px;
}

.brand-grid article,
.demo-grid article {
  display: grid;
  gap: 8px;
}

.brand-grid strong,
.demo-grid strong {
  color: #fff;
  font-size: 1.25rem;
}

.brand-grid p,
.demo-section p,
.demo-grid p {
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.55;
}

.demo-section {
  display: grid;
  gap: 22px;
}

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

.demo-grid span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #ff7a00);
  color: #060606;
  font-weight: 950;
}

.demo-grid article {
  background:
    linear-gradient(135deg, rgba(255, 122, 0, 0.08), rgba(34, 197, 94, 0.06)),
    rgba(255, 255, 255, 0.055);
}

.split-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: start;
}

.steps {
  display: grid;
  gap: 12px;
}

.steps span {
  border-left: 3px solid #ff7a00;
  border-radius: 8px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 750;
}

.dashboard-preview {
  grid-template-columns: 0.85fr 1.15fr;
}

.preview-card {
  display: grid;
  gap: 12px;
}

.preview-card small {
  color: #ff7a00;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 900;
}

.preview-ticket {
  color: #ff7a00;
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 0.9;
  font-weight: 950;
}

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

.mini-table-grid span {
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 122, 0, 0.12);
  color: rgba(255, 255, 255, 0.72);
}

.mini-table-grid b {
  color: #fff;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.pricing-grid article strong {
  display: block;
  margin: 10px 0;
  font-size: 1.6rem;
}

.single-offer {
  display: grid;
  justify-items: center;
}

.offer-card {
  display: grid;
  width: min(920px, 100%);
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: 24px;
  align-items: center;
  border: 1px solid rgba(255, 122, 0, 0.34);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 38px);
  background:
    linear-gradient(135deg, rgba(255, 122, 0, 0.18), rgba(34, 197, 94, 0.08)),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.offer-card h3 {
  margin: 8px 0 12px;
  color: #fff;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.95;
}

.offer-card strong {
  display: block;
  color: #22c55e;
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  line-height: 1;
}

.offer-card span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.5;
}

.offer-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.offer-card li {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 720;
}

.offer-card .landing-button {
  grid-column: 1 / -1;
  width: fit-content;
}

.featured-plan {
  border-color: rgba(255, 122, 0, 0.58) !important;
  background: rgba(255, 122, 0, 0.1) !important;
}

.final-cta {
  display: grid;
  gap: 18px;
  padding-bottom: 96px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 18px;
  background: #22c55e;
  color: #041007;
  box-shadow: 0 18px 44px rgba(34, 197, 94, 0.28);
  font-weight: 950;
  animation: whatsappPulse 1.35s ease-in-out infinite;
}

.floating-whatsapp::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border-radius: 999px;
  background: currentColor;
}

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

@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow:
      0 18px 44px rgba(34, 197, 94, 0.28),
      0 0 0 0 rgba(34, 197, 94, 0.42);
    filter: brightness(1);
  }

  50% {
    box-shadow:
      0 20px 52px rgba(34, 197, 94, 0.46),
      0 0 0 9px rgba(34, 197, 94, 0);
    filter: brightness(1.12);
  }
}

.trial-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.trial-section h2 {
  margin-top: 10px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.96;
}

.trial-form,
.owner-form {
  display: grid;
  gap: 14px;
}

.trial-form {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.07);
}

.trial-form label {
  color: rgba(255, 255, 255, 0.78);
}

.trial-form input {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.34);
  color: #fff;
}

.trial-message {
  min-height: 22px;
  color: #ffb25f;
  font-weight: 750;
}

.owner-shell {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  padding: 26px 0 46px;
  color: #f8fafc;
}

html:has(.owner-shell:not([hidden])) body,
html:has(.access-shell:not([hidden])) body {
  background: #030405;
}

.access-shell {
  width: min(1040px, calc(100% - 28px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 26px 0 46px;
  color: #f8fafc;
}

.access-hero {
  min-height: 260px;
  display: grid;
  align-content: end;
  gap: 14px;
  border-radius: 8px;
  padding: clamp(22px, 5vw, 36px);
  margin-bottom: 18px;
  background:
    linear-gradient(90deg, rgba(3, 4, 5, 0.94), rgba(255, 122, 0, 0.2)),
    url("assets/fila-ai-symbol-outline.png") right center/contain no-repeat;
}

.access-hero .nav-brand-mark {
  width: min(168px, 52vw);
}

.access-hero h1 {
  max-width: 680px;
  font-size: clamp(2.4rem, 7vw, 5.4rem);
  line-height: 0.95;
}

.access-hero p:not(.landing-eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

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

.single-access-grid {
  grid-template-columns: minmax(0, 520px);
  justify-content: center;
}

.single-access-card {
  min-height: 360px;
  align-content: center;
}

.access-card {
  border-color: rgba(255, 255, 255, 0.1);
  background: #0b0f12;
  color: #f8fafc;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.access-card h2 {
  color: #fff;
}

.access-card label,
.access-card .muted {
  color: rgba(255, 255, 255, 0.68);
}

.access-card #accessMessage {
  min-height: 22px;
  border-radius: 8px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #f8fafc;
}

.access-card input {
  border-color: rgba(15, 23, 42, 0.16);
  background: #fff;
  color: #050505;
}

.access-card input::placeholder {
  color: rgba(5, 5, 5, 0.58);
}

.password-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.password-field input {
  min-width: 0;
}

.password-field button {
  min-height: 50px;
  border: 1px solid rgba(15, 23, 42, 0.16);
  border-radius: 8px;
  padding: 0 14px;
  background: #fff;
  color: #050505;
  font-size: 0.86rem;
  font-weight: 850;
}

.remember-row {
  display: flex;
  min-height: 34px;
  align-items: center;
  gap: 10px;
  color: #f8fafc;
  font-size: 0.9rem;
  font-weight: 750;
}

.access-card .remember-row input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  min-height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: #111827;
  accent-color: #22c55e;
}

.access-card .primary {
  background: linear-gradient(135deg, #f59e0b, #22c55e);
  color: #050505;
  box-shadow: 0 14px 32px rgba(245, 158, 11, 0.18);
}

.activation-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 122, 0, 0.07), transparent 40%),
    #030405;
  color: #fff;
}

.activation-card {
  width: min(620px, 100%);
  display: grid;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: clamp(20px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

.activation-card > img {
  width: min(180px, 52vw);
  border-radius: 8px;
  background: #fbf7ef;
}

.activation-card h1 {
  font-size: clamp(2.2rem, 8vw, 4.8rem);
}

.activation-card > p:not(.landing-eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.activation-result {
  display: grid;
  gap: 10px;
  border-radius: 8px;
  padding: 16px;
  background: rgba(34, 197, 94, 0.12);
}

.activation-result strong {
  font-size: 1.4rem;
}

.activation-result a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 14px;
  background: linear-gradient(135deg, #22c55e, #84cc16);
  color: #041007;
  font-weight: 900;
}

.owner-hero {
  min-height: 240px;
  display: flex;
  align-items: end;
  border-radius: 8px;
  padding: 28px;
  margin-bottom: 18px;
  background:
    linear-gradient(90deg, rgba(3, 4, 5, 0.92), rgba(255, 122, 0, 0.26)),
    url("assets/fila-ai-logo-white.png") center/cover;
}

.owner-hero h1 {
  font-size: clamp(2.5rem, 7vw, 6rem);
}

.owner-hero p:not(.landing-eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.55;
}

.owner-dashboard {
  display: grid;
  gap: 18px;
}

.owner-dashboard > .section-title {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.12), rgba(34, 197, 94, 0.08));
}

.owner-dashboard > .section-title h2 {
  color: #fff;
}

.owner-shell .panel {
  border-color: rgba(255, 255, 255, 0.1);
  background: #0b0f12;
  color: #f8fafc;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.owner-shell .panel h2 {
  color: #fff;
}

.owner-shell .panel label,
.owner-shell .muted {
  color: rgba(255, 255, 255, 0.68);
}

.owner-shell input,
.owner-shell select {
  border-color: rgba(255, 255, 255, 0.12);
  background: #111827;
  color: #fff;
}

.owner-shell .primary {
  background: linear-gradient(135deg, #f59e0b, #22c55e);
  color: #050505;
  box-shadow: 0 14px 32px rgba(245, 158, 11, 0.18);
}

.owner-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
}

.owner-list {
  display: grid;
  gap: 10px;
}

.owner-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 14px;
  background: #070a0d;
}

.owner-item strong,
.owner-item span,
.owner-item small {
  display: block;
}

.owner-item span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
}

.owner-item small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
}

.owner-actions,
.link-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: end;
}

.owner-actions button,
.link-stack button,
.link-stack a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 11px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 850;
}

.link-stack a:first-child {
  background: #f59e0b;
  color: #050505;
}

.link-stack a:nth-child(2) {
  background: #22c55e;
  color: #041007;
}

.access-actions,
.owner-session-actions,
.admin-session-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.owner-session-actions,
.admin-session-actions {
  justify-content: flex-end;
}

.owner-shell .ghost-link {
  border-color: rgba(245, 158, 11, 0.56);
  background: #f59e0b;
  color: #050505;
  box-shadow: 0 12px 26px rgba(245, 158, 11, 0.18);
}

.owner-shell .ghost-link:hover {
  border-color: rgba(34, 197, 94, 0.62);
  background: #22c55e;
  color: #041007;
}

.owner-shell .ghost {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.owner-shell .ghost:hover {
  border-color: rgba(245, 158, 11, 0.56);
  background: rgba(245, 158, 11, 0.16);
  color: #fff;
}

.owner-crm-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 8px;
  background: #070a0d;
}

.owner-crm-tab {
  min-height: 40px;
  border-radius: 8px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.74);
  font-weight: 900;
}

.owner-crm-tab.is-active {
  background: linear-gradient(135deg, #f59e0b, #22c55e);
  color: #050505;
}

.owner-dashboard > .owner-tab-panel {
  display: none;
}

.owner-dashboard > .owner-tab-panel.is-active {
  display: grid;
  gap: 18px;
}

.owner-prospect-panel {
  overflow: hidden;
}

.prospect-title {
  margin-bottom: 14px;
  border: 0;
  padding: 0;
  background: transparent;
}

.prospect-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.prospect-summary div {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px;
  background: #070a0d;
}

.prospect-summary strong,
.prospect-summary span {
  display: block;
}

.prospect-summary strong {
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
}

.prospect-summary span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.prospect-toolbar {
  display: grid;
  grid-template-columns: minmax(150px, 0.6fr) minmax(170px, 0.7fr) minmax(220px, 1.4fr);
  gap: 10px;
  margin-bottom: 14px;
}

.prospect-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: #070a0d;
}

.prospect-table {
  width: 100%;
  min-width: 1060px;
  border-collapse: collapse;
}

.prospect-table th,
.prospect-table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px;
  text-align: left;
  vertical-align: top;
}

.prospect-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #101820;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.prospect-table td {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.prospect-table tr:last-child td {
  border-bottom: 0;
}

.prospect-table strong,
.prospect-table span,
.prospect-table small {
  display: block;
}

.prospect-table td > strong {
  color: #fff;
}

.prospect-table span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.56);
}

.priority-chip {
  width: fit-content;
  margin-top: 8px;
  border-radius: 999px;
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-weight: 900;
}

.priority-chip.is-hot {
  background: rgba(245, 158, 11, 0.16);
  color: #fbbf24;
}

.prospect-table textarea {
  width: 100%;
  min-width: 190px;
  margin-top: 8px;
  resize: vertical;
}

.prospect-actions {
  display: grid;
  gap: 8px;
  min-width: 116px;
}

.prospect-actions a,
.prospect-actions button {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
}

.prospect-actions a:first-child {
  background: #22c55e;
  color: #041007;
}

.prospect-actions a:nth-child(2) {
  background: #f59e0b;
  color: #050505;
}

.prospect-empty {
  padding: 18px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

.app-shell {
  width: min(1120px, calc(100% - 28px));
  margin: 0 auto;
  padding: 24px 0 40px;
}

html[data-access-mode="admin"] .app-shell {
  width: min(1040px, calc(100% - 28px));
}

.topbar {
  display: flex;
  min-height: 190px;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 32px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(3, 7, 18, 0.92), rgba(3, 7, 18, 0.42), var(--hero-accent)),
    var(--company-cover) center/cover;
  box-shadow: var(--shadow);
}

html[data-access-mode="fila"] .app-shell {
  width: min(760px, calc(100% - 24px));
  padding-top: 14px;
}

html[data-access-mode="fila"] .topbar {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  padding: 34px 18px 22px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(3, 7, 18, 0.38), rgba(3, 7, 18, 0.92)),
    var(--company-cover) center/cover;
}

html[data-access-mode="fila"] .brand-heading {
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

html[data-access-mode="fila"] .brand-heading > div {
  width: 100%;
  display: grid;
  justify-items: center;
}

html[data-access-mode="fila"] .company-logo {
  width: 112px;
  height: 112px;
  border: 4px solid rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  background: #fff;
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.34),
    0 0 0 8px rgba(34, 197, 94, 0.18);
}

html[data-access-mode="fila"] .topbar h1 {
  max-width: 680px;
  font-size: clamp(2rem, 8vw, 4rem);
  line-height: 0.95;
  text-align: center;
}

html[data-access-mode="fila"] .topbar .eyebrow {
  margin-bottom: 8px;
  color: #86efac;
}

html[data-access-mode="fila"] .stats {
  width: min(100%, 430px);
  margin-inline: auto;
  justify-content: center;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

html[data-access-mode="fila"] .stats div {
  min-width: 0;
  flex: 1;
  border: 0;
  border-radius: 0;
  background: transparent;
}

html[data-access-mode="fila"] .stats div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

html[data-access-mode="fila"] .layout {
  grid-template-columns: 1fr;
}

html[data-access-mode="fila"] .primary,
html[data-access-mode="fila"] .tab.is-active {
  background: linear-gradient(135deg, #22c55e, #84cc16);
  color: #041007;
  box-shadow:
    0 12px 28px rgba(34, 197, 94, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

html[data-access-mode="fila"] .panel {
  border-color: rgba(34, 197, 94, 0.18);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

html[data-access-mode="fila"] .ticket-panel.is-waiting {
  background:
    linear-gradient(135deg, rgba(34, 197, 94, 0.16), rgba(132, 204, 22, 0.08)),
    var(--panel);
}

html[data-access-mode="admin"] .topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 92px;
  align-items: center;
  margin-bottom: 16px;
  padding: 16px 18px;
  border-radius: 0 0 8px 8px;
  color: #111827;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.88)),
    var(--company-cover) center/cover;
  box-shadow: 0 14px 38px rgba(17, 24, 39, 0.12);
}

html[data-access-mode="admin"] .topbar .stats {
  display: none;
}

html[data-access-mode="admin"] .topbar .eyebrow {
  color: #ff7a00;
}

html[data-access-mode="admin"] .topbar h1 {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1;
}

html[data-access-mode="admin"] .company-logo {
  width: 58px;
  height: 58px;
  border-color: rgba(17, 24, 39, 0.12);
}

.brand-heading {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 16px;
}

.company-logo {
  width: 78px;
  height: 78px;
  flex: 0 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
}

.brand-heading h1 {
  overflow-wrap: anywhere;
}

.eyebrow {
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.stats {
  display: flex;
  gap: 12px;
}

.stats div {
  min-width: 104px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}

.stats span {
  display: block;
  font-size: 1.45rem;
  font-weight: 850;
}

.stats small {
  color: rgba(255, 255, 255, 0.82);
}

.tabs {
  display: flex;
  gap: 8px;
  margin: 18px 0;
}

.tab {
  flex: 0 0 auto;
}

.tab.is-active {
  background: var(--brand);
  color: #fff;
}

.view {
  display: none;
}

.view.is-active {
  display: block;
}

.layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 18px;
  align-items: start;
}

.panel {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: var(--panel);
  box-shadow: 0 10px 28px rgba(23, 33, 31, 0.08);
}

.panel.access-card {
  border-color: rgba(15, 23, 42, 0.14);
  background: #ffffff;
  color: #050505;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.panel.access-card h2,
.panel.access-card label,
.panel.access-card .remember-row,
.panel.access-card .ghost-link,
.panel.access-card #accessMessage {
  color: #050505;
}

.panel.access-card #accessMessage {
  min-height: 24px;
  background: #f1f5f9;
  border: 1px solid #d7e0ea;
}

.panel.access-card .remember-row input {
  border-color: #64748b;
  background: #ffffff;
}

.compact {
  width: min(420px, 100%);
}

.primary {
  background: var(--brand);
  color: #fff;
  font-weight: 800;
}

.success {
  background: var(--success);
  color: #fff;
  font-weight: 800;
}

.success.is-ready {
  animation: readyPulse 1s ease-in-out infinite;
}

.danger {
  background: var(--danger);
  color: #fff;
  font-weight: 800;
}

.ghost {
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--ink);
}

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

.ticket-panel.is-called {
  border-color: #5fd28b;
  background: var(--success-soft);
}

.ticket-panel.is-waiting {
  border-color: var(--brand);
  background: var(--brand-soft);
}

.panel.is-closed {
  opacity: 0.68;
}

.ticket-number {
  font-size: 3rem;
  line-height: 1;
  font-weight: 900;
}

.called-note {
  border-radius: 8px;
  padding: 12px;
  background: rgba(34, 197, 94, 0.16);
  color: var(--success);
  font-weight: 850;
}

.ticket-panel.is-waiting .ticket-number,
.ticket-panel.is-waiting .wait-metric strong {
  color: var(--brand);
}

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

.metric {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: var(--brand-soft);
}

.metric strong {
  display: block;
  font-size: 1.35rem;
}

.metric span {
  color: var(--muted);
  font-size: 0.78rem;
}

.called-banner {
  display: flex;
  position: sticky;
  top: 12px;
  z-index: 10;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  padding: 18px 20px;
  background: var(--success);
  color: #fff;
  box-shadow: var(--shadow);
}

.called-banner:not([hidden]) {
  animation: calledShake 0.8s ease-in-out infinite;
}

.called-banner strong {
  display: block;
  margin-top: 3px;
  font-size: 1.8rem;
}

@keyframes calledShake {
  0%,
  100% {
    transform: translateX(0) scale(1);
  }

  25% {
    transform: translateX(-4px) scale(1.01);
  }

  50% {
    transform: translateX(4px) scale(1.01);
  }

  75% {
    transform: translateX(-2px) scale(1.01);
  }
}

@keyframes readyPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: none;
  }

  50% {
    transform: scale(1.02);
    box-shadow: 0 0 0 4px var(--success-soft);
  }
}

.queue-section {
  margin-top: 18px;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.queue-list,
.admin-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.queue-item,
.admin-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: var(--panel);
}

.queue-item.is-called,
.admin-item.is-called {
  border-color: #5fd28b;
  background: var(--success-soft);
}

.place {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-weight: 900;
}

.person strong {
  display: block;
}

.person span,
.time-chip {
  color: var(--muted);
  font-size: 0.86rem;
}

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

.admin-shell {
  display: grid;
  gap: 16px;
}

.admin-session-bar {
  display: flex;
  width: min(100%, 980px);
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  justify-self: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  background: #fff;
  color: #17211f;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08);
}

.admin-session-bar span {
  color: #66736f;
  font-size: 0.86rem;
  font-weight: 850;
}

.admin-tabs {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 6px;
  background: var(--panel);
  overflow-x: auto;
}

html[data-access-mode="admin"] .admin-tabs {
  position: sticky;
  top: 106px;
  z-index: 18;
  width: 100%;
  justify-content: center;
  box-shadow: 0 12px 26px rgba(17, 24, 39, 0.08);
}

html[data-access-mode="admin"] .admin-workspace {
  justify-items: center;
}

html[data-access-mode="admin"] .admin-tab-panel,
html[data-access-mode="admin"] #adminQueuePanel.is-active {
  width: min(100%, 980px);
}

.admin-tab {
  min-width: 124px;
  background: transparent;
  font-weight: 800;
}

.admin-tab.is-active {
  background: var(--brand);
  color: #fff;
}

.admin-workspace {
  display: grid;
}

.admin-tab-panel {
  display: none;
}

.admin-tab-panel.is-active {
  display: grid;
}

.config-panel {
  max-width: 760px;
}

#adminQueuePanel.is-active {
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 18px;
}

.admin-queue-controls,
.admin-queue-list {
  display: grid;
  gap: 16px;
  align-content: start;
}

.admin-queue-list {
  min-width: 0;
}

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

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

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

.table-card {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--brand-soft);
}

.table-card.is-ready {
  border-color: var(--success);
  background: var(--success-soft);
}

.table-card strong {
  font-size: 1.05rem;
}

.availability {
  font-size: 1.8rem;
  font-weight: 800;
}

.table-card small {
  color: var(--muted);
}

.table-card em {
  color: var(--success);
  font-style: normal;
  font-weight: 850;
}

.table-people {
  display: flex;
  min-height: 28px;
  align-items: center;
  gap: 5px;
}

.table-people span {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 10px 18px rgba(13, 110, 253, 0.18);
}

.table-people b {
  color: var(--brand);
  font-size: 1.1rem;
}

.table-stepper {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 8px;
  align-items: center;
}

.table-stepper span {
  color: var(--muted);
  text-align: center;
  font-size: 0.86rem;
  font-weight: 750;
}

.table-stepper button {
  min-height: 40px;
  padding: 0;
  font-size: 1.4rem;
  font-weight: 900;
}

.ready-chip {
  border-radius: 999px;
  padding: 7px 10px;
  background: var(--success-soft);
  color: var(--success);
  font-size: 0.8rem;
  font-weight: 850;
}

.manual-add {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--brand-soft);
}

.manual-add h3 {
  margin: 0;
  font-size: 1rem;
}

.pin-box,
.qr-panel,
.menu-admin-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
}

.pin-box {
  display: grid;
  gap: 12px;
  padding: 16px;
  background: var(--brand-soft);
}

.pin-box h3,
.qr-panel h3 {
  margin: 0;
}

.switch-row {
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: var(--panel);
  color: var(--ink);
  font-weight: 850;
}

.switch-row input {
  width: 20px;
  min-height: 20px;
  accent-color: var(--brand);
}

.client-menu-panel {
  margin-top: 16px;
}

.client-menu-button {
  display: grid;
  gap: 3px;
  border: 1px solid rgba(34, 197, 94, 0.44);
  border-radius: 8px;
  padding: 16px 18px;
  background: linear-gradient(135deg, #22c55e, #84cc16);
  color: #041007;
  text-align: center;
  box-shadow: 0 18px 42px rgba(34, 197, 94, 0.26);
}

.client-menu-button span {
  font-size: 1.1rem;
  font-weight: 950;
}

.client-menu-button small {
  color: rgba(4, 16, 7, 0.76);
  font-weight: 780;
}

.qr-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 168px;
  gap: 18px;
  align-items: center;
  padding: 16px;
  background: var(--brand-soft);
}

.qr-panel img {
  width: 168px;
  height: 168px;
  border: 8px solid #fff;
  border-radius: 8px;
  background: #fff;
}

.qr-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.ghost-link,
.support-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 14px;
  font-weight: 850;
}

.ghost-link {
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--ink);
}

html[data-access-mode="admin"] .ghost,
html[data-access-mode="admin"] .ghost-link {
  border-color: #cbd5e1;
  background: #ffffff;
  color: #17211f;
}

html[data-access-mode="admin"] .ghost:hover,
html[data-access-mode="admin"] .ghost-link:hover {
  border-color: var(--brand);
  background: var(--brand-soft);
  color: var(--brand-dark);
}

html[data-access-mode="admin"] .admin-tab {
  color: #17211f;
}

html[data-access-mode="admin"] .admin-tab.is-active {
  color: #fff;
}

.support-button {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #041007;
  box-shadow: 0 16px 34px rgba(34, 197, 94, 0.24);
}

.billing-panel {
  width: min(100%, 980px);
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  align-items: end;
  background:
    linear-gradient(135deg, rgba(13, 110, 253, 0.08), transparent),
    var(--panel);
}

.billing-form {
  display: grid;
  gap: 10px;
}

.mini-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: end;
}

.mini-actions button {
  min-height: 36px;
  padding: 0 10px;
  font-size: 0.85rem;
}

@media (max-width: 760px) {
  .landing-shell {
    padding-top: 86px;
  }

  .landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(3, 4, 5, 0.9);
    backdrop-filter: blur(16px);
  }

  .nav-brand-mark {
    width: min(116px, 38vw);
  }

  .landing-nav div {
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
  }

  .landing-hero,
  .feature-band,
  .split-section,
  .dashboard-preview,
  .pricing-grid,
  .offer-card,
  .brand-story,
  .trial-section,
  .access-grid,
  .owner-grid,
  .prospect-summary,
  .prospect-toolbar,
  .demo-grid,
  .mini-table-grid {
    grid-template-columns: 1fr;
  }

  .access-hero {
    min-height: 220px;
    background:
      linear-gradient(180deg, rgba(3, 4, 5, 0.84), rgba(3, 4, 5, 0.96)),
      url("assets/fila-ai-symbol-outline.png") center 24px/168px auto no-repeat;
    padding-top: 180px;
    text-align: center;
  }

  .access-hero .nav-brand-mark {
    justify-self: center;
  }

  .landing-hero {
    min-height: auto;
    overflow: hidden;
    padding-top: 14px;
  }

  .hero-copy {
    justify-items: center;
    gap: 16px;
    text-align: center;
  }

  .mobile-hero-symbol {
    display: block;
    width: min(58vw, 218px);
    max-height: 27svh;
    height: auto;
    margin: 0 auto 4px;
    object-fit: contain;
    object-position: center;
    filter:
      drop-shadow(0 18px 28px rgba(0, 0, 0, 0.5))
      drop-shadow(0 0 2px rgba(255, 255, 255, 0.72))
      drop-shadow(0 0 16px rgba(255, 122, 0, 0.28));
  }

  .landing-hero .hero-media {
    display: none;
  }

  .hero-copy h1,
  .final-cta h2 {
    font-size: clamp(2.1rem, 12vw, 2.7rem);
    line-height: 1;
  }

  .topbar,
  .called-banner,
  .section-title {
    align-items: stretch;
    flex-direction: column;
  }

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

  html[data-access-mode="admin"] .brand-heading {
    align-items: center;
    flex-direction: row;
  }

  .company-logo {
    width: 68px;
    height: 68px;
  }

  html[data-access-mode="fila"] .topbar {
    min-height: 280px;
    padding: 28px 14px 18px;
  }

  html[data-access-mode="fila"] .company-logo {
    width: 96px;
    height: 96px;
  }

  html[data-access-mode="fila"] .brand-heading {
    align-items: center;
  }

  html[data-access-mode="fila"] .stats {
    display: flex;
  }

  html[data-access-mode="admin"] .company-logo {
    width: 48px;
    height: 48px;
  }

  html[data-access-mode="admin"] .topbar {
    min-height: 78px;
    padding: 12px;
  }

  html[data-access-mode="admin"] .admin-tabs {
    top: 84px;
    justify-content: flex-start;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    min-height: 48px;
    padding: 0 14px;
    font-size: 0.9rem;
  }

  .stats,
  .layout,
  .billing-panel,
  .qr-panel,
  #adminQueuePanel.is-active,
  .ticket-grid,
  .admin-actions,
  .config-grid,
  .brand-config,
  .table-status {
    grid-template-columns: 1fr;
  }

  .offer-card .landing-button {
    width: 100%;
  }

  .qr-panel img {
    justify-self: center;
  }

  .admin-tabs {
    width: 100%;
  }

  .admin-session-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-session-bar span {
    text-align: center;
  }

  .admin-session-actions {
    justify-content: center;
  }

  .admin-tab {
    flex: 1 0 auto;
  }

  .stats {
    display: grid;
  }

  .queue-item,
  .admin-item {
    grid-template-columns: auto 1fr;
  }

  .time-chip,
  .mini-actions,
  .owner-actions,
  .link-stack {
    grid-column: 1 / -1;
  }

  .owner-item {
    grid-template-columns: 1fr;
  }

  html[data-access-mode="fila"] .topbar {
    align-items: center;
    justify-items: center;
    text-align: center;
  }

  html[data-access-mode="fila"] .brand-heading {
    width: 100%;
    align-items: center;
    text-align: center;
  }

  html[data-access-mode="fila"] .brand-heading > div {
    width: 100%;
  }

  html[data-access-mode="fila"] .stats {
    display: flex;
    width: min(100%, 360px);
    grid-template-columns: none;
  }
}
