/**
 * 랜딩 페이지 — 다크(기본) / 라이트 테마 (data-theme on html)
 */

/* CTA 제목용 Paperlogy (noonnu) — font-family 이름은 제공 코드와 동일 */
@font-face {
    font-family: "Paperozi";
    src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-1Thin.woff2") format("woff2");
    font-weight: 100;
    font-display: swap;
}

@font-face {
    font-family: "Paperozi";
    src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-2ExtraLight.woff2") format("woff2");
    font-weight: 200;
    font-display: swap;
}

@font-face {
    font-family: "Paperozi";
    src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-3Light.woff2") format("woff2");
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: "Paperozi";
    src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-4Regular.woff2") format("woff2");
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Paperozi";
    src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-5Medium.woff2") format("woff2");
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "Paperozi";
    src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-6SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: "Paperozi";
    src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-7Bold.woff2") format("woff2");
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "Paperozi";
    src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-8ExtraBold.woff2") format("woff2");
    font-weight: 800;
    font-display: swap;
}

@font-face {
    font-family: "Paperozi";
    src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-9Black.woff2") format("woff2");
    font-weight: 900;
    font-display: swap;
}

:root {
    --accent: #ff0033;
    --accent-hover: #e6002e;
    --font-sans: "Spoqa Han Sans Neo", "Noto Sans KR", "Nanum Gothic", MalgunGothic, Dotum, Lato, Roboto, Arial, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

[data-theme="dark"] {
    --page-bg: #1A1A1E;
    /* --section-cta-bg: #0a0a0a; */
    --surface-form: #2c2c2e;
    --surface-form-shadow: rgba(0, 0, 0, 0.45);
    --text-primary: #ffffff;
    --text-secondary: #e8e8ed;
    --text-muted: #5D5D6D;
    --input-bg: #3a3a3c;
    --input-border: transparent;
    --input-placeholder: #8e8e93;
    --footer-bg: #131313;
    --footer-text: #5D5D6D;
    --divider-line: var(--accent);
    --complete-summary-bg: #2c2c2e;
    --complete-summary-border: #3a3a3c;
    --complete-summary-label: #8e8e93;
    --complete-btn-bg: #f5f5f5;
    --complete-btn-text: #111111;
    --complete-lead: #a1a1a6;
    /* 신청 폼 카드(디자인 시안) */
    --lead-form-card-bg: #131313;
    --lead-form-card-border: #29292F;
    --lead-form-input-bg: #2c2c34;
    --lead-form-consent-bg: #1A1A1E;
    --lead-form-subtitle-color: #ff1b4d;
    --lead-form-divider-color: #29292F;
    --lead-form-accent: #ff1b4d;
    --lead-form-accent-hover: #e01645;
    --lead-form-footnote-color: #8e8e93;
    --terms-modal-backdrop: rgba(0, 0, 0, 0.55);
    --terms-modal-surface: #2c2c2e;
    --terms-modal-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.45);
    --terms-modal-header-border: #3a3a3c;
    --terms-modal-close: #8e8e93;
    --terms-modal-item-bg: #25252c;
    --terms-modal-item-border: #3a3a3c;
    --terms-modal-placeholder: #8e8e93;
    --terms-modal-panel-width: 26.875rem;
    --terms-modal-panel-height: 31.25rem;
}

[data-theme="light"] {
    --page-bg: #f5f5f5;
    /* --section-cta-bg: #ffffff; */
    --surface-form: #ffffff;
    --surface-form-shadow: rgba(0, 0, 0, 0.08);
    --text-primary: #111111;
    --text-secondary: #1a1a1a;
    --text-muted: #666666;
    --input-bg: #f0f0f0;
    --input-border: #e5e5e5;
    --input-placeholder: #999999;
    --footer-bg: #FFFFFF;
    --footer-text: #5D5D6D;
    --divider-line: var(--accent);
    --complete-summary-bg: #f8f9fa;
    --complete-summary-border: #e9ecef;
    --complete-summary-label: #868e96;
    --complete-btn-bg: #212529;
    --complete-btn-text: #ffffff;
    --complete-lead: #495057;
    --lead-form-card-bg: #ffffff;
    --lead-form-card-border: #e9ecef;
    --lead-form-input-bg: #f0f0f0;
    --lead-form-consent-bg: #f5f5f7;
    --lead-form-subtitle-color: #ff1b4d;
    --lead-form-divider-color: #e9ecef;
    --lead-form-accent: #ff1b4d;
    --lead-form-accent-hover: #e01645;
    --lead-form-footnote-color: #868e96;
    --terms-modal-backdrop: rgba(0, 0, 0, 0.45);
    --terms-modal-surface: #ffffff;
    --terms-modal-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.12);
    --terms-modal-header-border: #e9ecef;
    --terms-modal-close: #868e96;
    --terms-modal-item-bg: #f5f5f7;
    --terms-modal-item-border: #e9ecef;
    --terms-modal-placeholder: #868e96;
    --terms-modal-panel-width: 26.875rem;
    --terms-modal-panel-height: 31.25rem;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    min-width: 360px;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    background: var(--page-bg);
    color: var(--text-primary);
    line-height: 1.5;
    min-height: 100vh;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ----- 임시 테마 토글 바 ----- */
.theme-dev-bar {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    padding: 0.5rem 1rem;
    background: #1c1c1e;
    border-bottom: 1px solid #333;
    font-size: 0.8125rem;
}

.theme-dev-bar__label {
    color: #a1a1a6;
    margin-right: 0.25rem;
}

.theme-dev-bar__btn {
    padding: 0.35rem 0.85rem;
    border-radius: 6px;
    border: 1px solid #48484a;
    background: #2c2c2e;
    color: #fff;
    cursor: pointer;
    font: inherit;
}

.theme-dev-bar__btn:hover {
    background: #3a3a3c;
}

.theme-dev-bar__btn--active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

/* ----- 랜딩 (콘텐츠 최대 가로폭) ----- */
.landing {
    max-width: 574px;
    margin: 0 auto;
}

/* ----- 상단 배너 (통 이미지, 하단과 동일 BEM) ----- */
.landing-top-banner {
    margin: 0;
    padding: 0;
    background: #0a0a0c;
    line-height: 0;
}

.landing-top-banner__image {
    display: block;
    width: 100%;
    height: auto;
}

/* ----- 하단 배너 (실적 통 이미지) ----- */
.landing-bottom-banner {
    margin: 0;
    padding: 0;
    background: #0a0a0c;
    line-height: 0;
}

.landing-bottom-banner__image {
    display: block;
    width: 100%;
    height: auto;
}

/* ----- CTA 문구 ----- */
.landing-cta {
    /* background: var(--section-cta-bg); */
    max-width:458px;
    margin:2.4rem auto 0;
    @media(max-width: 458px){
        margin-left:1rem;
        margin-right:1rem;
    }
}

.landing-cta__inner {
    text-align: center;
}

#cta-heading.landing-cta__headline {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    font-family: "Paperozi", var(--font-sans);
    font-weight: 700;
}

.landing-cta__line {
    display: block;
    font-size: 26px; /* ≈20px @ 16px root */
    font-weight: 700;
    color: var(--text-secondary);
    line-height: 1.45;
    font-family: inherit;
    letter-spacing: -0.02em;
    @media (max-width: 458px) {
        font-size: 20px; 
    }
}



.landing-cta__divider {
    width: 100%;
    /*max-width: 200px;
    */height: 5px;
    background: var(--divider-line);
    border-radius: 1px;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    -ms-border-radius: 1px;
    -o-border-radius: 1px;
}

/* ----- 신청 폼 ----- */
.landing-form-section {
    background: var(--page-bg);
    margin: 1.5rem auto 3rem;
    max-width:458px;
    @media(max-width: 458px){
        margin-left:1rem;
        margin-right:1rem;
    }
}

.lead-form {
    background: var(--lead-form-card-bg);
    border: 1px solid var(--lead-form-card-border);
    padding: 2rem 4rem 2rem;
    box-shadow: 0 0 6px var(--surface-form-shadow);
    border-radius: 0.875rem;
    
    -webkit-border-radius: 0.875rem;
    -moz-border-radius: 0.875rem;
    -ms-border-radius: 0.875rem;
    -o-border-radius: 0.875rem;
    @media(max-width: 500px){
        padding: 1.5rem 2rem 1.5rem;
    }
}

.lead-form__header {
    /* text-align: center; */
    margin-bottom: 0;
}

.lead-form__title {
    margin: 0 0 0.2rem;
    /* font-family: "Paperozi", var(--font-sans); */
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.35;
    color: var(--text-primary);
}
@media (min-width: 400px) {
    .lead-form__title {
        font-size: 18px;
    }
}

.lead-form__subtitle {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--lead-form-subtitle-color);
}

.lead-form__divider {
    height: 1px;
    margin: 1rem 0 1.25rem;
    background: var(--lead-form-divider-color);
    border: 0;
}

.lead-form__fields {
    margin-bottom: 1rem;
}

.lead-form__field {
    margin-bottom: 1rem;
}

.lead-form__field:last-child {
    margin-bottom: 0;
}

.lead-form__label {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.lead-form__input {
    width: 100%;
    min-height: 3.125rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid transparent;
    background: var(--lead-form-input-bg);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
}

.lead-form__input::placeholder {
    color: var(--input-placeholder);
}

.lead-form__input:focus {
    outline: 2px solid var(--lead-form-accent);
    outline-offset: 0;
}

/* 약관 동의 박스 */
.lead-form__consent {
    background: var(--lead-form-consent-bg);
    border-radius: 0.5rem;
    padding: 0.875rem 0.875rem 0.75rem;
    margin-bottom: 1.25rem;
}

.lead-form__agree-row {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.lead-form__agree-check {
    display: flex;
    align-items: flex-start;
    margin: 0;
    cursor: pointer;
    flex-shrink: 0;
}

.lead-form__agree-modal-trigger {
    flex: 1;
    min-width: 0;
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    font: inherit;
    text-align: left;
    cursor: pointer;
    color: var(--text-primary);
    font-size: 12px;
    letter-spacing: -0.01em;
    line-height: 1.45;
}

.lead-form__agree-modal-trigger:focus-visible {
    outline: 2px solid var(--lead-form-accent);
    outline-offset: 2px;
    border-radius: 4px;
}

.lead-form__checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
}

.lead-form__checkbox-faux {
    flex-shrink: 0;
    width: 1.375rem;
    height: 1.375rem;
    margin-top: 0.1rem;
    border-radius: 50%;
    border: 2px solid var(--lead-form-accent);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease;
}

.lead-form__checkbox:checked + .lead-form__checkbox-faux {
    background: var(--lead-form-accent);
    border-color: var(--lead-form-accent);
}

.lead-form__checkbox:checked + .lead-form__checkbox-faux::after {
    content: "";
    width: 0.3rem;
    height: 0.55rem;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) translate(-0.05rem, -0.05rem);
}

.lead-form__checkbox:focus-visible + .lead-form__checkbox-faux {
    outline: 2px solid var(--lead-form-accent);
    outline-offset: 2px;
}

.lead-form__agree-main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem 0.35rem;
}

.lead-form__agree-strong {
    font-weight: 700;
}

.lead-form__agree-required {
    font-weight: 400;
    color: var(--text-primary);
}

.lead-form__agree-chevron {
    /* margin-left: auto; */
    color: var(--text-muted);
    font-size: 0.75rem;
    line-height: 1;
}

.lead-form__agree-note {
    margin: 4px 0 0;
    padding-left: 2rem;
    font-size: 10px;
    line-height: 1.2;
    color: var(--text-muted);
}

.lead-form__submit {
    position: relative;
    width: 100%;
    padding: 1rem 2.75rem 1rem 1rem;
    border: none;
    border-radius: 0.5rem;
    background: var(--lead-form-accent);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    /* font-family: "Paperozi", var(--font-sans); */
    cursor: pointer;
    transition: background 0.15s ease;
}

.lead-form__submit:hover {
    background: var(--lead-form-accent-hover);
}

.lead-form__submit-label {
    display: block;
    width: 100%;
    text-align: center;
}

.lead-form__submit-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.lead-form__footnote {
    margin: 1rem 0 0;
    text-align: center;
    font-size: 0.75rem;
    line-height: 1.5;
    color: var(--lead-form-footnote-color);
}

/* ----- 약관 전체 동의 모달 ----- */
/*
 * dialog 닫힘 시 UA는 [open] 제거 + display:none 인데,
 * 여기서 항상 display:flex 를 주면 그게 이겨서 패널만 남고 ::backdrop 만 사라지는 현상이 난다.
 * 열린 상태([open])에서만 flex 레이아웃을 쓴다.
 */
.terms-modal {
    margin: 0;
    padding: 0;
    border: none;
    box-sizing: border-box;
    background: transparent;
}

.terms-modal:not([open]) {
    display: none;
}

.terms-modal[open] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    max-width: 100vw;
    height: 100vh;
    max-height: 100vh;
    padding: 1rem;
}

@media (max-width: 458px) {
    .terms-modal[open] {
        width: 100%;
        max-width: 100%;
    }
}

.terms-modal::backdrop {
    background: var(--terms-modal-backdrop);
}

.terms-modal__panel {
    width: var(--terms-modal-panel-width);
    max-width: calc(100vw - 2rem);
    height: var(--terms-modal-panel-height);
    max-height: calc(100vh - 2rem);
    display: flex;
    flex-direction: column;
    background: var(--terms-modal-surface);
    color: var(--text-primary);
    border-radius: 0.875rem;
    box-shadow: var(--terms-modal-shadow);
    overflow: hidden;
    @media(max-width: 458px){
        max-width:calc(100% - 20px);
    }
}

.terms-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1rem 2rem 0.75rem;
    flex-shrink: 0;
    @media(max-width: 458px) {
        padding-left:1rem;
        padding-right:1rem;
    }
}

.terms-modal__master {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    cursor: pointer;
    flex: 1;
    min-width: 0;
}

.terms-modal__master-title {
    /* font-family: "Paperozi", var(--font-sans); */
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.35;
}

.terms-modal__close {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0.375rem;
    background: transparent;
    color: var(--terms-modal-close);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.terms-modal__close:hover {
    opacity: 0.85;
}

.terms-modal__close:focus-visible {
    outline: 2px solid var(--lead-form-accent);
    outline-offset: 2px;
}

/* img/svg: 클릭 타깃을 버튼으로 통일 */
.terms-modal__close img,
.terms-modal__close svg {
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    pointer-events: none;
}

.terms-modal__close img {
    object-fit: contain;
}

.terms-modal__divider {
    height: 1px;
    margin: 0 1rem;
    background: var(--terms-modal-header-border);
    flex-shrink: 0;
}

.terms-modal__body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 1.6rem 2rem 1rem;
    -webkit-overflow-scrolling: touch;
    @media(max-width: 458px) {
        padding-left:1rem;
        padding-right:1rem;
    }
}

.terms-modal__item {
    margin-bottom: 1rem;
}

.terms-modal__item:last-child {
    margin-bottom: 0;
}

.terms-modal__item-head {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 0.5rem;
    cursor: pointer;
}

.terms-modal__item-title {
    /* font-family: "Paperozi", var(--font-sans); */
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 1.35;
}

.terms-modal__item-content {
    margin: 0 0 0 0;
    padding: 0.65rem 0.75rem;
    font-size: 0.75rem;
    line-height: 1.5;
    color: var(--terms-modal-placeholder);
    background: var(--terms-modal-item-bg);
    border: 1px solid var(--terms-modal-item-border);
    border-radius: 0.5rem;
    overflow-x: hidden;
    overflow-y: auto;
    height:120px;
}

.terms-modal__item-content > :first-of-type {
    margin-top:0;
}
.terms-modal__item-content h1,
.terms-modal__item-content h2,
.terms-modal__item-content h3,
.terms-modal__item-content h4,
.terms-modal__item-content h5,
.terms-modal__item-content h6 {
    font-weight:700;
    font-size:inherit;
}
.terms-modal__item-content ul {
    margin-left:1rem;
    padding-left:0;
    list-style: disc;
}

.terms-modal__checkbox-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
}

.terms-modal__checkbox-faux {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    border: 2px solid var(--lead-form-accent);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease;
}

.terms-modal__checkbox-input:checked + .terms-modal__checkbox-faux {
    background: var(--lead-form-accent);
    border-color: var(--lead-form-accent);
}

.terms-modal__checkbox-input:checked + .terms-modal__checkbox-faux::after {
    content: "";
    width: 0.28rem;
    height: 0.5rem;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) translate(-0.04rem, -0.04rem);
}

.terms-modal__checkbox-input:focus-visible + .terms-modal__checkbox-faux {
    outline: 2px solid var(--lead-form-accent);
    outline-offset: 2px;
}

/* ----- 신청 완료(같은 페이지, 테마는 html data-theme 유지) ----- */
.landing-complete[hidden] {
    display: none !important;
}

.landing-complete {
    background: var(--page-bg);
    max-width:458px;
    margin: 4rem auto;
    background: var(--lead-form-card-bg);
    border: 1px solid var(--lead-form-card-border);
    padding: 2rem 4rem 2rem;
    box-shadow: 0 0 6px var(--surface-form-shadow);
    border-radius: 0.875rem;
    -webkit-border-radius: 0.875rem;
    -moz-border-radius: 0.875rem;
    -ms-border-radius: 0.875rem;
    -o-border-radius: 0.875rem;
    @media(max-width: 458px){
        margin-left:1rem;
        margin-right:1rem;
    }
}

.landing-complete__inner {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.landing-complete__icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.landing-complete__title {
    margin: 0 0 0.75rem;
    font-size: 1.375rem;
    font-family: "Paperozi", var(--font-sans);
    font-weight: 800;
    color: var(--text-primary);
    
}

.landing-complete__lead {
    margin: 0 0 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--complete-lead);
}

.landing-complete__summary {
    margin: 0 0 1.75rem;
    padding: 0;
    background: var(--complete-summary-bg);
    border: 1px solid var(--complete-summary-border);
    border-radius: 12px;
    text-align: left;
    overflow: hidden;
}

.landing-complete__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    align-items: baseline;
    padding: 0.85rem 1rem;
    margin: 0;
}

.landing-complete__row + .landing-complete__row {
    border-top: 1px solid var(--complete-summary-border);
}

.landing-complete__summary dt {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--complete-summary-label);
}

.landing-complete__summary dd {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: right;
    word-break: break-all;
}

.landing-complete__home {
    width: 100%;
    padding: 0.9rem 1rem;
    border: none;
    border-radius: 10px;
    background: var(--complete-btn-bg);
    color: var(--complete-btn-text);
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
}

.landing-complete__home:hover {
    opacity: 0.92;
}

/* ----- 푸터 ----- */
.landing-footer {
    max-width:458px;
    margin:1.5rem auto;
    color: var(--footer-text);
    background: var(--footer-bg);
    padding: 1.25rem 1rem 1.25rem;
    border-radius: 12px;
    font-size:12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    @media(max-width: 458px){
        margin-left:1rem;
        margin-right:1rem;
    }
}

.landing-footer__inner {
    max-width: 100%;
}

.landing-footer__text {
    margin: 0 0 0.65rem;
    font-size: 0.6875rem;
    line-height: 1.6;
    color: var(--footer-text);
}

.landing-footer__text--cs {
    margin-bottom: 0;
    font-size: 0.625rem;
    /* color: var(--text-muted); */
    margin:0;
    padding:0;
    list-style: none;
    display:flex;
    flex-wrap: wrap;
}
.landing-footer__text--cs li {
    margin-right:6px;
}
.landing-footer__text--cs li:after {
    content:'|';
    opacity:.5;
    margin-left:6px;
}
.landing-footer__text--cs li:last-child:after {
    content:'';
    margin-left:0;
}
