﻿/* Compact scalable footer. */
.lk-shell .footer{
  position:relative !important;
  left:auto !important;
  right:auto !important;
  bottom:auto !important;
  min-height:auto !important;
  border-top:1px solid rgba(6,78,59,.12);
  background:linear-gradient(180deg,rgba(255,255,255,.94),rgba(242,250,246,.98)) !important;
  box-shadow:0 -10px 26px rgba(20,58,45,.05);
  overflow:visible;
}

.lk-shell .footer-inner{
  width:min(100%, var(--lk-shell-max, 1180px));
  max-width:100%;
  min-height:58px;
  margin:0 auto;
  padding:8px clamp(12px,2.4vw,28px) calc(8px + env(safe-area-inset-bottom));
  display:grid;
  grid-template-columns:minmax(132px,auto) minmax(0,1fr) auto;
  align-items:center;
  gap:10px;
  color:#38564a;
  font-size:13px;
  text-align:left;
}

.lk-shell .footer-brand{
  min-width:0;
  display:flex;
  align-items:center;
  gap:8px;
}

.lk-shell .footer-logo{
  color:#0b4f3a;
  font-weight:900;
  white-space:nowrap;
}

.lk-shell .footer-links{
  min-width:0;
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  flex-wrap:nowrap;
}

.lk-shell .footer-links > a,
.lk-shell .footer-more > summary{
  min-height:30px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:4px 9px;
  border:1px solid rgba(6,78,59,.12);
  border-radius:999px;
  background:rgba(255,255,255,.78);
  color:#064e3b;
  box-shadow:0 1px 2px rgba(16,24,40,.03);
  font-size:13px;
  font-weight:850;
  line-height:1.2;
  white-space:nowrap;
}

.lk-shell .footer-links > a:hover,
.lk-shell .footer-links > a:focus-visible,
.lk-shell .footer-links > a.is-active,
.lk-shell .footer-more > summary:hover,
.lk-shell .footer-more > summary:focus-visible,
.lk-shell .footer-more.is-active > summary,
.lk-shell .footer-more[open] > summary{
  border-color:rgba(16,185,129,.32);
  background:#fff;
  color:#047857;
  box-shadow:0 8px 18px rgba(20,58,45,.08);
  text-decoration:none;
}

.lk-shell .footer-more{
  position:relative;
  flex:0 0 auto;
}

.lk-shell .footer-more > summary{
  cursor:pointer;
  list-style:none;
}

.lk-shell .footer-more > summary::-webkit-details-marker{
  display:none;
}

.lk-shell .footer-more > summary::after{
  content:"";
  width:7px;
  height:7px;
  margin-left:7px;
  border-right:2px solid currentColor;
  border-bottom:2px solid currentColor;
  transform:translateY(2px) rotate(225deg);
  transition:transform .16s ease;
}

.lk-shell .footer-more[open] > summary::after{
  transform:translateY(-2px) rotate(45deg);
}

.lk-shell .footer-more-menu{
  position:absolute;
  right:0;
  bottom:calc(100% + 8px);
  z-index:1400;
  width:max-content;
  min-width:190px;
  max-width:min(280px, calc(100vw - 24px));
  display:grid;
  gap:4px;
  padding:7px;
  border:1px solid rgba(6,78,59,.14);
  border-radius:8px;
  background:#fff;
  box-shadow:0 18px 46px rgba(15,35,25,.18);
}

.lk-shell .footer-more-menu a{
  width:100%;
  min-height:34px;
  justify-content:flex-start;
  padding:7px 10px;
  border:0;
  border-radius:7px;
  background:transparent;
  box-shadow:none;
  color:#064e3b;
  font-size:13px;
  overflow-wrap:anywhere;
  white-space:normal;
}

.lk-shell .footer-more-menu a:hover,
.lk-shell .footer-more-menu a:focus-visible,
.lk-shell .footer-more-menu a.is-active{
  background:#ecfdf5;
  color:#047857;
  box-shadow:none;
}

.lk-shell .footer-cta{
  display:block;
  justify-self:end;
  min-width:0;
}

.lk-shell .footer-cta .btn{
  min-height:34px;
  padding:0 14px;
  border-radius:999px;
  white-space:nowrap;
}

@media(max-width:1180px){
  .lk-shell .footer-inner{
    grid-template-columns:minmax(120px,auto) minmax(0,1fr);
  }
  .lk-shell .footer-links{
    justify-content:flex-end;
  }
  .lk-shell .footer-cta{
    display:none;
  }
}

@media(max-width:700px){
  .lk-shell .footer-inner{
    min-height:0;
    grid-template-columns:1fr;
    justify-items:center;
    gap:6px;
    padding-top:8px;
    font-size:12px;
    text-align:center;
  }
  .lk-shell .footer-brand{
    justify-content:center;
  }
  .lk-shell .footer-links{
    justify-content:flex-start;
    max-width:100%;
    padding-bottom:2px;
    overflow-x:auto;
    overscroll-behavior-x:contain;
    scrollbar-width:none;
  }
  .lk-shell .footer-links::-webkit-scrollbar{
    display:none;
  }
  .lk-shell .footer-links > a,
  .lk-shell .footer-more > summary{
    min-height:28px;
    padding:4px 8px;
    font-size:12px;
  }
  .lk-shell .footer-more-menu{
    position:fixed;
    left:auto;
    right:12px;
    bottom:calc(72px + env(safe-area-inset-bottom));
    transform:none;
    z-index:1500;
  }
}

@media(max-width:430px){
  .lk-shell .footer-inner{
    padding-left:10px;
    padding-right:10px;
  }
  .lk-shell .footer-links{
    width:min(100%, calc(100vw - 20px));
  }
  .lk-shell .footer-links > a,
  .lk-shell .footer-more > summary{
    padding-left:7px;
    padding-right:7px;
    font-size:11.5px;
  }
  .lk-shell .footer-more-menu{
    right:10px;
    max-width:calc(100vw - 20px);
  }
}

/* ==========================================================================
   Authenticated workspace page container system
   Shared shell for logged-in member/admin pages.
   ========================================================================== */

.lk-page-shell,
.lk-page-shell *,
.lk-page-shell *::before,
.lk-page-shell *::after{
  box-sizing:border-box;
}

.lk-page-shell{
  --lk-page-bg:#f7fbf8;
  --lk-page-surface:#ffffff;
  --lk-page-soft:#f0f8f3;
  --lk-page-line:rgba(20,58,45,.14);
  --lk-page-line-strong:rgba(20,58,45,.22);
  --lk-page-ink:#07130f;
  --lk-page-muted:#5a6874;
  --lk-page-green:#0b5a46;
  --lk-page-green-strong:#073c31;
  --lk-page-lime:#b9f46d;
  --lk-page-warn:#9a5b08;
  --lk-page-danger:#b42318;
  --lk-page-shadow:0 18px 44px rgba(20,58,45,.08);
  width:min(100%, calc(100vw - 32px));
  max-width:1320px;
  min-width:0;
  min-height:100%;
  margin:0 auto;
  padding:clamp(16px,2.2vw,28px);
  display:grid;
  gap:16px;
  color:var(--lk-page-ink);
  overflow-x:clip;
}

.lk-page-header,
.lk-limit-panel,
.lk-tabs-row,
.lk-content-grid{
  width:100%;
  min-width:0;
  max-width:100%;
}

.lk-page-header{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:18px;
  align-items:end;
  padding:22px;
  border:1px solid var(--lk-page-line);
  border-radius:8px;
  background:
    radial-gradient(680px 220px at 16% -20%, rgba(185,244,109,.20), transparent 62%),
    linear-gradient(180deg,#fff,#f8fcf9);
  box-shadow:var(--lk-page-shadow);
}

.lk-page-header__copy{
  display:grid;
  gap:7px;
  min-width:0;
}

.lk-page-header__crumb{
  color:#0b6f58;
  font-size:12px;
  font-weight:950;
  letter-spacing:.08em;
  line-height:1.2;
  text-transform:uppercase;
}

.lk-page-header h1{
  margin:0;
  color:var(--lk-page-ink);
  font-size:clamp(28px,2vw + 14px,42px);
  line-height:1.05;
  letter-spacing:0;
  overflow-wrap:anywhere;
}

.lk-page-header p{
  max-width:820px;
  margin:0;
  color:var(--lk-page-muted);
  font-size:15px;
  line-height:1.55;
}

.lk-page-header__actions{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:9px;
  min-width:0;
}

.lk-shell.is-authenticated .lk-app-topbar.lk-page-header--appbar{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:0;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
}

.lk-page-btn{
  min-height:40px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:0 14px;
  border:1px solid var(--lk-page-line-strong);
  border-radius:8px;
  background:#fff;
  color:var(--lk-page-green);
  font-weight:900;
  font-size:14px;
  line-height:1;
  text-decoration:none;
  white-space:nowrap;
  cursor:pointer;
  transition:background .16s ease,border-color .16s ease,box-shadow .16s ease,transform .12s ease;
}

.lk-page-btn:hover,
.lk-page-btn:focus-visible{
  border-color:rgba(16,185,129,.40);
  background:#ecfdf5;
  color:#047857;
  box-shadow:0 10px 24px rgba(6,78,59,.10);
}

.lk-page-btn:active{
  transform:translateY(1px);
}

.lk-page-btn--primary{
  border-color:var(--lk-page-green-strong);
  background:var(--lk-page-green-strong);
  color:#fff;
  box-shadow:0 12px 26px rgba(6,78,59,.18);
}

.lk-page-btn--primary:hover,
.lk-page-btn--primary:focus-visible{
  border-color:#047857;
  background:#047857;
  color:#fff;
}

.lk-limit-panel{
  display:grid;
  gap:14px;
  padding:16px;
  border:1px solid var(--lk-page-line);
  border-radius:8px;
  background:linear-gradient(180deg,#ffffff,#fbfefc);
  box-shadow:0 12px 30px rgba(20,58,45,.06);
}

.lk-limit-panel--usage-only{
  gap:0;
  padding:0;
  border:0;
  background:transparent;
  box-shadow:none;
}

.lk-limit-panel__summary{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr)) auto;
  gap:12px;
  align-items:center;
}

.lk-limit-panel__summary > div{
  min-width:0;
  display:grid;
  gap:4px;
  padding:10px 12px;
  border:1px solid rgba(20,58,45,.10);
  border-radius:8px;
  background:#f8fcf9;
}

.lk-limit-panel__summary span,
.lk-limit-item__top span,
.lk-limit-item__top a{
  color:var(--lk-page-muted);
  font-size:12px;
  font-weight:950;
  letter-spacing:.03em;
  text-transform:uppercase;
}

.lk-limit-panel__summary strong{
  min-width:0;
  color:var(--lk-page-ink);
  font-size:15px;
  font-weight:950;
  line-height:1.2;
  overflow-wrap:anywhere;
}

.lk-limit-panel__items{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(min(100%,210px),1fr));
  gap:10px;
}

.lk-limit-panel--usage-only .lk-limit-panel__items{
  grid-template-columns:repeat(auto-fit,minmax(min(100%,220px),1fr));
  gap:8px;
}

.lk-limit-item{
  min-width:0;
  display:grid;
  gap:8px;
  padding:12px;
  border:1px solid rgba(20,58,45,.11);
  border-radius:8px;
  background:#fff;
}

.lk-limit-panel--usage-only .lk-limit-item{
  padding:10px 12px;
  border-color:rgba(20,58,45,.10);
  background:rgba(255,255,255,.72);
  box-shadow:0 6px 16px rgba(20,58,45,.035);
}

.lk-limit-item__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
  min-width:0;
}

.lk-limit-item__top a{
  text-decoration:none;
}

.lk-limit-item__top a:hover{
  color:#047857;
  text-decoration:underline;
}

.lk-limit-item__top strong{
  flex:0 0 auto;
  color:#10231a;
  font-size:13px;
  font-weight:950;
  line-height:1.25;
  white-space:nowrap;
}

.lk-limit-item__bar{
  height:9px;
  overflow:hidden;
  border-radius:999px;
  border:1px solid rgba(20,58,45,.08);
  background:#e7f3ec;
}

.lk-limit-item__bar span{
  display:block;
  height:100%;
  width:0;
  border-radius:999px;
  background:linear-gradient(90deg,#0b5a46,#10b981,#b9f46d);
}

.lk-limit-item.is-near .lk-limit-item__bar span{
  background:linear-gradient(90deg,#9a5b08,#f59e0b,#ffd84d);
}

.lk-limit-item.is-full .lk-limit-item__bar span{
  background:linear-gradient(90deg,#991b1b,#ef4444);
}

.lk-limit-item.is-unlimited .lk-limit-item__bar span{
  width:100% !important;
  opacity:.45;
}

.lk-tabs-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  padding:8px;
  border:1px solid var(--lk-page-line);
  border-radius:8px;
  background:rgba(255,255,255,.72);
  box-shadow:0 8px 20px rgba(20,58,45,.05);
}

.lk-tab-pill{
  min-height:36px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 12px;
  border:1px solid transparent;
  border-radius:8px;
  color:#24362f;
  background:transparent;
  text-decoration:none;
  font-size:13px;
  font-weight:900;
}

.lk-tab-pill:hover,
.lk-tab-pill:focus-visible{
  border-color:rgba(20,58,45,.13);
  background:#f1fbf5;
  color:#047857;
}

.lk-tab-pill.is-active{
  border-color:rgba(18,128,92,.24);
  background:linear-gradient(180deg,#e5f7ec,#dff5e5);
  color:#0b5a46;
}

.lk-content-grid{
  display:grid;
  gap:16px;
  align-items:start;
}

.lk-content-grid--single,
.lk-content-grid--table{
  grid-template-columns:minmax(0,1fr);
}

.lk-content-grid--split{
  grid-template-columns:minmax(0,1fr) minmax(260px,340px);
}

.lk-content-grid--builder{
  grid-template-columns:minmax(0,1fr);
}

.lk-content-grid--analytics{
  grid-template-columns:minmax(0,1fr);
}

.lk-card,
.lk-side-panel,
.lk-bottom-section,
.lk-sticky-actions,
.lk-page-shell :where(
  .lk-ui-card,
  .card,
  .text-bubble,
  .lk2-panel,
  .lk2-card,
  .lk-an-panel,
  .lk-cd-panel,
  .lk-cd-drop,
  .lk-campaign-card,
  .lk-profile-card,
  .lk-growth-card,
  .cron-card,
  .lk-admin-search .lk-card,
  .lk-poll-create,
  .lk-cards-page,
  .lk-studio .lk-panel,
  #lk-support-edit .card,
  .lk-step,
  .lk-live-section,
  .lk-qr .card,
  .lk-qr-previewPanel
){
  border-color:var(--lk-page-line) !important;
  border-radius:8px !important;
  background-color:#fff;
  box-shadow:0 12px 30px rgba(20,58,45,.06) !important;
}

.lk-card,
.lk-side-panel,
.lk-bottom-section{
  padding:18px;
  border:1px solid var(--lk-page-line);
  background:#fff;
}

.lk-side-panel{
  position:relative;
}

.lk-bottom-section{
  margin-top:0;
}

.lk-sticky-actions{
  position:sticky;
  bottom:12px;
  z-index:40;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px;
  border:1px solid var(--lk-page-line);
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(12px);
}

.lk-sticky-actions__status{
  min-width:0;
  color:var(--lk-page-muted);
  font-size:13px;
  font-weight:800;
  line-height:1.35;
}

.lk-sticky-actions__buttons{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:8px;
  min-width:0;
}

.lk-page-shell > .lk-content-grid > :where(
  .text-bubble,
  .container,
  .lk-sl-card,
  .lk-edit-card,
  .lk2-wrap,
  #lk-an-page,
  .lk-dash2,
  .lk-create,
  .lk-cards-page,
  .lk-card-live-editor,
  .lk-studio,
  .lk-qr,
  #lk-qr-page,
  .lk-campaigns,
  .lk-campaign-form,
  .lk-campaign-edit,
  .lk-campaign-assets,
  .lk-campaign-report,
  .lk-cd-wrap,
  .lk-poll-create,
  .ama-dash,
  #lk-support-edit,
  .lk-sup-edit,
  .lk-profile,
  .lk-profile-wrap,
  .lk-saas,
  .lk-growth-shell,
  .lk-admin-search,
  .lk-admin-rt,
  .lk-ab-page,
  .lk-rm-wrap
){
  width:100% !important;
  max-width:100% !important;
  min-width:0 !important;
  margin:0 !important;
}

.lk-page-shell :where(
  .lk-sl-head,
  .lk-edit-head,
  .lk-qr-hero,
  .lk-cards-head,
  .lk-live-topbar,
  .lk-campaign-hero,
  .lk-create-hero,
  .lk-assets-hero,
  .lk-cd-hero,
  .lk-cd-head,
  .lk-poll-head,
  .amd-head,
  .lk-profile-head,
  .lk-growth-hero,
  .lk-ab-hero,
  .lk-rm-head
){
  border-radius:8px !important;
  letter-spacing:0;
}

.lk-page-shell .lk-content-grid :where(
  .lk-quota-dock,
  .lk-ui-limeline,
  .lk-ui-limit-card,
  .lk-dash-plan,
  .lk-sl-plan,
  .lk-sl-plan-premium
){
  display:none !important;
}

.lk-page-shell .lk-content-grid .lk-an-tabs{
  display:none !important;
}

.lk-page-shell .lk-content-grid :where(
  .lk-an-hero .lk-an-title,
  .lk-an-hero .lk-an-badge,
  .lk2-stats-overview .lk2-eyebrow,
  .lk2-stats-overview .lk2-analytics-hero h1,
  .lk-dash-performance-summary h1,
  .lk-campaign-kicker,
  .lk-campaign-hero h1,
  .lk-create-hero .lk-kicker,
  .lk-create-hero h1,
  .lk-cd-eyebrow,
  .lk-cd-hero h1,
  .lk-saas-eyebrow,
  .lk-saas-hero h1,
  .lk-sl-head,
  .lk-cards-head,
  .lk-poll-head,
  .lk-profile-head,
  .lk-growth-hero,
  .lk-ab-hero,
  .lk-rm-head
),
.lk-page-shell .lk-content-grid .lk-qr .hero .titleRow h2,
.lk-page-shell .lk-content-grid .lk-create-head > div:first-child,
.lk-page-shell .lk-content-grid .amd-head > h1,
.lk-page-shell .lk-content-grid .amd-head > .sub{
  display:none !important;
}

.lk-page-shell .lk-content-grid :where(
  .lk2-stats-overview .lk2-analytics-hero,
  .lk-campaign-hero,
  .lk-create-hero,
  .lk-cd-hero,
  .lk-saas-hero
){
  margin:0 0 12px !important;
  padding:14px 16px !important;
  border:1px solid var(--lk-page-line) !important;
  border-radius:8px !important;
  background:rgba(255,255,255,.74) !important;
  box-shadow:0 8px 22px rgba(20,58,45,.045) !important;
  color:var(--lk-page-ink) !important;
}

.lk-page-shell .lk-content-grid :where(
  .lk2-stats-overview .lk2-subtitle,
  .lk-campaign-hero p,
  .lk-create-hero .lk-sub,
  .lk-cd-hero p,
  .lk-saas-sub
){
  color:var(--lk-page-muted) !important;
}

.lk-page-shell .lk-content-grid .lk-qr .hero .titleRow{
  justify-content:space-between;
  margin-bottom:0;
}

.lk-page-shell .lk-content-grid .lk-cd-hero{
  display:grid !important;
  grid-template-columns:minmax(0,1fr) auto;
  align-items:center;
  gap:12px;
  margin:0 0 12px !important;
  padding:12px 14px !important;
  border:1px solid var(--lk-page-line) !important;
  border-radius:8px !important;
  background:rgba(255,255,255,.72) !important;
  color:var(--lk-page-ink) !important;
  box-shadow:0 8px 22px rgba(20,58,45,.045) !important;
}

.lk-page-shell .lk-content-grid .lk-cd-hero p{
  max-width:760px;
  margin:0 !important;
  color:var(--lk-page-muted) !important;
  font-size:14px;
  line-height:1.45;
}

.lk-page-shell .lk-content-grid .lk-cd-hero .lk-cd-actions{
  justify-content:flex-end;
  margin-left:auto;
}

.lk-page-shell .lk-content-grid .lk-cd-hero .lk-cd-btn{
  min-height:36px;
  padding:8px 12px;
}

.lk-page-shell .lk-content-grid .lk-cd-head{
  display:flex !important;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
  margin:0 0 12px !important;
  padding:10px 12px !important;
  border:1px solid var(--lk-page-line) !important;
  border-radius:8px !important;
  background:rgba(255,255,255,.72) !important;
  color:var(--lk-page-ink) !important;
  box-shadow:0 8px 22px rgba(20,58,45,.045) !important;
}

.lk-page-shell .lk-content-grid .lk-cd-head > div:first-child,
.lk-page-shell .lk-content-grid .lk-cd-head h1,
.lk-page-shell .lk-content-grid .lk-cd-head p{
  display:none !important;
}

.lk-page-shell .lk-content-grid .lk-cd-head .lk-cd-actions{
  width:100%;
  display:flex;
  justify-content:flex-end;
  gap:8px;
}

.lk-page-shell .lk-content-grid .lk-cd-head .lk-cd-btn{
  min-height:34px;
  padding:7px 11px;
  border-color:rgba(20,58,45,.14) !important;
  background:#fff !important;
  color:var(--lk-page-green) !important;
  box-shadow:none !important;
}

.lk-page-shell .lk-content-grid .lk-cd-head .lk-cd-btn:hover,
.lk-page-shell .lk-content-grid .lk-cd-head .lk-cd-btn:focus-visible{
  border-color:rgba(16,185,129,.34) !important;
  background:#ecfdf5 !important;
  color:#047857 !important;
}

@media(max-width:640px){
  .lk-page-shell .lk-content-grid .lk-cd-hero{
    grid-template-columns:minmax(0,1fr);
    gap:10px;
    padding:12px !important;
  }

  .lk-page-shell .lk-content-grid .lk-cd-hero .lk-cd-actions,
  .lk-page-shell .lk-content-grid .lk-cd-hero .lk-cd-btn,
  .lk-page-shell .lk-content-grid .lk-cd-head .lk-cd-actions,
  .lk-page-shell .lk-content-grid .lk-cd-head .lk-cd-btn{
    width:100%;
    justify-content:center;
  }

  .lk-page-shell .lk-content-grid .lk-cd-head .lk-cd-actions{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .lk-page-shell .lk-content-grid .lk-cd-head .lk-cd-btn{
    min-height:36px;
    white-space:normal;
    line-height:1.2;
  }
}

@media(max-width:360px){
  .lk-page-shell .lk-content-grid .lk-cd-head .lk-cd-actions{
    grid-template-columns:minmax(0,1fr);
  }
}

.lk-page-shell .lk-content-grid .lk-an-hero{
  min-height:0;
  padding:18px;
}

.lk-page-shell .lk-content-grid #lk-an-page .lk-an-hero{
  margin:0 !important;
  padding:10px 12px !important;
  border:1px solid rgba(20,58,45,.12) !important;
  border-radius:8px !important;
  background:rgba(255,255,255,.66) !important;
  box-shadow:0 8px 22px rgba(20,58,45,.045) !important;
}

.lk-page-shell .lk-content-grid #lk-an-page .lk-an-plan{
  width:100%;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  justify-items:stretch;
  gap:10px 12px;
  text-align:left;
}

.lk-page-shell .lk-content-grid #lk-an-page .lk-an-range{
  min-width:0;
  min-height:34px;
  display:inline-flex;
  align-items:center;
  flex-wrap:wrap;
  gap:4px;
  padding:0 11px;
  border:1px solid rgba(20,58,45,.12);
  border-radius:999px;
  background:#f7fbf8;
  color:#24362f;
  font-size:13px;
  font-weight:900;
  line-height:1.25;
}

.lk-page-shell .lk-content-grid #lk-an-page .lk-an-actions{
  margin-left:auto;
}

.lk-page-shell .lk-content-grid #lk-an-page .lk-an-btn{
  min-height:34px;
  padding:0 12px;
  border-radius:8px;
  box-shadow:none;
}

.lk-page-shell .lk-content-grid .lk-profile-panel{
  padding-top:clamp(24px,3vw,40px) !important;
}

.lk-page-shell .lk-content-grid .lk-profile-anchor{
  position:absolute !important;
  top:auto !important;
}

@media(max-width:640px){
  .lk-page-shell .lk-content-grid #lk-an-page .lk-an-hero{
    padding:10px !important;
  }

  .lk-page-shell .lk-content-grid #lk-an-page .lk-an-plan{
    display:grid;
    grid-template-columns:minmax(0,1fr);
    gap:8px;
  }

  .lk-page-shell .lk-content-grid #lk-an-page .lk-an-range,
  .lk-page-shell .lk-content-grid #lk-an-page .lk-an-actions,
  .lk-page-shell .lk-content-grid #lk-an-page .lk-an-btn{
    width:100%;
    justify-content:center;
  }

  .lk-page-shell .lk-content-grid #lk-an-page .lk-an-range{
    white-space:normal;
    text-align:center;
  }

  .lk-page-shell .lk-content-grid .lk-profile-panel{
    padding-top:20px !important;
  }
}

.lk-page-shell :where(h1,h2,h3,h4){
  letter-spacing:0;
}

.lk-page-shell .lk-content-grid :where(h1){
  font-size:clamp(30px, 2.6vw, 38px) !important;
  line-height:1.1 !important;
  letter-spacing:0 !important;
}

.lk-page-shell :where(
  .hero h1,
  .hero h2,
  .lk-hero h1,
  .lk-hero h2,
  .lk2-hero h1,
  .lk2-hero h2,
  .lk-dash2-hero h1,
  .lk-dash2-hero h2,
  .lk-cd-hero h1,
  .lk-cd-hero h2
){
  font-size:clamp(24px, 2.2vw, 30px) !important;
  line-height:1.14 !important;
}

.lk-page-shell .lk-content-grid .text-bubble .hero h1,
.lk-page-shell .lk-content-grid .text-bubble .hero h2,
.lk-page-shell .lk-content-grid .lk-qr .hero h1,
.lk-page-shell .lk-content-grid .lk-qr .hero h2,
.lk-page-shell .lk-content-grid .lk2-hero h1,
.lk-page-shell .lk-content-grid .lk2-hero h2,
.lk-page-shell .lk-content-grid .lk-dash2-hero h1,
.lk-page-shell .lk-content-grid .lk-dash2-hero h2{
  font-size:clamp(24px, 2.2vw, 30px) !important;
  line-height:1.14 !important;
}

.lk-page-shell .lk-content-grid :where(
  .lk-sl-head,
  .lk-edit-head,
  .lk-cards-head,
  .lk-cd-head,
  .lk-poll-head,
  .amd-head,
  .lk-profile-head,
  .lk-growth-hero,
  .lk-ab-hero,
  .lk-rm-head
) :where(h1,h2){
  font-size:clamp(24px, 2.2vw, 30px) !important;
  line-height:1.14 !important;
}

.lk-page-shell :where(table,.tablewrap,.table-wrap,.lk2-tablewrap,.lk-an-table-wrap,.lk-cd-table-wrap,.lk-growth-table-wrap,.lk-ui-table-wrap,.responsive-table){
  max-width:100%;
  min-width:0;
}

.lk-page-shell :where(.tablewrap,.table-wrap,.lk2-tablewrap,.lk-an-table-wrap,.lk-cd-table-wrap,.lk-growth-table-wrap,.lk-ui-table-wrap,.responsive-table){
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
}

.lk-page-shell :where(code,pre,.notranslate){
  overflow-wrap:anywhere;
}

@media(max-width:1180px){
  .lk-content-grid--split{
    grid-template-columns:minmax(0,1fr);
  }
}

@media(max-width:920px){
  .lk-page-shell{
    width:min(100%, calc(100vw - 24px));
    padding:14px 0 22px;
    gap:14px;
    overflow-x:clip;
  }

  .lk-page-header{
    grid-template-columns:1fr;
    align-items:start;
    padding:18px;
  }

  .lk-page-header h1{
    font-size:clamp(25px,8vw,34px);
  }

  .lk-page-header__actions{
    justify-content:flex-start;
  }

  .lk-limit-panel__summary{
    grid-template-columns:1fr;
  }

  .lk-limit-panel__summary > .lk-page-btn{
    width:100%;
  }

  .lk-tabs-row{
    flex-wrap:nowrap;
    overflow-x:auto;
    overscroll-behavior-x:contain;
    scrollbar-width:none;
  }

  .lk-tabs-row::-webkit-scrollbar{
    display:none;
  }

  .lk-tab-pill{
    flex:0 0 auto;
  }

  .lk-content-grid{
    grid-template-columns:1fr;
  }

  .lk-sticky-actions{
    position:static;
    align-items:stretch;
    flex-direction:column;
  }

  .lk-sticky-actions__buttons{
    justify-content:flex-start;
  }
}

@media(max-width:430px){
  .lk-page-shell{
    width:min(100%, calc(100vw - 20px));
  }

  .lk-page-header,
  .lk-limit-panel{
    padding:14px;
  }

  .lk-limit-panel--usage-only{
    padding:0;
  }

  .lk-page-header__actions,
  .lk-page-btn{
    width:100%;
  }

  .lk-limit-panel__items{
    grid-template-columns:1fr;
  }
}
