@charset "UTF-8";

html,
body {
  height: 100%;
}

body {
  background-color: #f5f5f5;
}

:root {
    --ll-page-bg: #f5f5f5;
    --ll-surface: #ffffff;
    --ll-ink: #20262b;
    --ll-muted: #4f565c;
    --ll-border: #d7d9da;
    --ll-accent: #ff8a35;
    --ll-accent-hover: #f47a22;
    --ll-nav-bg: #20262b;
    --ll-link: #9a4a14;
    --ll-focus: #b95612;
}

.ll-public-nav {
    min-height: 68px;
    padding: 0 1.125rem;
    background-color: var(--ll-nav-bg) !important;
    box-shadow: none;
}

.ll-nav-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.ll-nav-logo {
    display: block;
    inline-size: 40px;
    block-size: 40px;
}

.ll-nav-title {
    font-size: 1rem;
    line-height: 1;
}

.ll-public-nav .navbar-collapse {
    padding-right: 40px;
}

.ll-public-nav .navbar-nav {
    gap: clamp(0.75rem, 1.6vw, 1.5rem);
}

.ll-public-nav .nav-link {
    position: relative;
    padding: 1.35rem 0.55rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.125rem;
    line-height: 1;
    transition: color 160ms ease;
}

.ll-public-nav .nav-link:hover,
.ll-public-nav .nav-link:focus-visible,
.ll-public-nav .nav-link.active,
.ll-public-nav .nav-link.active-menu-item {
    color: #fff;
}

.ll-public-nav .nav-link.active::after,
.ll-public-nav .nav-link.active-menu-item::after {
    position: absolute;
    right: 0.55rem;
    bottom: 0.8rem;
    left: 0.55rem;
    height: 2px;
    background: var(--ll-accent);
    content: "";
}

.ll-public-nav .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.28);
}

.ll-skip-link {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 1100;
    padding: 0.7rem 0.9rem;
    border-radius: 7px;
    color: var(--ll-ink);
    background: var(--ll-surface);
    font-weight: 700;
    text-decoration: none;
    transform: translateY(-200%);
    transition: transform 120ms ease;
}

.ll-skip-link:focus {
    outline: 3px solid var(--ll-ink);
    outline-offset: 3px;
    transform: translateY(0);
}

.ll-home {
    min-height: calc(100vh - 68px);
    overflow-x: hidden;
    color: var(--ll-ink);
    background: var(--ll-page-bg);
}

.ll-home-container {
    max-width: 1384px;
    padding-right: 2.75rem;
    padding-left: 2.75rem;
    text-align: center;
}

.ll-home-hero {
    padding-top: 2.25rem;
}

.ll-home-logo {
    display: block;
    inline-size: 112px;
    block-size: 112px;
    margin: 0 auto;
    border-radius: 12px;
}

.ll-home-title {
    max-width: 980px;
    margin: 2.2rem auto 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 4.25vw, 4.15rem);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.ll-home-lead {
    max-width: 760px;
    margin: 0.7rem auto 0;
    color: var(--ll-ink);
    font-size: 1.25rem;
    line-height: 1.4;
}

.ll-home-audio {
    display: block;
    inline-size: min(100%, 480px);
    block-size: 54px;
    margin: 1.5rem auto 0;
}

.ll-home a[href="createaccount"].btn-custom-xl {
    margin-top: 1.5rem;
    padding: 0.93rem 2.2rem;
    border: 1px solid var(--ll-accent);
    border-radius: 11px;
    color: var(--ll-ink);
    background: var(--ll-accent);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.25;
    box-shadow: none;
    transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.ll-home a[href="createaccount"].btn-custom-xl:hover {
    border-color: var(--ll-accent-hover);
    color: var(--ll-ink);
    background: var(--ll-accent-hover);
    transform: translateY(-1px);
}

.ll-home a[href="createaccount"].btn-custom-xl:focus-visible,
.ll-how a[href="createaccount"].btn-custom-xl:focus-visible,
.ll-features a[href="createaccount"].btn-custom-xl:focus-visible,
.ll-pricing a[href="createaccount"].btn-custom-xl:focus-visible,
.ll-app-row > .btn:focus-visible {
    outline: 3px solid var(--ll-ink);
    outline-offset: 3px;
    box-shadow: none;
}

.ll-public-nav .nav-link:focus-visible,
.ll-public-nav .navbar-toggler:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
    box-shadow: none;
}

.ll-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 2.1rem;
}

.ll-benefit {
    position: relative;
    min-width: 0;
    padding: 0 1.65rem 2.25rem;
}

.ll-benefit + .ll-benefit {
    border-left: 0;
}

.ll-benefit + .ll-benefit::before {
    position: absolute;
    top: 1.55rem;
    bottom: 1.6rem;
    left: 0;
    width: 1px;
    background: var(--ll-border);
    content: "";
}

.ll-benefit-icon {
    display: block;
    min-height: 54px;
    margin-bottom: 0.6rem;
    font-size: 3rem;
    line-height: 1;
}

.ll-benefit h2 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.2;
}

.ll-benefit p {
    max-width: 370px;
    margin: 0.75rem auto 0;
    font-size: 0.93rem;
    line-height: 1.55;
}

.ll-how {
    min-height: calc(100vh - 68px);
    overflow-x: hidden;
    color: var(--ll-ink);
    background: var(--ll-page-bg);
}

.ll-how-container {
    max-width: 1280px;
    padding: 3.75rem 2.75rem 2.5rem;
    text-align: center;
}

.ll-how-eyebrow {
    margin: 0;
    color: #9a4a14;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.ll-how-title {
    max-width: 880px;
    margin: 0.65rem auto 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.85rem, 4vw, 4rem);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.ll-how-lead {
    max-width: 700px;
    margin: 0.8rem auto 0;
    color: var(--ll-muted);
    font-size: 1.18rem;
    line-height: 1.45;
}

.ll-how-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 3rem 0 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--ll-border);
    border-bottom: 1px solid var(--ll-border);
}

.ll-how-step {
    position: relative;
    min-width: 0;
    padding: 1.7rem 2rem 1.85rem;
}

.ll-how-step + .ll-how-step::before {
    position: absolute;
    top: 1.7rem;
    bottom: 1.7rem;
    left: 0;
    width: 1px;
    background: var(--ll-border);
    content: "";
}

.ll-how-step-number {
    display: inline-grid;
    width: 2rem;
    height: 2rem;
    place-items: center;
    border: 1px solid #d99a6a;
    border-radius: 50%;
    color: #9a4a14;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1;
}

.ll-how-step-icon {
    display: block;
    min-height: 2.8rem;
    margin: 1rem 0 0.65rem;
    font-size: 2.75rem;
    line-height: 1;
}

.ll-how-step h2 {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.2;
}

.ll-how-step p {
    max-width: 295px;
    margin: 0.65rem auto 0;
    color: var(--ll-muted);
    font-size: 0.96rem;
    line-height: 1.5;
}

.ll-how-desktop-cta,
.ll-how-mobile-cta {
    margin-top: 2rem;
}

.ll-how a[href="createaccount"].btn-custom-xl {
    margin-top: 0;
    padding: 0.85rem 2.05rem;
    border: 1px solid var(--ll-accent);
    border-radius: 11px;
    color: var(--ll-ink);
    background: var(--ll-accent);
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.25;
    box-shadow: none;
    transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.ll-how a[href="createaccount"].btn-custom-xl:hover {
    border-color: var(--ll-accent-hover);
    color: var(--ll-ink);
    background: var(--ll-accent-hover);
    transform: translateY(-1px);
}

.ll-features {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 68px);
    overflow-x: hidden;
    color: var(--ll-ink);
    background: var(--ll-page-bg);
}

.ll-features-hero {
    flex: 1 0 auto;
}

.ll-features-container {
    max-width: 1280px;
    padding: 3.75rem 2.75rem 2.5rem;
    text-align: center;
}

.ll-features-eyebrow {
    margin: 0;
    color: #9a4a14;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.ll-features-title {
    max-width: 800px;
    margin: 0.65rem auto 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.85rem, 4vw, 4rem);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.ll-features-lead {
    max-width: 740px;
    margin: 0.8rem auto 0;
    color: var(--ll-muted);
    font-size: 1.18rem;
    line-height: 1.45;
}

.ll-feature-section {
    margin-top: 2.75rem;
}

.ll-feature-section--core {
    margin-top: 2.25rem;
}

.ll-feature-section-title {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.45rem, 2.1vw, 1.85rem);
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: -0.02em;
}

.ll-features-desktop-cta,
.ll-features-mobile-cta {
    margin-top: 2rem;
}

.ll-features a[href="createaccount"].btn-custom-xl {
    margin-top: 0;
    padding: 0.85rem 2.05rem;
    border: 1px solid var(--ll-accent);
    border-radius: 11px;
    color: var(--ll-ink);
    background: var(--ll-accent);
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.25;
    box-shadow: none;
    transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.ll-features a[href="createaccount"].btn-custom-xl:hover {
    border-color: var(--ll-accent-hover);
    color: var(--ll-ink);
    background: var(--ll-accent-hover);
    transform: translateY(-1px);
}

.ll-feature-detail-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 1rem 0 0;
    border-top: 1px solid var(--ll-border);
    border-bottom: 1px solid var(--ll-border);
}

.ll-feature-detail {
    display: grid;
    grid-template-columns: 2.8rem minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
    min-width: 0;
    padding: 1.45rem 1.75rem;
    text-align: left;
}

.ll-feature-detail:nth-child(even) {
    border-left: 1px solid var(--ll-border);
}

.ll-feature-detail:nth-child(n + 3) {
    border-top: 1px solid var(--ll-border);
}

.ll-feature-detail-icon {
    width: 2.8rem;
    font-size: 2.25rem;
    line-height: 1;
    text-align: center;
}

.ll-feature-detail h2,
.ll-feature-detail h3 {
    margin: 0;
    font-size: 1.12rem;
    font-weight: 700;
    line-height: 1.3;
}

.ll-feature-detail p {
    margin: 0.35rem 0 0;
    color: var(--ll-muted);
    font-size: 0.94rem;
    line-height: 1.5;
}

.ll-apps-page {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 68px);
    overflow-x: hidden;
    color: var(--ll-ink);
    background: var(--ll-page-bg);
}

.ll-apps-page-content {
    flex: 1 0 auto;
}

.ll-apps-page-container {
    max-width: 1280px;
    padding: 3.75rem 2.75rem 2.5rem;
    text-align: center;
}

.ll-apps-page-eyebrow {
    margin: 0;
    color: #9a4a14;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.ll-apps-page-title {
    max-width: 800px;
    margin: 0.65rem auto 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.85rem, 4vw, 4rem);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.ll-apps-page-lead {
    max-width: 760px;
    margin: 0.8rem auto 0;
    color: var(--ll-muted);
    font-size: 1.18rem;
    line-height: 1.45;
}

.ll-apps-page-section {
    margin-top: 2.75rem;
}

.ll-apps-page-section--primary {
    margin-top: 2.25rem;
}

.ll-apps-page-section-title {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.45rem, 2.1vw, 1.85rem);
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: -0.02em;
}

.ll-apps-page-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1rem;
    border-top: 1px solid var(--ll-border);
    border-bottom: 1px solid var(--ll-border);
}

.ll-apps-page-card {
    display: grid;
    grid-template-columns: 2.8rem minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
    min-width: 0;
    padding: 1.45rem 1.75rem;
    text-align: left;
}

.ll-apps-page-card:nth-child(even) {
    border-left: 1px solid var(--ll-border);
}

.ll-apps-page-icon {
    width: 2.8rem;
    font-size: 2.25rem;
    line-height: 1;
    text-align: center;
}

.ll-apps-page-card-heading {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 0.65rem;
    align-items: baseline;
}

.ll-apps-page-card h3 {
    margin: 0;
    font-size: 1.12rem;
    font-weight: 700;
    line-height: 1.3;
}

.ll-apps-page-status {
    color: #9a4a14;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.2;
    text-transform: uppercase;
}

.ll-apps-page-card p {
    margin: 0.35rem 0 0;
    color: var(--ll-muted);
    font-size: 0.94rem;
    line-height: 1.5;
}

.ll-apps-page-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.9rem;
    padding: 0.55rem 0.85rem;
    border: 1px solid var(--ll-accent);
    border-radius: 7px;
    color: var(--ll-ink);
    background: transparent;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.25;
    text-decoration: none;
    transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.ll-apps-page-action:hover {
    border-color: var(--ll-accent-hover);
    color: var(--ll-ink);
    background: rgba(255, 138, 53, 0.1);
    transform: translateY(-1px);
}

.ll-apps-page-action:focus-visible {
    outline: 3px solid var(--ll-ink);
    outline-offset: 3px;
    box-shadow: none;
}

.ll-pricing {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 68px);
    overflow-x: hidden;
    color: var(--ll-ink);
    background: var(--ll-page-bg);
}

.ll-pricing-content {
    flex: 1 0 auto;
}

.ll-pricing-container {
    max-width: 1280px;
    padding: 2.5rem 2.75rem 2.5rem;
    text-align: center;
}

.ll-pricing-eyebrow {
    margin: 0;
    color: #9a4a14;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.ll-pricing-title {
    max-width: 800px;
    margin: 0.65rem auto 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.85rem, 4vw, 4rem);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.ll-pricing-lead {
    max-width: 680px;
    margin: 0.8rem auto 0;
    color: var(--ll-muted);
    font-size: 1.18rem;
    line-height: 1.45;
}

.ll-pricing-cta {
    margin-top: 1.25rem;
}

.ll-pricing a[href="createaccount"].btn-custom-xl {
    margin-top: 0;
    padding: 0.85rem 2.05rem;
    border: 1px solid var(--ll-accent);
    border-radius: 11px;
    color: var(--ll-ink);
    background: var(--ll-accent);
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.25;
    box-shadow: none;
    transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.ll-pricing a[href="createaccount"].btn-custom-xl:hover {
    border-color: var(--ll-accent-hover);
    color: var(--ll-ink);
    background: var(--ll-accent-hover);
    transform: translateY(-1px);
}

.ll-pricing-rate-summary {
    margin: 0.8rem auto 0;
    color: #9a4a14;
    font-size: 0.96rem;
    font-weight: 600;
    line-height: 1.45;
}

.ll-pricing-section {
    margin-top: 2.5rem;
}

.ll-pricing-section--primary {
    margin-top: 1.8rem;
}

.ll-pricing-section--rates {
    margin-top: 1.8rem;
}

.ll-pricing-section-title {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.45rem, 2.1vw, 1.85rem);
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: -0.02em;
}

.ll-pricing-section-lead {
    max-width: 560px;
    margin: 0.5rem auto 0;
    color: var(--ll-muted);
    font-size: 0.96rem;
    line-height: 1.45;
}

.ll-pricing-principles,
.ll-pricing-rate-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1rem;
    border-top: 1px solid var(--ll-border);
    border-bottom: 1px solid var(--ll-border);
}

.ll-pricing-principle,
.ll-pricing-rate {
    display: grid;
    grid-template-columns: 2.8rem minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
    min-width: 0;
    padding: 1.2rem 1.75rem;
    text-align: left;
}

.ll-pricing-principle + .ll-pricing-principle,
.ll-pricing-rate + .ll-pricing-rate {
    border-left: 1px solid var(--ll-border);
}

.ll-pricing-principle-number,
.ll-pricing-rate-number {
    display: block;
    color: #9a4a14;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.25;
}

.ll-pricing-principle h3,
.ll-pricing-rate h3 {
    margin: 0;
    font-size: 1.12rem;
    font-weight: 700;
    line-height: 1.3;
}

.ll-pricing-principle p,
.ll-pricing-rate p {
    margin: 0.35rem 0 0;
    color: var(--ll-muted);
    font-size: 0.94rem;
    line-height: 1.5;
}

.ll-signup {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 68px);
    overflow-x: hidden;
    color: var(--ll-ink);
    background: var(--ll-page-bg);
}

.ll-signup-content {
    flex: 1 0 auto;
}

.ll-signup-container {
    max-width: 660px;
    padding: 1.75rem 2.75rem 2rem;
    text-align: center;
}

.ll-signup-panel {
    max-width: 500px;
    margin: 0 auto;
}

.ll-signup-eyebrow {
    margin: 0;
    color: #9a4a14;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.ll-signup-title {
    margin: 0.5rem auto 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.45rem, 4vw, 3.2rem);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.ll-signup-lead {
    max-width: 440px;
    margin: 0.55rem auto 0;
    color: var(--ll-muted);
    font-size: 1rem;
    line-height: 1.4;
}

.ll-signup-form {
    margin-top: 1.2rem;
    text-align: left;
}

.ll-signup-field + .ll-signup-field {
    margin-top: 0.75rem;
}

.ll-signup-field > label {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--ll-ink);
    font-size: 0.93rem;
    font-weight: 600;
    line-height: 1.3;
}

.ll-signup-field .form-control {
    min-height: 3.05rem;
    padding: 0.62rem 0.9rem;
    border: 1px solid var(--ll-border);
    border-radius: 8px;
    color: var(--ll-ink);
    background: var(--ll-surface);
    font-size: 1rem;
    line-height: 1.3;
    box-shadow: none;
}

.ll-signup-field .form-control::placeholder {
    color: #6e7479;
    opacity: 1;
}

.ll-signup-field .form-control:focus {
    border-color: #b95612;
    box-shadow: 0 0 0 0.2rem rgba(185, 86, 18, 0.16);
}

.ll-signup-password-hint {
    margin: 0.3rem 0 0;
    color: var(--ll-muted);
    font-size: 0.8rem;
    line-height: 1.4;
}

.ll-signup-agreement {
    margin-top: 0.9rem;
    padding: 0.7rem 0;
    border-top: 1px solid var(--ll-border);
    border-bottom: 1px solid var(--ll-border);
}

.ll-signup-agreement-check {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    margin: 0;
}

.ll-signup-agreement-check .form-check-input {
    flex: 0 0 auto;
    width: 1.1rem;
    height: 1.1rem;
    margin: 0.14rem 0 0;
    border-color: #92989c;
}

.ll-signup-agreement-check .form-check-label {
    color: var(--ll-ink);
    font-size: 0.94rem;
    line-height: 1.4;
}

.ll-signup-agreement-link,
.ll-signup-signin a {
    color: var(--ll-link);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.16em;
}

.ll-signup-agreement-link {
    display: inline;
    margin: 0;
    font-size: 0.9rem;
}

.ll-signup-agreement-summary {
    margin: 0.55rem 0 0;
    padding-left: 1.15rem;
    color: var(--ll-muted);
    font-size: 0.79rem;
    line-height: 1.35;
}

.ll-signup-agreement-summary li + li {
    margin-top: 0.12rem;
}

.ll-signup-agreement-summary li::marker {
    color: #9a4a14;
}

.ll-signup-submit {
    width: 100%;
    margin-top: 0.9rem;
    padding: 0.72rem 1.5rem;
    border: 1px solid var(--ll-accent);
    border-radius: 9px;
    color: var(--ll-ink);
    background: var(--ll-accent);
    font-size: 1.12rem;
    font-weight: 600;
    line-height: 1.25;
    box-shadow: none;
    transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.ll-signup-submit:hover {
    border-color: var(--ll-accent-hover);
    color: var(--ll-ink);
    background: var(--ll-accent-hover);
    transform: translateY(-1px);
}

.ll-signup-submit:focus-visible {
    outline: 3px solid var(--ll-ink);
    outline-offset: 3px;
    box-shadow: none;
}

.ll-signup-agreement-link:focus-visible,
.ll-signup-signin a:focus-visible {
    outline: 3px solid var(--ll-focus);
    outline-offset: 3px;
    box-shadow: none;
}

.ll-signup-signin {
    margin: 0.65rem 0 0;
    color: var(--ll-muted);
    font-size: 0.9rem;
    text-align: center;
}

.ll-signin {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 68px);
    overflow-x: hidden;
    color: var(--ll-ink);
    background: var(--ll-page-bg);
}

.ll-signin-content {
    flex: 1 0 auto;
}

.ll-signin-container {
    max-width: 660px;
    padding: 2.1rem 2.75rem 2rem;
    text-align: center;
}

.ll-signin-panel {
    max-width: 500px;
    margin: 0 auto;
}

.ll-signin-eyebrow {
    margin: 0;
    color: #9a4a14;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.ll-signin-title {
    margin: 0.5rem auto 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.45rem, 4vw, 3.2rem);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.ll-signin-lead {
    max-width: 460px;
    margin: 0.55rem auto 0;
    color: var(--ll-muted);
    font-size: 1rem;
    line-height: 1.4;
}

.ll-signin-form {
    margin-top: 1.35rem;
    text-align: left;
}

.ll-signin-field + .ll-signin-field {
    margin-top: 0.75rem;
}

.ll-signin-field > label {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--ll-ink);
    font-size: 0.93rem;
    font-weight: 600;
    line-height: 1.3;
}

.ll-signin-field .form-control {
    min-height: 3.05rem;
    padding: 0.62rem 0.9rem;
    border: 1px solid var(--ll-border);
    border-radius: 8px;
    color: var(--ll-ink);
    background: var(--ll-surface);
    font-size: 1rem;
    line-height: 1.3;
    box-shadow: none;
}

.ll-signin-field .form-control::placeholder {
    color: #6e7479;
    opacity: 1;
}

.ll-signin-field .form-control:focus {
    border-color: #b95612;
    box-shadow: 0 0 0 0.2rem rgba(185, 86, 18, 0.16);
}

.ll-signin-submit,
.ll-signin-magic-link {
    width: 100%;
    padding: 0.72rem 1.5rem;
    border-radius: 9px;
    font-size: 1.12rem;
    font-weight: 600;
    line-height: 1.25;
    box-shadow: none;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.ll-signin-submit {
    margin-top: 0.9rem;
    border: 1px solid var(--ll-accent);
    color: var(--ll-ink);
    background: var(--ll-accent);
}

.ll-signin-submit:hover {
    border-color: var(--ll-accent-hover);
    color: var(--ll-ink);
    background: var(--ll-accent-hover);
    transform: translateY(-1px);
}

.ll-signin-alternative {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 0.7rem;
    align-items: center;
    margin: 0.95rem 0;
    color: var(--ll-muted);
    font-size: 0.82rem;
    line-height: 1;
}

.ll-signin-alternative::before,
.ll-signin-alternative::after {
    height: 1px;
    background: var(--ll-border);
    content: "";
}

.ll-signin-magic-link {
    border: 1px solid var(--ll-accent);
    color: var(--ll-ink);
    background: transparent;
}

.ll-signin-magic-link:hover {
    border-color: var(--ll-accent-hover);
    color: var(--ll-ink);
    background: rgba(255, 138, 53, 0.1);
    transform: translateY(-1px);
}

.ll-signin-magic-link-success {
    margin-top: 0.9rem;
    padding: 0.7rem 0.85rem;
    border: 1px solid #9dbd9b;
    border-radius: 8px;
    color: #285d32;
    background: #eff7ef;
    font-size: 0.9rem;
    line-height: 1.4;
}

.ll-signin-forgot,
.ll-signin-signup {
    margin: 0.75rem 0 0;
    color: var(--ll-muted);
    font-size: 0.9rem;
    text-align: center;
}

.ll-signin-signup {
    margin-top: 0.4rem;
}

.ll-signin-forgot a,
.ll-signin-signup a {
    color: var(--ll-link);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.16em;
}

.ll-signin-submit:focus-visible {
    outline: 3px solid var(--ll-ink);
    outline-offset: 3px;
    box-shadow: none;
}

.ll-signin-magic-link:focus-visible,
.ll-signin-forgot a:focus-visible,
.ll-signin-signup a:focus-visible {
    outline: 3px solid var(--ll-focus);
    outline-offset: 3px;
    box-shadow: none;
}

.ll-success {
    display: flex;
    min-height: 100vh;
    overflow-x: hidden;
    background: var(--ll-page-bg);
}

.ll-success-container {
    display: flex;
    align-items: center;
    max-width: 660px;
    padding: 2rem 1.5rem;
    text-align: center;
}

.ll-success-panel {
    max-width: 500px;
    margin: 0 auto;
}

.ll-success-brand {
    display: inline-flex;
    margin-bottom: 1.5rem;
}

.ll-success-logo {
    width: 96px;
    height: 96px;
    border-radius: 11px;
}

.ll-success-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.05rem;
    margin-top: 1.35rem;
    padding: 0.72rem 1.5rem;
    border: 1px solid var(--ll-accent);
    border-radius: 9px;
    color: var(--ll-ink);
    background: var(--ll-accent);
    font-weight: 700;
    line-height: 1.25;
    text-decoration: none;
    transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.ll-success-action:hover {
    border-color: var(--ll-accent-hover);
    color: var(--ll-ink);
    background: var(--ll-accent-hover);
    transform: translateY(-1px);
}

.ll-success-action:focus-visible {
    outline: 3px solid var(--ll-ink);
    outline-offset: 3px;
    box-shadow: none;
}

.ll-about {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 68px);
    overflow-x: hidden;
    color: var(--ll-ink);
    background: var(--ll-page-bg);
}

.ll-about-content {
    flex: 1 0 auto;
}

.ll-about-container {
    max-width: 1120px;
    padding: 3.4rem 2.75rem 2rem;
    text-align: center;
}

.ll-about-eyebrow {
    margin: 0;
    color: #9a4a14;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.ll-about-title {
    max-width: 850px;
    margin: 0.65rem auto 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.75rem, 4vw, 4rem);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

@media (min-width: 1200px) {
    .ll-about-title {
        max-width: none;
        white-space: nowrap;
    }
}

.ll-about-lead {
    max-width: 660px;
    margin: 0.75rem auto 0;
    color: var(--ll-muted);
    font-size: 1.18rem;
    line-height: 1.45;
}

.ll-about-details {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(290px, 0.8fr);
    max-width: 940px;
    margin: 2.9rem auto 0;
    border-top: 1px solid var(--ll-border);
    border-bottom: 1px solid var(--ll-border);
    text-align: left;
}

.ll-about-story,
.ll-about-contact {
    padding: 2rem 2.25rem 2.15rem;
}

.ll-about-contact {
    border-left: 1px solid var(--ll-border);
}

.ll-about-details h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.55rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.ll-about-details p {
    margin: 0.8rem 0 0;
    color: var(--ll-muted);
    font-size: 1rem;
    line-height: 1.55;
}

.ll-about-details a:not(.ll-about-email) {
    color: var(--ll-link);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.16em;
}

.ll-about-email {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.85rem;
    margin-top: 1.15rem;
    padding: 0.65rem 1rem;
    border: 1px solid var(--ll-accent);
    border-radius: 8px;
    color: var(--ll-ink);
    background: var(--ll-accent);
    font-size: 0.96rem;
    font-weight: 600;
    line-height: 1.2;
    box-shadow: none;
    transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.ll-about-email:hover {
    border-color: var(--ll-accent-hover);
    color: var(--ll-ink);
    background: var(--ll-accent-hover);
    transform: translateY(-1px);
}

.ll-about-updates {
    margin-top: 1rem !important;
    font-size: 0.92rem !important;
}

.ll-about-email:focus-visible {
    outline: 3px solid var(--ll-ink);
    outline-offset: 3px;
    box-shadow: none;
}

.ll-about-details a:not(.ll-about-email):focus-visible {
    outline: 3px solid var(--ll-focus);
    outline-offset: 3px;
    box-shadow: none;
}

/* Preserve the existing shared agreement pagelet's private-app sizing while
   the signed-out shell receives the refreshed reading treatment below. */
.ll-legal-section h2 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    line-height: 1.2;
}

/* Public legal documents use the same quiet reading rhythm as the refreshed site.
   These rules are scoped to the signed-out shell so shared pagelets do not redesign
   the private application. */
.ll-public-shell .ll-legal {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: none;
    min-height: calc(100vh - 68px);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    color: var(--ll-ink);
    background: var(--ll-page-bg);
}

.ll-public-shell .ll-legal-container,
.ll-public-shell .ll-legal-column {
    width: 100%;
    max-width: 880px;
    margin: 0 auto;
    padding: clamp(2.25rem, 4vw, 3.4rem) clamp(1.5rem, 4vw, 2.75rem) 2.25rem;
}

.ll-public-shell .ll-legal-container {
    flex: 1 0 auto;
}

.ll-public-shell .ll-legal > .row {
    flex: 1 0 auto;
    width: 100%;
    margin: 0;
}

.ll-public-shell .ll-legal-column {
    flex: 0 0 auto;
}

.ll-public-shell .ll-legal-header {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.ll-public-shell .ll-legal-title {
    margin: 0 !important;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.65rem, 4vw, 4rem);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.ll-public-shell .ll-legal-document {
    max-width: 820px;
    margin: 2.35rem auto 0;
}

.ll-public-shell .ll-legal-section {
    margin: 0 !important;
    padding: 1.65rem 0;
    border-top: 1px solid var(--ll-border);
}

.ll-public-shell .ll-legal-section:last-child {
    border-bottom: 1px solid var(--ll-border);
}

.ll-public-shell .ll-legal-intro {
    padding-top: 0;
    border-top: 0;
    text-align: center;
}

.ll-public-shell .ll-legal-intro + .ll-legal-section {
    border-top: 1px solid var(--ll-border);
}

.ll-public-shell .ll-legal-section h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.55rem;
    font-weight: 600 !important;
    line-height: 1.24;
    letter-spacing: -0.02em;
}

.ll-public-shell .ll-legal-section p,
.ll-public-shell .ll-legal-section li {
    color: var(--ll-muted);
    font-size: 1rem;
    line-height: 1.65;
}

.ll-public-shell .ll-legal-section p {
    margin: 0.8rem 0 0;
}

.ll-public-shell .ll-legal-section p + p {
    margin-top: 0.95rem;
}

.ll-public-shell .ll-legal-section ul {
    margin: 0.9rem 0 0;
    padding-left: 1.35rem;
}

.ll-public-shell .ll-legal-section li + li {
    margin-top: 0.35rem;
}

.ll-public-shell .ll-legal-intro h2 {
    margin-top: 0.7rem;
    font-family: inherit;
    font-size: 1.15rem;
    letter-spacing: 0;
}

.ll-public-shell .ll-legal-intro .lead {
    max-width: 760px;
    margin: 0.75rem auto 0;
    color: var(--ll-muted);
    font-size: 1.12rem;
    line-height: 1.55;
}

.ll-public-shell .ll-legal-contact {
    text-align: center;
}

.ll-public-shell .ll-legal-contact p {
    margin-top: 0.55rem;
}

.ll-public-shell .ll-legal a {
    color: var(--ll-link);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.16em;
}

.ll-public-shell .ll-legal a:focus-visible,
.ll-public-shell .ll-legal-back:focus-visible {
    outline: 3px solid var(--ll-focus);
    outline-offset: 3px;
    box-shadow: none;
}

.ll-public-shell .ll-legal-action {
    margin: 2rem 0 !important;
}

.ll-public-shell .ll-legal-back {
    border: 1px solid var(--ll-accent);
    border-radius: 8px;
    color: var(--ll-ink);
    background: transparent;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: none;
}

.ll-public-shell .ll-legal-back:hover {
    border-color: var(--ll-accent-hover);
    color: var(--ll-ink);
    background: rgba(255, 138, 53, 0.1);
}

.ll-public-shell .ll-legal-footer {
    width: 100%;
    max-width: 1384px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem 2rem;
    border-top: 1px solid var(--ll-border);
    text-align: center;
}

.ll-public-shell .ll-legal-footer p {
    margin: 0;
}

.ll-apps {
    border-top: 1px solid var(--ll-border);
}

.ll-apps-container {
    max-width: 1040px;
    padding: 2rem 1.5rem 3.5rem;
    text-align: center;
}

.ll-apps h2 {
    max-width: 760px;
    margin: 0 auto;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 3vw, 3.2rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.ll-apps-lead {
    max-width: 760px;
    margin: 1rem auto 2rem;
    font-size: 1.12rem;
    line-height: 1.55;
}

.ll-app-list {
    overflow: hidden;
    border: 1px solid var(--ll-border);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.36);
    text-align: left;
}

.ll-app-row {
    display: grid;
    grid-template-columns: 3.25rem minmax(0, 1fr) 10.5rem;
    gap: 1rem;
    align-items: center;
    padding: 1.35rem 1.5rem;
}

.ll-app-row + .ll-app-row {
    border-top: 1px solid var(--ll-border);
}

.ll-app-icon {
    width: 3.25rem;
    font-size: 2.65rem;
    line-height: 1;
    text-align: center;
}

.ll-app-copy h3 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.32rem;
    font-weight: 600;
}

.ll-app-copy p {
    margin: 0.35rem 0 0;
    line-height: 1.45;
}

.ll-app-row > .btn {
    border: 1px solid var(--ll-accent);
    border-radius: 7px;
    color: var(--ll-ink);
    background: transparent;
    font-size: 1rem;
}

.ll-app-row > .btn:hover {
    border-color: var(--ll-accent-hover);
    color: var(--ll-ink);
    background: rgba(255, 138, 53, 0.1);
}

.ll-apps-more {
    margin: 1.4rem 0 0;
}

.ll-apps a,
.ll-public-footer a {
    color: var(--ll-link);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.16em;
}

.ll-public-footer {
    max-width: 1384px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem 2rem;
    border-top: 1px solid var(--ll-border);
    text-align: center;
}

.ll-public-footer p {
    margin: 0;
}

.ll-public-footer p + p {
    margin-top: 0.7rem;
}

.ll-public-footer a + a {
    margin-left: 1.25rem;
}

@media (max-width: 991.98px) {
    .ll-home-container {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }

    .ll-how-container {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }

    .ll-pricing-container {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }

    .ll-benefit {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }
}

/* Signed-in application: Apps & Extensions (visual-only) */
.ll-apps-page-signed-in-only {
    display: none;
}

.ll-app-content > .ll-apps-page {
    flex: 0 0 100%;
    max-width: 100%;
    min-height: calc(100vh - 3.75rem);
}

.ll-app-content .ll-apps-page-container {
    max-width: 64rem;
    padding: 2rem 2rem 3rem;
    text-align: left;
}

.ll-app-content .ll-apps-page-eyebrow,
.ll-app-content .ll-apps-page-public-only {
    display: none;
}

.ll-app-content .ll-apps-page-signed-in-only {
    display: inline;
}

.ll-app-content .ll-apps-page-title {
    max-width: none;
    margin: 0;
    color: var(--ll-ink);
    font-family: inherit;
    font-size: clamp(1.85rem, 3vw, 2.35rem);
    font-weight: 650;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.ll-app-content .ll-apps-page-lead {
    max-width: 46rem;
    margin: 0.6rem 0 0;
    color: var(--ll-muted);
    font-size: 0.96rem;
    line-height: 1.5;
}

.ll-app-content .ll-apps-page-section,
.ll-app-content .ll-apps-page-section--primary {
    margin-top: 1.25rem;
    padding: 1.25rem;
    border: 1px solid var(--ll-border);
    border-radius: 0.75rem;
    background: var(--ll-surface);
}

.ll-app-content .ll-apps-page-section-title {
    margin: 0;
    color: var(--ll-ink);
    font-family: inherit;
    font-size: 1.18rem;
    font-weight: 650;
    line-height: 1.3;
    letter-spacing: 0;
}

.ll-app-content .ll-apps-page-grid {
    margin-top: 1rem;
    border: 0;
}

.ll-app-content .ll-apps-page-card {
    grid-template-columns: 2.35rem minmax(0, 1fr);
    gap: 0.9rem;
    padding: 0 1.25rem 0 0;
}

.ll-app-content .ll-apps-page-card:nth-child(even) {
    padding: 0 0 0 1.25rem;
    border-left: 1px solid var(--ll-border);
}

.ll-app-content .ll-apps-page-icon {
    width: 2.35rem;
    color: var(--ll-ink);
    font-size: 1.95rem;
}

.ll-app-content .ll-apps-page-card h3 {
    font-size: 1.02rem;
    font-weight: 650;
}

.ll-app-content .ll-apps-page-status {
    color: var(--ll-link);
}

.ll-app-content .ll-apps-page-card p {
    font-size: 0.92rem;
    line-height: 1.45;
}

.ll-app-content .ll-apps-page-action {
    min-block-size: 2.5rem;
    margin-top: 0.8rem;
    border-radius: 0.45rem;
    font-size: 0.92rem;
    font-weight: 650;
}

.ll-app-content .ll-apps-page-action:focus-visible {
    outline-color: var(--ll-focus);
}

.ll-app-content .ll-apps-page footer,
.ll-app-content .ll-apps-page .ll-public-footer {
    background: transparent;
}

@media (max-width: 767.98px) {
    .ll-app-content .ll-apps-page-container {
        padding: 1.25rem 0.875rem 2.25rem;
    }

    .ll-app-content .ll-apps-page-title {
        font-size: 1.85rem;
    }

    .ll-app-content .ll-apps-page-section,
    .ll-app-content .ll-apps-page-section--primary {
        padding: 1rem;
    }

    .ll-app-content .ll-apps-page-grid {
        grid-template-columns: 1fr;
        margin-top: 0.9rem;
    }

    .ll-app-content .ll-apps-page-card,
    .ll-app-content .ll-apps-page-card:nth-child(even) {
        grid-template-columns: 2.15rem minmax(0, 1fr);
        gap: 0.8rem;
        padding: 0;
        border-left: 0;
    }

    .ll-app-content .ll-apps-page-card + .ll-apps-page-card {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--ll-border);
    }

    .ll-app-content .ll-apps-page-icon {
        width: 2.15rem;
        font-size: 1.75rem;
    }

    .ll-app-content .ll-apps-page-action {
        display: flex;
        width: 100%;
        min-block-size: 2.75rem;
    }
}

/* Keep the full Home-page story readable in the first desktop screen on laptop-sized displays. */
@media (min-width: 768px) and (max-width: 1199.98px) {
    .ll-public-nav {
        min-height: 60px;
        padding-right: 0.875rem;
        padding-left: 0.875rem;
    }

    .ll-public-nav .navbar-collapse {
        padding-right: 34px;
    }

    .ll-public-nav .navbar-nav {
        gap: clamp(0.35rem, 0.95vw, 0.7rem);
    }

    .ll-public-nav .nav-link {
        padding: 1.15rem 0.4rem;
        font-size: 1rem;
    }

    .ll-home {
        min-height: calc(100vh - 60px);
    }

    .ll-how {
        min-height: calc(100vh - 60px);
    }

    .ll-features {
        min-height: calc(100vh - 60px);
    }

    .ll-apps-page {
        min-height: calc(100vh - 60px);
    }

    .ll-signup {
        min-height: calc(100vh - 60px);
    }

    .ll-signin {
        min-height: calc(100vh - 60px);
    }

    .ll-about {
        min-height: calc(100vh - 60px);
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .ll-public-nav .navbar-collapse {
        padding-right: 30px;
    }

    .ll-public-nav .navbar-nav {
        gap: 0.35rem;
    }

    .ll-public-nav .nav-link {
        padding: 1.15rem 0.3rem;
        font-size: 0.88rem;
    }
}

@media (min-width: 768px) and (max-height: 900px) {
    .ll-signup-container {
        padding-top: 1.2rem;
        padding-bottom: 1.5rem;
    }

    .ll-signin-container {
        padding-top: 1.25rem;
        padding-bottom: 1.5rem;
    }

    .ll-signup-form {
        margin-top: 1rem;
    }

    .ll-signin-form {
        margin-top: 1.05rem;
    }

    .ll-about-container {
        padding-top: 2.25rem;
        padding-bottom: 1.5rem;
    }

    .ll-about-details {
        margin-top: 2rem;
    }

    .ll-about-story,
    .ll-about-contact {
        padding-top: 1.55rem;
        padding-bottom: 1.65rem;
    }

    .ll-signup-field + .ll-signup-field {
        margin-top: 0.7rem;
    }

    .ll-signup-agreement {
        margin-top: 0.65rem;
        padding: 0.5rem 0;
    }

    .ll-signup-agreement-summary {
        margin-top: 0.4rem;
    }

    .ll-signup-submit {
        margin-top: 0.65rem;
    }

    .ll-signin-alternative {
        margin: 0.75rem 0;
    }

    .ll-home-hero {
        padding-top: 1.65rem;
    }

    .ll-home-logo {
        inline-size: 96px;
        block-size: 96px;
    }

    .ll-home-title {
        margin-top: 1.5rem;
        font-size: clamp(2.85rem, 4vw, 3.8rem);
    }

    .ll-home-lead {
        margin-top: 0.45rem;
        font-size: 1.1rem;
        line-height: 1.35;
    }

    .ll-home-audio {
        block-size: 50px;
        margin-top: 1.1rem;
    }

    .ll-home a[href="createaccount"].btn-custom-xl {
        margin-top: 1.15rem;
        padding: 0.82rem 1.95rem;
        font-size: 1.35rem;
    }

    .ll-benefits {
        margin-top: 1.5rem;
    }

    .ll-benefit {
        padding-right: 1.25rem;
        padding-bottom: 1rem;
        padding-left: 1.25rem;
    }

    .ll-benefit + .ll-benefit::before {
        top: 1.15rem;
        bottom: 0.9rem;
    }

    .ll-benefit-icon {
        min-height: 48px;
        margin-bottom: 0.45rem;
        font-size: 2.65rem;
    }

    .ll-benefit h2 {
        font-size: 1.25rem;
    }

    .ll-benefit p {
        max-width: 330px;
        margin-top: 0.5rem;
        font-size: 0.86rem;
        line-height: 1.45;
    }

    .ll-how-container {
        padding-top: 2.5rem;
        padding-bottom: 1.75rem;
    }

    .ll-how-title {
        font-size: clamp(2.65rem, 3.6vw, 3.45rem);
    }

    .ll-how-lead {
        margin-top: 0.55rem;
        font-size: 1.05rem;
        line-height: 1.35;
    }

    .ll-how-steps {
        margin-top: 2rem;
    }

    .ll-how-step {
        padding: 1.35rem 1.25rem 1.45rem;
    }

    .ll-how-step + .ll-how-step::before {
        top: 1.35rem;
        bottom: 1.35rem;
    }

    .ll-how-step-icon {
        min-height: 2.45rem;
        margin-top: 0.75rem;
        margin-bottom: 0.45rem;
        font-size: 2.4rem;
    }

    .ll-how-step h2 {
        font-size: 1.2rem;
    }

    .ll-how-step p {
        margin-top: 0.45rem;
        font-size: 0.86rem;
        line-height: 1.4;
    }

    .ll-how-desktop-cta,
    .ll-how-mobile-cta {
        margin-top: 1.35rem;
    }

    .ll-how a[href="createaccount"].btn-custom-xl {
        padding: 0.78rem 1.85rem;
        font-size: 1.22rem;
    }

    .ll-features-container {
        padding-top: 2.5rem;
        padding-bottom: 1.75rem;
    }

    .ll-features-title {
        font-size: clamp(2.65rem, 3.6vw, 3.45rem);
    }

    .ll-features-lead {
        margin-top: 0.55rem;
        font-size: 1.05rem;
        line-height: 1.35;
    }

    .ll-feature-section {
        margin-top: 2.1rem;
    }

    .ll-feature-section--core {
        margin-top: 1.8rem;
    }

    .ll-feature-section-title {
        font-size: 1.45rem;
    }

    .ll-feature-detail-list {
        margin-top: 0.85rem;
    }

    .ll-feature-detail {
        padding: 1.2rem 1.4rem;
    }

    .ll-feature-detail-icon {
        font-size: 2.05rem;
    }

    .ll-features-desktop-cta,
    .ll-features-mobile-cta {
        margin-top: 1.35rem;
    }

    .ll-features a[href="createaccount"].btn-custom-xl {
        padding: 0.78rem 1.85rem;
        font-size: 1.22rem;
    }

    .ll-apps-page-container {
        padding-top: 2.5rem;
        padding-bottom: 1.75rem;
    }

    .ll-apps-page-title {
        font-size: clamp(2.65rem, 3.6vw, 3.45rem);
    }

    .ll-apps-page-lead {
        margin-top: 0.55rem;
        font-size: 1.05rem;
        line-height: 1.35;
    }

    .ll-apps-page-section {
        margin-top: 2.1rem;
    }

    .ll-apps-page-section--primary {
        margin-top: 1.8rem;
    }

    .ll-apps-page-section-title {
        font-size: 1.45rem;
    }

    .ll-apps-page-grid {
        margin-top: 0.85rem;
    }

    .ll-apps-page-card {
        padding: 1.2rem 1.4rem;
    }

    .ll-apps-page-icon {
        font-size: 2.05rem;
    }
}

@media (min-width: 768px) and (max-height: 700px) {
    .ll-home-hero {
        padding-top: 1rem;
    }

    .ll-home-logo {
        inline-size: 78px;
        block-size: 78px;
    }

    .ll-home-title {
        margin-top: 1.1rem;
        font-size: clamp(2.55rem, 3.9vw, 3.25rem);
        line-height: 1.04;
    }

    .ll-home-lead {
        max-width: 680px;
        margin-top: 0.35rem;
        font-size: 1rem;
        line-height: 1.3;
    }

    .ll-home-audio {
        block-size: 46px;
        margin-top: 0.75rem;
    }

    .ll-home a[href="createaccount"].btn-custom-xl {
        margin-top: 0.8rem;
        padding: 0.72rem 1.75rem;
        font-size: 1.2rem;
    }

    .ll-benefits {
        margin-top: 0.95rem;
    }

    .ll-benefit {
        padding-right: 1rem;
        padding-bottom: 0.75rem;
        padding-left: 1rem;
    }

    .ll-benefit + .ll-benefit::before {
        top: 0.8rem;
        bottom: 0.7rem;
    }

    .ll-benefit-icon {
        min-height: 40px;
        margin-bottom: 0.25rem;
        font-size: 2.25rem;
    }

    .ll-benefit h2 {
        font-size: 1.1rem;
    }

    .ll-benefit p {
        max-width: 305px;
        margin-top: 0.35rem;
        font-size: 0.8rem;
        line-height: 1.35;
    }

    .ll-how-container {
        padding-top: 1.25rem;
        padding-bottom: 1rem;
    }

    .ll-how-eyebrow {
        font-size: 0.7rem;
    }

    .ll-how-title {
        margin-top: 0.45rem;
        font-size: clamp(2.35rem, 3.5vw, 3rem);
        line-height: 1.04;
    }

    .ll-how-lead {
        max-width: 620px;
        margin-top: 0.35rem;
        font-size: 0.94rem;
        line-height: 1.3;
    }

    .ll-how-steps {
        margin-top: 1.2rem;
    }

    .ll-how-step {
        padding: 0.95rem 0.9rem 1rem;
    }

    .ll-how-step + .ll-how-step::before {
        top: 0.95rem;
        bottom: 0.95rem;
    }

    .ll-how-step-number {
        width: 1.65rem;
        height: 1.65rem;
        font-size: 0.78rem;
    }

    .ll-how-step-icon {
        min-height: 2rem;
        margin-top: 0.45rem;
        margin-bottom: 0.25rem;
        font-size: 2rem;
    }

    .ll-how-step h2 {
        font-size: 1.05rem;
    }

    .ll-how-step p {
        max-width: 265px;
        margin-top: 0.3rem;
        font-size: 0.78rem;
        line-height: 1.3;
    }

    .ll-how-desktop-cta,
    .ll-how-mobile-cta {
        margin-top: 0.9rem;
    }

    .ll-how a[href="createaccount"].btn-custom-xl {
        padding: 0.68rem 1.65rem;
        font-size: 1.12rem;
    }

    .ll-features-container {
        padding-top: 1.25rem;
        padding-bottom: 1rem;
    }

    .ll-features-eyebrow {
        font-size: 0.7rem;
    }

    .ll-features-title {
        margin-top: 0.45rem;
        font-size: clamp(2.35rem, 3.5vw, 3rem);
        line-height: 1.04;
    }

    .ll-features-lead {
        max-width: 660px;
        margin-top: 0.35rem;
        font-size: 0.94rem;
        line-height: 1.3;
    }

    .ll-feature-section {
        margin-top: 1.5rem;
    }

    .ll-feature-section--core {
        margin-top: 1.25rem;
    }

    .ll-feature-section-title {
        font-size: 1.25rem;
    }

    .ll-feature-detail-list {
        margin-top: 0.65rem;
    }

    .ll-feature-detail {
        grid-template-columns: 2.35rem minmax(0, 1fr);
        gap: 0.75rem;
        padding: 0.9rem 1rem;
    }

    .ll-feature-detail-icon {
        width: 2.35rem;
        font-size: 1.8rem;
    }

    .ll-feature-detail h2,
    .ll-feature-detail h3 {
        font-size: 1rem;
        line-height: 1.2;
    }

    .ll-feature-detail p {
        margin-top: 0.2rem;
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .ll-features-desktop-cta,
    .ll-features-mobile-cta {
        margin-top: 0.9rem;
    }

    .ll-features a[href="createaccount"].btn-custom-xl {
        padding: 0.68rem 1.65rem;
        font-size: 1.12rem;
    }

    .ll-apps-page-container {
        padding-top: 1.25rem;
        padding-bottom: 1rem;
    }

    .ll-apps-page-eyebrow {
        font-size: 0.7rem;
    }

    .ll-apps-page-title {
        margin-top: 0.45rem;
        font-size: clamp(2.35rem, 3.5vw, 3rem);
        line-height: 1.04;
    }

    .ll-apps-page-lead {
        max-width: 700px;
        margin-top: 0.35rem;
        font-size: 0.94rem;
        line-height: 1.3;
    }

    .ll-apps-page-section {
        margin-top: 1.5rem;
    }

    .ll-apps-page-section--primary {
        margin-top: 1.25rem;
    }

    .ll-apps-page-section-title {
        font-size: 1.25rem;
    }

    .ll-apps-page-grid {
        margin-top: 0.65rem;
    }

    .ll-apps-page-card {
        grid-template-columns: 2.35rem minmax(0, 1fr);
        gap: 0.75rem;
        padding: 0.9rem 1rem;
    }

    .ll-apps-page-icon {
        width: 2.35rem;
        font-size: 1.8rem;
    }

    .ll-apps-page-card h3 {
        font-size: 1rem;
        line-height: 1.2;
    }

    .ll-apps-page-card p {
        margin-top: 0.2rem;
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .ll-apps-page-action {
        margin-top: 0.55rem;
        padding: 0.45rem 0.7rem;
        font-size: 0.82rem;
    }
}

@media (max-width: 767.98px) {
    .ll-public-nav {
        min-height: 56px;
        padding: 0.5rem 0.75rem;
    }

    .ll-public-nav .navbar-collapse {
        padding-right: 0;
    }

    .ll-public-nav .navbar-nav {
        gap: 0;
        padding: 0.4rem 0 0.6rem;
    }

    .ll-public-nav .nav-link {
        padding: 0.75rem;
    }

    .ll-public-nav .nav-link.active::after,
    .ll-public-nav .nav-link.active-menu-item::after {
        display: none;
    }

    .ll-home-hero {
        padding-top: 2rem;
    }

    .ll-home-logo {
        inline-size: 104px;
        block-size: 104px;
    }

    .ll-home-title {
        margin-top: 2rem;
        font-size: clamp(2.6rem, 12vw, 3.4rem);
    }

    .ll-home-lead {
        font-size: 1.15rem;
    }

    .ll-how-container {
        padding: 2.5rem 1.5rem 2rem;
    }

    .ll-features-container {
        padding: 2.5rem 1.5rem 2rem;
    }

    .ll-how-title {
        font-size: clamp(2.45rem, 11vw, 3.2rem);
    }

    .ll-how-steps {
        grid-template-columns: 1fr;
        margin-top: 2rem;
    }

    .ll-how-step {
        max-width: 560px;
        margin: 0 auto;
        padding: 1.7rem 0;
    }

    .ll-how-step + .ll-how-step {
        border-top: 1px solid var(--ll-border);
    }

    .ll-how-step + .ll-how-step::before {
        display: none;
    }

    .ll-how-mobile-cta {
        margin-top: 1.5rem;
    }

    .ll-how a[href="createaccount"].btn-custom-xl {
        width: 100%;
    }

    .ll-features-title {
        font-size: clamp(2.45rem, 11vw, 3.2rem);
    }

    .ll-feature-section {
        margin-top: 2.25rem;
    }

    .ll-feature-section--core {
        margin-top: 2rem;
    }

    .ll-features-mobile-cta {
        margin-top: 1.5rem;
    }

    .ll-features a[href="createaccount"].btn-custom-xl {
        width: 100%;
    }

    .ll-apps-page-container {
        padding: 2.5rem 1.5rem 2rem;
    }

    .ll-signup-container {
        padding: 2.5rem 1.5rem 2rem;
    }

    .ll-signin-container {
        padding: 2.5rem 1.5rem 2rem;
    }

    .ll-about-container {
        padding: 2.5rem 1.5rem 2rem;
    }

    .ll-pricing-container {
        padding: 2.5rem 1.5rem 2rem;
    }

    .ll-apps-page-title {
        font-size: clamp(2.45rem, 11vw, 3.2rem);
    }

    .ll-pricing-title {
        font-size: clamp(2.45rem, 11vw, 3.2rem);
    }

    .ll-signup-title {
        font-size: clamp(2.45rem, 11vw, 3.2rem);
    }

    .ll-signin-title {
        font-size: clamp(2.45rem, 11vw, 3.2rem);
    }

    .ll-about-title {
        font-size: clamp(2.45rem, 11vw, 3.2rem);
    }

    .ll-about-details {
        grid-template-columns: 1fr;
        margin-top: 2rem;
    }

    .ll-about-story,
    .ll-about-contact {
        padding-right: 0;
        padding-left: 0;
    }

    .ll-about-contact {
        border-top: 1px solid var(--ll-border);
        border-left: 0;
    }

    .ll-signup-agreement {
        margin-top: 1.1rem;
    }

    .ll-signup-submit {
        min-height: 3.25rem;
    }

    .ll-apps-page-section {
        margin-top: 2.25rem;
    }

    .ll-apps-page-section--primary {
        margin-top: 2rem;
    }

    .ll-apps-page-grid {
        grid-template-columns: 1fr;
    }

    .ll-apps-page-card {
        padding-right: 0;
        padding-left: 0;
    }

    .ll-apps-page-card:nth-child(even) {
        border-left: 0;
    }

    .ll-apps-page-card + .ll-apps-page-card {
        border-top: 1px solid var(--ll-border);
    }

    .ll-apps-page-action {
        min-height: 44px;
        padding: 0.5rem 0.75rem;
    }

    .ll-pricing-section {
        margin-top: 2.25rem;
    }

    .ll-pricing-section--primary {
        margin-top: 2rem;
    }

    .ll-pricing-section--rates {
        margin-top: 2rem;
    }

    .ll-pricing-principles,
    .ll-pricing-rate-list {
        grid-template-columns: 1fr;
    }

    .ll-pricing-principle,
    .ll-pricing-rate {
        padding-right: 0;
        padding-left: 0;
    }

    .ll-pricing-principle + .ll-pricing-principle,
    .ll-pricing-rate + .ll-pricing-rate {
        border-top: 1px solid var(--ll-border);
        border-left: 0;
    }

    .ll-pricing a[href="createaccount"].btn-custom-xl {
        width: 100%;
    }

    .ll-feature-detail-list {
        grid-template-columns: 1fr;
    }

    .ll-feature-detail {
        padding-right: 0;
        padding-left: 0;
    }

    .ll-feature-detail:nth-child(even) {
        border-left: 0;
    }

    .ll-feature-detail + .ll-feature-detail {
        border-top: 1px solid var(--ll-border);
    }

    .ll-benefits {
        grid-template-columns: 1fr;
    }

    .ll-benefit {
        max-width: 560px;
        margin: 0 auto;
        padding: 2rem 0;
    }

    .ll-benefit + .ll-benefit {
        border-top: 1px solid var(--ll-border);
        border-left: 0;
    }

    .ll-benefit + .ll-benefit::before {
        display: none;
    }

    .ll-app-row {
        grid-template-columns: 3rem minmax(0, 1fr);
    }

    .ll-app-row > .btn {
        grid-column: 1 / -1;
        width: 100%;
        min-height: 44px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ll-public-nav .nav-link,
.ll-home a[href="createaccount"].btn-custom-xl,
.ll-how a[href="createaccount"].btn-custom-xl,
.ll-features a[href="createaccount"].btn-custom-xl,
.ll-pricing a[href="createaccount"].btn-custom-xl,
.ll-about-email {
    transition: none;
}

    .ll-apps-page-action {
        transition: none;
    }
}

.nice-scrollbar::-webkit-scrollbar{width: 9px; height: 9px;}
.nice-scrollbar::-webkit-scrollbar-track {background: transparent;}
.nice-scrollbar::-webkit-scrollbar-thumb {
  background-color: rgba(155, 155, 155, 0.5);
  border-radius: 20px;
  border: transparent;
}

.popover-body {
  padding:8px;
}

.closable {
    position:absolute;
    top:-4px;
    right:5px;
}

.active-menu-item{
    color:white
}

.active-tab {
    background-color: #d6d6d6;
}

.big-icon {
    font-size: 64px;
}

.very-big-icon {
    font-size: 128px;
}

.btn-custom-xl {
    --bs-btn-padding-y: 0.75rem; /* Double of 0.5rem */
    --bs-btn-padding-x: 1.5rem; /* Double of 1rem */
    --bs-btn-font-size: 1.875rem; /* Double of 1.25rem */
    --bs-btn-border-radius: calc(var(--bs-border-radius-lg) * 1.5);
}

.custom-switch-large .form-check-input {
    transform: scale(1.5);
}

.bitcoin-button {
  color: white; /* sets the text color */
  background-color: #F7931A; /* sets the background color */
}

.bitcoin-button:hover {
    background-color: #e58315; /* Bitcoin orange */
    color: white; /* Assuming you want to keep the text color white */
}

.podcast-app{
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.btn-centered {
    display: block;
    margin: auto;
}

.instruction-text {
    text-align: center; 
}

#supportForm {
    max-width: 600px;
    margin: auto;
    padding: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.truncate {
    max-width: 750px; /* Adjust the width as needed */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

.pg-fs-7 {
    font-size: 0.9rem; /* Smaller than fs-6 */
}

.apps-extensions-icon {
    inline-size: 3rem;
    flex: 0 0 3rem;
    align-self: stretch;
    font-size: 2.25rem;
    line-height: 1;
}

.apps-extensions-action {
    width: 10.5rem;
}

.apps-extensions-home-action {
    width: 15rem;
}

.apps-discovery-product {
    height: 100%;
}

.apps-discovery-icon {
    inline-size: 2.5rem;
    font-size: 2.25rem;
    line-height: 1;
    text-align: center;
}

@media (max-width: 575.98px) {
    .apps-extensions-action {
        width: 100%;
    }
}

/* Signed-in application: shared shell and Home (visual-only) */
.ll-app-shell {
    min-height: 100vh;
    background: var(--ll-page-bg);
    color: var(--ll-ink);
}

.ll-app-header {
    min-height: 3.75rem;
    background: var(--ll-nav-bg) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: none !important;
}

.ll-app-brand {
    display: inline-flex;
    align-items: center;
    min-height: 3.75rem;
}

.ll-app-brand img {
    display: block;
    inline-size: 32px;
    block-size: 32px;
    border-radius: 7px;
}

.ll-app-mobile-title label {
    font-size: 1rem !important;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.ll-app-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-inline-size: 2.75rem;
    min-block-size: 2.75rem;
}

.ll-app-menu-toggle:focus-visible,
.ll-app-sidebar .nav-link:focus-visible,
.ll-app-home a:focus-visible,
.ll-app-home button:focus-visible,
.ll-app-home .form-control:focus-visible {
    outline: 3px solid var(--ll-focus);
    outline-offset: 3px;
    box-shadow: none;
}

.ll-app-main {
    min-height: calc(100vh - 3.75rem);
    background: var(--ll-page-bg);
}

.ll-app-content {
    width: 100%;
    margin-bottom: 0 !important;
    padding: 0 !important;
    border-bottom: 0 !important;
}

.ll-app-content > .ll-app-home {
    flex: 0 0 100%;
    max-width: 100%;
}

.ll-app-sidebar {
    background: #f1f1ef !important;
    border-color: var(--ll-border) !important;
}

.ll-app-sidebar-panel {
    background: #f1f1ef !important;
}

.ll-app-sidebar-header {
    padding: 1rem;
    border-bottom: 1px solid var(--ll-border);
    color: var(--ll-ink);
}

.ll-app-sidebar-header .offcanvas-title {
    font-size: 1rem;
    font-weight: 700;
}

.ll-app-sidebar .nav-link {
    min-block-size: 2.75rem;
    padding: 0.65rem 1rem;
    color: var(--ll-muted);
    font-size: 0.94rem;
    font-weight: 600;
    line-height: 1.3;
    transition: color 160ms ease, background-color 160ms ease;
}

.ll-app-sidebar .nav-link:hover {
    color: var(--ll-ink);
    background: rgba(255, 138, 53, 0.1);
}

.ll-app-sidebar .nav-link.active-tab {
    color: var(--ll-ink);
    background: rgba(255, 138, 53, 0.16);
    box-shadow: inset 3px 0 0 var(--ll-accent);
}

.ll-app-sidebar hr {
    margin: 0.65rem 1rem !important;
    border-color: var(--ll-border);
    opacity: 1;
}

.ll-app-home {
    width: 100%;
    padding: 1.25rem 0.875rem 2.5rem;
    color: var(--ll-ink);
}

.ll-app-home-content {
    width: 100%;
    max-width: 46rem;
    margin: 0 auto;
    text-align: left;
}

.ll-app-home-feed {
    margin: 0 auto;
    padding: 1.25rem;
    border: 1px solid var(--ll-border);
    border-radius: 0.75rem;
    background: var(--ll-surface);
}

.ll-app-home-section {
    margin-top: 1.5rem;
    padding: 1.25rem;
    border: 1px solid var(--ll-border);
    border-radius: 0.75rem;
    background: var(--ll-surface);
}

.ll-app-home-section-title {
    color: var(--ll-ink);
    font-size: 1.18rem;
    font-weight: 650 !important;
    line-height: 1.3;
    text-align: left !important;
}

.ll-app-home-feed .ll-app-home-section-title {
    margin-top: 0 !important;
    text-align: left !important;
}

.ll-app-home-section .ll-app-home-section-title {
    margin-top: 0 !important;
}

.ll-app-home .form-control {
    min-block-size: 2.75rem;
    border-color: var(--ll-border);
    color: var(--ll-ink);
    background: var(--ll-surface);
    box-shadow: none;
}

.ll-app-home .form-control:focus {
    border-color: var(--ll-focus);
    box-shadow: 0 0 0 0.2rem rgba(185, 86, 18, 0.16);
}

.ll-app-home-feed-url .btn,
.ll-app-home-credit .btn {
    min-inline-size: 2.75rem;
    min-block-size: 2.75rem;
    border-color: var(--ll-border);
    color: var(--ll-ink);
    background: var(--ll-surface);
}

.ll-app-home-feed-url .btn:hover,
.ll-app-home-credit .btn:hover {
    border-color: var(--ll-accent);
    background: rgba(255, 138, 53, 0.1);
}

.ll-app-home-feed-action {
    width: 100%;
    min-block-size: 2.75rem;
    margin-bottom: 0 !important;
    border-color: var(--ll-accent) !important;
    color: var(--ll-ink) !important;
    background: var(--ll-accent) !important;
    font-size: 1.05rem;
    font-weight: 700;
}

.ll-app-home-feed-action:hover {
    border-color: var(--ll-accent-hover) !important;
    color: var(--ll-ink) !important;
    background: var(--ll-accent-hover) !important;
}

.ll-app-home-help,
.ll-app-home-referral p,
.ll-app-home-submit-gateway p {
    color: var(--ll-muted);
    font-size: 0.94rem;
    line-height: 1.5;
    text-align: left;
}

.ll-app-home-feed .ll-app-home-help {
    margin: 0.85rem 0 0;
    text-align: left;
}

.ll-app-home-link {
    color: var(--ll-link);
    font-weight: 600;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.16em;
}

.ll-app-home-sending .ll-app-home-link {
    display: block;
}

.ll-app-home-sending-to {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--ll-border);
}

.ll-app-home-submit-options {
    text-align: left;
}

.ll-app-home-submit-gateway {
    margin: 0 !important;
    padding: 0 0 1.25rem !important;
    border: 0 !important;
    border-bottom: 1px solid var(--ll-border) !important;
}

.ll-app-home-submit-gateway .ll-app-home-section-title {
    color: var(--ll-ink);
    font-size: 1.18rem;
    font-weight: 650 !important;
    line-height: 1.3;
}

.ll-app-home .apps-extensions-home-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 17rem;
    min-block-size: 2.75rem;
    border-color: var(--ll-accent);
    color: var(--ll-ink);
    background: transparent;
    font-weight: 650;
}

.ll-app-home .apps-extensions-home-action:hover {
    border-color: var(--ll-accent-hover);
    color: var(--ll-ink);
    background: rgba(255, 138, 53, 0.1);
}

.ll-app-home-paywall {
    display: block;
    margin-top: 0;
    padding-top: 1rem;
    font-size: 0.96rem !important;
}

.ll-app-home-referral h6 {
    color: var(--ll-muted);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    text-align: left;
}

.ll-app-home-sending .form-control,
.ll-app-home-referral .form-control,
.ll-app-home-credit .form-control {
    text-align: left;
}

.ll-app-home-referral .btn-primary {
    min-block-size: 2.75rem;
    border-color: var(--ll-accent);
    color: var(--ll-ink);
    background: transparent;
    font-weight: 650;
}

.ll-app-home-referral .btn-primary:hover {
    border-color: var(--ll-accent-hover);
    color: var(--ll-ink);
    background: rgba(255, 138, 53, 0.1);
}

.ll-app-home-referral {
    margin-bottom: 0 !important;
}

.ll-app-home-credit .col-3 {
    min-width: 7.5rem;
}

.ll-app-home-footer {
    max-width: 46rem;
    margin: 0 auto;
    padding-top: 1.5rem;
    color: var(--ll-muted);
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .ll-app-sidebar {
        min-height: calc(100vh - 3.75rem);
    }

    .ll-app-home {
        padding: 2rem 2rem 3rem;
    }

    .ll-app-home-feed {
        padding: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .ll-app-header,
    .ll-app-brand {
        min-height: 3.5rem;
    }

    .ll-app-brand {
        padding-right: 0.75rem !important;
        padding-left: 0.75rem !important;
    }

    .ll-app-sidebar-panel {
        border-left: 1px solid var(--ll-border);
    }

    .ll-app-sidebar .nav-link {
        min-block-size: 2.875rem;
        padding-right: 1.125rem;
        padding-left: 1.125rem;
    }

    .ll-app-home-feed-url .form-control {
        min-width: 0;
        font-size: 0.82rem;
    }

    .ll-app-home-section {
        padding: 1rem;
    }

    .ll-app-home-sending-to {
        margin-top: 1rem;
        padding-top: 1rem;
    }

    .ll-app-home-credit .col-3 {
        width: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ll-app-sidebar .nav-link {
        transition: none;
    }
}

/* Signed-in application: Submit Article (visual-only) */
.ll-app-submit {
    min-height: calc(100vh - 3.75rem);
    color: var(--ll-ink);
    background: var(--ll-page-bg);
}

.ll-app-content > .ll-app-submit {
    flex: 0 0 100%;
    max-width: 100%;
}

.ll-app-submit-content {
    width: 100%;
    max-width: 46rem;
    margin: 0 auto;
    padding: 2rem 2rem 3rem !important;
}

.ll-app-submit-header {
    margin-bottom: 1.25rem;
}

.ll-app-submit-title-row {
    text-align: left;
}

.ll-app-submit-title {
    margin: 0;
    color: var(--ll-ink);
    font-size: clamp(1.85rem, 3vw, 2.35rem);
    font-weight: 650 !important;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.ll-app-submit-header p {
    max-width: 39rem;
    margin: 0.65rem 0 0;
    color: var(--ll-muted);
    font-size: 1rem;
    line-height: 1.5;
}

.ll-app-submit-form {
    padding: 1.5rem;
    border: 1px solid var(--ll-border);
    border-radius: 0.75rem;
    background: var(--ll-surface);
}

.ll-app-submit-ai-title {
    margin: 0 0 1.25rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid var(--ll-border);
}

.ll-app-submit-ai-title .form-check-label {
    color: var(--ll-ink);
    font-size: 0.96rem;
    font-weight: 650;
    line-height: 1.4;
}

.ll-app-submit-ai-title .form-switch {
    min-height: 1.4rem;
    margin-top: 0.05rem;
}

.ll-app-submit-ai-title p {
    margin: 0.45rem 0 0;
    color: var(--ll-muted);
    font-size: 0.86rem;
    line-height: 1.45;
}

.ll-app-submit .form-label {
    margin-bottom: 0.5rem;
    color: var(--ll-ink);
    font-size: 0.96rem;
    font-weight: 650;
    line-height: 1.35;
}

.ll-app-submit .form-control {
    min-block-size: 2.75rem;
    border-color: var(--ll-border);
    color: var(--ll-ink);
    background: var(--ll-surface);
    box-shadow: none;
}

.ll-app-submit .form-control:focus {
    border-color: var(--ll-focus);
    box-shadow: 0 0 0 0.2rem rgba(185, 86, 18, 0.16);
}

.ll-app-submit #submit_article-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ll-app-submit textarea.form-control {
    min-block-size: 12.5rem;
    resize: vertical;
}

.ll-app-submit .form-control[type="file"] {
    padding-top: 0.38rem;
    padding-bottom: 0.38rem;
}

.ll-app-submit .ll-app-submit-action {
    width: 100%;
    min-block-size: 2.75rem;
    margin: 0;
    border-color: var(--ll-accent) !important;
    color: var(--ll-ink) !important;
    background: var(--ll-accent) !important;
    font-size: 1.05rem;
    font-weight: 700;
}

.ll-app-submit .ll-app-submit-action:hover {
    border-color: var(--ll-accent-hover) !important;
    color: var(--ll-ink) !important;
    background: var(--ll-accent-hover) !important;
}

.ll-app-submit input:focus-visible,
.ll-app-submit textarea:focus-visible,
.ll-app-submit button:focus-visible {
    outline: 3px solid var(--ll-focus);
    outline-offset: 3px;
}

.ll-app-submit-footer {
    color: var(--ll-muted);
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .ll-app-submit-content {
        padding-top: 2.5rem !important;
    }
}

@media (max-width: 767.98px) {
    .ll-app-submit-content {
        padding: 1.25rem 0.875rem 2.25rem !important;
    }

    .ll-app-submit-header {
        margin-bottom: 1rem;
    }

    .ll-app-submit-title {
        font-size: 1.85rem;
    }

    .ll-app-submit-form {
        padding: 1rem;
    }

    .ll-app-submit textarea.form-control {
        min-block-size: 11.5rem;
    }
}

/* Signed-in application: Buy Credit (visual-only) */
.ll-app-payment {
    min-height: calc(100vh - 3.75rem);
    color: var(--ll-ink);
    background: var(--ll-page-bg);
}

.ll-app-content > .ll-app-payment {
    flex: 0 0 100%;
    max-width: 100%;
}

.ll-app-payment-content {
    width: 100%;
    max-width: 46rem;
    margin: 0 auto;
    padding: 2rem 2rem 3rem !important;
}

.ll-app-payment-header {
    margin-bottom: 1.25rem;
}

.ll-app-payment-title {
    margin: 0;
    color: var(--ll-ink);
    font-size: clamp(1.85rem, 3vw, 2.35rem);
    font-weight: 650 !important;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.ll-app-payment-subtitle {
    margin: 0.65rem 0 0 !important;
    color: var(--ll-muted);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.45;
}

.ll-app-payment-error {
    margin-bottom: 1.25rem;
}

.ll-app-payment-form {
    padding: 1.5rem;
    border: 1px solid var(--ll-border);
    border-radius: 0.75rem;
    background: var(--ll-surface);
}

.ll-app-payment-amounts,
.ll-app-payment-promo-options {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.ll-app-payment-option {
    display: flex;
    align-items: center;
    min-block-size: 3rem;
    margin: 0;
    padding: 0.625rem 0.75rem;
    border: 1px solid transparent;
    border-radius: 0.55rem;
    transition: border-color 160ms ease, background-color 160ms ease;
}

.ll-app-payment-option + .ll-app-payment-option {
    margin-top: 0.35rem;
}

.ll-app-payment .form-check-input {
    float: none;
    flex: 0 0 auto;
    width: 1.1rem;
    height: 1.1rem;
    margin: 0 0.7rem 0 0;
    accent-color: var(--ll-accent);
}

.ll-app-payment .form-check-label {
    color: var(--ll-ink);
    font-size: 0.98rem;
    line-height: 1.4;
    cursor: pointer;
}

.ll-app-payment-option:has(.form-check-input:checked) {
    border-color: var(--ll-accent);
    background: rgba(255, 138, 53, 0.1);
}

.ll-app-payment-option .form-check-input:checked + .form-check-label {
    font-weight: 650;
}

.ll-app-payment-promo {
    margin: 1rem 0 0 !important;
    padding: 1rem;
    border-color: rgba(185, 86, 18, 0.28);
    color: var(--ll-ink);
    background: rgba(255, 138, 53, 0.09);
}

.ll-app-payment-promo .alert-heading {
    margin-bottom: 0.35rem;
    color: var(--ll-ink);
    font-size: 1rem;
    font-weight: 650;
    line-height: 1.35;
}

.ll-app-payment-promo p {
    margin: 0 0 0.7rem;
    color: var(--ll-muted);
    font-size: 0.9rem;
    line-height: 1.45;
}

.ll-app-payment-promo .ll-app-payment-option {
    min-block-size: 2.75rem;
}

.ll-app-payment-custom {
    min-height: 3.5rem;
    margin: 1.25rem 0 0;
    padding: 0.625rem 0.75rem;
    border: 1px solid var(--ll-border);
    border-radius: 0.55rem;
    background: var(--ll-page-bg);
}

.ll-app-payment-custom .form-check-label {
    flex: 0 0 auto;
}

.ll-app-payment-custom .form-control {
    flex: 1 1 11rem;
    width: 11rem !important;
    min-width: 0;
    min-block-size: 2.5rem;
    margin-left: 0.7rem !important;
    border-color: var(--ll-border);
    color: var(--ll-ink);
    background: var(--ll-surface);
    box-shadow: none;
}

.ll-app-payment .form-control:focus {
    border-color: var(--ll-focus);
    box-shadow: 0 0 0 0.2rem rgba(185, 86, 18, 0.16);
}

.ll-app-payment-autorefill,
.ll-app-payment-checkout {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--ll-border);
}

.ll-app-payment-autorefill .form-switch {
    min-height: 1.5rem;
    margin: 0 !important;
    padding-left: 2.75rem;
}

.ll-app-payment-autorefill .form-switch .form-check-input {
    width: 2.15rem;
    height: 1.2rem;
    margin: 0 0 0 -2.75rem;
}

.ll-app-payment-autorefill .form-check-label {
    font-size: 0.98rem;
    font-weight: 650;
}

.ll-app-payment-autorefill-note {
    display: block;
    margin: 0.5rem 0 0;
    color: var(--ll-muted) !important;
    font-size: 0.88rem !important;
    font-weight: 400 !important;
    line-height: 1.45;
}

.ll-app-payment-payment-note {
    margin: 0 !important;
    color: var(--ll-muted);
    font-size: 0.9rem;
    line-height: 1.45;
}

.ll-app-payment-payment-note .fw-semibold {
    color: var(--ll-ink);
}

.ll-app-payment-actions {
    margin-top: 0.85rem !important;
}

.ll-app-payment .ll-app-payment-action {
    width: 100%;
    min-block-size: 2.75rem;
    margin: 0;
    border-color: var(--ll-accent) !important;
    color: var(--ll-ink) !important;
    background: var(--ll-accent) !important;
    font-size: 1.05rem;
    font-weight: 700;
}

.ll-app-payment .ll-app-payment-action:hover {
    border-color: var(--ll-accent-hover) !important;
    color: var(--ll-ink) !important;
    background: var(--ll-accent-hover) !important;
}

.ll-app-payment input:focus-visible,
.ll-app-payment button:focus-visible {
    outline: 3px solid var(--ll-focus);
    outline-offset: 3px;
}

.ll-app-payment-footer {
    margin-top: 1.5rem !important;
    color: var(--ll-muted);
    font-size: 0.9rem;
}

.ll-app-payment-footer p {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .ll-app-payment-content {
        padding-top: 2.5rem !important;
    }
}

@media (max-width: 767.98px) {
    .ll-app-payment-content {
        padding: 1.25rem 0.875rem 2.25rem !important;
    }

    .ll-app-payment-header {
        margin-bottom: 1rem;
    }

    .ll-app-payment-title {
        font-size: 1.85rem;
    }

    .ll-app-payment-form {
        padding: 1rem;
    }

    .ll-app-payment-custom {
        flex-wrap: wrap;
    }

    .ll-app-payment-custom .form-control {
        flex-basis: 100%;
        width: 100% !important;
        margin: 0.55rem 0 0 !important;
    }
}

/* Signed-in application: Settings (visual-only) */
.ll-app-settings {
    min-height: calc(100vh - 3.75rem);
    padding: 0 !important;
    color: var(--ll-ink);
    background: var(--ll-page-bg);
}

.ll-app-content > .ll-app-settings {
    flex: 0 0 100%;
    max-width: 100%;
}

.ll-app-settings-content {
    width: 100%;
    max-width: 46rem;
    margin: 0 auto;
    padding: 2rem 2rem 1.5rem;
}

.ll-app-settings-header {
    margin-bottom: 1.25rem;
}

.ll-app-settings-title {
    margin: 0;
    color: var(--ll-ink);
    font-size: clamp(1.85rem, 3vw, 2.35rem);
    font-weight: 650 !important;
    line-height: 1.15;
    letter-spacing: -0.025em;
    text-align: left;
}

.ll-app-settings-section-row {
    width: 100%;
    margin: 0 0 1.25rem;
}

.ll-app-settings-section {
    padding: 1.5rem;
    border: 1px solid var(--ll-border);
    border-radius: 0.75rem;
    background: var(--ll-surface);
}

.ll-app-settings-section-title,
.ll-app-settings-section h4 {
    margin: 0 0 0.5rem;
    color: var(--ll-ink);
    font-size: 1.18rem;
    font-weight: 650;
    line-height: 1.3;
    text-align: left;
}

.ll-app-settings-section h6 {
    margin: 1.25rem 0 0.35rem;
    color: var(--ll-ink);
    font-size: 0.98rem;
    font-weight: 650;
    line-height: 1.35;
}

.ll-app-settings-section p {
    margin: 0 0 1rem;
    color: var(--ll-muted);
    font-size: 0.94rem;
    line-height: 1.5;
}

.ll-app-settings-section #hd_warning {
    margin-bottom: 0.65rem !important;
    color: var(--ll-muted) !important;
}

.ll-app-settings .form-label,
.ll-app-settings .form-check-label {
    color: var(--ll-ink);
    font-size: 0.96rem;
    font-weight: 650;
    line-height: 1.4;
}

.ll-app-settings .form-control,
.ll-app-settings .form-select {
    min-block-size: 2.75rem;
    border-color: var(--ll-border);
    color: var(--ll-ink);
    background-color: var(--ll-surface);
    box-shadow: none;
}

.ll-app-settings .form-select:not(:disabled) {
    cursor: pointer;
}

.ll-app-settings .form-control:focus,
.ll-app-settings .form-select:focus {
    border-color: var(--ll-focus);
    box-shadow: 0 0 0 0.2rem rgba(185, 86, 18, 0.16);
}

.ll-app-settings-action-row {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap;
    width: 100%;
    gap: 0.75rem;
}

.ll-app-settings-action-row .form-select {
    flex: 1 1 14rem;
    min-width: 0;
    margin: 0 !important;
}

.ll-app-settings-action-row .btn {
    min-block-size: 2.75rem;
    margin: 0 !important;
    font-weight: 650;
}

.ll-app-settings-switch-row {
    align-items: center !important;
    justify-content: flex-start;
    gap: 1rem;
    margin-bottom: 1rem !important;
}

.ll-app-settings-switch-row .form-check-label {
    margin-right: 0 !important;
}

.ll-app-settings-switch-row .form-switch {
    display: flex;
    align-items: center;
    min-height: 1.5rem;
    margin: 0;
    padding-left: 2.75rem;
}

.ll-app-settings-switch-row .form-check-input {
    width: 2.15rem;
    height: 1.2rem;
    margin: 0 0 0 -2.75rem;
    accent-color: var(--ll-accent);
}

.ll-app-settings-save-row {
    margin-top: 0.75rem;
    text-align: left;
}

.ll-app-settings .btn-primary {
    min-block-size: 2.75rem;
    border-color: var(--ll-accent) !important;
    color: var(--ll-ink) !important;
    background: var(--ll-accent) !important;
    font-weight: 700;
}

.ll-app-settings .btn-primary:hover {
    border-color: var(--ll-accent-hover) !important;
    color: var(--ll-ink) !important;
    background: var(--ll-accent-hover) !important;
}

.ll-app-settings .btn-info {
    min-block-size: 2.75rem;
    border-color: var(--ll-accent);
    color: var(--ll-ink);
    background: transparent;
    font-weight: 650;
}

.ll-app-settings .btn-info:hover {
    border-color: var(--ll-accent-hover);
    color: var(--ll-ink);
    background: rgba(255, 138, 53, 0.1);
}

.ll-app-settings-success {
    margin: 1rem 0 0;
}

.ll-app-settings-known-languages {
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.ll-app-settings-known-languages .btn-success {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0 !important;
    border-color: var(--ll-border);
    color: var(--ll-ink);
    background: rgba(255, 138, 53, 0.1);
    font-weight: 600;
    cursor: pointer;
}

.ll-app-settings-known-languages .btn-success:hover {
    border-color: var(--ll-accent);
    color: var(--ll-ink);
    background: rgba(255, 138, 53, 0.18);
}

.ll-app-settings-remove-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    inline-size: 1.125rem;
    block-size: 1.125rem;
    margin-inline-start: 0.1rem;
    border: 1px solid rgba(185, 86, 18, 0.35);
    border-radius: 50%;
    color: var(--ll-ink);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
}

.ll-app-settings-known-languages .btn-success:hover .ll-app-settings-remove-mark,
.ll-app-settings-known-languages .btn-success:focus-visible .ll-app-settings-remove-mark {
    border-color: var(--ll-accent);
    background: rgba(255, 138, 53, 0.2);
}

.ll-app-settings input:focus-visible,
.ll-app-settings select:focus-visible,
.ll-app-settings button:focus-visible {
    outline: 3px solid var(--ll-focus);
    outline-offset: 3px;
}

.ll-app-settings-footer {
    max-width: 46rem;
    margin-right: auto;
    margin-left: auto;
    padding: 0 2rem 1.5rem;
    color: var(--ll-muted);
    font-size: 0.9rem;
}

.ll-app-settings-footer p {
    margin-bottom: 0;
}

/* Signed-in application: Transaction History (visual-only) */
.ll-app-history {
    min-height: calc(100vh - 3.75rem);
    color: var(--ll-ink);
    background: var(--ll-page-bg);
}

.ll-app-content > .ll-app-history {
    flex: 0 0 100%;
    max-width: 100%;
}

.ll-app-history-content {
    width: 100%;
    max-width: 64rem;
    margin: 0 auto;
    padding: 2rem 2rem 3rem;
}

.ll-app-history-header {
    margin-bottom: 1.25rem;
}

.ll-app-history-title {
    margin: 0;
    color: var(--ll-ink);
    font-size: clamp(1.85rem, 3vw, 2.35rem);
    font-weight: 650;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.ll-app-history-notes {
    margin-bottom: 1.25rem;
    padding: 1rem 1.125rem;
    border: 1px solid var(--ll-border);
    border-left: 3px solid var(--ll-accent);
    border-radius: 0.75rem;
    background: var(--ll-surface);
}

.ll-app-history-notes p {
    margin: 0 !important;
    color: var(--ll-muted) !important;
    font-size: 0.92rem;
    line-height: 1.5;
}

.ll-app-history-notes p + p {
    margin-top: 0.75rem !important;
}

.ll-app-history-list {
    overflow: hidden;
    border: 1px solid var(--ll-border);
    border-radius: 0.75rem;
    background: var(--ll-surface);
}

.ll-app-history-table-head {
    align-items: center;
    margin: 0;
    padding: 0.8rem 1rem;
    border-bottom: 1px solid var(--ll-border);
    background: rgba(32, 38, 43, 0.04);
}

.ll-app-history-table-head h6 {
    margin: 0;
    color: var(--ll-muted);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.3;
    text-transform: uppercase;
}

.ll-app-history-row {
    margin: 0 !important;
    padding: 0.95rem 1rem;
    border-bottom: 1px solid var(--ll-border);
    background: var(--ll-surface) !important;
}

.ll-app-history-row:nth-of-type(odd) {
    background: #faf9f7 !important;
}

.ll-app-history-row:last-child {
    border-bottom: 0;
}

.ll-app-history-row > [class*="col-"] {
    min-width: 0;
}

.ll-app-history-date {
    color: var(--ll-ink);
    font-weight: 600;
}

.ll-app-history-transaction-purchase {
    color: #2f6d48 !important;
    font-weight: 650;
}

.ll-app-history-transaction-conversion {
    color: var(--ll-ink) !important;
    font-weight: 600;
}

.ll-app-history-link {
    display: block;
    color: var(--ll-link);
    font-weight: 600;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.16em;
}

.ll-app-history-other {
    color: var(--ll-muted);
}

.ll-app-history a:focus-visible {
    outline: 3px solid var(--ll-focus);
    outline-offset: 3px;
}

.ll-app-history-footer {
    color: var(--ll-muted);
    font-size: 0.9rem;
}

.ll-app-history-footer p {
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .ll-app-history-table-head,
    .ll-app-history-row {
        grid-template-columns: 9rem minmax(0, 1fr) auto;
        column-gap: 1rem;
    }

    .ll-app-history-table-head {
        display: grid !important;
        align-items: center;
    }

    .ll-app-history-table-head > [class*="col-"],
    .ll-app-history-row > [class*="col-"] {
        flex: none;
        width: auto;
        max-width: none;
        padding: 0;
    }

    .ll-app-history-table-head-date,
    .ll-app-history-cell-date {
        grid-column: 1;
    }

    .ll-app-history-table-head-transaction {
        grid-column: 2;
    }

    .ll-app-history-table-head-amount,
    .ll-app-history-cell-amount {
        grid-column: 3;
        text-align: right;
    }

    .ll-app-history-row {
        display: grid;
        align-items: start !important;
        row-gap: 0.35rem;
    }

    .ll-app-history-cell-date {
        grid-row: 1 / span 2;
        align-self: center;
    }

    .ll-app-history-cell-type {
        grid-column: 2;
        grid-row: 1;
    }

    .ll-app-history-cell-details {
        grid-column: 2;
        grid-row: 2;
    }

    .ll-app-history-cell-details .truncate {
        display: block;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .ll-app-history-cell-amount {
        grid-row: 1 / span 2;
        align-self: center;
        white-space: nowrap;
    }
}

@media (min-width: 768px) {
    .ll-app-settings-content {
        padding-top: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .ll-app-settings-content {
        padding: 1.25rem 0.875rem 1rem;
    }

    .ll-app-settings-header {
        margin-bottom: 1rem;
    }

    .ll-app-settings-title {
        font-size: 1.85rem;
    }

    .ll-app-settings-section {
        padding: 1rem;
    }

    .ll-app-settings-action-row .form-select,
    .ll-app-settings-action-row .btn {
        flex-basis: 100%;
        width: 100%;
    }

    .ll-app-settings-switch-row {
        align-items: center !important;
    }

    .ll-app-history-content {
        padding: 1.25rem 0.875rem 2.25rem;
    }

    .ll-app-settings-footer {
        padding: 0 0.875rem 1.25rem;
    }
}

@media (max-width: 991.98px) {
    .ll-app-history-list {
        overflow: visible;
        border: 0;
        border-radius: 0;
        background: transparent;
    }

    .ll-app-history-row {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: start !important;
        column-gap: 1rem;
        row-gap: 0.75rem;
        margin: 0 0 0.75rem !important;
        padding: 1rem;
        border: 1px solid var(--ll-border);
        border-radius: 0.75rem;
        background: var(--ll-surface) !important;
    }

    .ll-app-history-row:nth-of-type(odd) {
        background: #faf9f7 !important;
    }

    .ll-app-history-row:last-child {
        margin-bottom: 0 !important;
    }

    .ll-app-history-row > [class*="col-"] {
        display: flex;
        width: auto;
        max-width: none;
        padding: 0;
    }

    .ll-app-history-cell-date,
    .ll-app-history-cell-type {
        align-items: baseline;
        gap: 0.35rem;
        white-space: nowrap;
    }

    .ll-app-history-cell-type {
        justify-content: flex-end;
        text-align: right;
    }

    .ll-app-history-cell-details {
        display: block !important;
        grid-column: 1 / -1;
    }

    .ll-app-history-cell-amount {
        grid-column: 1 / -1;
        align-items: baseline;
        justify-content: space-between;
        padding-top: 0.75rem !important;
        border-top: 1px solid var(--ll-border);
        font-weight: 650;
    }

    .ll-app-history-row > [data-history-label]::before {
        content: attr(data-history-label);
        color: var(--ll-muted);
        font-size: 0.76rem;
        font-weight: 700;
        letter-spacing: 0.05em;
        line-height: 1.3;
        text-transform: uppercase;
    }

    .ll-app-history-cell-details::before {
        display: block;
        margin-bottom: 0.32rem;
    }

    .ll-app-history-cell-details .truncate {
        display: block;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

/* Signed-in application: Support (visual-only) */
.ll-app-support {
    min-height: calc(100vh - 3.75rem);
    color: var(--ll-ink);
    background: var(--ll-page-bg);
}

.ll-app-content > .ll-app-support {
    flex: 0 0 100%;
    max-width: 100%;
}

.ll-app-support-content {
    width: 100%;
    max-width: 46rem;
    margin: 0 auto;
    padding: 2rem 2rem 3rem !important;
}

.ll-app-support-header {
    margin-bottom: 1.25rem;
}

.ll-app-support-title {
    margin: 0;
    color: var(--ll-ink);
    font-size: clamp(1.85rem, 3vw, 2.35rem);
    font-weight: 650;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.ll-app-support-lead {
    max-width: 39rem;
    margin: 0.65rem 0 0;
    color: var(--ll-muted);
    font-size: 1rem;
    line-height: 1.5;
}

.ll-app-support-lead a {
    color: var(--ll-link);
    font-weight: 600;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.16em;
}

.ll-app-support-panel {
    padding: 1.5rem;
    border: 1px solid var(--ll-border);
    border-radius: 0.75rem;
    background: var(--ll-surface);
}

.ll-app-support .form-label {
    margin-bottom: 0.5rem;
    color: var(--ll-ink);
    font-size: 0.96rem;
    font-weight: 650;
    line-height: 1.35;
}

.ll-app-support textarea.form-control {
    min-block-size: 12.5rem;
    border-color: var(--ll-border);
    color: var(--ll-ink);
    background: var(--ll-surface);
    box-shadow: none;
    resize: vertical;
}

.ll-app-support textarea.form-control:focus {
    border-color: var(--ll-focus);
    box-shadow: 0 0 0 0.2rem rgba(185, 86, 18, 0.16);
}

.ll-app-support-action-wrap {
    margin-top: 1.25rem;
}

.ll-app-support .ll-app-support-action {
    width: 100%;
    min-block-size: 2.75rem;
    margin: 0;
    border-color: var(--ll-accent) !important;
    color: var(--ll-ink) !important;
    background: var(--ll-accent) !important;
    font-size: 1.05rem;
    font-weight: 700;
}

.ll-app-support .ll-app-support-action:hover {
    border-color: var(--ll-accent-hover) !important;
    color: var(--ll-ink) !important;
    background: var(--ll-accent-hover) !important;
}

.ll-app-support a:focus-visible,
.ll-app-support textarea:focus-visible,
.ll-app-support button:focus-visible {
    outline: 3px solid var(--ll-focus);
    outline-offset: 3px;
}

.ll-app-support-footer {
    margin-top: 1.5rem;
    color: var(--ll-muted);
    font-size: 0.9rem;
    text-align: center;
}

.ll-app-support-footer p {
    margin: 0;
}

@media (min-width: 768px) {
    .ll-app-support-content {
        padding-top: 2.5rem !important;
    }
}

@media (max-width: 767.98px) {
    .ll-app-support-content {
        padding: 1.25rem 0.875rem 2.25rem !important;
    }

    .ll-app-support-header {
        margin-bottom: 1rem;
    }

    .ll-app-support-title {
        font-size: 1.85rem;
    }

    .ll-app-support-panel {
        padding: 1rem;
    }

    .ll-app-support textarea.form-control {
        min-block-size: 11.5rem;
    }
}

/* Signed-in application: Pricing (visual-only) */
.ll-app-pricing {
    min-height: calc(100vh - 3.75rem);
    color: var(--ll-ink);
    background: var(--ll-page-bg);
}

.ll-app-content > .ll-app-pricing {
    flex: 0 0 100%;
    max-width: 100%;
}

.ll-app-pricing-content {
    width: 100%;
    max-width: 46rem;
    margin: 0 auto;
    padding: 2rem 2rem 3rem !important;
}

.ll-app-pricing-header {
    margin-bottom: 1.25rem;
}

.ll-app-pricing-title {
    margin: 0;
    color: var(--ll-ink);
    font-size: clamp(1.85rem, 3vw, 2.35rem);
    font-weight: 650;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.ll-app-pricing-subtitle {
    margin: 0.65rem 0 0;
    color: var(--ll-muted);
    font-size: 1rem;
    line-height: 1.5;
}

.ll-app-pricing-overview,
.ll-app-pricing-rates,
.ll-app-pricing-estimator {
    border: 1px solid var(--ll-border);
    border-radius: 0.75rem;
    background: var(--ll-surface);
}

.ll-app-pricing-overview {
    overflow: hidden;
}

.ll-app-pricing-overview-item {
    display: grid;
    grid-template-columns: 2.5rem minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
    padding: 1.25rem 1.5rem;
}

.ll-app-pricing-overview-item + .ll-app-pricing-overview-item {
    border-top: 1px solid var(--ll-border);
}

.ll-app-pricing-overview-icon,
.ll-app-pricing-rates-icon {
    display: grid;
    place-items: center;
    color: var(--ll-accent);
    font-size: 1.45rem;
    line-height: 1;
}

.ll-app-pricing-overview h2,
.ll-app-pricing-rates h2,
.ll-app-pricing-estimator-title {
    margin: 0;
    color: var(--ll-ink);
    font-family: inherit;
    font-weight: 650;
}

.ll-app-pricing-overview h2,
.ll-app-pricing-rates h2 {
    font-size: 1.1rem;
    line-height: 1.35;
}

.ll-app-pricing-overview p,
.ll-app-pricing-rates p {
    margin: 0.45rem 0 0;
    color: var(--ll-muted);
    font-size: 0.96rem;
    line-height: 1.55;
}

.ll-app-pricing-rates {
    margin-top: 1.25rem;
    padding: 1.5rem;
}

.ll-app-pricing-rates-heading {
    display: grid;
    grid-template-columns: 2.5rem minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
}

.ll-app-pricing-rate-list {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--ll-border);
}

.ll-app-pricing-rate-list p + p {
    margin-top: 0.85rem;
}

.ll-app-pricing-rates strong {
    color: var(--ll-ink);
}

.ll-app-pricing-rates-note {
    margin-top: 1rem !important;
}

.ll-app-pricing-estimator {
    margin-top: 1.25rem;
    padding: 1.5rem;
    border: 1px solid var(--ll-border);
    border-radius: 0.75rem;
    background: var(--ll-surface);
}

.ll-app-pricing-estimator-title {
    font-size: 1.1rem;
    line-height: 1.4;
}

.ll-app-pricing .ll-app-pricing-input {
    min-block-size: 2.75rem;
    margin-top: 0.85rem;
    border-color: var(--ll-border);
    color: var(--ll-ink);
    background: var(--ll-surface);
    box-shadow: none;
}

.ll-app-pricing .ll-app-pricing-input:focus {
    border-color: var(--ll-focus);
    box-shadow: 0 0 0 0.2rem rgba(185, 86, 18, 0.16);
}

.ll-app-pricing .ll-app-pricing-action {
    width: 100%;
    min-block-size: 2.75rem;
    margin-top: 1rem;
    border-color: var(--ll-accent) !important;
    color: var(--ll-ink) !important;
    background: var(--ll-accent) !important;
    font-size: 1.05rem;
    font-weight: 700;
}

.ll-app-pricing .ll-app-pricing-action:hover {
    border-color: var(--ll-accent-hover) !important;
    color: var(--ll-ink) !important;
    background: var(--ll-accent-hover) !important;
}

.ll-app-pricing-result {
    margin: 1rem 0 0;
    padding: 0.9rem 1rem;
    border: 1px solid var(--ll-border);
    border-radius: 0.5rem;
    color: var(--ll-ink);
    background: #fff4ea;
    font-size: 0.95rem;
    line-height: 1.45;
}

.ll-app-pricing input:focus-visible,
.ll-app-pricing button:focus-visible {
    outline: 3px solid var(--ll-focus);
    outline-offset: 3px;
}

.ll-app-pricing-footer {
    margin-top: 1.5rem;
    color: var(--ll-muted);
    font-size: 0.9rem;
    text-align: center;
}

.ll-app-pricing-footer p {
    margin: 0;
}

@media (min-width: 768px) {
    .ll-app-pricing-content {
        padding-top: 2.5rem !important;
    }
}

@media (max-width: 767.98px) {
    .ll-app-pricing-content {
        padding: 1.25rem 0.875rem 2.25rem !important;
    }

    .ll-app-pricing-header {
        margin-bottom: 1rem;
    }

    .ll-app-pricing-title {
        font-size: 1.85rem;
    }

    .ll-app-pricing-overview-item,
    .ll-app-pricing-rates,
    .ll-app-pricing-estimator {
        padding: 1rem;
    }

    .ll-app-pricing-overview-item,
    .ll-app-pricing-rates-heading {
        grid-template-columns: 2rem minmax(0, 1fr);
        gap: 0.75rem;
    }

    .ll-app-pricing-overview-icon,
    .ll-app-pricing-rates-icon {
        font-size: 1.25rem;
    }
}

/* Signed-in application: How Does It Work (visual-only) */
.ll-app-how {
    min-height: calc(100vh - 3.75rem);
    color: var(--ll-ink);
    background: var(--ll-page-bg);
}

.ll-app-content > .ll-app-how {
    flex: 0 0 100%;
    max-width: 100%;
}

.ll-app-how-content {
    width: 100%;
    max-width: 46rem;
    margin: 0 auto;
    padding: 2rem 2rem 3rem !important;
}

.ll-app-how-header {
    margin-bottom: 1.25rem;
}

.ll-app-how-title {
    margin: 0;
    color: var(--ll-ink);
    font-size: clamp(1.85rem, 3vw, 2.35rem);
    font-weight: 650;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.ll-app-how-subtitle {
    margin: 0.65rem 0 0;
    color: var(--ll-muted);
    font-size: 1rem;
    line-height: 1.5;
}

.ll-app-how-steps {
    margin: 0;
    padding: 0;
    overflow: hidden;
    list-style: none;
    border: 1px solid var(--ll-border);
    border-radius: 0.75rem;
    background: var(--ll-surface);
}

.ll-app-how-step {
    display: grid;
    grid-template-columns: 2rem minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
    padding: 1.25rem 1.5rem;
}

.ll-app-how-step + .ll-app-how-step {
    border-top: 1px solid var(--ll-border);
}

.ll-app-how-step-number {
    display: grid;
    inline-size: 2rem;
    block-size: 2rem;
    place-items: center;
    border: 1px solid #f4c9a5;
    border-radius: 50%;
    color: var(--ll-link);
    background: #fff4ea;
    font-size: 0.9rem;
    font-weight: 750;
    line-height: 1;
}

.ll-app-how-step h2 {
    margin: 0;
    color: var(--ll-ink);
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 650;
    line-height: 1.35;
}

.ll-app-how-step p {
    margin: 0.45rem 0 0;
    color: var(--ll-muted);
    font-size: 0.96rem;
    line-height: 1.55;
}

.ll-app-how-copy-label {
    display: block;
    margin-top: 0.9rem;
    color: var(--ll-ink);
    font-size: 0.9rem;
    font-weight: 650;
    line-height: 1.35;
}

.ll-app-how-copy-control {
    position: relative;
    margin-top: 0.45rem;
}

.ll-app-how-alternative {
    margin-top: 0.9rem !important;
    font-size: 0.9rem !important;
}

.ll-app-how-alternative a {
    color: var(--ll-link);
    font-weight: 650;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.16em;
}

.ll-app-how-alternative a:focus-visible {
    outline: 3px solid var(--ll-focus);
    outline-offset: 3px;
}

.ll-app-how .ll-app-how-copy-field {
    min-block-size: 2.75rem;
    border-color: var(--ll-border);
    color: var(--ll-ink);
    background: var(--ll-surface);
    box-shadow: none;
    cursor: pointer;
    padding-right: 2.8rem;
    text-overflow: ellipsis;
}

.ll-app-how .ll-app-how-copy-field:focus {
    border-color: var(--ll-focus);
    box-shadow: 0 0 0 0.2rem rgba(185, 86, 18, 0.16);
}

.ll-app-how-copy-icon {
    position: absolute;
    top: 50%;
    right: 0.95rem;
    color: var(--ll-muted);
    font-size: 1rem;
    pointer-events: none;
    transform: translateY(-50%);
}

.ll-app-how input:focus-visible {
    outline: 3px solid var(--ll-focus);
    outline-offset: 3px;
}

.ll-app-how-footer {
    margin-top: 1.5rem;
    color: var(--ll-muted);
    font-size: 0.9rem;
    text-align: center;
}

.ll-app-how-footer p {
    margin: 0;
}

@media (min-width: 768px) {
    .ll-app-how-content {
        padding-top: 2.5rem !important;
    }
}

@media (max-width: 767.98px) {
    .ll-app-how-content {
        padding: 1.25rem 0.875rem 2.25rem !important;
    }

    .ll-app-how-header {
        margin-bottom: 1rem;
    }

    .ll-app-how-title {
        font-size: 1.85rem;
    }

    .ll-app-how-step {
        grid-template-columns: 1.85rem minmax(0, 1fr);
        gap: 0.75rem;
        padding: 1rem;
    }

    .ll-app-how-step-number {
        inline-size: 1.85rem;
        block-size: 1.85rem;
    }
}

/* Signed-in application: End User Agreement (visual-only) */
.ll-app-content > .ll-app-eua {
    flex: 0 0 100%;
    max-width: 100%;
}

.ll-app-eua {
    width: 100%;
    min-height: calc(100vh - 3.75rem);
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden;
    color: var(--ll-ink);
    background: var(--ll-page-bg);
}

.ll-app-eua > .row {
    width: 100%;
    margin: 0;
}

.ll-app-eua .ll-legal-column {
    flex: 0 0 100%;
    width: 100%;
    max-width: 50rem;
    margin: 0 auto;
    padding: 2rem 2rem 3rem;
}

.ll-app-eua .ll-legal-header {
    margin-bottom: 1.25rem;
    text-align: left;
}

.ll-app-eua .ll-legal-title {
    margin: 0 !important;
    color: var(--ll-ink);
    font-family: inherit;
    font-size: clamp(1.85rem, 3vw, 2.35rem);
    font-weight: 650;
    line-height: 1.15;
    letter-spacing: -0.025em;
    text-align: left !important;
}

.ll-app-eua .ll-legal-section {
    margin: 0 !important;
    padding: 1.25rem 0;
    border-top: 1px solid var(--ll-border);
}

.ll-app-eua .ll-legal-intro {
    padding-top: 0;
    border-top: 0;
    text-align: left !important;
}

.ll-app-eua .ll-legal-intro + .ll-legal-section {
    border-top: 1px solid var(--ll-border);
}

.ll-app-eua .ll-legal-section h2 {
    margin: 0;
    color: var(--ll-ink);
    font-family: inherit;
    font-size: 1.15rem;
    font-weight: 650 !important;
    line-height: 1.35;
    letter-spacing: 0;
    text-align: left !important;
}

.ll-app-eua .ll-legal-section p,
.ll-app-eua .ll-legal-section li {
    color: var(--ll-muted);
    font-size: 0.96rem;
    line-height: 1.58;
}

.ll-app-eua .ll-legal-section p {
    margin: 0.7rem 0 0;
}

.ll-app-eua .ll-legal-section p + p {
    margin-top: 0.85rem;
}

.ll-app-eua .ll-legal-section ul {
    margin: 0.75rem 0 0;
    padding-left: 1.25rem;
}

.ll-app-eua .ll-legal-section li {
    margin-bottom: 0 !important;
}

.ll-app-eua .ll-legal-section li + li {
    margin-top: 0.35rem;
}

.ll-app-eua .ll-legal-intro .lead {
    max-width: none;
    margin-top: 0.65rem;
    color: var(--ll-muted);
    font-size: 1rem;
    line-height: 1.58;
    text-align: left !important;
}

.ll-app-eua .ll-legal-contact {
    border-bottom: 1px solid var(--ll-border);
    text-align: left !important;
}

.ll-app-eua .ll-legal-contact p {
    margin-top: 0.55rem;
}

.ll-app-eua a {
    color: var(--ll-link);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.16em;
}

.ll-app-eua a:focus-visible,
.ll-app-eua .ll-legal-back:focus-visible {
    outline: 3px solid var(--ll-focus);
    outline-offset: 3px;
    box-shadow: none;
}

.ll-app-eua .ll-legal-action {
    margin: 1.5rem 0 !important;
    text-align: left !important;
}

.ll-app-eua .ll-legal-back {
    border: 1px solid var(--ll-accent);
    border-radius: 0.45rem;
    color: var(--ll-ink);
    background: transparent;
    font-size: 0.96rem;
    font-weight: 650;
    box-shadow: none;
}

.ll-app-eua .ll-legal-back:hover {
    border-color: var(--ll-accent-hover);
    color: var(--ll-ink);
    background: rgba(255, 138, 53, 0.1);
}

.ll-app-eua .ll-legal-footer {
    margin-top: 1.5rem;
    color: var(--ll-muted);
    font-size: 0.9rem;
    text-align: center;
}

.ll-app-eua .ll-legal-footer p {
    margin: 0;
}

@media (max-width: 767.98px) {
    .ll-app-eua .ll-legal-column {
        padding: 1.25rem 0.875rem 2.25rem;
    }

    .ll-app-eua .ll-legal-header {
        margin-bottom: 1rem;
    }

    .ll-app-eua .ll-legal-title {
        font-size: 1.85rem;
    }

    .ll-app-eua .ll-legal-section {
        padding: 1rem 0;
    }

    .ll-app-eua .ll-legal-section h2 {
        font-size: 1.08rem;
    }

    .ll-app-eua .ll-legal-section p,
    .ll-app-eua .ll-legal-section li {
        font-size: 0.95rem;
    }
}

/* Signed-in application: Tips & Tricks (visual-only) */
.ll-app-tips {
    min-height: calc(100vh - 3.75rem);
    color: var(--ll-ink);
    background: var(--ll-page-bg);
}

.ll-app-content > .ll-app-tips {
    flex: 0 0 100%;
    max-width: 100%;
}

.ll-app-tips-content {
    width: 100%;
    max-width: 64rem;
    margin: 0 auto;
    padding: 2rem 2rem 3rem;
}

.ll-app-tips-header {
    margin-bottom: 1.25rem;
}

.ll-app-tips-title {
    margin: 0;
    color: var(--ll-ink);
    font-size: clamp(1.85rem, 3vw, 2.35rem);
    font-weight: 650;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.ll-app-tips-section {
    border: 1px solid var(--ll-border);
    border-radius: 0.75rem;
    background: var(--ll-surface);
}

.ll-app-tips-section--paywall {
    padding: 1.25rem;
}

.ll-app-tips-section-intro {
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--ll-border);
}

.ll-app-tips-section h2,
.ll-app-tips-platform h3 {
    margin: 0;
    color: var(--ll-ink);
    font-family: inherit;
    font-weight: 650;
}

.ll-app-tips-section h2 {
    font-size: 1.18rem;
    line-height: 1.3;
}

.ll-app-tips-platform h3 {
    font-size: 1rem;
    line-height: 1.35;
}

.ll-app-tips-section p,
.ll-app-tips-section li {
    color: var(--ll-muted);
    font-size: 0.95rem;
    line-height: 1.55;
}

.ll-app-tips-section p {
    margin: 0.6rem 0 0;
}

.ll-app-tips-section a {
    color: var(--ll-link);
    font-weight: 600;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.16em;
}

.ll-app-tips-section a:focus-visible {
    outline: 3px solid var(--ll-focus);
    outline-offset: 3px;
}

.ll-app-tips-platforms {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1.25rem;
}

.ll-app-tips-platform {
    min-width: 0;
    padding: 0 1.25rem 1.25rem 0;
}

.ll-app-tips-platform:nth-child(even) {
    padding-right: 0;
    padding-left: 1.25rem;
    border-left: 1px solid var(--ll-border);
}

.ll-app-tips-platform:nth-child(n + 3) {
    padding-top: 1.25rem;
    border-top: 1px solid var(--ll-border);
}

.ll-app-tips-platform ol {
    margin: 0.75rem 0 0;
    padding-left: 1.25rem;
}

.ll-app-tips-platform li + li {
    margin-top: 0.3rem;
}

.ll-app-tips-section--more {
    overflow: hidden;
    margin-top: 1.25rem;
}

.ll-app-tips-more-item {
    padding: 1rem 1.25rem;
}

.ll-app-tips-more-item + .ll-app-tips-more-item {
    border-top: 1px solid var(--ll-border);
}

.ll-app-tips-footer {
    margin-top: 1.5rem;
    color: var(--ll-muted);
    font-size: 0.9rem;
    text-align: center;
}

.ll-app-tips-footer p {
    margin: 0;
}

@media (max-width: 767.98px) {
    .ll-app-tips-content {
        padding: 1.25rem 0.875rem 2.25rem;
    }

    .ll-app-tips-header {
        margin-bottom: 1rem;
    }

    .ll-app-tips-title {
        font-size: 1.85rem;
    }

    .ll-app-tips-section--paywall {
        padding: 1rem;
    }

    .ll-app-tips-section-intro {
        padding-bottom: 1rem;
    }

    .ll-app-tips-platforms {
        grid-template-columns: 1fr;
        margin-top: 1rem;
    }

    .ll-app-tips-platform,
    .ll-app-tips-platform:nth-child(even),
    .ll-app-tips-platform:nth-child(n + 3) {
        padding: 0;
        border: 0;
    }

    .ll-app-tips-platform + .ll-app-tips-platform {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--ll-border);
    }

    .ll-app-tips-more-item {
        padding: 1rem;
    }
}
