@font-face {
  font-family: "Turret Road";
  src: url("./assets/TurretRoad-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Turret Road";
  src: url("./assets/TurretRoad-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Saira Condensed";
  src: url("./assets/SairaCondensed-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("./assets/Lato-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("./assets/Lato-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "CrimsonPro-Light";
  src: url("./assets/CrimsonPro-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ShareTech-Regular";
  src: url("./assets/ShareTech-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-primary: #2e9b4b;
  --color-primary-dark: #23773a;
  --color-bg: #eef2ef;
  --color-surface: #ffffff;
  --color-surface-alt: #f2f5f3;
  --color-accent: #7a1f3d;
  --color-accent-soft: #f7eff3;
  --color-text: #1f2937;
  --color-text-muted: #6b7280;
  --color-border: #e5e7eb;
  --color-dark-900: #15111a;
  --color-dark-800: #201728;
  --color-dark-700: #2a1d33;
  --color-dark-border: #4a3b56;
  --color-text-light: #edf1ef;
  --color-text-light-muted: #bdc7c2;
  --color-about-heading: #000000;

  --font-heading: "Saira Condensed", "Lato", sans-serif;
  --font-body: "Lato", "System UI", sans-serif;
  --font-wordmark: "Turret Road", "Saira Condensed", sans-serif;

  --section-space: 80px;
  --container-pad: 24px;
  --container-max: 1120px;

  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 999px;
  --shadow-soft: 0 10px 28px rgba(31, 41, 55, 0.12);
  --shadow-card: 0 16px 36px rgba(31, 41, 55, 0.13);
  --shadow-hero: 0 26px 64px rgba(31, 41, 55, 0.2);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background: linear-gradient(180deg, #f6f8f6 0%, var(--color-bg) 100%);
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.6;
}

button,
input {
  font: inherit;
}

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.section-spacing {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.home-page .hero {
  padding-top: 28px;
  padding-bottom: 56px;
}

.home-page main > .section-spacing:not(.hero):not(.cta-wrap) {
  padding-top: 52px;
  padding-bottom: 52px;
}

.home-page .section-heading {
  margin-bottom: 24px;
}

.home-page .cta-wrap {
  padding-top: 48px;
  padding-bottom: 48px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #000000;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(7, 10, 15, 0.28);
}

.brand-text-wrap {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
}

.brand-text {
  color: var(--color-text-light);
}

.brand-wordmark {
  font-family: var(--font-wordmark);
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.01em;
}

.main-nav {
  display: inline-flex;
  gap: 24px;
  flex-wrap: wrap;
}

.main-nav a {
  color: #c8d0cb;
  font-weight: 500;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1.5px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover {
  color: #ffffff;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding-top: calc(var(--section-space) + 8px);
}

.bg-hero-image {
  background-image:
    radial-gradient(circle at 18% 22%, rgba(255,255,255,0.10), transparent 22%),
    linear-gradient(135deg, rgba(24, 8, 28, 0.70), rgba(11, 14, 34, 0.82)),
    url("./assets/hero_background.png");
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
}

.bg-light-plum {
  background-color: #e7dbf0;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.06)),
    url("./assets/background_light.png?v=2");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bg-dark-plum-indigo {
  background-color: #0f1021;
  background-image:
    linear-gradient(180deg, rgba(6, 8, 16, 0.12), rgba(6, 8, 16, 0.12)),
    url("./assets/background_dark.png?v=2");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bg-neutral-soft {
  background: #f7f3fb;
}

.hero-accent {
  display: none;
}

.hero-accent-secondary {
  display: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 34px;
}

.home-page .hero-copy {
  align-self: center;
  padding-top: 0;
}

.pricing-page .pricing-hero-copy {
  align-self: start;
  padding-top: 4px;
}

.about-main {
  min-height: calc(100vh - 80px);
}

.about-page .site-footer {
  background: transparent;
  border-top-color: rgba(255, 255, 255, 0.18);
}

.about-page .footer-inner p,
.about-page .footer-inner nav a {
  color: #c4cec8;
}

.about-page .footer-inner nav a:hover {
  color: #ffffff;
}

.about-main .section-spacing:first-child {
  padding-top: 40px;
  padding-bottom: 16px;
}

.about-content-card {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  border-radius: var(--radius-md);
  padding: 34px;
}

.about-content-card h2 {
  font-size: clamp(1.6rem, 2.1vw, 2.2rem);
  line-height: 1.2;
  margin-bottom: 16px;
  color: #f4f7f6;
}

.about-content-card p {
  margin: 0 0 14px;
  color: #c4cec8;
  font-size: 1.12rem;
  line-height: 1.72;
}

.about-content-card .lead {
  max-width: none;
}

.about-content-card .eyebrow {
  font-family: "ShareTech-Regular", "Lato", sans-serif;
  color: #f4f7f6;
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.about-bullets {
  margin: 0 0 18px;
  padding-left: 20px;
  color: #c4cec8;
  font-size: 1.12rem;
  line-height: 1.72;
}

.about-bullets li {
  margin-bottom: 10px;
}

.about-bullets strong {
  color: #f4f7f6;
}

.about-contact-panel {
  text-align: left;
}

.about-contact-panel p {
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}

.cta-panel.about-contact-panel p {
  max-width: none;
  width: 100%;
}

.about-contact-panel .support-email {
  color: #f4f7f6;
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 16px;
  overflow-wrap: anywhere;
}

.about-main .cta-wrap {
  padding-top: 24px;
  padding-bottom: 32px;
}

.about-divider {
  border: 0;
  border-top: 1px solid rgba(116, 94, 131, 0.76);
  margin: 18px 0;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.help-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.help-card {
  background: #ffffff;
  border: 1px solid #d5e0da;
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: 0 12px 26px rgba(21, 29, 33, 0.15);
}

.help-card h3 {
  color: #36042a;
  font-size: 1.18rem;
  margin-bottom: 8px;
}

.help-card p {
  margin: 0;
  color: #243342;
  font-size: 1.01rem;
  line-height: 1.62;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-heading);
  color: var(--color-text);
}

.hero-copy h1 {
  font-size: clamp(2.15rem, 3.35vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  max-width: 18ch;
  color: var(--color-text-light);
}

.hero-brand-mark {
  display: block;
  width: clamp(118px, 13vw, 162px);
  height: auto;
  margin: 0 0 14px;
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(7, 10, 15, 0.34);
}

.lead {
  margin-top: 18px;
  color: var(--color-text-light-muted);
  max-width: 56ch;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d6abc0;
  font-weight: 700;
}

.hero .eyebrow {
  color: #050505;
  text-shadow: none;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-weight: 600;
  padding: 12px 19px;
  line-height: 1;
}

.btn-primary {
  background: linear-gradient(180deg, #35ab54, var(--color-primary));
  color: #fff;
  box-shadow: 0 14px 30px rgba(46, 155, 75, 0.32);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #2fa24f, var(--color-primary-dark));
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #f4f7f5;
  border-color: rgba(233, 240, 236, 0.35);
}

.hero-panel {
  background: linear-gradient(180deg, #2f3944 0%, #252f39 100%);
  border: 1px solid #505f6d;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: 0 30px 70px rgba(5, 8, 12, 0.44);
}

.hero-panel-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}

.panel-kicker {
  margin: 0;
  font-size: 0.76rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #ccd6df;
  font-weight: 600;
}

.panel-status {
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(46, 155, 75, 0.28);
  color: #d9f5e1;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-panel h2 {
  font-size: 1.28rem;
  margin-bottom: 14px;
  color: #f3f7fa;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.hero-metrics p {
  margin: 0;
  padding: 11px 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  border: 1px solid #647587;
  color: #d6e0e9;
  font-size: 0.82rem;
}

.hero-metrics strong {
  color: #ffffff;
  margin-right: 5px;
}

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

.hero-panel li {
  border: 1px solid #8d99a6;
  border-radius: 11px;
  padding: 14px 13px;
  background: linear-gradient(180deg, #b3bcc6 0%, #a5afbb 100%);
}

.hero-panel li span {
  display: inline-block;
  font-size: 0.77rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #4d2f3b;
  margin-bottom: 4px;
}

.hero-panel li p {
  margin: 0;
  color: #1b2732;
  line-height: 1.45;
  font-size: 0.92rem;
}

.hero-carousel {
  padding: 18px;
}

.hero-carousel-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.hero-carousel-top h2 {
  margin-bottom: 0;
}

.hero-carousel-status {
  flex-shrink: 0;
  margin-top: 4px;
}

.hero-carousel-viewport {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(120, 136, 152, 0.72);
  background: #121923;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 320ms ease, transform 700ms ease;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-carousel-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
}

.hero-carousel-copy {
  min-width: 0;
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero-carousel-zone,
.hero-carousel-caption {
  margin: 0;
}

.hero-carousel-zone {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: #d6abc0;
  margin-bottom: 6px;
}

.hero-carousel-caption {
  color: #d6e0e9;
  line-height: 1.5;
  font-size: 0.95rem;
  max-width: 42ch;
}

.hero-carousel-controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.hero-carousel-toggle {
  min-width: 74px;
  padding-left: 14px;
  padding-right: 14px;
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-carousel-button,
.hero-carousel-dot {
  border: 0;
  cursor: pointer;
}

.hero-carousel-button {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #f3f7fa;
  border: 1px solid rgba(206, 216, 226, 0.34);
  font-size: 1rem;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.hero-carousel-button:hover,
.hero-carousel-button:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(233, 240, 236, 0.68);
  transform: translateY(-1px);
}

.hero-carousel-button:focus-visible,
.hero-carousel-dot:focus-visible {
  outline: 2px solid #8ad3ff;
  outline-offset: 2px;
}

.hero-carousel-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.hero-carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  background: rgba(214, 224, 233, 0.28);
  transition: transform 180ms ease, background 180ms ease;
}

.hero-carousel-dot.is-active {
  background: #2f89ff;
  transform: scale(1.18);
}

.section-heading {
  margin-bottom: 32px;
  max-width: 66ch;
}

.section-heading h2 {
  font-size: clamp(1.6rem, 2.15vw, 2.2rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.section-heading p + h2 {
  margin-top: 2px;
}

.single-line-desktop {
  white-space: nowrap;
}

.bg-light-plum .section-heading h2,
.bg-neutral-soft .section-heading h2 {
  color: #131a24;
}

.bg-light-plum .section-heading .eyebrow {
  color: #ffffff;
}

.bg-neutral-soft .section-heading .eyebrow {
  color: #5d3b59;
}

.bg-dark-plum-indigo .section-heading h2 {
  color: #f1f5f9;
}

.bg-dark-plum-indigo .section-heading .eyebrow {
  color: #e1bfd1;
}

/* Reusable component contrast matrix by section background */
.bg-light-plum .card:not(.solution-card) h3,
.bg-neutral-soft .card:not(.solution-card) h3 {
  color: #16202b;
}

.bg-light-plum .card:not(.solution-card) p,
.bg-neutral-soft .card:not(.solution-card) p {
  color: #42505f;
}

.bg-dark-plum-indigo .card h3,
.bg-dark-plum-indigo .step-card h3 {
  color: #f4f7f6;
}

.bg-dark-plum-indigo .card p,
.bg-dark-plum-indigo .step-card p {
  color: #c4cec8;
}

.bg-dark-plum-indigo .shot-placeholder {
  background: linear-gradient(180deg, #f7fafc 0%, #eef3f7 100%);
  border: 1px dashed #8c9db0;
  color: #43515f;
}

.surface {
  background: var(--color-surface);
}

.surface-alt {
  background: var(--color-surface-alt);
}

.solutions-section {
  border-top: 1px solid #cab7de;
  border-bottom: 1px solid #cab7de;
}

.how-section {
  border-top: 1px solid #4f2a56;
  border-bottom: 1px solid #4f2a56;
}

.features-section {
  border-top: 1px solid #d7e1da;
  border-bottom: 1px solid #d7e1da;
}

.product-section {
  border-top: 1px solid #cab7de;
  border-bottom: 1px solid #cab7de;
}

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

.card,
.step-card {
  border: 1px solid #cfdad3;
  border-radius: var(--radius-md);
  padding: 26px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(21, 29, 33, 0.18);
}

.card h3,
.step-card h3 {
  font-size: 1.14rem;
  margin-bottom: 10px;
  line-height: 1.25;
}

.card p,
.step-card p {
  margin: 0;
  color: var(--color-text-muted);
}

/* Generic alternating card styles */
.card-style-a {
  box-shadow: var(--shadow-card);
  border-color: #5f6980;
  background: linear-gradient(180deg, #3a4453 0%, #2d3642 100%);
}

.card-style-a h3 {
  color: #f1f5f9;
}

.card-style-a p {
  color: #d4dde6;
}

.solution-card:nth-child(1) {
  border-top: 3px solid #7a1f3d;
}

.solution-card:nth-child(2) {
  border-top: 3px solid #2e9b4b;
}

.solution-card:nth-child(3) {
  border-top: 3px solid #5a6a7b;
}

.step-card {
  background: linear-gradient(180deg, #2b2034 0%, #231b2d 100%);
  border-color: rgba(116, 94, 131, 0.76);
  box-shadow: 0 18px 36px rgba(7, 8, 12, 0.4);
}

/* Generic alternating card style B (matches current How It Works visuals) */
.card-style-b {
  background: linear-gradient(180deg, #2b2034 0%, #231b2d 100%);
  border-color: rgba(116, 94, 131, 0.76);
  box-shadow: 0 18px 36px rgba(7, 8, 12, 0.4);
}

.card-style-b h3 {
  color: #f4f7f6;
}

.card-style-b p {
  color: #c4cec8;
}

.about-content-card.card p {
  margin: 0 0 14px;
  color: #c4cec8;
  font-size: 1.12rem;
  line-height: 1.72;
}

.about-content-card.card .lead {
  max-width: none;
}

.about-content-card.card p.eyebrow {
  font-family: "ShareTech-Regular", "Lato", sans-serif;
  margin-bottom: 10px;
  color: #f4f7f6;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: none;
}

/* Ensure shared style-b wins when combined with feature-card */
.feature-card.card-style-b {
  background: linear-gradient(180deg, #2b2034 0%, #231b2d 100%);
  border-color: rgba(116, 94, 131, 0.76);
  box-shadow: 0 18px 36px rgba(7, 8, 12, 0.4);
}

.feature-card.card-style-b h3 {
  color: #f4f7f6;
  padding-left: 0;
}

.feature-card.card-style-b h3::before {
  display: none;
}

.feature-card.card-style-b p {
  color: #c4cec8;
}

.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(222, 176, 196, 0.2);
  color: #f1d3df;
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}

.how-section .step-index {
  display: none;
}

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

.feature-card {
  background: linear-gradient(180deg, #ffffff 0%, #f6faf7 100%);
  border-color: #c1d0c5;
  box-shadow: 0 18px 38px rgba(25, 34, 40, 0.2);
}

.feature-card h3 {
  position: relative;
  padding-left: 16px;
}

.feature-card h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2e9b4b;
}

/* Ensure shared style wins over feature-card defaults */
.feature-card.card-style-a {
  box-shadow: var(--shadow-card);
  border-color: #5f6980;
  background: linear-gradient(180deg, #3a4453 0%, #2d3642 100%);
}

.feature-card.card-style-a h3 {
  color: #f1f5f9;
  padding-left: 0;
}

.feature-card.card-style-a h3::before {
  display: none;
}

.feature-card.card-style-a p {
  color: #d4dde6;
}

/* Override light-section typography matrix for dark shared cards */
.bg-light-plum .feature-card.card-style-a h3 {
  color: #f1f5f9;
}

.bg-light-plum .feature-card.card-style-a p {
  color: #d4dde6;
}

/* Mirror top accent treatment from the first 3-card section */
.features-section .feature-card.card-style-a:nth-child(1) {
  border-top: 3px solid #7a1f3d;
}

.features-section .feature-card.card-style-a:nth-child(2) {
  border-top: 3px solid #2e9b4b;
}

.features-section .feature-card.card-style-a:nth-child(3) {
  border-top: 3px solid #5a6a7b;
}

.features-section .feature-card.card-style-a:nth-child(4) {
  border-top: 3px solid #7a1f3d;
}


.screenshot-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
}

.shot-placeholder {
  min-height: 220px;
  background: linear-gradient(180deg, #f5f8f6 0%, #eff4f1 100%);
  border: 1px dashed #8e9ba8;
  border-radius: var(--radius-md);
  color: #5c6874;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.shot-placeholder.large {
  min-height: 458px;
  grid-row: span 2;
}

/* Power features cards: centered label treatment */
.power-features-section .feature-card {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 92px;
  padding: 14px 16px;
}

.power-features-section .feature-card h3 {
  margin-bottom: 0;
}

.cta-wrap {
  padding-top: 64px;
  padding-bottom: var(--section-space);
}

.cta-panel {
  background: linear-gradient(180deg, #252f3a 0%, #1d2630 100%);
  border: 1px solid #4e5f72;
  border-radius: var(--radius-lg);
  text-align: center;
  padding: 46px 30px;
  box-shadow: 0 24px 58px rgba(12, 18, 22, 0.34);
}

.cta-panel h2 {
  font-size: clamp(1.6rem, 2.25vw, 2.2rem);
  letter-spacing: -0.02em;
  color: #f3f7fa;
}

.cta-panel p {
  color: #cdd8e2;
  max-width: 56ch;
  margin: 14px auto 25px;
}

.site-footer {
  border-top: 1px solid #e6ebe8;
  padding: 24px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-inner p {
  margin: 0;
  color: var(--color-text-muted);
}

.footer-inner nav {
  display: inline-flex;
  gap: 18px;
}

.footer-inner nav a {
  color: var(--color-text-muted);
}

.footer-inner nav a:hover {
  color: var(--color-text);
}

.pricing-page .hero {
  padding-top: 56px;
  padding-bottom: 56px;
}

.pricing-hero-copy h1 {
  max-width: 17ch;
}

.pricing-lead strong {
  color: #ffffff;
}

.pricing-lead {
  max-width: 46ch;
  line-height: 1.8;
}

.pricing-offer-panel {
  background: linear-gradient(180deg, #1e2730 0%, #182028 100%);
  border-color: #526170;
}

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

.pricing-story-grid .card,
.pricing-metrics p {
  text-align: center;
}

.pricing-metrics {
  align-items: stretch;
}

.pricing-metrics p {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.pricing-metrics p br {
  display: block;
}

.pricing-metrics strong {
  display: block;
  margin-right: 0;
}

.pricing-value-card {
  min-height: 180px;
}

.pricing-value-card h3 {
  font-size: 1.4rem;
}

.pricing-loyalty-wrap {
  display: grid;
  gap: 22px;
}

.pricing-loyalty-card {
  max-width: none;
}

.pricing-loyalty-card p strong {
  color: #f4f7f6;
}

.pricing-loyalty-list {
  margin: 0 0 16px;
  padding-left: 22px;
  color: #c4cec8;
  font-size: 1.12rem;
  line-height: 1.72;
}

.pricing-loyalty-list li {
  margin-bottom: 10px;
}

.pricing-loyalty-list strong {
  color: #f4f7f6;
}

.pricing-loyalty-heading {
  font-family: "ShareTech-Regular", "Lato", sans-serif;
  color: #f4f7f6;
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

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

.pricing-qr-layout {
  display: block;
}

.pricing-cta-panel {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 28px 26px;
}

.pricing-cta-panel p {
  margin-top: 10px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

.pricing-cta-panel .pricing-qr-card {
  margin: 14px auto 0;
  max-width: none;
}

.pricing-cta-panel h2 {
  margin-bottom: 0;
}

.pricing-qr-card {
  padding: 18px 20px;
}

.pricing-qr-card h3 {
  margin-bottom: 8px;
}

.pricing-qr-card p {
  margin-top: 0;
}

.pricing-qr-card {
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #f6faf7 100%);
  border-color: #c1d0c5;
  box-shadow: 0 18px 38px rgba(25, 34, 40, 0.2);
}

.pricing-qr-card h3,
.bg-dark-plum-indigo .pricing-qr-card h3 {
  color: #16202b;
}

.pricing-qr-card p,
.bg-dark-plum-indigo .pricing-qr-card p {
  color: #16202b;
  font-weight: 600;
}

.pricing-qr-card .pricing-qr-eyebrow,
.bg-dark-plum-indigo .pricing-qr-card .pricing-qr-eyebrow,
.pricing-qr-card p.pricing-qr-eyebrow {
  color: #4c1f39;
  font-weight: 700;
}

.bg-light-plum .feature-card.card-style-b h3,
.bg-light-plum .feature-card.card-style-b p {
  color: #f4f7f6;
}

.pricing-rate-card {
  border: 1px solid #4f8e61;
  background: linear-gradient(180deg, #2f5f45 0%, #254936 100%);
  box-shadow: 0 18px 36px rgba(17, 34, 24, 0.28);
}

.pricing-rate-card h3,
.bg-light-plum .feature-card.pricing-rate-card h3 {
  color: #f4f7f6;
}

.pricing-rate-card p,
.bg-light-plum .feature-card.pricing-rate-card p {
  color: #e2f1e8;
}

.pricing-qr {
  display: block;
  width: min(100%, 260px);
  margin: 12px auto 0;
  border-radius: 14px;
  box-shadow: 0 16px 28px rgba(21, 29, 33, 0.12);
}

.pricing-qr-placeholder {
  width: min(100%, 260px);
  aspect-ratio: 1 / 1;
  margin: 12px auto 0;
  border-radius: 14px;
  border: 2px dashed #8ea3b5;
  background:
    linear-gradient(180deg, #eef3f7 0%, #e4edf3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  text-align: center;
  box-shadow: 0 12px 24px rgba(21, 29, 33, 0.08);
}

.pricing-qr-placeholder span {
  color: #314251;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.92rem;
}

@media (max-width: 960px) {
  .hero-grid,
  .screenshot-grid,
  .three-col,
  .feature-grid,
  .hero-metrics,
  .pricing-story-grid,
  .pricing-loyalty-grid,
  .pricing-qr-layout {
    grid-template-columns: 1fr;
  }

  .shot-placeholder.large {
    min-height: 260px;
    grid-row: auto;
  }

  .pricing-page .hero {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .pricing-value-card {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  :root {
    --section-space: 48px;
    --container-pad: 16px;
  }

  .site-header {
    position: static;
    backdrop-filter: none;
  }

  .header-inner {
    min-height: 74px;
    padding-top: 8px;
    padding-bottom: 8px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .brand-logo {
    width: 52px;
    height: 52px;
  }

  .hero-brand-mark {
    width: 104px;
    margin-bottom: 14px;
  }

  .brand-wordmark {
    font-size: 1.5rem;
  }

  .main-nav {
    gap: 14px;
    font-size: 0.92rem;
    flex-wrap: nowrap;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .footer-inner p {
    width: 100%;
    text-align: center;
  }

  .footer-inner nav {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 14px;
  }

  .hero {
    padding-top: var(--section-space);
  }

  .home-page .hero,
  .home-page main > .section-spacing:not(.hero):not(.cta-wrap) {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .home-page .section-heading {
    margin-bottom: 20px;
  }

  .hero-panel,
  .card,
  .step-card {
    padding: 20px;
  }

  .hero-carousel {
    padding: 16px;
  }

  .hero-carousel-top,
  .hero-carousel-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-carousel-controls {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-carousel-caption {
    max-width: none;
  }

  .hero-carousel-copy {
    min-height: 0;
  }

  .cta-panel {
    padding: 34px 20px;
  }

  .cta-wrap {
    padding-top: 48px;
  }

  .home-page .cta-wrap {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .single-line-desktop {
    white-space: normal;
  }
}

/* KB app layout */
.kb-shell {
  background: #e7dbf0;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05)),
    url("./assets/background_light.png?v=2");
  min-height: calc(100vh - 80px);
}

.kb-shell .container {
  max-width: 1520px;
}

.kb-topbar {
  position: sticky;
  top: 80px;
  z-index: 10;
  background: #36042a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.kb-topbar-inner {
  display: grid;
  grid-template-columns: 408px minmax(420px, 760px) auto;
  gap: 14px;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
}

.kb-title {
  font-family: "Saira Condensed", "Lato", sans-serif;
  font-size: 1.875rem;
  color: #ffffff;
  margin: 0;
  justify-self: center;
  text-align: center;
}

.kb-search {
  width: min(100%, 760px);
  border: 1px solid #6a4f74;
  border-radius: 10px;
  background: #ffffff;
  color: #1f2937;
  padding: 10px 12px;
  font-family: "Lato", "System UI", sans-serif;
  font-size: 14px;
}

.kb-browse-btn {
  display: none;
  border: 1px solid #7f6791;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 8px 10px;
  font-family: "ShareTech-Regular", "Lato", sans-serif;
  font-size: 12px;
  cursor: pointer;
}

.kb-nav-controls {
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 8px;
}

.kb-control-label {
  color: #d7dfe7;
  font-family: "ShareTech-Regular", "Lato", sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.kb-select {
  width: 100%;
  border: 1px solid #6f5a78;
  border-radius: 8px;
  background: #ffffff;
  color: #1f2937;
  padding: 8px 10px;
  font-family: "Lato", "System UI", sans-serif;
  font-size: 13px;
}

.kb-nav-actions {
  display: flex;
  gap: 8px;
}

.kb-nav-action-btn {
  flex: 1;
  border: 1px solid #6f5a78;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #f3f7fa;
  padding: 7px 8px;
  font-family: "ShareTech-Regular", "Lato", sans-serif;
  font-size: 12px;
  cursor: pointer;
}

.kb-nav-action-btn:hover {
  background: rgba(255, 255, 255, 0.16);
}

.kb-layout {
  display: grid;
  grid-template-columns: 408px minmax(0, 1fr);
  gap: 18px;
  padding-top: 18px;
  padding-bottom: 26px;
}

.kb-nav {
  background: #36042a;
  border: 1px solid #4e3a58;
  border-radius: 12px;
  padding: 14px;
  position: sticky;
  top: 156px;
  max-height: calc(100vh - 190px);
  overflow: auto;
}

.kb-nav-group + .kb-nav-group {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.kb-nav-title {
  margin: 0 0 8px;
  color: #ffffff;
  font-family: "Saira Condensed", "Lato", sans-serif;
  font-size: 16px;
  letter-spacing: 0.02em;
}

.kb-nav-group-toggle {
  width: 100%;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-family: "Saira Condensed", "Lato", sans-serif;
  font-size: 16px;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 8px;
  cursor: pointer;
}

.kb-chevron {
  font-size: 14px;
  line-height: 1;
}

.kb-nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.kb-nav-item button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: #e0e0e0;
  font-family: "Lato", "System UI", sans-serif;
  font-size: 13px;
  padding: 7px 8px;
  border-radius: 8px;
  cursor: pointer;
}

.kb-nav-item button:hover {
  background: rgba(255, 255, 255, 0.08);
}

.kb-nav-item button.is-active {
  background: #ffffff;
  color: #36042a;
  font-weight: 700;
}

.kb-content {
  background: #ffffff;
  border: 1px solid #d5e0da;
  border-radius: 12px;
  padding: 20px;
}

.kb-nav-backdrop {
  display: none;
}

.kb-breadcrumb {
  margin: 0 0 10px;
  color: #5a6675;
  font-size: 12px;
}

.kb-article-title {
  margin: 0 0 6px;
  color: #111827;
  font-family: "Saira Condensed", "Lato", sans-serif;
  font-size: 30px;
}

.kb-meta {
  margin: 0 0 16px;
  color: #4b5563;
  font-size: 12px;
}

.kb-section-title {
  margin: 16px 0 8px;
  color: #36042a;
  font-family: "Saira Condensed", "Lato", sans-serif;
  font-size: 20px;
}

.kb-paragraph {
  margin: 0 0 12px;
  color: #223041;
  font-family: "Lato", "System UI", sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

.kb-inline-link {
  color: #0b592e;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 700;
}

.kb-inline-link:hover {
  color: #084422;
}

.kb-inline-link-missing {
  color: #7a1f3d;
}

.kb-results {
  display: none;
}

.kb-results.is-visible {
  display: block;
}

.kb-result-item {
  border: 1px solid #dbe3df;
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 10px;
  background: #f8fbf9;
  cursor: pointer;
}

.kb-result-item h4 {
  margin: 0 0 4px;
  color: #1b2430;
  font-family: "Saira Condensed", "Lato", sans-serif;
  font-size: 18px;
}

.kb-result-item p {
  margin: 0;
  color: #334155;
  font-size: 13px;
}

@media (max-width: 960px) {
  .kb-topbar {
    top: 0;
  }

  .kb-topbar-inner {
    grid-template-columns: 1fr;
  }

  .kb-browse-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: start;
  }

  .kb-layout {
    grid-template-columns: 1fr;
  }

  .kb-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 40;
    width: min(88vw, 420px);
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
    transform: translateX(-102%);
    transition: transform 180ms ease;
  }

  .kb-nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(9, 10, 13, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
    z-index: 30;
  }

  body.kb-nav-open .kb-nav {
    transform: translateX(0);
  }

  body.kb-nav-open .kb-nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }
}

/* Hidden site administration console */
.admin-console-page {
  min-height: 100vh;
  background: #f4f7f5;
  color: #18222d;
}

.admin-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 24px 18px;
  background: #12151a;
  color: #eef3ef;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.admin-brand-mark {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #2e9b4b;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 20px;
}

.admin-brand-name,
.admin-brand-subtitle {
  display: block;
}

.admin-brand-name {
  font-family: var(--font-wordmark);
  font-size: 22px;
  line-height: 1;
}

.admin-brand-subtitle {
  margin-top: 4px;
  color: #b9c5bf;
  font-size: 12px;
}

.admin-nav {
  display: grid;
  gap: 4px;
  margin-top: 22px;
}

.admin-nav-link {
  padding: 10px 12px;
  border-radius: 8px;
  color: #cbd5cf;
  font-weight: 700;
}

.admin-nav-link:hover,
.admin-nav-link.is-active {
  background: rgba(46, 155, 75, 0.18);
  color: #ffffff;
}

.admin-main {
  min-width: 0;
  padding: 28px;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid #dbe3df;
}

.admin-topbar h1,
.admin-section h2,
.admin-login-copy h2,
.admin-panel h3 {
  margin: 0;
  font-family: var(--font-heading);
  line-height: 1.05;
}

.admin-topbar h1 {
  font-size: 42px;
}

.admin-eyebrow,
.admin-metric-label {
  margin: 0 0 6px;
  color: #7a1f3d;
  font-family: "ShareTech-Regular", var(--font-body);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.admin-operator {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.admin-status {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  max-width: 320px;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.admin-status-ok {
  background: #e5f6ea;
  color: #1e6c36;
}

.admin-status-warning {
  background: #fff4dc;
  color: #7a4b00;
}

.admin-icon-button,
.admin-primary-button,
.admin-danger-button,
.admin-secondary-button,
.admin-action-list button {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  padding: 10px 14px;
  font-weight: 700;
  cursor: pointer;
}

.admin-icon-button {
  background: #202733;
  color: #ffffff;
}

.admin-primary-button {
  background: #2e9b4b;
  color: #ffffff;
}

.admin-secondary-button {
  background: #202733;
  color: #ffffff;
}

.admin-danger-button {
  background: #9f1239;
  color: #ffffff;
}

.admin-primary-button:disabled,
.admin-danger-button:disabled,
.admin-action-list button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.admin-login-panel,
.admin-workspace {
  margin-top: 28px;
}

.admin-login-panel {
  max-width: 720px;
  padding: 28px;
  border: 1px solid #dbe3df;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.admin-login-copy p:not(.admin-eyebrow),
.admin-muted,
.admin-panel p,
.admin-metric p,
.admin-timeline-placeholder p {
  color: #4b5563;
}

.admin-login-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.admin-login-form label,
.admin-support-card label {
  display: grid;
  gap: 6px;
  font-weight: 700;
}

.admin-login-form input,
.admin-support-card input,
.admin-search-row input,
.admin-mfa-panel input,
.admin-mfa-panel textarea,
.admin-select {
  width: 100%;
  min-height: 44px;
  border: 1px solid #cfd9d4;
  border-radius: 8px;
  padding: 10px 12px;
  background: #ffffff;
  color: #18222d;
}

.admin-mfa-panel {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.admin-mfa-panel[hidden] {
  display: none;
}

.admin-mfa-panel label {
  display: grid;
  gap: 6px;
  font-weight: 700;
}

.admin-mfa-panel textarea {
  min-height: 82px;
  resize: vertical;
}

.admin-mfa-current {
  display: grid;
  gap: 8px;
  margin: 14px 0;
  padding: 14px;
  border: 1px solid #dbe3df;
  border-radius: 8px;
  background: #f7faf8;
}

.admin-mfa-current span {
  display: block;
  margin-bottom: 4px;
  color: #4b5563;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.admin-mfa-current strong {
  display: block;
}

.admin-mfa-current p {
  margin: 0;
  color: #374151;
}

.admin-qr-enrollment {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr);
  align-items: center;
  gap: 18px;
  padding: 16px;
  border: 1px solid #dbe3df;
  border-radius: 8px;
  background: #f7faf8;
}

.admin-qr-enrollment p {
  margin: 0;
  color: #374151;
}

.admin-qr-code {
  display: grid;
  place-items: center;
  width: 220px;
  height: 220px;
  border: 1px solid #cfd9d4;
  border-radius: 8px;
  background: #ffffff;
}

.admin-qr-code svg {
  width: 196px;
  height: 196px;
}

.admin-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-login-actions {
  margin-top: 14px;
}

.admin-support-card {
  display: grid;
  gap: 16px;
  max-width: 980px;
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid #dbe3df;
  border-radius: 8px;
  background: #ffffff;
}

.admin-support-card h3 {
  margin: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5ece8;
}

.admin-support-note,
.admin-field-help,
.admin-action-control span {
  color: #4b5563;
  font-size: 13px;
  line-height: 1.45;
}

.admin-support-note {
  max-width: 86ch;
  margin: -4px 0 0;
}

.admin-field-help {
  display: block;
  font-weight: 400;
}

.admin-support-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(220px, 0.8fr);
  gap: 14px;
}

.admin-support-grid-play {
  grid-template-columns: minmax(260px, 1fr) minmax(300px, 1.1fr) minmax(180px, 0.7fr);
}

.admin-support-grid .admin-field-wide {
  grid-column: 1 / -1;
}

.admin-status-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(150px, 0.5fr) minmax(320px, 1.5fr);
  gap: 12px;
}

.admin-status-grid div {
  min-width: 0;
  padding: 12px;
  border: 1px solid #e5ece8;
  border-radius: 8px;
  background: #f7faf8;
}

.admin-status-grid span {
  display: block;
  margin-bottom: 4px;
  color: #4b5563;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.admin-status-grid strong {
  display: block;
  overflow-wrap: anywhere;
}

.admin-support-actions {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex-wrap: wrap;
}

.admin-action-control {
  display: grid;
  gap: 6px;
  max-width: 360px;
}

.admin-support-actions .admin-primary-button {
  min-width: 220px;
}

.admin-message {
  min-height: 24px;
  margin: 0;
  color: #3d4b59;
}

.admin-message.is-error {
  color: #9f1239;
}

.admin-section {
  display: none;
}

.admin-section.is-visible {
  display: block;
}

.admin-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.admin-metrics-grid,
.admin-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.admin-metric,
.admin-panel {
  border: 1px solid #dbe3df;
  border-radius: 8px;
  background: #ffffff;
  padding: 18px;
}

.admin-metric strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.admin-panel {
  margin-top: 16px;
}

.admin-check-list,
.admin-number-list {
  margin: 12px 0 0;
  padding-left: 22px;
}

.admin-check-list li,
.admin-number-list li {
  margin-bottom: 8px;
}

.admin-search-row {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) repeat(auto-fit, minmax(160px, 180px));
  gap: 10px;
  max-width: 980px;
}

.admin-table-wrap {
  margin-top: 16px;
  overflow-x: auto;
  border: 1px solid #dbe3df;
  border-radius: 8px;
  background: #ffffff;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
}

.admin-table-compact {
  min-width: 560px;
}

.admin-table th,
.admin-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #edf1ef;
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: #52606d;
  background: #f7faf8;
  font-size: 12px;
  text-transform: uppercase;
}

.admin-table td {
  font-size: 14px;
}

.admin-table td strong,
.admin-table td span {
  display: block;
}

.admin-table td span {
  color: #5d6b78;
  overflow-wrap: anywhere;
}

.admin-table-badge {
  display: inline-flex;
  width: fit-content;
  margin: 0 6px 6px 0;
  padding: 4px 8px;
  border-radius: 8px;
  background: #eef2f1;
  color: #3d4b59;
  font-size: 12px;
  font-weight: 700;
}

.admin-table-badge.is-ok {
  background: #e5f6ea;
  color: #1e6c36;
}

.admin-table-badge.is-danger {
  background: #fde7ec;
  color: #9f1239;
}

.admin-table-badge.is-warning {
  background: #fff4dc;
  color: #7a4b00;
}

.admin-table-badge.is-admin {
  background: #f7eff3;
  color: #7a1f3d;
}

.admin-table-badge.is-muted {
  background: #eef2f1;
  color: #3d4b59;
}

.admin-table-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
}

.admin-bar-list {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.admin-bar-row {
  display: grid;
  gap: 6px;
}

.admin-bar-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #334155;
  font-size: 14px;
}

.admin-bar-label strong {
  font-size: 14px;
}

.admin-bar-track {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #e4ebe7;
}

.admin-bar-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #2e9b4b;
}

.admin-timeline-placeholder {
  display: flex;
  gap: 14px;
  max-width: 760px;
  padding: 18px;
  border: 1px dashed #aab7b1;
  border-radius: 8px;
  background: #ffffff;
}

.admin-timeline-placeholder span {
  width: 12px;
  min-width: 12px;
  border-radius: 999px;
  background: #2e9b4b;
}

.admin-action-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-action-list button {
  background: #e8eee9;
  color: #26323f;
}

@media (max-width: 860px) {
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    height: auto;
  }

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

  .admin-main {
    padding: 20px;
  }

  .admin-topbar,
  .admin-section-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-metrics-grid,
  .admin-panel-grid,
  .admin-search-row,
  .admin-status-grid,
  .admin-support-grid,
  .admin-support-grid-play {
    grid-template-columns: 1fr;
  }

  .admin-support-card {
    max-width: none;
  }

  .admin-support-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-support-actions .admin-primary-button {
    width: 100%;
  }

  .admin-qr-enrollment {
    grid-template-columns: 1fr;
  }

  .admin-qr-code {
    width: 100%;
    max-width: 240px;
  }
}
