* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: #172033;
  background: #f4f7fb;
}

a {
  color: #0b5cad;
}

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

.auth-shell {
  min-height: 100vh;
}

.workspace {
  min-width: 0;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: 100vh;
  padding: 22px 16px;
  background: #111827;
  color: #dbe7f3;
}

.sidebar-brand {
  padding: 0 10px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
}

.sidebar-nav {
  display: grid;
  gap: 4px;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 10px;
  color: #bcccdc;
  text-decoration: none;
  border-radius: 8px;
}

.sidebar-link:hover,
.sidebar-link.active {
  color: #ffffff;
  background: #1f3a5f;
}

.icon {
  flex: 0 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 0 24px;
  background: #ffffff;
  border-bottom: 1px solid #d9e2ec;
}

.brand {
  font-weight: 700;
  text-decoration: none;
  color: #111827;
}

.account {
  display: flex;
  gap: 16px;
  color: #52606d;
  font-size: 14px;
}

.page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 28px 48px;
}

.auth-panel,
.message-panel {
  max-width: 520px;
  margin: 0 auto;
  padding: 24px;
  background: #ffffff;
  border: 1px solid #d9e2ec;
  border-radius: 8px;
}

.page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.page-header h1 {
  margin: 4px 0 4px;
  font-size: 28px;
  line-height: 1.2;
}

.page-header p {
  margin: 0;
}

.panel,
.empty-state {
  padding: 20px;
  background: #ffffff;
  border: 1px solid #d9e2ec;
  border-radius: 8px;
}

.panel + .panel,
.panel + .empty-state,
.empty-state + .panel {
  margin-top: 16px;
}

.table-panel {
  padding: 0;
  overflow: auto;
}

[hidden] {
  display: none !important;
}

.form-offscreen-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

label {
  display: block;
  margin: 16px 0;
  font-weight: 600;
}

fieldset {
  margin: 20px 0;
  padding: 16px;
  border: 1px solid #d9e2ec;
  border-radius: 8px;
}

legend {
  padding: 0 6px;
  color: #334e68;
  font-weight: 800;
}

input,
textarea,
select {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 10px 12px;
  border: 1px solid #bcccdc;
  border-radius: 6px;
  font: inherit;
  color: #172033;
  background: #ffffff;
}

.form-field--error input,
.form-field--error textarea,
.form-field--error select,
.form-input--error {
  border-color: #c53030;
  background: #fffafa;
}

.field-error {
  display: block;
  margin-top: 6px;
  color: #9b1c1c;
  font-size: 13px;
  font-weight: 700;
}

.form-hint {
  display: block;
  margin-top: 6px;
  color: #627d98;
  font-size: 13px;
  font-weight: 500;
}

textarea {
  resize: vertical;
}

select {
  min-height: 40px;
}

button,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border: 0;
  border-radius: 6px;
  background: #0b5cad;
  color: #ffffff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}

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

.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 13px;
  border: 1px solid #bcccdc;
  border-radius: 6px;
  color: #334e68;
  background: #ffffff;
  text-decoration: none;
  font-weight: 700;
}

.link-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  white-space: nowrap;
}

.back-link {
  color: #52606d;
  text-decoration: none;
  font-size: 14px;
}

.muted {
  color: #627d98;
}

.error {
  padding: 10px 12px;
  border-radius: 6px;
  color: #8a1f11;
  background: #ffebe6;
}

.success {
  padding: 10px 12px;
  border-radius: 6px;
  color: #1f6f43;
  background: #e3fcef;
}

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

.summary div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0;
  border-bottom: 1px solid #edf2f7;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.kpi-card {
  min-height: 132px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid #d9e2ec;
  border-radius: 8px;
}

.kpi-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #52606d;
  font-size: 13px;
  font-weight: 700;
}

.kpi-card strong {
  display: block;
  margin-top: 18px;
  color: #111827;
  font-size: 30px;
  line-height: 1;
}

.kpi-card p {
  margin: 10px 0 0;
  color: #627d98;
  font-size: 13px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.8fr);
  gap: 16px;
  align-items: start;
}

.dashboard-card {
  margin: 0;
}

.dashboard-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.dashboard-card-header h2 {
  margin: 0;
  font-size: 18px;
}

.dashboard-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.dashboard-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-top: 1px solid #edf2f7;
}

.dashboard-list-item:first-child {
  border-top: 0;
}

.dashboard-list-item a {
  font-weight: 700;
  text-decoration: none;
}

.dashboard-list-item p {
  margin: 4px 0 0;
  color: #627d98;
  font-size: 13px;
  overflow-wrap: anywhere;
}

.dashboard-list-meta {
  display: grid;
  justify-items: end;
  gap: 6px;
  min-width: 120px;
  color: #52606d;
  font-size: 13px;
  white-space: nowrap;
}

.quick-actions {
  display: grid;
  gap: 10px;
}

.empty-state.compact {
  padding: 16px;
}

.empty-state.compact h3 {
  margin: 0 0 6px;
  font-size: 15px;
}

.empty-state.compact p {
  margin: 0 0 12px;
}

.empty-state.compact p:last-child {
  margin-bottom: 0;
}

.stack {
  overflow: auto;
  padding: 12px;
  background: #111827;
  color: #f9fafb;
}

.search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: end;
}

.filter-form {
  display: grid;
  grid-template-columns: minmax(180px, 240px) minmax(180px, 240px) auto auto;
  gap: 10px;
  align-items: end;
}

.filter-form label {
  margin: 0;
}

.search-label {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #52606d;
}

.search-label input {
  margin-top: 0;
}

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

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid #edf2f7;
  text-align: left;
  vertical-align: top;
}

th {
  color: #52606d;
  background: #f8fafc;
  font-size: 13px;
  font-weight: 700;
}

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

.status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  background: #e0f2fe;
  color: #075985;
}

.status-confirmed,
.status-completed {
  background: #dcfce7;
  color: #166534;
}

.status-in_progress,
.status-no_show {
  background: #fef3c7;
  color: #92400e;
}

.status-cancelled {
  background: #fee2e2;
  color: #991b1b;
}

.danger-button {
  background: #b91c1c;
}

.empty-state {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.empty-state.compact {
  margin: 14px 0;
}

.empty-state h2 {
  margin: 0;
}

.empty-state p {
  margin: 0;
  color: #627d98;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
}

.detail-full {
  grid-column: 1 / -1;
}

.detail-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.detail-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #edf2f7;
}

.detail-list dt {
  color: #627d98;
}

.detail-list dd {
  margin: 0;
  text-align: right;
}

.plain-text {
  white-space: pre-wrap;
  line-height: 1.5;
}

.locked-context-field {
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 1px solid #d9e2ec;
  border-radius: 6px;
  background: #f8fafc;
  color: #334e68;
}

.locked-context-label {
  color: #52606d;
  font-size: 13px;
  font-weight: 700;
}

.locked-context-value {
  font-weight: 700;
}

.locked-context-help {
  margin: 0;
  color: #627d98;
  font-size: 13px;
  line-height: 1.4;
}

.form-panel {
  max-width: 680px;
}

.form-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
}

.notice-banner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid #bfdbfe;
  border-radius: 10px;
  background: #eff6ff;
  color: #1e3a8a;
}

.notice-banner p {
  margin: 4px 0 0;
  color: #334e68;
}

.landing-page {
  min-width: 0;
  color: #111827;
  background: #f6f8fb;
  font-family: Inter, Arial, system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.landing-page a {
  color: inherit;
}

.lp-container,
.lp-nav__inner,
.lp-hero__inner {
  width: min(100% - 40px, 1200px);
  margin: 0 auto;
}

.lp-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #e8edf5;
  backdrop-filter: blur(12px);
}

.lp-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 18px;
}

.lp-nav__brand,
.lp-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #0f172a;
  text-decoration: none;
}

.lp-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: #2563eb;
  color: #ffffff;
  flex: 0 0 auto;
}

.lp-nav__brand-text {
  display: grid;
  gap: 1px;
}

.lp-nav__brand-text strong {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.lp-nav__brand-text span {
  color: #94a3b8;
  font-size: 11px;
}

.lp-nav__actions,
.lp-hero__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.lp-btn--primary {
  background: #2563eb;
  color: #ffffff;
}

.lp-btn--primary:hover,
.lp-btn--primary:focus {
  background: #1d4ed8;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.26);
}

.lp-btn--ghost {
  color: #334155;
  background: transparent;
}

.lp-btn--ghost:hover,
.lp-btn--ghost:focus {
  background: #f1f5f9;
}

.lp-btn--outline {
  color: #ffffff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
}

.lp-btn--outline:hover,
.lp-btn--outline:focus {
  background: rgba(255, 255, 255, 0.08);
}

.lp-btn--lg {
  min-height: 52px;
  padding: 13px 26px;
  border-radius: 12px;
  font-size: 15px;
}

.lp-btn--full {
  width: 100%;
}

.lp-hero {
  padding: 98px 0 92px;
  overflow: hidden;
  background: radial-gradient(ellipse 58% 46% at 70% 44%, rgba(37, 99, 235, 0.16), transparent 72%),
    linear-gradient(135deg, #0f172a 0%, #1e293b 48%, #0f172a 100%);
}

.lp-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: 72px;
  align-items: center;
}

.lp-badge {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 6px 13px;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  background: #eff6ff;
  color: #2563eb;
  font-size: 12px;
  font-weight: 900;
}

.lp-hero h1 {
  max-width: 560px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(42px, 5.25vw, 64px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.lp-hero h1 span {
  color: #60a5fa;
}

.lp-hero__subtitle {
  max-width: 460px;
  margin: 24px 0 34px;
  color: #94a3b8;
  font-size: 17px;
  line-height: 1.7;
}

.lp-hero__trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 22px;
  margin-top: 26px;
}

.lp-hero__trust span,
.lp-start__copy li,
.lp-target-card li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #64748b;
  font-size: 13px;
}

.lp-hero__trust .icon,
.lp-benefit-item .icon,
.lp-start__copy li::before {
  color: #2563eb;
}

.lp-preview {
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: #f6f8fb;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.06);
  transform: perspective(1400px) rotateY(-5deg) rotateX(2deg);
}

.lp-preview__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  background: #1e293b;
}

.lp-preview__bar span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
}

.lp-preview__bar span:nth-child(1) {
  background: #ef4444;
}

.lp-preview__bar span:nth-child(2) {
  background: #f59e0b;
}

.lp-preview__bar span:nth-child(3) {
  background: #10b981;
}

.lp-preview__bar p {
  flex: 1;
  margin: 0 0 0 8px;
  padding: 3px 10px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.06);
  color: #64748b;
  font-size: 10px;
  text-align: center;
}

.lp-preview__body {
  display: grid;
  grid-template-columns: 136px minmax(0, 1fr);
  height: 380px;
}

.lp-preview__sidebar {
  display: grid;
  align-content: start;
  gap: 7px;
  padding: 14px 10px;
  background: #0f172a;
  color: #64748b;
  font-size: 10.5px;
}

.lp-preview__sidebar strong {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 11px;
}

.lp-preview__sidebar span {
  padding: 7px 8px;
  border-radius: 7px;
}

.lp-preview__sidebar span:first-of-type {
  color: #ffffff;
  background: #2563eb;
}

.lp-preview__main {
  min-width: 0;
  background: #f6f8fb;
}

.lp-preview__top {
  display: flex;
  justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid #e8edf5;
  background: #ffffff;
  font-size: 11px;
}

.lp-preview__top span {
  color: #64748b;
}

.lp-preview__metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 12px;
}

.lp-preview__metrics div,
.lp-preview__work > div {
  border: 1px solid #f1f5f9;
  border-radius: 9px;
  background: #ffffff;
}

.lp-preview__metrics div {
  padding: 10px;
}

.lp-preview__metrics strong {
  display: block;
  color: #0f172a;
  font-size: 18px;
  line-height: 1;
}

.lp-preview__metrics span {
  display: block;
  margin-top: 4px;
  color: #94a3b8;
  font-size: 8.5px;
}

.lp-preview__work {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 128px;
  gap: 8px;
  padding: 0 12px 12px;
}

.lp-preview__work h3 {
  margin: 0;
  padding: 9px 10px;
  color: #0f172a;
  font-size: 10px;
}

.lp-preview__work p {
  display: grid;
  grid-template-columns: 1fr 74px 64px;
  gap: 6px;
  margin: 0;
  padding: 7px 10px;
  border-top: 1px solid #f1f5f9;
  color: #64748b;
  font-size: 9px;
}

.lp-preview__work b,
.lp-preview__work strong {
  color: #0f172a;
}

.lp-preview__work p span,
.lp-preview__attention span {
  display: inline-flex;
  border-radius: 7px;
  background: #eff6ff;
  color: #2563eb;
  font-weight: 800;
}

.lp-preview__attention {
  padding-bottom: 8px;
}

.lp-preview__attention span {
  display: block;
  margin: 7px 8px;
  padding: 8px;
  background: #fff7ed;
  color: #ea580c;
  font-size: 9px;
}

.lp-section {
  padding: 96px 0;
}

.lp-section--light {
  background: #f6f8fb;
}

.lp-section--dark,
.lp-footer {
  background: #0f172a;
}

.lp-section__head {
  max-width: 650px;
  margin: 0 auto 56px;
  text-align: center;
}

.lp-section__head p,
.lp-benefits__copy p,
.lp-security__inner p {
  margin: 0 0 10px;
  color: #2563eb;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lp-section__head h2,
.lp-benefits__copy h2,
.lp-start__copy h2,
.lp-security__inner h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(32px, 3.3vw, 42px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.lp-section__head span,
.lp-benefits__copy > span,
.lp-start__copy p {
  display: block;
  margin-top: 16px;
  color: #64748b;
  font-size: 17px;
  line-height: 1.65;
}

.lp-section__head--dark h2 {
  color: #ffffff;
}

.lp-section__head--dark span {
  color: #94a3b8;
}

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

.landing-card {
  min-width: 0;
  padding: 28px;
  border: 1px solid #e8edf5;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.035);
}

.landing-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: 12px;
  background: #eff6ff;
  color: #2563eb;
}

.landing-card-tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 4px 9px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #64748b;
  font-size: 11px;
  font-weight: 900;
}

.landing-card h3 {
  margin: 0 0 10px;
  color: #0f172a;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
}

.landing-card p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.65;
}

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

.lp-target-card {
  padding: 28px;
  border: 1px solid rgba(96, 165, 250, 0.1);
  border-radius: 14px;
  background: rgba(30, 41, 59, 0.56);
}

.lp-target-card:nth-child(2) {
  background: rgba(49, 46, 129, 0.42);
}

.lp-target-card:nth-child(3) {
  background: rgba(8, 47, 73, 0.42);
}

.lp-target-card__icon {
  display: inline-flex;
  margin-bottom: 20px;
  color: #94a3b8;
}

.lp-target-card h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 17px;
}

.lp-target-card p,
.lp-target-card li {
  color: #94a3b8;
  font-size: 14px;
}

.lp-target-card ul,
.lp-start__copy ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.lp-target-card li::before {
  content: "—";
  color: #475569;
}

.lp-benefits__inner,
.lp-start__inner,
.lp-security__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 72px;
  align-items: center;
}

.lp-benefits__copy .lp-btn {
  margin-top: 26px;
}

.lp-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 34px;
}

.lp-benefit-item {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
}

.lp-benefit-item > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: #2563eb;
}

.lp-benefit-item strong {
  display: block;
  color: #0f172a;
  font-size: 15px;
}

.lp-benefit-item p {
  margin: 4px 0 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
}

.lp-start {
  padding-top: 118px;
}

.lp-start__inner {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
}

.lp-start__copy .lp-logo {
  margin-bottom: 24px;
}

.lp-start__copy h2 {
  max-width: 360px;
}

.lp-start__copy li {
  color: #334155;
  font-weight: 800;
}

.lp-start__copy li::before {
  content: "✓";
  color: #2563eb;
}

.lp-auth-card {
  overflow: hidden;
  border: 1px solid #e8edf5;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

.lp-auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #e8edf5;
}

.lp-auth-tabs span {
  padding: 17px;
  color: #94a3b8;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.lp-auth-tabs span:first-child {
  color: #2563eb;
  border-bottom: 3px solid #2563eb;
}

.lp-auth-card__body {
  padding: 28px;
}

.lp-auth-card h3 {
  margin: 0 0 6px;
  color: #0f172a;
  font-size: 20px;
}

.lp-auth-card p {
  margin: 0 0 20px;
  color: #94a3b8;
  font-size: 14px;
}

.lp-auth-card label {
  margin: 14px 0;
  color: #334155;
  font-size: 13px;
  font-weight: 900;
}

.lp-auth-card label span {
  display: block;
  margin-top: 7px;
  padding: 12px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: #cbd5e1;
  font-weight: 700;
}

.lp-auth-card__body > p:last-child {
  margin: 16px 0 0;
  text-align: center;
}

.lp-auth-card a:not(.lp-btn) {
  color: #2563eb;
  font-weight: 900;
  text-decoration: none;
}

.lp-planned {
  padding-top: 70px;
}

.lp-planned .landing-card {
  padding: 22px;
}

.lp-security {
  padding: 72px 0;
  background: #ffffff;
}

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

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

.lp-security__list span {
  padding: 14px 16px;
  border: 1px solid #e8edf5;
  border-radius: 10px;
  background: #f8fafc;
  color: #334155;
  font-weight: 800;
}

.lp-faq {
  display: grid;
  gap: 10px;
  max-width: 860px;
  margin: 0 auto;
}

.landing-faq-item {
  padding: 0 18px;
  border: 1px solid #e8edf5;
  border-radius: 10px;
  background: #ffffff;
}

.landing-faq-item summary {
  cursor: pointer;
  padding: 18px 0;
  color: #0f172a;
  font-weight: 900;
}

.landing-faq-item p {
  margin: 0;
  padding: 0 0 18px;
  color: #64748b;
}

.lp-footer {
  padding: 48px 0 56px;
  color: #64748b;
  text-align: center;
}

.lp-footer__brand {
  justify-content: center;
  color: #ffffff;
  font-weight: 900;
}

.lp-footer p {
  max-width: 560px;
  margin: 20px auto 16px;
}

.lp-footer nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.lp-footer a {
  color: #94a3b8;
  font-weight: 800;
  text-decoration: none;
}

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

  .sidebar {
    min-height: auto;
  }

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

  .page-header,
  .search-form,
  .filter-form,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .page-header {
    display: grid;
  }

  .notice-banner {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 1023px) {
  .lp-hero__inner,
  .lp-benefits__inner,
  .lp-start__inner,
  .lp-security__inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .lp-feature-grid,
  .lp-target-grid,
  .lp-planned-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-preview {
    transform: none;
  }

  .lp-preview__body {
    height: auto;
    min-height: 340px;
  }
}

@media (max-width: 760px) {
  .lp-container,
  .lp-nav__inner,
  .lp-hero__inner {
    width: min(100% - 32px, 1200px);
  }

  .lp-nav__inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .lp-nav__actions,
  .lp-hero__cta {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .lp-btn {
    width: 100%;
  }

  .lp-hero {
    padding: 58px 0 56px;
  }

  .lp-hero h1 {
    font-size: clamp(32px, 10vw, 38px);
  }

  .lp-hero__subtitle,
  .lp-section__head span,
  .lp-benefits__copy > span,
  .lp-start__copy p {
    font-size: 16px;
  }

  .lp-preview__body,
  .lp-preview__work,
  .lp-feature-grid,
  .lp-target-grid,
  .lp-benefit-grid,
  .lp-planned-grid,
  .lp-security__list {
    grid-template-columns: 1fr;
  }

  .lp-preview__sidebar {
    display: none;
  }

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

  .lp-preview__work p {
    grid-template-columns: 1fr;
  }

  .lp-section,
  .lp-start {
    padding: 62px 0;
  }

  .landing-card,
  .lp-target-card,
  .lp-auth-card__body {
    padding: 22px;
  }
}

@media (min-width: 1440px) {
  .lp-container,
  .lp-nav__inner,
  .lp-hero__inner {
    width: min(100% - 80px, 1200px);
  }
}

@media (min-width: 1920px) {
  .lp-hero {
    padding: 118px 0 108px;
  }
}
