/* === NAV === */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-nav);
    background: var(--ob2);
    border-bottom: 0.5px solid var(--ob4);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 52px;
    gap: var(--sp4);
}

.nav-logo {
    font-family: var(--fs);
    font-size: 20px;
    letter-spacing: -0.4px;
    color: #F0EDE6;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo em {
    font-style: italic;
    color: var(--v);
}

.nav-links {
    display: none;
    align-items: center;
    gap: var(--sp6);
    list-style: none;
}

.nav-links a {
    font-size: var(--t-sm);
    color: #8A8680;
    text-decoration: none;
    min-height: var(--touch);
    display: flex;
    align-items: center;
    transition: color var(--ease);
}

.nav-links a:hover {
    color: #F0EDE6;
}

.nav-actions {
    display: flex;
    gap: var(--sp2);
    align-items: center;
}

.nav-hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0;
    background: none;
    border: none;
    min-width: var(--touch);
    min-height: var(--touch);
    align-items: center;
    justify-content: center;
}

.nav-hamburger span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: #F0EDE6;
    transition: transform var(--ease), opacity var(--ease);
}

.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(5.5px) rotate(45deg);
}

.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg);
}

.nav-mobile {
    display: none;
    flex-direction: column;
    background: var(--ob2);
    border-bottom: 0.5px solid var(--ob4);
}

.nav-mobile.open {
    display: flex;
}

.nav-mobile a {
    font-size: var(--t-body);
    color: #C8C4BC;
    text-decoration: none;
    padding: var(--sp3) var(--cpad-m);
    min-height: var(--touch);
    display: flex;
    align-items: center;
    border-bottom: 0.5px solid var(--ob4);
    transition: background var(--ease);
}

.nav-mobile a:last-child {
    border-bottom: none;
}

.nav-mobile a:hover {
    background: var(--ob3);
}

.nav-mobile a.nav-cta {
    color: var(--v);
    font-weight: 600;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .nav-hamburger {
        display: none;
    }

    .nav-mobile {
        display: none !important;
    }
}


/* === HERO === */

.hero {
    background: var(--ob2);
    padding: calc(52px + var(--sp12)) 0 var(--sp16);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp8);
    align-items: center;
}

.hero-eyebrow {
    font-size: 10px;
    letter-spacing: var(--ls-ol);
    text-transform: uppercase;
    font-weight: 600;
    color: #7A7670;
    margin-bottom: var(--sp3);
}

.hero-headline {
    font-family: var(--fs);
    font-size: var(--t-disp);
    line-height: var(--lh-d);
    letter-spacing: var(--ls-d);
    color: #F0EDE6;
}

.hero-headline em {
    font-style: italic;
    color: var(--v-d);
    display: block;
}

.hero-body {
    font-size: 14px;
    color: #B0ACA6;
    line-height: 1.75;
    margin: var(--sp4) 0 var(--sp5);
}

.hero-ctas {
    display: flex;
    gap: var(--sp3);
    flex-wrap: wrap;
}




.hero-demo {
    background: var(--ob3);
    border: 0.5px solid var(--ob4);
    border-radius: var(--r-xl);
    padding: var(--sp5);
}

.hero-demo-label {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mu-d);
    font-weight: 600;
    margin-bottom: var(--sp3);
}

.hero-demo-row {
    display: flex;
    gap: var(--sp2);
    margin-bottom: var(--sp3);
}

.demo-inp {
    flex: 1;
    min-height: var(--touch);
    padding: 0 12px;
    background: var(--ob2);
    border: 0.5px solid var(--ob4);
    border-radius: var(--r-md);
    font-family: var(--fm);
    font-size: 11px;
    color: #C8C4BC;
    outline: none;
    transition: border-color var(--ease);
    appearance: none;
    -webkit-appearance: none;
}

.demo-inp:focus {
    border-color: var(--v);
}

.demo-inp::placeholder {
    color: #8A8480;
}

.hero-result {
    background: var(--ob2);
    border: 0.5px solid var(--ac-b);
    border-radius: var(--r-lg);
    padding: var(--sp3) var(--sp4);
}

.result-head {
    display: flex;
    align-items: center;
    gap: var(--sp2);
    margin-bottom: var(--sp3);
}

.result-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--ac-p);
    border: 1px solid var(--ac-b);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.result-title {
    font-family: var(--fs);
    font-size: 14px;
    color: #5DBD8A;
}

.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    border-bottom: 0.5px solid var(--ob4);
    font-size: 11px;
    gap: var(--sp3);
}

.result-row:last-of-type {
    border-bottom: none;
}

.result-key {
    color: #9A9690;
    flex-shrink: 0;
}

.result-val {
    color: #C8C4BC;
    font-weight: 500;
    text-align: right;
}

.result-val-valid {
    color: #5DBD8A;
    font-weight: 600;
}

.hash-strip {
    margin-top: var(--sp2);
    background: var(--ob);
    border-radius: 3px;
    padding: 5px 8px;
    font-family: var(--fm);
    font-size: 9px;
    color: #8A8480;
    word-break: break-all;
    line-height: 1.5;
}

@media (min-width: 900px) {
    .hero {
        padding: calc(52px + var(--sp16)) 0 var(--sp16);
    }

    .hero-grid {
        grid-template-columns: 5fr 7fr;
        gap: var(--sp10);
        align-items: center;
    }
}

@media (max-width: 899px) {
    .map-panel {
        max-width: 320px;
        margin-top: var(--sp6);
    }
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: no-preference) {
    .hero-content {
        animation: fade-up 0.45s ease both;
    }

    .hero-demo {
        animation: fade-up 0.45s ease 0.15s both;
    }
}


/* === TRUST MARQUEE === */

.trust-strip {
    background: var(--wh);
    border-bottom: var(--border);
    padding: var(--sp3) 0;
    overflow: hidden;
    position: relative;
}

.trust-strip::before,
.trust-strip::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.trust-strip::before {
    left: 0;
    background: linear-gradient(to right, var(--wh), transparent);
}

.trust-strip::after {
    right: 0;
    background: linear-gradient(to left, var(--wh), transparent);
}

.trust-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: marquee 52s linear infinite;
}

.trust-strip:hover .trust-track {
    animation-play-state: paused;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .trust-track {
        animation: none;
    }

    .trust-strip {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--sp3);
    padding: var(--sp2) var(--sp5);
    border-right: var(--border);
    white-space: nowrap;
    cursor: default;
}

.trust-logo-mark {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    overflow: hidden;
}

.trust-item-name {
    font-family: var(--fs);
    font-size: 12px;
    color: var(--mu);
    transition: color var(--ease);
}

.trust-item:hover .trust-item-name {
    color: var(--ob);
}

.trust-item:hover .trust-logo-mark rect {
    fill: #3A3830;
}


/* === TRUTH STRIP === */

.truth {
    background: var(--ob2);
    border-top: 0.5px solid var(--ob4);
    border-bottom: 0.5px solid var(--ob4);
}

.truth-grid {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 600px) {
    .truth-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1000px) {
    .truth-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.truth-card {
    padding: var(--sp8) var(--sp6);
    border-bottom: 0.5px solid var(--ob4);
}

@media (min-width: 600px) {
    .truth-card {
        border-bottom: none;
        border-right: 0.5px solid var(--ob4);
    }

    .truth-card:nth-child(2n) {
        border-right: none;
    }
}

@media (min-width: 1000px) {
    .truth-card {
        border-right: 0.5px solid var(--ob4);
        border-bottom: none;
    }

    .truth-card:last-child {
        border-right: none;
    }

    .truth-card:nth-child(2n) {
        border-right: 0.5px solid var(--ob4);
    }
}

.truth-card:last-child {
    border-bottom: none;
}

.truth-eyebrow {
    font-size: 9px;
    letter-spacing: var(--ls-ol);
    text-transform: uppercase;
    font-weight: 600;
    color: var(--v-d);
    margin-bottom: var(--sp3);
}

.truth-stat {
    font-family: var(--fs);
    font-size: clamp(28px, 3.5vw, 40px);
    color: #F0EDE6;
    line-height: 1;
    margin-bottom: var(--sp3);
}

.truth-body {
    font-size: 12px;
    color: #A8A49C;
    line-height: 1.65;
    max-width: 220px;
}


/* === HERO IMAGE === */

.hero-img-wrap {
    position: relative;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 899px) {
    .hero-img-wrap {
        max-width: 480px;
        margin-top: var(--sp6);
    }
}


/* === LIVE DEMO SECTION === */

.demo-section {
    background: var(--st);
    border-top: var(--border);
    border-bottom: var(--border);
}

.demo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp10);
    align-items: center;
}

@media (min-width: 900px) {
    .demo-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.demo-copy {
    max-width: 440px;
}

.demo-copy p {
    font-size: var(--t-body);
    color: var(--mu);
    line-height: var(--lh-b);
    margin: var(--sp4) 0 var(--sp6);
}

.demo-ctas {
    display: flex;
    gap: var(--sp3);
    flex-wrap: wrap;
}

.demo-panel {
    background: var(--ob2);
    border: 0.5px solid var(--ob4);
    border-radius: var(--r-xl);
    overflow: hidden;
}

.demo-panel-header {
    padding: var(--sp3) var(--sp5);
    border-bottom: 0.5px solid var(--ob4);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.demo-panel-title {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mu-d);
    font-weight: 600;
}

.demo-panel-live {
    display: flex;
    align-items: center;
    gap: var(--sp1);
    font-size: var(--t-xs);
    color: var(--mu-d);
}

.demo-panel-live-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #5DBD8A;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.25;
    }
}

.demo-panel-body {
    padding: var(--sp5);
}

.demo-verify-row {
    display: flex;
    gap: var(--sp2);
    margin-bottom: var(--sp4);
}

.demo-verify-inp {
    flex: 1;
    min-height: var(--touch);
    padding: 0 12px;
    background: var(--ob3);
    border: 0.5px solid var(--ob4);
    border-radius: var(--r-md);
    font-family: var(--fm);
    font-size: 11px;
    color: #C8C4BC;
    outline: none;
    transition: border-color var(--ease);
    appearance: none;
    -webkit-appearance: none;
}

.demo-verify-inp:focus {
    border-color: var(--v);
}

.demo-verify-inp::placeholder {
    color: #8A8480;
}

.demo-result {
    background: var(--ob3);
    border: 0.5px solid var(--ac-b);
    border-radius: var(--r-lg);
    padding: var(--sp3) var(--sp4);
}

.demo-result-head {
    display: flex;
    align-items: center;
    gap: var(--sp2);
    margin-bottom: var(--sp3);
}

.demo-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--ac-p);
    border: 1px solid var(--ac-b);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.demo-result-title {
    font-family: var(--fs);
    font-size: 14px;
    color: #5DBD8A;
}

.demo-result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    border-bottom: 0.5px solid var(--ob4);
    font-size: 11px;
    gap: var(--sp3);
}

.demo-result-row:last-of-type {
    border-bottom: none;
}

.demo-result-key {
    color: #9A9690;
    flex-shrink: 0;
}

.demo-result-val {
    color: #C8C4BC;
    font-weight: 500;
    text-align: right;
}

.demo-result-val-valid {
    color: #5DBD8A;
    font-weight: 600;
}

.demo-hash {
    margin-top: var(--sp2);
    background: var(--ob);
    border-radius: 3px;
    padding: 5px 8px;
    font-family: var(--fm);
    font-size: 9px;
    color: #8A8480;
    word-break: break-all;
    line-height: 1.5;
}

.demo-tab-row {
    display: flex;
    gap: var(--sp1);
    margin-bottom: var(--sp4);
}

.demo-tab {
    padding: 5px 12px;
    border-radius: var(--r-sm);
    font-size: var(--t-xs);
    font-weight: 500;
    color: var(--mu-d);
    background: none;
    border: 0.5px solid var(--ob4);
    cursor: pointer;
    font-family: var(--fn);
    transition: background var(--ease), color var(--ease), border-color var(--ease);
    min-height: var(--touch-sm);
}

.demo-tab.active {
    background: var(--v);
    color: var(--v-p);
    border-color: var(--v);
}

.demo-tab:hover:not(.active) {
    color: #C8C4BC;
    border-color: var(--ob5);
}


/* === HOW IT WORKS === */

.how {
    background: var(--wh);
    border-top: var(--border);
    border-bottom: var(--border);
}

.how-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp8);
    margin-top: var(--sp8);
}

@media (min-width: 768px) {
    .how-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.how-step-num {
    font-family: var(--fs);
    font-size: 11px;
    color: var(--v);
    letter-spacing: 1px;
    margin-bottom: var(--sp3);
}

.how-icon {
    width: 40px;
    height: 40px;
    background: var(--st);
    border: var(--border);
    border-radius: var(--r-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--sp3);
}

.how-title {
    font-family: var(--fs);
    font-size: 17px;
    color: var(--ob);
    margin-bottom: var(--sp2);
}

.how-desc {
    font-size: var(--t-sm);
    color: var(--mu);
    line-height: 1.7;
}


/* === CREDENTIAL SHOWCASE === */

.showcase {
    background: var(--st);
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp6);
    margin-top: var(--sp8);
    align-items: start;
}

@media (min-width: 900px) {
    .showcase-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--sp10);
        align-items: center;
    }
}

.showcase-copy {
    max-width: 460px;
}

.showcase-copy p {
    font-size: var(--t-body);
    color: var(--mu);
    line-height: var(--lh-b);
    margin-top: var(--sp4);
    margin-bottom: var(--sp6);
}

.showcase-features {
    display: flex;
    flex-direction: column;
    gap: var(--sp3);
}

.showcase-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--sp3);
}

.feature-icon {
    width: 32px;
    height: 32px;
    background: var(--v-p);
    border: 0.5px solid var(--v-b);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-title {
    font-size: var(--t-sm);
    font-weight: 600;
    color: var(--ob);
    margin-bottom: 2px;
}

.feature-desc {
    font-size: var(--t-sm);
    color: var(--mu);
    line-height: 1.6;
}

.cred-stack {
    display: flex;
    flex-direction: column;
    gap: var(--sp3);
}

.cred-card {
    background: var(--wh);
    border: var(--border);
    border-radius: var(--r-lg);
    padding: var(--sp4);
    transition: border-color var(--ease-s), box-shadow var(--ease-s);
}

.cred-card:hover {
    border-color: var(--st4);
    box-shadow: var(--shadow-card);
}

.cred-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: var(--sp3);
}

.cred-icon {
    width: 38px;
    height: 38px;
    background: var(--st2);
    border: var(--border);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cred-name {
    font-family: var(--fs);
    font-size: 14px;
    color: var(--ob);
    line-height: 1.3;
}

.cred-issuer {
    font-size: var(--t-xs);
    color: var(--mu);
    margin-top: 3px;
}

.cred-foot {
    padding-top: var(--sp3);
    border-top: var(--border-m);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp3);
}

.cred-id {
    font-family: var(--fm);
    font-size: 9px;
    color: var(--mu);
}

.cred-actions {
    display: flex;
    gap: var(--sp2);
}


/* === SOCIAL PROOF === */

.proof {
    background: var(--wh);
    border-top: var(--border);
    border-bottom: var(--border);
}

.proof-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp4);
    margin-top: var(--sp8);
}

@media (min-width: 600px) {
    .proof-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1000px) {
    .proof-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.proof-card {
    background: var(--st);
    border: var(--border);
    border-radius: var(--r-xl);
    padding: var(--sp5);
}

.proof-quote {
    font-family: var(--fs);
    font-size: 15px;
    color: var(--ob);
    line-height: 1.55;
    font-style: italic;
    margin-bottom: var(--sp5);
}

.proof-author {
    display: flex;
    align-items: center;
    gap: var(--sp3);
}

.proof-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--st3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fs);
    font-size: 13px;
    color: var(--mu);
    flex-shrink: 0;
}

.proof-name {
    font-size: var(--t-sm);
    font-weight: 600;
    color: var(--ob);
}

.proof-role {
    font-size: var(--t-xs);
    color: var(--mu);
    margin-top: 2px;
}


/* === ROLES === */

.roles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp4);
    margin-top: var(--sp8);
}

@media (min-width: 768px) {
    .roles-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.role-card {
    background: var(--wh);
    border: var(--border);
    border-radius: var(--r-xl);
    padding: var(--sp5) var(--sp5) var(--sp6);
    transition: border-color var(--ease-s);
}

.role-card:hover {
    border-color: var(--st4);
}

.role-card-dark {
    background: var(--ob2);
    border-color: var(--ob4);
}

.role-card-dark:hover {
    border-color: var(--ob5);
}

.role-tag {
    display: inline-flex;
    padding: 3px 9px;
    background: var(--st);
    border: var(--border);
    border-radius: var(--r-sm);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--mu);
    margin-bottom: var(--sp4);
}

.role-card-dark .role-tag {
    background: var(--ob3);
    border-color: var(--ob4);
    color: #9A9690;
}

.role-title {
    font-family: var(--fs);
    font-size: 20px;
    color: var(--ob);
    margin-bottom: var(--sp2);
}

.role-card-dark .role-title {
    color: #F0EDE6;
}

.role-desc {
    font-size: var(--t-sm);
    color: var(--mu);
    line-height: 1.7;
    margin-bottom: var(--sp5);
}

.role-card-dark .role-desc {
    color: #9A9690;
}

.role-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--sp2);
    margin-bottom: var(--sp5);
}

.role-features li {
    font-size: var(--t-sm);
    color: var(--ob);
    display: flex;
    align-items: flex-start;
    gap: var(--sp2);
    line-height: 1.5;
}

.role-card-dark .role-features li {
    color: #9A9690;
}

.role-features li::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--v);
    margin-top: 6px;
    flex-shrink: 0;
}


/* === FAQ === */

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--sp3);
    margin-top: var(--sp6);
    max-width: 660px;
}

.faq-item {
    background: var(--wh);
    border: var(--border);
    border-radius: var(--r-lg);
}

.faq-item summary {
    font-weight: 600;
    font-size: var(--t-body);
    color: var(--ob);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--sp3);
    padding: var(--sp4);
    cursor: pointer;
    min-height: var(--touch);
    transition: color var(--ease);
}

.faq-item summary:hover {
    color: var(--v);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-icon {
    color: var(--mu);
    font-size: 20px;
    font-weight: 300;
    flex-shrink: 0;
    line-height: 1;
    transition: transform var(--ease);
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
}

.faq-body {
    padding: 0 var(--sp4) var(--sp4);
    font-size: var(--t-sm);
    color: var(--mu);
    line-height: 1.7;
}


/* === CTA SECTION === */

.cta-section {
    background: var(--ob2);
}

.cta-inner {
    max-width: 580px;
    margin: 0 auto;
    text-align: center;
}

.cta-heading {
    font-family: var(--fs);
    font-size: var(--t-h1);
    line-height: 1.15;
    letter-spacing: var(--ls-h);
    color: #F0EDE6;
    margin-bottom: var(--sp3);
}

.cta-heading em {
    font-style: italic;
    color: var(--v-d);
}

.cta-sub {
    font-size: var(--t-sm);
    color: #8A8480;
    margin-bottom: var(--sp6);
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: var(--sp2);
}

@media (min-width: 480px) {
    .cta-form {
        flex-direction: row;
    }
}

.cta-inp {
    flex: 1;
    min-height: var(--touch);
    padding: 0 14px;
    background: var(--ob3);
    border: 0.5px solid var(--ob4);
    border-radius: var(--r-md);
    font-family: var(--fn);
    font-size: var(--t-sm);
    color: #C8C4BC;
    outline: none;
    transition: border-color var(--ease);
    appearance: none;
    -webkit-appearance: none;
}

.cta-inp:focus {
    border-color: var(--v);
}

.cta-inp::placeholder {
    color: #8A8480;
}


/* === FOOTER === */

.footer {
    background: var(--ob);
    padding: var(--sp10) 0 max(var(--sp6), env(safe-area-inset-bottom));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp8);
    margin-bottom: var(--sp10);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-logo {
    font-family: var(--fs);
    font-size: 20px;
    letter-spacing: -0.4px;
    color: #F0EDE6;
    margin-bottom: var(--sp3);
    display: block;
    text-decoration: none;
}

.footer-logo em {
    font-style: italic;
    color: var(--v-d);
}

.footer-tagline {
    font-size: var(--t-sm);
    color: #8A8480;
    line-height: 1.7;
}

.footer-col-title {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    color: #8A8480;
    margin-bottom: var(--sp4);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--sp2);
}

.footer-links a {
    font-size: var(--t-sm);
    color: #8A8480;
    text-decoration: none;
    min-height: var(--touch-sm);
    display: flex;
    align-items: center;
    transition: color var(--ease);
}

.footer-links a:hover {
    color: #C8C4BC;
}

.footer-bottom {
    padding-top: var(--sp5);
    border-top: 0.5px solid var(--ob4);
    display: flex;
    flex-direction: column;
    gap: var(--sp3);
}

@media (min-width: 600px) {
    .footer-bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.footer-copy {
    font-size: var(--t-xs);
    color: #8A8480;
}

.footer-legal {
    display: flex;
    gap: var(--sp4);
    flex-wrap: wrap;
}

.footer-legal a {
    font-size: var(--t-xs);
    color: #8A8480;
    text-decoration: none;
    min-height: var(--touch-sm);
    display: flex;
    align-items: center;
    transition: color var(--ease);
}

.footer-legal a:hover {
    color: #8A8480;
}