/* [project]/app/globals.css [app-client] (css) */
:root {
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light;
  --background: #f6f7fb;
  --foreground: #172033;
  --muted: #667085;
  --border: #d9deea;
  --card: #fff;
  --primary: #1d4ed8;
  --danger: #b42318;
}

* {
  box-sizing: border-box;
}

body {
  background: var(--background);
  color: var(--foreground);
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
  overflow-x: clip;
}

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

button, input, select {
  font: inherit;
}

.shell {
  grid-template-columns: 260px 1fr;
  grid-template-areas: "sidebar content";
  min-height: 100vh;
  display: grid;
}

.sidebar {
  color: #fff;
  background: #101828;
  flex-direction: column;
  grid-area: sidebar;
  gap: 16px;
  min-height: 100vh;
  padding: 24px;
  display: flex;
}

.sidebar-main {
  flex: auto;
  min-height: 0;
}

.sidebar-nav {
  margin-top: 8px;
}

.sidebar-footer {
  border-top: 1px solid #ffffff1f;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
  padding-top: 16px;
  display: flex;
}

.sidebar-nav a, .sidebar-footer > button {
  width: 100%;
  color: inherit;
  text-align: left;
  cursor: pointer;
  background: none;
  border: 0;
  border-radius: 8px;
  margin-top: 8px;
  padding: 10px 12px;
  display: block;
}

.sidebar-nav a:hover, .sidebar-footer > button:hover {
  background: #ffffff1f;
}

.dashboard-topbar {
  grid-area: topbar;
  display: none;
}

.sidebar-toggle {
  border: 1px solid var(--border);
  cursor: pointer;
  background: #fff;
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  display: inline-flex;
}

.sidebar-toggle-bar {
  background: var(--foreground);
  border-radius: 999px;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  display: block;
}

.nav-backdrop {
  display: none;
}

.table-wrap {
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
}

.language-switcher {
  border: 1px solid var(--border);
  background: #ffffffe6;
  border-radius: 999px;
  width: fit-content;
  padding: 4px;
  display: flex;
}

.language-switcher a {
  min-width: 38px;
  height: 32px;
  color: var(--muted);
  background: none;
  border: 0;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
}

.language-switcher a.active {
  background: var(--foreground);
  color: #fff;
}

.sidebar .language-switcher {
  background: none;
  border: 0;
  border-radius: 0;
  gap: 4px;
  width: 100%;
  margin: 0;
  padding: 0 4px;
}

.sidebar .language-switcher a {
  color: #ffffff8c;
  letter-spacing: .04em;
  background: none;
  border-radius: 0;
  width: auto;
  min-width: 0;
  height: auto;
  margin: 0;
  padding: 6px 8px;
  font-size: 12px;
  font-weight: 600;
}

.sidebar .language-switcher a:hover {
  color: #ffffffe6;
  background: none;
}

.sidebar .language-switcher a.active {
  color: #fff;
  background: none;
  box-shadow: inset 0 -2px #ffffffd9;
}

.cabinet-switcher {
  border: 1px solid var(--border);
  background: #ffffffe6;
  border-radius: 10px;
  gap: 4px;
  width: 100%;
  padding: 4px;
  display: flex;
}

.cabinet-switcher a {
  min-height: 32px;
  color: var(--muted);
  text-align: center;
  border-radius: 8px;
  flex: 1;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
}

.cabinet-switcher a.active {
  background: var(--foreground);
  color: #fff;
}

.sidebar .cabinet-switcher {
  background: #ffffff14;
  border-color: #fff3;
  margin: 12px 0 4px;
}

.sidebar .cabinet-switcher a {
  color: #ffffffb8;
}

.sidebar .cabinet-switcher a.active {
  color: #fff;
  background: #fff3;
}

.dashboard-topbar-actions {
  flex-shrink: 0;
  align-items: center;
  gap: 6px;
  display: none;
}

.dashboard-topbar .cabinet-switcher {
  width: auto;
  max-width: 148px;
  padding: 3px;
}

.dashboard-topbar .cabinet-switcher a {
  white-space: nowrap;
  min-height: 28px;
  padding: 0 6px;
  font-size: 11px;
  line-height: 1.1;
}

.dashboard-topbar .language-switcher {
  padding: 3px;
}

.dashboard-topbar .language-switcher a {
  min-width: 30px;
  height: 28px;
  font-size: 11px;
}

.content {
  grid-area: content;
  min-width: 0;
  padding: 32px;
  overflow-x: clip;
}

.content h1 {
  letter-spacing: -.01em;
  margin: 0 0 4px;
  font-size: 1.95rem;
  font-weight: 700;
  line-height: 1.2;
}

.content h2 {
  letter-spacing: -.01em;
  margin: 0;
  font-size: 1.15rem;
  font-weight: 650;
  line-height: 1.3;
}

.content h3 {
  letter-spacing: -.01em;
  margin: 0;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.35;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  overflow-wrap: anywhere;
  border-radius: 14px;
  min-width: 0;
  padding: 20px;
  box-shadow: 0 8px 24px #1018280f;
}

.grid {
  gap: 16px;
  display: grid;
}

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

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

.row {
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  display: flex;
}

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

.button {
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  border: 0;
  border-radius: 8px;
  padding: 9px 12px;
}

.button.secondary {
  color: var(--primary);
  background: #eef2ff;
}

.button.danger {
  background: var(--danger);
}

.input {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 8px;
  width: 100%;
  padding: 10px 12px;
}

.table {
  border-collapse: collapse;
  width: 100%;
}

.table th, .table td {
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
  padding: 10px;
}

.login-page {
  place-items: center;
  min-height: 100vh;
  padding: 24px;
  display: grid;
}

.legal-page {
  color: #1d1d1f;
  background: #f5f5f7;
  min-height: 100vh;
  line-height: 1.6;
}

.legal-wrap {
  width: min(720px, 100% - 40px);
  margin: 0 auto;
  padding: 48px 0 64px;
}

.legal-wrap .back {
  color: var(--muted);
  margin-bottom: 24px;
  display: inline-block;
}

.legal-wrap h1 {
  letter-spacing: -.03em;
  margin: 0 0 8px;
  font-size: 2rem;
}

.legal-wrap h2 {
  margin: 28px 0 8px;
  font-size: 1.15rem;
}

.legal-wrap .updated, .legal-wrap footer {
  color: var(--muted);
}

.legal-wrap footer {
  border-top: 1px solid var(--border);
  margin-top: 48px;
  padding-top: 24px;
  font-size: .9rem;
}

@media (max-width: 900px) {
  .shell {
    grid-template: "topbar"
                   "content" 1fr
                   / 1fr;
    align-content: start;
  }

  .dashboard-topbar {
    border-bottom: 1px solid var(--border);
    z-index: 30;
    background: #fff;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    height: fit-content;
    min-height: 48px;
    padding: 8px 12px;
    display: flex;
    position: sticky;
    top: 0;
  }

  .dashboard-topbar-actions {
    align-items: center;
    gap: 6px;
    display: flex;
  }

  .dashboard-topbar-title {
    text-overflow: ellipsis;
    white-space: nowrap;
    letter-spacing: -.01em;
    flex: auto;
    min-width: 0;
    margin: 0;
    font-size: .95rem;
    line-height: 1.2;
    overflow: hidden;
  }

  .sidebar .cabinet-switcher, .sidebar .language-switcher {
    display: none;
  }

  .content {
    padding: 12px 16px 20px;
  }

  .content h1 {
    letter-spacing: -.01em;
    font-size: 1.45rem;
  }

  .content h2 {
    letter-spacing: -.01em;
    font-size: 1.05rem;
  }

  .sidebar {
    z-index: 40;
    pointer-events: none;
    grid-area: content;
    width: min(280px, 85vw);
    transition: transform .2s;
    position: fixed;
    inset: 0 auto 0 0;
    overflow-y: auto;
    transform: translateX(-100%);
  }

  .sidebar.is-open {
    pointer-events: auto;
    transform: translateX(0);
  }

  .nav-backdrop {
    z-index: 35;
    cursor: pointer;
    background: #10182873;
    border: 0;
    padding: 0;
    display: block;
    position: fixed;
    inset: 0;
  }

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

/* [project]/app/landing.css [app-client] (css) */
:root {
  --bg: #f5f5f7;
  --surface: #ffffffd1;
  --surface-solid: #fff;
  --text: #1d1d1f;
  --muted: #6e6e73;
  --line: #1d1d1f1a;
  --blue: #0071e3;
  --blue-dark: #005bb8;
  --green: #27a844;
  --shadow: 0 24px 80px #00000014;
  --radius: 30px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: radial-gradient(circle at 50% -10%, #0071e329, transparent 36rem),
          var(--bg);
  color: var(--text);
  letter-spacing: -.02em;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, SF Pro Display, Segoe UI, sans-serif;
  overflow-x: clip;
}

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

.nav {
  z-index: 10;
  border: 1px solid var(--line);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
  background: #ffffffad;
  border-radius: 999px;
  justify-content: space-between;
  align-items: center;
  width: min(1120px, 100% - 40px);
  margin: 16px auto 0;
  padding: 14px 18px;
  display: flex;
  position: sticky;
  top: 0;
}

.brand {
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 15px;
  font-weight: 700;
  display: flex;
}

.brand-name {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.brand-mark {
  background: var(--text);
  color: #fff;
  border-radius: 9px;
  place-items: center;
  width: 28px;
  height: 28px;
  font-size: 14px;
  display: grid;
}

.nav-links {
  color: var(--muted);
  gap: 20px;
  font-size: 14px;
  display: flex;
}

.nav-actions {
  flex-shrink: 0;
  align-items: center;
  gap: 12px;
  min-width: 0;
  display: flex;
}

.nav-actions .button {
  white-space: nowrap;
}

.nav-mobile {
  display: none;
}

.nav-toggle {
  border: 1px solid var(--line);
  cursor: pointer;
  background: #ffffffe6;
  border-radius: 999px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  display: inline-flex;
}

.nav-toggle-bar {
  background: var(--text);
  border-radius: 999px;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  display: block;
}

.nav-mobile-panel {
  border: 1px solid var(--line);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
  background: #fffffff5;
  border-radius: 20px;
  gap: 4px;
  padding: 12px;
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
}

.nav-mobile-panel.is-open {
  display: grid;
}

.nav-mobile-panel a {
  color: var(--muted);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 14px;
}

.nav-mobile-panel a:hover {
  color: var(--text);
  background: #0071e314;
}

.language-switcher {
  border: 1px solid var(--line);
  background: #ffffffb3;
  border-radius: 999px;
  padding: 4px;
  display: flex;
}

.language-switcher button, .language-switcher a {
  min-width: 38px;
  height: 32px;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  background: none;
  border: 0;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
}

.language-switcher button.active, .language-switcher a.active {
  background: var(--text);
  color: #fff;
}

.button {
  background: var(--blue);
  color: #fff;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  padding: 0 22px;
  font-size: 16px;
  font-weight: 600;
  transition: transform .18s, background .18s;
  display: inline-flex;
}

.button:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.button.secondary {
  color: var(--text);
  background: #e8e8ed;
}

.section {
  width: min(1120px, 100% - 40px);
  margin: 0 auto;
  padding: 110px 0;
}

.hero {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  align-items: center;
  gap: 56px;
  min-height: calc(100vh - 80px);
  padding-top: 56px;
  display: grid;
}

.eyebrow {
  color: var(--blue);
  margin: 0 0 18px;
  font-size: 17px;
  font-weight: 700;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1 {
  letter-spacing: -.07em;
  margin-bottom: 22px;
  font-size: clamp(54px, 7vw, 96px);
  line-height: .94;
}

h2 {
  letter-spacing: -.06em;
  margin-bottom: 20px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1;
}

h3 {
  letter-spacing: -.04em;
  margin-bottom: 12px;
  font-size: 26px;
  line-height: 1.08;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(21px, 2.4vw, 30px);
  line-height: 1.22;
}

.copy {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.5;
}

.actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
  display: flex;
}

.fineprint {
  color: var(--muted);
  margin-top: 18px;
  font-size: 14px;
}

.site-footer {
  border-top: 1px solid var(--line);
  width: min(1120px, 100% - 40px);
  color: var(--muted);
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
  margin: 0 auto 32px;
  padding: 20px 0;
  font-size: 14px;
  display: flex;
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
}

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

.period-tags {
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
  display: flex;
}

.period-tag {
  color: var(--blue);
  background: #f1f6ff;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
}

.mockup {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: linear-gradient(145deg, #ffffffeb, #fff9);
  border-radius: 42px;
  padding: 22px;
}

.invoice-card, .phone, .flow-card, .price-card, .feature-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-solid);
  box-shadow: 0 18px 50px #0000000d;
}

.invoice-card {
  padding: 26px;
}

.invoice-top, .invoice-row, .status-row {
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  display: flex;
}

.invoice-top {
  margin-bottom: 26px;
}

.pill {
  min-height: 30px;
  color: var(--green);
  background: #eaf7ee;
  border-radius: 999px;
  align-items: center;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
}

.invoice-row {
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 16px 0;
}

.invoice-row strong {
  color: var(--text);
}

.invoice-row .row-hint {
  color: var(--muted);
  opacity: .85;
  margin-top: 4px;
  font-size: 12px;
  display: block;
}

.total {
  letter-spacing: -.06em;
  padding-top: 24px;
  font-size: 44px;
  font-weight: 800;
}

.center {
  text-align: center;
}

.center .lead, .center .copy {
  margin-left: auto;
  margin-right: auto;
}

.problem-board {
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 44px;
  display: grid;
}

.problem-item {
  border: 1px solid var(--line);
  background: #ffffffad;
  border-radius: 28px;
  min-height: 160px;
  padding: 22px;
}

.problem-item span {
  color: var(--muted);
  margin-bottom: 30px;
  font-size: 14px;
  display: block;
}

.solution-flow {
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 48px;
  display: grid;
}

.flow-card {
  padding: 24px;
}

.flow-card .number {
  background: var(--text);
  color: #fff;
  border-radius: 50%;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 36px;
  font-weight: 700;
  display: grid;
}

.grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 46px;
  display: grid;
}

.grid.features .feature-card {
  min-height: 220px;
}

.feature-card {
  min-height: 250px;
  padding: 28px;
}

.feature-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}

.icon {
  width: 46px;
  height: 46px;
  color: var(--blue);
  background: #f1f6ff;
  border-radius: 16px;
  place-items: center;
  margin-bottom: 52px;
  font-weight: 800;
  display: grid;
}

.split {
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: 42px;
  display: grid;
}

.phone {
  border-radius: 46px;
  width: min(390px, 100%);
  margin: 0 auto;
  padding: 18px;
}

.phone-screen {
  background: #f7f7f9;
  border-radius: 34px;
  min-height: 560px;
  padding: 22px;
}

.chat {
  gap: 12px;
  margin-top: 24px;
  display: grid;
}

.bubble {
  max-width: 86%;
  color: var(--text);
  background: #fff;
  border-radius: 18px;
  padding: 13px 15px;
  font-size: 15px;
  line-height: 1.35;
  box-shadow: 0 8px 24px #0000000a;
}

.bubble.user {
  background: var(--blue);
  color: #fff;
  justify-self: end;
}

.bubble.action {
  color: var(--blue);
  background: #f1f6ff;
  border: 1px solid #0071e333;
  justify-self: start;
  font-weight: 600;
}

.bubble.muted {
  color: var(--muted);
  box-shadow: none;
  background: none;
  padding-left: 0;
  font-size: 14px;
}

.qr-preview {
  border: 2px dashed var(--line);
  width: 120px;
  height: 120px;
  color: var(--muted);
  text-align: center;
  background: #fff;
  border-radius: 16px;
  place-items: center;
  margin: 8px 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  display: grid;
}

.steps {
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
  display: grid;
}

.step {
  background: var(--text);
  color: #fff;
  border-radius: 34px;
  padding: 32px;
}

.step p {
  color: #ffffffa8;
  font-size: 17px;
  line-height: 1.45;
}

.benefits {
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 46px;
  display: grid;
}

.benefit {
  border-top: 1px solid var(--line);
  padding: 26px 0;
}

.benefit p {
  color: var(--muted);
  line-height: 1.45;
}

.pricing {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 46px;
  display: grid;
}

.price-card {
  padding: 30px;
}

.price {
  letter-spacing: -.06em;
  margin: 30px 0 8px;
  font-size: 42px;
  font-weight: 800;
}

.final {
  padding-bottom: 130px;
}

.final-panel {
  background: radial-gradient(circle at 80% 15%, #0071e338, transparent 26rem),
          var(--text);
  color: #fff;
  text-align: center;
  border-radius: 44px;
  padding: 72px;
}

.final-panel .lead, .final-panel .fineprint {
  color: #ffffffb8;
}

.final-panel .button.secondary {
  color: #fff;
  background: #ffffff24;
}

@media (max-width: 920px) {
  .nav {
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
    width: min(1120px, 100% - 24px);
    margin: 12px auto 0;
    padding: 10px 12px;
    position: sticky;
  }

  .nav-links {
    display: none;
  }

  .brand {
    flex: auto;
    min-width: 0;
    font-size: 14px;
  }

  .nav-mobile {
    flex-shrink: 0;
    display: block;
    position: relative;
  }

  .nav-actions {
    flex: 0 auto;
    gap: 6px;
    max-width: min(100%, 220px);
  }

  .nav-actions .button {
    padding: 8px 10px;
    font-size: 12px;
  }

  .language-switcher {
    padding: 3px;
  }

  .language-switcher button, .language-switcher a {
    min-width: 30px;
    height: 28px;
    font-size: 12px;
  }

  .hero, .split, .grid, .solution-flow, .steps, .pricing, .benefits, .problem-board {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 78px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 88px;
  }

  .final-panel {
    padding: 44px 24px;
  }
}

@media (max-width: 400px) {
  .nav-actions {
    max-width: 180px;
  }

  .nav-actions .button {
    padding: 7px 8px;
    font-size: 11px;
  }
}

/*# sourceMappingURL=app_1fsdpt9._.css.map*/