:root {
  color-scheme: light;
  --bg: #f7f9fc;
  --frame: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --accent: #0ea5e9;
  --accent-dark: #0369a1;
  --border: rgba(15, 23, 42, 0.08);
  font-family: 'Space Grotesk', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  position: relative;
}

@media (min-width: 901px) {
  body {
    background: var(--frame);
  }

  .sticky-nav {
    position: relative;
    top: auto;
    z-index: auto;
  }

  .sticky-nav {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0.75rem 2.25rem;
  }

  main.page {
    max-width: 1200px;
    margin: 0 auto;
  }
}


.sticky-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--frame);
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 1rem;
  display: grid;
  grid-template-columns: auto minmax(320px, 1fr) auto auto;
  align-items: center;
  column-gap: 1.5rem;
  width: min(1200px, 100%);
  margin: 0 auto;
}

.landing-header {
  display: flex;
  align-items: center;
  padding: 0.75rem 2.5rem;
  gap: 2rem;
  height: 88px;
  max-height: 88px;
}

.landing-header .nav-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.landing-header .nav-logo img {
  max-height: none;
  width: auto;
  height: auto;
  object-fit: none;
}

.landing-header .nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
}

.brand-title {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0;
  margin: 0;
  color: #0c3d9a;
  text-transform: none;
}

.brand-title--red {
  color: #d7072e;
}

.brand-title--blue {
  color: #0c3d9a;
}

.brand-subtitle {
  margin: 0;
  font-weight: 400;
  letter-spacing: 0;
}

.brand-subtitle--primary {
  font-size: 0.84rem;
  color: rgba(15, 23, 42, 0.7);
}

.brand-subtitle--secondary {
  font-size: 0.7rem;
  color: rgba(15, 23, 42, 0.45);
}

.brand-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  white-space: nowrap;
}

.landing-header .action-block {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  margin-left: auto;
}

.landing-header .mobile-language-slot {
  display: none;
  order: 1;
  width: 100%;
}

.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;
}

.landing-header .action-btn {
  border-radius: 999px;
  padding: 0.35rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  border: 1px solid transparent;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 42px;
}

.landing-header .action-btn--ghost {
  background: transparent;
  border-color: rgba(15, 23, 42, 0.2);
  color: var(--text);
}

.landing-header .action-btn--outline {
  background: #fff;
  border-color: rgba(15, 23, 42, 0.25);
  color: #04132b;
  box-shadow: 0 10px 20px rgba(5, 13, 43, 0.08);
}

.landing-header .action-btn--primary {
  background: #0ea5e9;
  color: #03122c;
  box-shadow: 0 18px 35px rgba(5, 115, 171, 0.35);
}

.landing-header .action-btn:hover,
.landing-header .action-btn:focus-visible {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 18px 35px rgba(5, 13, 43, 0.35);
}

.landing-header .login-btn,
.landing-header .register-btn {
  min-height: 42px;
  height: 42px;
  padding: 0 1.2rem;
}
.sticky-nav nav {
  display: flex;
  gap: 24px;
  justify-content: center;
  white-space: nowrap;
  font-weight: 500;
  flex-wrap: wrap;
}

.sticky-nav nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
}

.sticky-nav .nav-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  justify-content: flex-end;
  white-space: nowrap;
  flex-wrap: wrap;
  grid-column: 4;
  justify-self: end;
}

.nav-actions .auth-group {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.auth-btn {
  border: none;
  border-radius: 999px;
  padding: 0.65rem 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.8rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.auth-btn--login {
  background: #050914;
  color: #fff;
  box-shadow: 0 15px 30px rgba(5, 9, 20, 0.4);
}

.auth-btn--register {
  background: linear-gradient(135deg, #03c6a2, #04d7ff);
  color: #03122c;
  box-shadow: 0 15px 30px rgba(3, 14, 54, 0.2);
}

.auth-btn:hover,
.auth-btn:focus-visible {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 15px 30px rgba(3, 14, 54, 0.25);
}

.nav-actions .ghost-link {
  border: none;
  background: transparent;
  padding: 0.45rem 1.15rem;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-actions .ghost-link:not(.register-link) {
  color: #0d8f45;
  background: rgba(13, 143, 69, 0.08);
  font-weight: 700;
}

.nav-actions .register-link {
  background: linear-gradient(135deg, #ffb347, #ff6700);
  color: #fff;
}

.nav-actions .ghost-link:hover,
.nav-actions .ghost-link:focus-visible {
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
  transform: translateY(-1px);
}


.language-inline {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(15, 23, 42, 0.6);
  letter-spacing: 0.04em;
}

.language-helper {
  pointer-events: none;
  display: inline-flex;
  align-items: center;
}

.sticky-nav__cta {
  flex: 0 0 auto;
  margin: 0 0.35rem 0 0.75rem;
  border-radius: 999px;
  overflow: visible;
  position: relative;
}

.sticky-nav__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  flex: 1 1 420px;
  min-width: 260px;
  grid-column: 2;
  justify-self: center;
}

.sticky-nav__listing {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  grid-column: 3;
  justify-self: center;
  margin-left: -0.9rem;
}

.sticky-nav__listing {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  grid-column: 3;
  justify-self: center;
  margin-left: -0.9rem;
}

.sticky-nav__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  flex: 1 1 420px;
  min-width: 260px;
  grid-column: 2;
  justify-self: center;
}

.sticky-nav .nav-actions {
  grid-column: 4;
  justify-self: end;
}

.nav-link-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: #c92e2e;
  background: linear-gradient(135deg, #b5eaff, #8acfff);
  padding: 0.4rem 1.4rem;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(137, 199, 255, 0.6);
  animation: pulseGlow 4s ease-in-out infinite alternate;
}

.nav-link-cta:focus-visible,
.nav-link-cta:hover {
  transform: translateY(-1px) scale(1.02);
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 10px 20px rgba(255, 153, 51, 0.6), 0 0 30px rgba(255, 204, 102, 0.5);
    filter: brightness(1);
  }
  50% {
    box-shadow: 0 18px 35px rgba(255, 153, 51, 0.9), 0 0 45px rgba(255, 204, 102, 0.75);
    filter: brightness(1.18);
  }
  100% {
    box-shadow: 0 10px 20px rgba(255, 153, 51, 0.6), 0 0 30px rgba(255, 204, 102, 0.5);
    filter: brightness(1);
  }
}

.sticky-nav__cta::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 30%, rgba(255, 204, 102, 0.45), transparent 45%);
  filter: blur(6px);
  opacity: 0;
  animation: cometTrail 2.6s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes cometTrail {
  0% {
    transform: translateX(-20px) scale(0.6);
    opacity: 0;
  }
  40% {
    opacity: 0.85;
    transform: translateX(0) scale(1);
  }
  80% {
    opacity: 0.4;
    transform: translateX(20px) scale(1.1);
  }
  100% {
    opacity: 0;
    transform: translateX(40px) scale(1.15);
  }
}


@media (max-width: 900px) {
  .sticky-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1rem 0.5rem;
    gap: 0.35rem;
  }

.landing-header {
  padding: 0.85rem 1rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  max-height: none;
    height: auto;
}

  .sticky-nav nav {
    order: 2;
    flex-basis: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding-bottom: 0.75rem;
  }

  .landing-header {
    flex-direction: column;
    align-items: stretch;
    height: auto;
    padding: 0.75rem 1.25rem;
  }

  .landing-header .nav-left {
    width: 100%;
    justify-content: flex-start;
  }

  .landing-header .action-block {
    width: 100%;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-left: 0;
  }

  .landing-header .language-inline {
    display: none;
  }

  .landing-header .mobile-language-slot {
    display: flex;
    order: 1;
    width: 100%;
    justify-content: center;
  }

  .landing-header .mobile-language-slot .language-switcher,
  .landing-header .mobile-language-slot .language-switcher__current {
    width: 100%;
  }

  .landing-header .action-btn {
    width: 100%;
  }

  .nav-link-private,
  .nav-link-secondary {
    font-size: 1rem;
  }

  .sticky-nav__listing {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .nav-actions {
    order: 4;
    width: 100%;
    justify-content: center;
  }

  .auth-group {
    width: 100%;
    justify-content: center;
    gap: 0.65rem;
    flex-direction: column;
  }

  .auth-group .auth-btn {
    width: min(100%, 280px);
  }

  .language-group {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .nav-logo {
    order: 1;
    flex-basis: auto;
    display: flex;
    justify-content: center;
  }
}

.business-status {
  position: relative;
}

.business-status__button {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-weight: 600;
  background: #1d4ed8;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.business-status__button[aria-expanded='true'] {
  border-color: rgba(255, 255, 255, 0.4);
}

.business-status__caret {
  font-size: 0.65rem;
  line-height: 1;
}

.business-status__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.35rem);
  background: #fff;
  border-radius: 0.85rem;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.25);
  min-width: 180px;
  padding: 0.35rem 0;
  display: none;
  flex-direction: column;
  z-index: 20;
}

.business-status__menu.open {
  display: flex;
}

.business-status__menu-item {
  border: none;
  background: transparent;
  text-align: left;
  padding: 0.65rem 1.2rem;
  font-weight: 600;
  color: #0f172a;
  cursor: pointer;
}

.business-status__menu-item:hover {
  background: #f4f7fb;
}

.language-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
}


.language-switcher__toggle,
.language-switcher__current {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
  min-width: 140px;
  height: 42px;
}

.language-switcher__toggle:hover {
  border-color: rgba(15, 23, 42, 0.4);
}

.language-switcher__toggle:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.language-switcher__flag {
  width: 18px;
  height: 18px;
  border-radius: 3px;
  object-fit: cover;
}

.language-switcher__caret {
  font-size: 0.7rem;
  line-height: 1;
  color: var(--muted);
}

.language-switcher__menu {
  position: absolute;
  top: calc(100% + 0.35rem);
  right: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.15);
  min-width: 200px;
  padding: 0.25rem 0;
  display: none;
  flex-direction: column;
  gap: 0.15rem;
  z-index: 25;
}

.language-switcher__menu--open {
  display: flex;
}

.language-switcher__item {
  border: none;
  background: transparent;
  text-align: left;
  padding: 0.45rem 0.95rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s ease;
}

.language-switcher__item:hover {
  background: #f4f7fb;
}

.language-switcher__item--active {
  background: rgba(14, 165, 233, 0.1);
}

.language-switcher__native {
  font-size: 0.8rem;
  color: var(--muted);
}

#language-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 48px;
  flex: 0 0 auto;
}

.language-switcher--flags-only .language-switcher__current {
   padding: 0.35rem;
   border-radius: 50%;
 }

.language-switcher--flags-only .language-switcher__item {
  grid-template-columns: auto;
  justify-content: center;
  padding: 0.4rem;
}

.language-switcher--flags-only .language-switcher__menu {
  min-width: auto;
  width: auto;
  padding: 0.2rem;
}

.language-switcher--flags-only .language-switcher__code,
.language-switcher--flags-only .language-switcher__native,
.language-switcher--flags-only .language-switcher__caret {
  display: none;
}

.language-switcher--flags-only .language-switcher__flag {
  width: 24px;
  height: 24px;
}

.language-switcher__code {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
}

.nav-logo img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  display: block;
}

.nav-logo {
  padding-right: 0.75rem;
}

.sticky-nav__logo-right img {
  width: 150px;
  max-width: 100%;
  height: auto;
  display: block;
}


.nav-links {
  display: flex;
  gap: 24px;
}

.nav-link-private,
.nav-link-secondary {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.auth-group {
  display: flex;
  gap: 0.5rem;
}

.register-link {
  border-radius: 999px;
  padding: 0.75rem 1.2rem;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
}

.register-link:hover {
  background: var(--accent-dark);
}

.register-link {
  border-radius: 999px;
  padding: 0.75rem 1.2rem;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
}

.register-link:hover {
  background: var(--accent-dark);
}

.page {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 1rem 2rem;
  align-items: center;
  margin: 0 auto;
  width: min(960px, 100%);
}

.frame {
  background: var(--frame);
  border-radius: 1.25rem;
  padding: 1.75rem;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
  border: 1px solid var(--border);
}

.feedback-hero {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: flex-start;
  background: linear-gradient(150deg, rgba(14, 165, 233, 0.08), rgba(15, 23, 42, 0.02));
}

.feedback-hero__content h1 {
  margin-bottom: 0.35rem;
}

.feedback-hero__intro {
  font-weight: 600;
  color: var(--accent-dark);
}

.feedback-list,
.feedback-benefits {
  margin: 1rem 0;
  padding-left: 1.2rem;
  color: var(--text);
  line-height: 1.6;
}

.feedback-benefits {
  list-style-type: disc;
}

.feedback-hero__panel {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1rem;
  padding: 1.25rem;
  background: #fff;
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.05);
}

.feedback-hero__panel h2 {
  margin-bottom: 0.5rem;
}

.feedback-hero__closing {
  margin-top: 1rem;
  font-style: italic;
  color: var(--muted);
}

.feedback-email {
  text-align: center;
  background: rgba(14, 165, 233, 0.08);
  border-radius: 1.5rem;
  padding: 1.75rem 1.5rem;
  margin-top: 1.5rem;
}

.feedback-email__label {
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.feedback-email__address {
  display: inline-block;
  font-size: 1.35rem;
  font-weight: 600;
  color: #0f9a76;
  text-decoration: none;
}

.qr-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
}

.qr-cta__content {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  align-items: center;
}

.qr-cta__image {
  width: min(220px, 100%);
  height: auto;
}

.demo-request {
  width: 100%;
  margin-top: 1rem;
  padding: 2rem 1rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  border-top: 1px solid rgba(15, 23, 42, 0.12);
}

.demo-request__content h2 {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.demo-request__content p {
  max-width: 420px;
  color: var(--muted);
}

.demo-request__form {
  width: min(480px, 100%);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.demo-request__label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: left;
}

.demo-request__label span {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.demo-request__label input {
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.2);
  padding: 0.85rem 1.25rem;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  color: var(--text);
}

.demo-request__label textarea {
  border-radius: 1rem;
  border: 1px solid rgba(15, 23, 42, 0.2);
  padding: 0.85rem 1.25rem;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  color: var(--text);
  resize: vertical;
  min-height: 120px;
}

.demo-request__button {
  align-self: center;
  width: 100%;
  max-width: 240px;
}

.demo-request__status {
  min-height: 1.25rem;
  font-size: 0.95rem;
  color: var(--muted);
  transition: color 0.2s ease;
}

.demo-request__status--success {
  color: #0f9a76;
}

.demo-request__status--error {
  color: #c92e2e;
}

.demo-request__honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
}

.demo-request__hero {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.demo-request__hero img {
  max-width: min(320px, 100%);
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.15);
}

.hero-preheader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  margin-bottom: 0.5rem;
}

.hero-preheader img {
  max-width: 100px;
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.hero-preheader__text {
  flex: 1;
  padding: 0 1rem;
  text-align: center;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 600;
  color: #f97316;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  margin: 0 0.5rem;
}

.hero-preheader__text--secondary {
  margin-top: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #0b6b34;
}

.hero-postimage {
  display: flex;
  justify-content: center;
  margin-top: 0.15rem;
  text-align: center;
}

.hero-postimage img {
  max-width: 300px;
  width: 100%;
  height: auto;
  border-radius: 1.25rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

@media (max-width: 900px) {
  .auth-page .logo-link {
    display: none;
  }
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu__content {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.2);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 220px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.mobile-menu__content a {
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}

.mobile-menu__divider {
  border-top: 1px solid var(--border);
  margin: 0.35rem 0;
}

.mobile-menu__language {
  font-weight: 600;
  color: var(--muted);
}

  .hero {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-row {
    flex-direction: column;
    gap: 1.5rem;
  }

@media (max-width: 900px) {
  .sticky-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem 0.5rem;
    gap: 0.5rem;
    position: relative;
  }

  .nav-logo {
    order: 1;
  }
.nav-logo img {
    width: 100px;
    height: 100px;
  }

  .nav-actions {
    order: 2;
    display: flex;
    gap: 0.5rem;
    display: none;
  }

  .mobile-menu {
    display: block;
    order: 3;
    margin-left: 0.5rem;
    position: static;
  }

  .mobile-menu summary {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    width: 44px;
    height: 32px;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu summary span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--text);
    border-radius: 999px;
  }

  .mobile-menu__content {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.2);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    min-width: 220px;
    margin-top: 0.5rem;
    z-index: 15;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }

  .mobile-menu__content .language-switcher {
    width: 100%;
    position: static;
  }

  .mobile-menu__content .language-switcher__current,
  .mobile-menu__content .language-switcher__menu {
    width: 100%;
    position: static;
  }

  .mobile-menu__content .language-switcher__menu {
    max-height: 220px;
    overflow-y: auto;
  }

  .mobile-menu:not([open]) .mobile-menu__content {
    display: none;
  }

  .sticky-nav__center,
  .sticky-nav__listing {
    display: none;
  }

  .hero {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-row {
    flex-direction: column;
    gap: 1.5rem;
    position: static;
    padding-right: 0;
  }

  .hero-copy {
    text-align: center;
    order: 2;
  }

  .hero-copy h1 {
    text-align: center;
  }

  .hero-section {
    width: 100%;
  }

  .hero-section--brand,
  .hero-section--headline {
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.12);
  }

  .hero-section--actions {
    padding-top: 1rem;
    gap: 0.75rem;
  }

  .frame-actions {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
  }

  .frame-actions .cta-btn {
    width: min(100%, 320px);
  }

  .frame-actions .ghost-link {
    padding: 0.15rem 0;
    font-size: 0.95rem;
    width: min(100%, 320px);
    justify-content: center;
    text-align: center;
  }

  .hero-visual {
    margin-top: 0;
    justify-content: center;
  }

  .hero-scroll-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.25rem;
  }

  .hero-scroll-cta span {
    width: 40px;
    height: 2px;
    background: var(--border);
    display: block;
    border-radius: 999px;
  }

  .hero-scroll-cta .ghost-link {
    letter-spacing: 0.05em;
  }

  .pricing-cards {
    display: flex;
  }

  .qr-cta {
    width: min(480px, 100%);
    margin: 0 auto;
    padding: 1.5rem 1rem;
  }

  .qr-cta__image {
    width: 100%;
    max-width: 220px;
  }

  .qr-cta__image img {
    display: block;
    width: 100%;
    height: auto;
  }

}

.hero {
  padding-top: 2rem;
  padding-bottom: 2rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  align-items: stretch;
  padding-right: 0;
}

.hero-banner-logo {
  display: flex;
  justify-content: center;
}

.hero-banner-logo img {
  max-width: 180px;
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.25);
}

.hero-logo img {
  width: 120px;
  display: block;
  margin-bottom: 1rem;
}

.hero-copy h1 {
  font-size: clamp(2rem, 6vw, 3.2rem);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.hero-section {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.hero-section + .hero-section {
  margin-top: 1rem;
}

.hero-section--actions .frame-actions {
  margin-top: 0;
}

.hero-section--actions .hero-visual {
  margin-top: 0.75rem;
}
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.hero-right-image img {
  max-width: 160px;
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.hero-copy h1 span {
  color: var(--accent-dark);
  display: block;
}

.eyebrow {
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.subline {
  color: var(--muted);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.frame-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.cta-btn,
.ghost-link {
  border-radius: 999px;
  padding: 0.85rem 1.65rem;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-btn {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 20px rgba(14, 165, 233, 0.3);
  border: 1px solid transparent;
}

.cta-btn:hover {
  background: var(--accent-dark);
}

.ghost-link {
  background: transparent;
  color: var(--text);
}

.hero-visual {
  margin-top: 0;
  border-radius: 1rem;
  width: 100%;
  min-height: 80px;
  background: radial-gradient(circle at top, rgba(14, 165, 233, 0.25), transparent 60%),
    #0f172a;
  color: #fff;
  padding: 1.75rem;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual span {
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-scroll-cta {
  display: none;
}

.pricing {
  margin-top: 0;
  text-align: left;
}

.pricing-headline {
  text-align: center;
  margin-bottom: 1.5rem;
}

.pricing-headline h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 0.35rem;
  color: var(--text);
}

.pricing-headline p {
  margin: 0;
  color: var(--muted);
}

.pricing-table {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(15, 23, 42, 0.15);
  border-radius: 1rem;
  overflow: hidden;
}

.pricing-row {
  display: contents;
}

.pricing-row > div {
  padding: 1rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
  background: #fff;
  font-weight: 500;
}

.pricing-icon {
  margin-right: 0.35rem;
  font-size: 1.1rem;
}

.pricing-row--private > div:first-child {
  background: #f9fafb;
}

.pricing-row--business > div:first-child {
  background: #eef2ff;
}

.pricing-row--header > div {
  background: #f4f7fb;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  border-bottom: 1px solid rgba(15, 23, 42, 0.2);
}

.pricing-row:last-child > div {
  border-bottom: none;
}

.pricing-highlight {
  display: inline-flex;
  font-weight: 700;
  color: var(--accent-dark);
}

.pricing-highlight--visibility {
  color: #0f172a;
  font-size: 1rem;
  letter-spacing: 0.06em;
}

.pricing-powerline {
  margin-top: 1rem;
  text-align: center;
  font-weight: 600;
  color: var(--text);
}

.pricing-cards {
  margin-top: 1.5rem;
  gap: 1rem;
}

.pricing-card {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing-card__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.pricing-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-card__icon {
  font-size: 1.5rem;
}

.pricing-card__title {
  font-weight: 700;
  font-size: 1rem;
  margin: 0;
  color: var(--text);
}

.pricing-card__benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: var(--muted);
  font-weight: 500;
}

.pricing-card__benefits strong {
  color: var(--text);
}


.hero-cta-banner {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.trust h2,
.local-global h2,
.steps h2,
.final-cta h2,
.founder h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
}

.trust-grid article {
  padding: 1rem;
  border-radius: 0.85rem;
  background: #f1f5f9;
  font-weight: 600;
}

.trust-positives {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.trust-positives span {
  background: #ecfdf5;
  color: #047857;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

.audience {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.audience-copy ul {
  list-style: none;
  margin-bottom: 1rem;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.audience-copy li::before {
  content: '•';
  margin-right: 0.5rem;
  color: var(--accent);
}

.audience-visual {
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(14, 165, 233, 0));
  padding: 1.25rem;
  text-align: center;
  font-weight: 600;
}

.local-global p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.local-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.65rem;
}

.local-grid span {
  padding: 0.9rem;
  border-radius: 0.75rem;
  background: #f1f5f9;
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.75rem;
}

.steps-grid article {
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  text-align: center;
}

.steps-grid strong {
  font-size: 1.65rem;
  color: var(--accent-dark);
  display: block;
  margin-bottom: 0.35rem;
}

.ad-placeholder {
  text-align: center;
}

.ad-box {
  margin-top: 1rem;
  border: 1px dashed var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  font-weight: 600;
  color: var(--muted);
}

.founder p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.final-cta {
  text-align: center;
}

.footer {
  text-align: center;
  padding: 0.65rem 1rem 0.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.35rem;
}

.footer a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-copy {
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.frame.footer {
  background: #eaf4ff;
}

.auth-page,
.dashboard-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: var(--bg);
}

.logo-link {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 72px;
  height: auto;
  display: inline-flex;
  align-items: center;
}

.logo-link img {
  width: 100%;
  height: auto;
  display: block;
}

.auth-card {
  width: 340px;
  max-width: 88vw;
  background: var(--frame);
  border-radius: 1.5rem;
  padding: 1.75rem;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  justify-content: center;
}

.auth-caption {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted);
  text-align: center;
}

.auth-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.auth-header img {
  width: 110px;
  height: auto;
  margin: 0 auto;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}

.form-field input {
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  border: 1px solid var(--border);
  font-size: 1rem;
}

.password-field {
  position: relative;
  display: flex;
  align-items: center;
}

.password-field input {
  padding-right: 3.5rem;
}

.password-toggle {
  position: absolute;
  right: 0.75rem;
  background: transparent;
  border: none;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.password-toggle .eye-icon {
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.auth-submit {
  width: 100%;
  text-align: center;
}

.auth-footnote {
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}

.auth-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.create-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.create-header img {
  width: 110px;
  height: auto;
  margin: 0 auto;
}

.create-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.create-form .form-field span {
  font-size: 0.9rem;
}

.create-cta {
  background: #0f172a;
  color: #fff;
  padding: 0.95rem 1.25rem;
  font-size: 1rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s ease;
}

.create-cta:hover {
  background: #131a2c;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.divider::before,
.divider::after {
  content: '';
  height: 1px;
  width: 50px;
  background: var(--border);
}

.oauth-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.outline-btn {
  border-radius: 999px;
  padding: 0.85rem 1.25rem;
  border: 1px solid var(--border);
  font-size: 0.95rem;
  background: #fff;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}

.outline-btn:hover {
  border-color: var(--accent);
}

.password-input-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.password-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.text-btn {
  border: none;
  background: none;
  color: var(--accent);
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0.35rem 0.65rem;
  border-radius: 0.65rem;
}

.text-btn:hover {
  background: rgba(14, 165, 233, 0.1);
}

.outline-btn.mini {
  border-width: 1px;
  font-size: 0.85rem;
  padding: 0.5rem 0.9rem;
}

.oauth-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.oauth-icon img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

.password-status {
  font-size: 0.85rem;
  color: #16a34a;
  margin-top: 0.35rem;
}

.password-input-row input {
  flex: 1;
}
.policy-links {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}

.policy-links a {
  color: var(--muted);
  text-decoration: none;
}

.policy-content {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.auth-footnote a {
  color: var(--accent);
  text-decoration: none;
}

@media (max-height: 700px) {
  .auth-card {
    padding: 1.4rem;
    gap: 0.5rem;
  }
}

.auth-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}

.message {
  min-height: 30px;
  font-size: 0.85rem;
}

.message-error {
  color: #d14343;
}

.message-success {
  color: #0f9a76;
}

.dashboard {
  width: min(960px, 100%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dashboard-header {
  width: min(960px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--frame);
  border-radius: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--border);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.07);
}

.dashboard-header img {
  width: 90px;
  height: auto;
}

.dashboard-card {
  background: var(--frame);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.07);
}

.dashboard-card h2 {
  margin-bottom: 0.75rem;
}

.dashboard-card ul {
  list-style: none;
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.dashboard-card ul li::before {
  content: '•';
  margin-right: 0.4rem;
  color: var(--accent);
}

.dashboard-role,
.dashboard-email,
.dashboard-id {
  font-weight: 600;
  color: var(--text);
}

@media (min-width: 1200px) {
  body {
    background: var(--frame);
  }

  .page,
  main.page {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
  }

  .sticky-nav {
    position: relative;
    width: 100vw;
    max-width: none;
    margin: 0;
    padding: 0.75rem 3vw;
    border-radius: 0;
  }

  .frame {
    width: 100%;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 3rem 0;
  }

  .frame + .frame {
    padding-top: 3.5rem;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
  }

  .hero {
    padding: 2rem 0 2.5rem;
  }

  .hero-preheader,
  .hero-postimage,
  .hero,
  .pricing,
  .qr-cta,
  .frame.footer {
    width: 100%;
    padding-left: 4vw;
    padding-right: 4vw;
    box-sizing: border-box;
  }

  .hero-preheader {
    padding-top: 1.5rem;
    padding-bottom: 0.75rem;
  }

  .hero-postimage,
  .pricing,
  .qr-cta,
  .frame.footer {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

@media (min-width: 768px) {
  .audience {
    grid-template-columns: repeat(2, 1fr);
  }

  .frame {
    padding: 2rem 2.25rem;
  }
}

@media (max-width: 900px) {
  .pricing-table {
    display: none !important;
  }
}

