/* ============================================
   Passbook — Landing Page
   Hand-crafted. No templates. No frameworks.
   ============================================ */

:root {
    --bg: #141519;
    --bg-raised: #1c1d24;
    --bg-surface: #22242c;
    --border: rgba(255, 255, 255, 0.06);
    --border-vis: rgba(255, 255, 255, 0.1);
    --t1: #f0f1f5;
    --t2: #a0a5b8;
    --t3: #636881;
    --gold: #f7c45a;
    --gold-dim: rgba(247, 196, 90, 0.07);
    --gold-mid: rgba(247, 196, 90, 0.15);
    --green: #6fd6a8;
    --green-dim: rgba(111, 214, 168, 0.08);
    --red: #e5484d;
    --orange: #f28a57;
    --sans: "Inter", system-ui, -apple-system, sans-serif;
    --mono: "JetBrains Mono", "SF Mono", monospace;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--t1);
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ============================================
   NAV — minimal, just the wordmark and actions
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 60px;
    display: flex;
    align-items: center;
    transition:
        background 0.4s,
        border-color 0.4s,
        backdrop-filter 0.4s;
    border-bottom: 1px solid transparent;
}
.nav.scrolled {
    background: rgba(20, 21, 25, 0.8);
    backdrop-filter: blur(20px) saturate(1.3);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
    border-bottom-color: var(--border);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 28px;
}
.nav-mark {
    font-family: var(--mono);
    font-size: 20px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: -0.02em;
}
.nav-mark span {
    color: var(--t3);
    font-weight: 400;
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--t3);
    padding: 7px 14px;
    border-radius: 8px;
    transition:
        color 0.15s,
        background 0.15s;
}
.nav-link:hover {
    color: var(--t2);
    background: rgba(255, 255, 255, 0.03);
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    padding: 9px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.15s ease;
}
.btn-gold {
    background: var(--gold);
    color: #111;
}
.btn-gold:hover {
    background: #f9d06e;
}
.btn-gold:active {
    transform: scale(0.97);
}
.btn-outline {
    background: transparent;
    color: var(--t2);
    border: 1px solid var(--border-vis);
}
.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.18);
    color: var(--t1);
}

/* ============================================
   HERO — the product statement
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 60px 0 0;
    overflow: hidden;
}

/* Background: streaming cipher text */
.hero-cipher-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.cipher-col {
    position: absolute;
    top: 0;
    font-family: var(--mono);
    font-size: 12px;
    line-height: 2;
    color: rgba(247, 196, 90, 0.04);
    white-space: pre;
    writing-mode: vertical-lr;
    animation: cipherDrift 30s linear infinite;
}
@keyframes cipherDrift {
    from {
        transform: translateY(-50%);
    }
    to {
        transform: translateY(0);
    }
}

.hero-inner {
    position: relative;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left: text content */
.hero-text {
    max-width: 500px;
}

.hero-tag {
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 400;
    color: var(--t3);
    margin-bottom: 24px;
    animation: fadeUp 0.6s ease both;
}
.hero-tag span {
    color: var(--gold);
}

.hero-h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -0.045em;
    color: var(--t1);
    margin-bottom: 24px;
    animation: fadeUp 0.6s ease 0.08s both;
}
.hero-h1 .hl {
    position: relative;
    color: var(--gold);
    background: linear-gradient(
        120deg,
        var(--gold),
        var(--orange)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--t2);
    max-width: 420px;
    margin-bottom: 36px;
    animation: fadeUp 0.6s ease 0.16s both;
}

.hero-ctas {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    animation: fadeUp 0.6s ease 0.24s both;
}

/* Right: the encryption viz */
.hero-viz {
    animation: fadeUp 0.8s ease 0.2s both;
}

/* ============================================
   THE ENCRYPTION VISUALIZATION
   This is the signature piece. Shows plaintext
   on the left, lock in the middle, cipher on right.
   ============================================ */
.enc-viz {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 48px 1fr;
    gap: 0;
    align-items: stretch;
}

.enc-panel {
    background: var(--bg-raised);
    border: 1px solid var(--border-vis);
    padding: 20px;
    font-family: var(--mono);
    font-size: 12px;
    line-height: 2;
    overflow: hidden;
}
.enc-panel-plain {
    border-radius: 14px 0 0 14px;
    border-right: none;
}
.enc-panel-cipher {
    border-radius: 0 14px 14px 0;
    border-left: none;
}

.enc-panel-label {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 14px;
    display: block;
}
.enc-panel-plain .enc-panel-label {
    color: var(--green);
}
.enc-panel-cipher .enc-panel-label {
    color: var(--t3);
}

.env-line .k {
    color: var(--gold);
}
.env-line .v {
    color: var(--green);
}
.cipher-line {
    color: var(--t3);
    word-break: break-all;
}

/* The lock bridge between panels */
.enc-lock {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-vis);
    border-bottom: 1px solid var(--border-vis);
}
.enc-lock svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
    opacity: 0.7;
}

.enc-tag {
    margin-top: 12px;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--t3);
    text-align: right;
}
.enc-tag span {
    color: var(--gold);
    opacity: 0.6;
}

/* ============================================
   SECTION — FLOW (replaces "how it works")
   A single horizontal pipeline
   ============================================ */
.section {
    padding: 120px 0;
    position: relative;
}
.wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 28px;
}

.flow-section {
    overflow: hidden;
}
.flow-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 5%,
        var(--border-vis) 30%,
        var(--border-vis) 70%,
        transparent 95%
    );
}

.flow-header {
    margin-bottom: 72px;
}
.flow-header .tag {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--t3);
    margin-bottom: 16px;
}
.flow-header .tag span {
    color: var(--gold);
}
.flow-title {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.15;
    color: var(--t1);
}

.flow-pipeline {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
}

.flow-step {
    padding: 32px 28px;
    border: 1px solid var(--border-vis);
    background: var(--bg-raised);
    position: relative;
}
.flow-step:first-child {
    border-radius: 14px 0 0 14px;
}
.flow-step:last-child {
    border-radius: 0 14px 14px 0;
}

.flow-num {
    font-family: var(--mono);
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.12;
    position: absolute;
    top: 16px;
    right: 20px;
    line-height: 1;
    user-select: none;
}

.flow-step h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--t1);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.flow-step p {
    font-size: 13px;
    line-height: 1.65;
    color: var(--t2);
}
.flow-step code {
    font-family: var(--mono);
    font-size: 11.5px;
    color: var(--gold);
    background: var(--gold-dim);
    padding: 2px 7px;
    border-radius: 4px;
}

.flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    border-top: 1px solid var(--border-vis);
    border-bottom: 1px solid var(--border-vis);
    background: var(--bg-surface);
    color: var(--t3);
    font-size: 16px;
}

/* ============================================
   SECTION — FEATURES
   Vertical list with oversized index numbers.
   Not a grid. Not a bento. A list.
   ============================================ */
.feat-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 5%,
        var(--border-vis) 30%,
        var(--border-vis) 70%,
        transparent 95%
    );
}

.feat-header {
    margin-bottom: 64px;
}
.feat-header .tag {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--t3);
    margin-bottom: 16px;
}
.feat-header .tag span {
    color: var(--gold);
}
.feat-title {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.15;
    max-width: 480px;
}

.feat-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feat-item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition:
        border-color 0.25s,
        background 0.25s;
}
.feat-item:hover {
    border-color: var(--border-vis);
}

.feat-idx {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--mono);
    font-size: 14px;
    font-weight: 500;
    color: var(--t3);
    background: var(--bg-raised);
    border-right: 1px solid var(--border);
}

.feat-body {
    padding: 24px 28px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
}

.feat-body h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--t1);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}
.feat-body p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--t2);
    max-width: 520px;
}
.feat-body code {
    font-family: var(--mono);
    font-size: 11.5px;
    color: var(--gold);
    background: var(--gold-dim);
    padding: 2px 7px;
    border-radius: 4px;
}

.feat-badge {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 5px 12px;
    border-radius: 6px;
    white-space: nowrap;
}
.feat-badge-gold {
    color: var(--gold);
    background: var(--gold-dim);
}
.feat-badge-green {
    color: var(--green);
    background: var(--green-dim);
}

/* ============================================
   SECTION — SECURITY
   Full-width dark band with the encryption story
   ============================================ */
.sec-section {
    background: #111218;
    border-top: 1px solid var(--border-vis);
    border-bottom: 1px solid var(--border-vis);
}

.sec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.sec-header .tag {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--t3);
    margin-bottom: 16px;
}
.sec-header .tag span {
    color: var(--green);
}
.sec-title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.2;
    margin-bottom: 20px;
}
.sec-desc {
    font-size: 14px;
    line-height: 1.75;
    color: var(--t2);
    max-width: 440px;
}

.sec-checks {
    list-style: none;
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.sec-check {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--t2);
}
.sec-check:last-child {
    border-bottom: none;
}
.sec-check-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
}

/* Right side: code before/after */
.sec-code {
    background: var(--bg);
    border: 1px solid var(--border-vis);
    border-radius: 14px;
    overflow: hidden;
}
.sec-code-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.015);
}
.sec-code-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.sec-code-title {
    flex: 1;
    text-align: center;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--t3);
    margin-right: 24px;
}
.sec-code-body {
    font-family: var(--mono);
    font-size: 12px;
    line-height: 2;
}
.sec-code-half {
    padding: 18px 20px;
}
.sec-code-divider {
    height: 1px;
    background: var(--border-vis);
    position: relative;
}
.sec-code-divider::after {
    content: "AES-256-GCM";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--mono);
    font-size: 9px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    background: var(--bg);
    padding: 3px 14px;
    border-radius: 4px;
    border: 1px solid var(--gold-mid);
}
.sec-code-body .cm {
    color: var(--t3);
}
.sec-code-body .k {
    color: var(--gold);
}
.sec-code-body .v {
    color: var(--green);
}
.sec-code-body .ct {
    color: #4a4e5f;
}

/* ============================================
   SECTION — CLI
   One real terminal, not a grid of fake ones
   ============================================ */
.cli-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 5%,
        var(--border-vis) 30%,
        var(--border-vis) 70%,
        transparent 95%
    );
}

.cli-header {
    margin-bottom: 56px;
}
.cli-header .tag {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--t3);
    margin-bottom: 16px;
}
.cli-header .tag span {
    color: var(--gold);
}
.cli-title {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.15;
}

.cli-term {
    background: var(--bg-raised);
    border: 1px solid var(--border-vis);
    border-radius: 14px;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.02);
}
.cli-term-bar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 13px 16px;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.015);
}
.cli-term-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.cli-term-title {
    flex: 1;
    text-align: center;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--t3);
    margin-right: 31px;
}
.cli-term-body {
    padding: 22px 24px;
    font-family: var(--mono);
    font-size: 13px;
    line-height: 1.9;
    min-height: 300px;
}

.tl {
    white-space: pre;
}
.tl .p {
    color: var(--t3);
}
.tl .c {
    color: var(--gold);
}
.tl .a {
    color: var(--t1);
}
.tl .o {
    color: var(--t2);
}
.tl .g {
    color: var(--green);
}
.tl .r {
    color: var(--red);
}
.tl .d {
    color: var(--t3);
}

.cli-cursor {
    display: inline-block;
    width: 7px;
    height: 15px;
    background: var(--gold);
    vertical-align: text-bottom;
    animation: blink 1s step-end infinite;
}

.cli-aside {
    margin-top: 24px;
    font-family: var(--mono);
    font-size: 12px;
    color: var(--t3);
    text-align: right;
}
.cli-aside span {
    color: var(--gold);
    opacity: 0.5;
}

/* ============================================
   FAQ
   ============================================ */
.faq-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 5%,
        var(--border-vis) 30%,
        var(--border-vis) 70%,
        transparent 95%
    );
}

.faq-header {
    margin-bottom: 48px;
}
.faq-header .tag {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--t3);
    margin-bottom: 16px;
}
.faq-header .tag span {
    color: var(--gold);
}
.faq-title {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.15;
}

.faq-list {
    max-width: 720px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
    border-top: 1px solid var(--border);
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--t1);
    cursor: pointer;
    list-style: none;
    transition: color 0.15s;
    user-select: none;
}
.faq-q::-webkit-details-marker {
    display: none;
}
.faq-q::marker {
    content: "";
}

.faq-q::after {
    content: "+";
    font-family: var(--mono);
    font-size: 18px;
    font-weight: 400;
    color: var(--t3);
    flex-shrink: 0;
    margin-left: 24px;
    transition:
        transform 0.25s ease,
        color 0.25s ease;
}
.faq-item[open] .faq-q::after {
    content: "\2212";
    color: var(--gold);
}

.faq-q:hover {
    color: var(--gold);
}

.faq-a {
    padding: 0 0 20px;
    font-size: 14px;
    line-height: 1.75;
    color: var(--t2);
    max-width: 620px;
}
.faq-a code {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--gold);
    background: var(--gold-dim);
    padding: 2px 6px;
    border-radius: 4px;
}
.faq-a strong {
    color: var(--t1);
    font-weight: 600;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 28px;
    }
    .faq-q {
        font-size: 14px;
        padding: 16px 0;
    }
    .faq-a {
        font-size: 13px;
    }
}

/* ============================================
   CTA — confident close
   ============================================ */
.cta {
    padding: 160px 0 120px;
    text-align: center;
    position: relative;
}
.cta::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    width: 700px;
    height: 500px;
    background: radial-gradient(
        ellipse,
        var(--gold-dim) 0%,
        transparent 65%
    );
    pointer-events: none;
}
.cta-h {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.15;
    position: relative;
    margin-bottom: 16px;
}
.cta-p {
    font-size: 15px;
    color: var(--t2);
    margin-bottom: 36px;
    position: relative;
}
.cta .btn {
    position: relative;
    padding: 12px 28px;
    font-size: 14px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    border-top: 1px solid var(--border);
    padding: 28px 0;
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 28px;
}
.footer-l {
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-mark {
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 500;
    color: var(--gold);
}
.footer-copy {
    font-size: 12px;
    color: var(--t3);
}
.footer-links {
    display: flex;
    gap: 20px;
}
.footer-links a {
    font-size: 12px;
    color: var(--t3);
    transition: color 0.15s;
}
.footer-links a:hover {
    color: var(--t2);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes blink {
    0%,
    50% {
        opacity: 1;
    }
    51%,
    100% {
        opacity: 0;
    }
}

/* Scroll reveal */
.rv {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.rv.vis {
    opacity: 1;
    transform: translateY(0);
}
.rv-d1 {
    transition-delay: 0.06s;
}
.rv-d2 {
    transition-delay: 0.12s;
}
.rv-d3 {
    transition-delay: 0.18s;
}
.rv-d4 {
    transition-delay: 0.24s;
}
.rv-d5 {
    transition-delay: 0.3s;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 56px;
    }
    .hero-text {
        max-width: 560px;
    }
    .hero-h1 {
        font-size: 44px;
    }
    .hero-viz {
        max-width: 560px;
    }

    .sec-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .flow-pipeline {
        grid-template-columns: 1fr;
    }
    .flow-step {
        border-radius: 0 !important;
    }
    .flow-step:first-child {
        border-radius: 14px 14px 0 0 !important;
    }
    .flow-step:last-child {
        border-radius: 0 0 14px 14px !important;
    }
    .flow-arrow {
        width: auto;
        height: 36px;
        border-top: none;
        border-bottom: none;
        border-left: 1px solid var(--border-vis);
        border-right: 1px solid var(--border-vis);
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    .hero-h1 {
        font-size: 34px;
    }
    .hero-p {
        font-size: 15px;
    }
    .hero-ctas {
        flex-direction: column;
        align-items: flex-start;
    }

    .section {
        padding: 80px 0;
    }

    .flow-title,
    .feat-title,
    .cli-title {
        font-size: 28px;
    }
    .sec-title {
        font-size: 26px;
    }
    .cta-h {
        font-size: 30px;
    }

    .feat-body {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .feat-badge {
        justify-self: start;
    }

    .enc-viz {
        grid-template-columns: 1fr;
    }
    .enc-panel-plain {
        border-radius: 14px 14px 0 0;
        border-right: 1px solid var(--border-vis);
        border-bottom: none;
    }
    .enc-panel-cipher {
        border-radius: 0 0 14px 14px;
        border-left: 1px solid var(--border-vis);
        border-top: none;
    }
    .enc-lock {
        border-top: none;
        border-bottom: none;
        border-left: 1px solid var(--border-vis);
        border-right: 1px solid var(--border-vis);
        height: 40px;
        width: auto;
    }

    .cli-term-body {
        font-size: 11.5px;
        padding: 16px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .nav-link.hm {
        display: none;
    }
}
