/* =========================================================
LOCKBYTES HOMEPAGE
Main stylesheet
========================================================= */

/* =========================================================
ROOT
========================================================= */

:root {

--bg: #070b12;
--bg-soft: #0b111b;
--bg-card: #101823;
--bg-card-hover: #141f2d;
--bg-elevated: #0e1621;
--bg-strong: #05080d;

--text: #f4f7fb;
--text-soft: #aab5c5;
--text-muted: #718096;

--accent: #58d6ff;
--accent-strong: #28b9ec;
--accent-soft: rgba(88, 214, 255, 0.12);
--accent-contrast: #041018;

--border: rgba(255, 255, 255, 0.08);
--nav-bg: rgba(7, 11, 18, 0.82);
--panel-bg: rgba(255, 255, 255, 0.02);

--max-width: 1180px;
--radius: 18px;
--shadow: 0 20px 60px rgba(0, 0, 0, 0.35);

}

[data-theme="light"] {

--bg: #f5f8fc;
--bg-soft: #edf3fa;
--bg-card: #ffffff;
--bg-card-hover: #f1f7ff;
--bg-elevated: #eef4fb;
--bg-strong: #e7edf6;

--text: #132231;
--text-soft: #405367;
--text-muted: #60728a;

--accent: #0d8ed8;
--accent-strong: #0b79b8;
--accent-soft: rgba(13, 142, 216, 0.12);
--accent-contrast: #f7fcff;

--border: rgba(17, 32, 44, 0.10);
--nav-bg: rgba(245, 248, 252, 0.82);
--panel-bg: rgba(17, 32, 44, 0.02);

--shadow: 0 18px 45px rgba(17, 32, 44, 0.08);

}

/* =========================================================
RESET
========================================================= */

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

html {
scroll-behavior: smooth;
}

body {


font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

background: var(--bg);
color: var(--text);

line-height: 1.7;

overflow-x: hidden;

transition:
    background 0.25s ease,
    color 0.25s ease;


}

img {
max-width: 100%;
display: block;
}

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

button,
a {
-webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

/* =========================================================
GLOBAL
========================================================= */

.container {


width: min(
    calc(100% - 40px),
    var(--max-width)
);

margin-inline: auto;


}

.narrow {


max-width: 820px;

margin-inline: auto;


}

.section {


padding: 110px 0;


}

.section-dark {


background:
    linear-gradient(
        180deg,
        var(--bg-soft) 0%,
        var(--bg) 100%
    );

border-top: 1px solid var(--border);
border-bottom: 1px solid var(--border);


}

.section-label {


display: inline-flex;

margin-bottom: 18px;

color: var(--accent);

font-size: 0.76rem;

font-weight: 800;

letter-spacing: 0.16em;

text-transform: uppercase;


}

.section-heading {


max-width: 700px;

margin-bottom: 55px;


}

.section-heading.centered {


margin-inline: auto;

text-align: center;


}

.section-heading h2,
.intro-section h2,
.recovery-section h2,
.security-grid h2,
.privacy-box h2,
.download-box h2 {


font-size:
    clamp(
        2rem,
        4vw,
        3.25rem
    );

line-height: 1.1;

letter-spacing: -0.035em;

margin-bottom: 22px;


}

.section-heading p {


color: var(--text-soft);

font-size: 1.08rem;


}

/* =========================================================
NAVBAR
========================================================= */

.navbar {


position: sticky;

top: 0;

z-index: 1000;

background:
    var(--nav-bg);

border-bottom:
    1px solid var(--border);

backdrop-filter:
    blur(18px);

-webkit-backdrop-filter:
    blur(18px);


}

.nav-container {


min-height: 74px;

display: flex;

align-items: center;

justify-content: space-between;

gap: 28px;


}

.brand {


display: inline-flex;

align-items: center;

gap: 11px;

font-size: 1.15rem;

font-weight: 800;

letter-spacing: -0.02em;


}

.brand-logo {


width: 34px;
height: 34px;

object-fit: contain;


}

.nav-links {


display: flex;

align-items: center;

gap: 25px;

margin-left: auto;


}

.nav-links a {


color: var(--text-soft);

font-size: 0.88rem;

transition:
    color 0.2s ease;


}

.nav-links a:hover {


color: var(--text);


}

.nav-button {


padding: 10px 17px;

border:
    1px solid
    rgba(88, 214, 255, 0.35);

border-radius: 10px;

background:
    rgba(88, 214, 255, 0.08);

color: var(--accent);

font-size: 0.86rem;

font-weight: 700;

transition:
    background 0.2s ease,
    transform 0.2s ease;


}

.nav-button:hover {


background:
    rgba(88, 214, 255, 0.15);

transform:
    translateY(-1px);


}

.theme-toggle {

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 12px;
    margin-left: 8px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--panel-bg);
    color: var(--text-soft);
    font: inherit;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.theme-toggle:hover {
    border-color: rgba(88, 214, 255, 0.2);
    transform: translateY(-1px);
}

.theme-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.theme-label {
    white-space: nowrap;
}

.download-page-hero {
    padding-top: 90px;
    padding-bottom: 45px;
}

.download-page-shell {
    display: grid;
    gap: 32px;
}

.download-page-intro {
    text-align: center;
}

.download-page-intro h1 {
    font-size: clamp(2.8rem, 7vw, 5rem);
    line-height: 0.98;
    letter-spacing: -0.065em;
    margin-bottom: 18px;
}

.download-page-intro p {
    color: var(--text-soft);
    font-size: 1.18rem;
}

.download-page-card {
    display: grid;
    gap: 26px;
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(88, 214, 255, 0.04), var(--panel-bg));
    box-shadow: var(--shadow);
}

.download-branding {
    display: flex;
    align-items: center;
    gap: 16px;
}

.download-logo-wrap {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(88, 214, 255, 0.08);
    border: 1px solid rgba(88, 214, 255, 0.22);
}

.download-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.download-product-label {
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.04em;
}

.download-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.release-stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 96px;
    padding: 18px 18px 16px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--panel-bg);
}

.release-stat span {
    color: var(--text-muted);
    font-size: 0.74rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.release-stat strong {
    color: var(--text);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.4;
}

.button-download {
    justify-self: start;
    min-width: min(100%, 300px);
}

.download-note {
    color: var(--text-muted);
    font-size: 0.8rem;
    text-align: center;
}

.info-panel {
    display: grid;
    gap: 14px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--panel-bg);
}

.feature-list {
    list-style: none;
    display: grid;
    gap: 12px;
    color: var(--text-soft);
    font-size: 1rem;
}

.feature-list li {
    position: relative;
    padding-left: 26px;
}

.feature-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 1.4rem;
    line-height: 1;
}

.detail-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.detail-row:last-child {
    border-bottom: 0;
}

.detail-row span {
    color: var(--text-muted);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.detail-row strong {
    color: var(--text);
    font-size: 0.95rem;
    text-align: right;
    max-width: 62%;
}

.trust-panel p {
    color: var(--text-soft);
    margin-bottom: 0;
}

.checksum-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 18px;
    border: 1px dashed rgba(88, 214, 255, 0.35);
    border-radius: 12px;
    background: rgba(88, 214, 255, 0.03);
}

.checksum-box span {
    color: var(--text-muted);
    letter-spacing: 0.09em;
    font-size: 0.72rem;
    text-transform: uppercase;
}

.checksum-box strong {
    color: var(--text);
    font-size: 0.8rem;
    word-break: break-word;
    text-align: right;
}

.trust-note {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.7;
}

.steps-list {
    display: grid;
    gap: 18px;
    max-width: 760px;
    margin: 0 auto;
    padding: 32px 28px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--panel-bg);
    color: var(--text-soft);
}

.steps-list li {
    display: list-item;
    list-style-position: inside;
    padding-left: 6px;
}

.version-list {
    gap: 0;
}

.version-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}

.version-item:last-child {
    border-bottom: 0;
}

.version-item strong,
.version-item span {
    display: block;
}

.version-item strong {
    font-size: 1rem;
}

.version-item span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

@media (max-width: 1000px) {
    .download-meta-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 650px) {
    .download-page-hero {
        padding-top: 70px;
    }

    .download-page-card {
        padding: 22px 18px;
    }

    .download-branding {
        align-items: flex-start;
    }

    .download-meta-grid {
        grid-template-columns: 1fr;
    }

    .release-stat {
        min-height: 76px;
    }

    .button-download {
        width: 100%;
        justify-self: stretch;
    }

    .detail-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .detail-row strong {
        max-width: 100%;
        text-align: left;
    }

    .version-item {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =========================================================
BUTTONS
========================================================= */

.button {


display: inline-flex;

align-items: center;

justify-content: center;

gap: 10px;

min-height: 50px;

padding:
    0 22px;

border-radius: 11px;

font-weight: 750;

font-size: 0.94rem;

transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;


}

.button:hover {


transform:
    translateY(-2px);


}

.button-primary {


background: var(--accent);

color: #041018;

box-shadow:
    0 10px 35px
    rgba(88, 214, 255, 0.18);


}

.button-primary:hover {


background: var(--accent-strong);


}

.button-secondary {


border:
    1px solid var(--border);

background:
    rgba(255, 255, 255, 0.025);

color: var(--text);


}

.button-secondary:hover {


border-color:
    rgba(255, 255, 255, 0.16);

background:
    rgba(255, 255, 255, 0.05);


}

.large-button {


min-height: 56px;

padding-inline: 27px;


}

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

.hero {


position: relative;

min-height: 720px;

display: flex;

align-items: center;

overflow: hidden;

border-bottom:
    1px solid var(--border);

background:

    radial-gradient(
        circle at 80% 25%,
        rgba(88, 214, 255, 0.10),
        transparent 28%
    ),

    radial-gradient(
        circle at 20% 70%,
        rgba(88, 214, 255, 0.055),
        transparent 30%
    ),

    var(--bg);


}

.hero-glow {


position: absolute;

width: 500px;
height: 500px;

right: -180px;
top: -180px;

border-radius: 50%;

background:
    rgba(88, 214, 255, 0.05);

filter:
    blur(50px);

pointer-events: none;


}

.hero-grid {


position: relative;

display: grid;

grid-template-columns:
    1.05fr 0.95fr;

gap: 80px;

align-items: center;

padding:
    90px 0;


}

.eyebrow {


display: inline-flex;

align-items: center;

gap: 9px;

padding:
    8px 12px;

margin-bottom: 24px;

border:
    1px solid
    rgba(88, 214, 255, 0.18);

border-radius: 999px;

background:
    rgba(88, 214, 255, 0.06);

color:
    #b8eafa;

font-size: 0.78rem;

font-weight: 700;


}

.status-dot {


width: 7px;
height: 7px;

border-radius: 50%;

background: var(--accent);

box-shadow:
    0 0 12px
    rgba(88, 214, 255, 0.8);


}

.hero h1 {


max-width: 780px;

font-size:
    clamp(
        3.3rem,
        7vw,
        6rem
    );

line-height: 0.98;

letter-spacing: -0.065em;

margin-bottom: 30px;


}

.hero h1 span {


display: block;

color: var(--accent);


}

.hero-description {


max-width: 650px;

color: var(--text-soft);

font-size:
    clamp(
        1.05rem,
        2vw,
        1.25rem
    );

line-height: 1.75;

margin-bottom: 16px;


}

.hero-description.secondary {


color: var(--text-muted);

font-size: 1rem;


}

.hero-actions {


display: flex;

flex-wrap: wrap;

gap: 13px;

margin-top: 32px;


}

.hero-note {


margin-top: 20px;

color: var(--text-muted);

font-size: 0.82rem;


}

.hero-note span {


color: var(--accent);

margin-right: 7px;


}

/* =========================================================
HERO SECURITY CARD
========================================================= */

.hero-card {


position: relative;

padding: 1px;

border-radius: 22px;

background:
    linear-gradient(
        135deg,
        rgba(88, 214, 255, 0.35),
        rgba(255, 255, 255, 0.04)
    );

box-shadow: var(--shadow);


}

.hero-card::before {


content: "";

position: absolute;

inset: 15%;

border-radius: 50%;

background:
    rgba(88, 214, 255, 0.08);

filter:
    blur(50px);


}

.hero-card > * {


position: relative;


}

.terminal-top {


height: 55px;

display: flex;

align-items: center;

justify-content: space-between;

padding:
    0 20px;

border-bottom:
    1px solid var(--border);

background:
    var(--bg-elevated);

border-radius:
    21px 21px 0 0;


}

.terminal-dots {


display: flex;

gap: 7px;


}

.terminal-dots span {


width: 7px;
height: 7px;

border-radius: 50%;

background:
    rgba(255, 255, 255, 0.25);


}

.terminal-title {


color: var(--text-muted);

font-size: 0.68rem;

font-weight: 800;

letter-spacing: 0.2em;


}

.vault-visual {


min-height: 285px;

display: flex;

flex-direction: column;

align-items: center;

justify-content: center;

background:
    var(--bg);


}

.vault-ring {


width: 145px;
height: 145px;

display: grid;

place-items: center;

border-radius: 50%;

border:
    1px solid
    rgba(88, 214, 255, 0.32);

box-shadow:
    0 0 0 18px
        rgba(88, 214, 255, 0.025),

    0 0 0 35px
        rgba(88, 214, 255, 0.015),

    0 0 60px
        rgba(88, 214, 255, 0.12);


}

.vault-lock {


position: relative;

width: 55px;
height: 55px;


}

.lock-shackle {


position: absolute;

width: 30px;
height: 27px;

top: 0;
left: 12px;

border:
    5px solid var(--accent);

border-bottom: 0;

border-radius:
    18px 18px 0 0;


}

.lock-body {


position: absolute;

width: 42px;
height: 34px;

left: 6px;
bottom: 0;

border-radius: 7px;

background:
    var(--accent);

box-shadow:
    0 0 20px
    rgba(88, 214, 255, 0.25);


}

.lock-body::after {


content: "";

position: absolute;

width: 6px;
height: 13px;

left: 18px;
top: 9px;

border-radius: 4px;

background:
    #071019;


}

.vault-label {


display: flex;

flex-direction: column;

align-items: center;

gap: 4px;

margin-top: 28px;


}

.vault-label strong {


font-size: 0.85rem;

letter-spacing: 0.13em;


}

.vault-label span {


color: var(--accent);

font-size: 0.72rem;

letter-spacing: 0.12em;

font-weight: 700;


}

.security-lines {


padding:
    20px;

background:
    var(--bg-elevated);

border-radius:
    0 0 21px 21px;


}

.security-line {


display: flex;

align-items: center;

justify-content: space-between;

padding:
    10px 0;

border-bottom:
    1px solid var(--border);


}

.security-line:last-child {


border-bottom: 0;


}

.security-line span {


color: var(--text-muted);

font-size: 0.72rem;

letter-spacing: 0.08em;


}

.security-line strong {


color: var(--text-soft);

font-size: 0.72rem;

letter-spacing: 0.06em;


}

/* =========================================================
TRUST STRIP
========================================================= */

.trust-strip {


border-bottom:
    1px solid var(--border);

background:
    var(--bg-strong);


}

.trust-grid {


display: grid;

grid-template-columns:
    repeat(4, 1fr);

padding:
    24px 0;


}

.trust-grid > div {


padding:
    10px 25px;

border-right:
    1px solid var(--border);


}

.trust-grid > div:first-child {


padding-left: 0;


}

.trust-grid > div:last-child {


border-right: 0;

padding-right: 0;


}

.trust-grid strong {


display: block;

color: var(--text);

font-size: 0.74rem;

letter-spacing: 0.08em;


}

.trust-grid span {


color: var(--text-muted);

font-size: 0.75rem;


}

/* =========================================================
INTRO
========================================================= */

.intro-section p {


color: var(--text-soft);

margin-bottom: 18px;

font-size: 1rem;


}

.intro-section .large-text {


color: var(--text);

font-size: 1.35rem;

line-height: 1.55;

margin-bottom: 28px;


}

/* =========================================================
FEATURES
========================================================= */

.feature-grid {


display: grid;

grid-template-columns:
    repeat(3, 1fr);

gap: 18px;


}

.feature-card {


padding: 30px;

border:
    1px solid var(--border);

border-radius: var(--radius);

background:
    rgba(255, 255, 255, 0.02);

transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;


}

.feature-card:hover {


transform:
    translateY(-5px);

border-color:
    rgba(88, 214, 255, 0.22);

background:
    rgba(88, 214, 255, 0.035);


}

.feature-icon {


width: 40px;
height: 40px;

display: grid;

place-items: center;

margin-bottom: 24px;

border-radius: 9px;

background:
    var(--accent-soft);

color: var(--accent);

font-size: 0.68rem;

font-weight: 800;

letter-spacing: 0.08em;


}

.feature-card h3 {


margin-bottom: 11px;

font-size: 1.08rem;


}

.feature-card p {


color: var(--text-muted);

font-size: 0.9rem;

line-height: 1.7;


}

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

.steps {


max-width: 850px;

margin-inline: auto;

border-top:
    1px solid var(--border);


}

.step {


display: grid;

grid-template-columns:
    90px 1fr;

gap: 28px;

padding:
    30px 0;

border-bottom:
    1px solid var(--border);


}

.step-number {


color: var(--accent);

font-size: 0.82rem;

font-weight: 800;

letter-spacing: 0.1em;


}

.step h3 {


margin-bottom: 7px;

font-size: 1.18rem;


}

.step p {


color: var(--text-muted);

max-width: 650px;

font-size: 0.93rem;


}

/* =========================================================
RECOVERY
========================================================= */

.recovery-section {


background:
    linear-gradient(
        135deg,
        rgba(88, 214, 255, 0.035),
        transparent 50%
    );


}

.recovery-grid {


display: grid;

grid-template-columns:
    1fr 0.8fr;

gap: 80px;

align-items: center;


}

.recovery-section p {


max-width: 650px;

color: var(--text-soft);

margin-bottom: 17px;


}

.check-list {


list-style: none;

display: grid;

gap: 11px;

margin:
    27px 0;


}

.check-list li {


display: flex;

align-items: flex-start;

gap: 10px;

color: var(--text-soft);

font-size: 0.91rem;


}

.check-list span {


color: var(--accent);

font-weight: 900;


}

.text-link {


color: var(--accent);

font-size: 0.88rem;

font-weight: 750;


}

.text-link:hover {


text-decoration: underline;


}

.recovery-card {


padding: 25px;

border:
    1px solid
    rgba(88, 214, 255, 0.16);

border-radius: 18px;

background:
    #0c151f;

box-shadow: var(--shadow);


}

.recovery-card-header {


display: flex;

align-items: center;

gap: 13px;

padding-bottom: 22px;

border-bottom:
    1px solid var(--border);


}

.drive-symbol {


width: 38px;
height: 38px;

display: grid;

place-items: center;

border-radius: 10px;

background:
    rgba(88, 214, 255, 0.1);

color: var(--accent);

font-weight: 900;


}

.recovery-card-header strong,
.recovery-card-header span {


display: block;


}

.recovery-card-header strong {


font-size: 0.9rem;


}

.recovery-card-header span {


color: var(--text-muted);

font-size: 0.72rem;


}

.recovery-folder {


display: flex;

align-items: center;

gap: 15px;

margin:
    22px 0;

padding: 17px;

border:
    1px solid var(--border);

border-radius: 12px;

background:
    rgba(255, 255, 255, 0.02);


}

.folder-icon {


color: var(--accent);

font-size: 1.5rem;


}

.recovery-folder strong,
.recovery-folder span {


display: block;


}

.recovery-folder strong {


font-size: 0.82rem;


}

.recovery-folder span {


color: var(--text-muted);

font-size: 0.72rem;


}

.recovery-info {


display: grid;

gap: 0;


}

.recovery-info div {


display: flex;

justify-content: space-between;

padding:
    13px 0;

border-bottom:
    1px solid var(--border);


}

.recovery-info div:last-child {


border-bottom: 0;


}

.recovery-info span {


color: var(--text-muted);

font-size: 0.75rem;


}

.recovery-info strong {


color: var(--text-soft);

font-size: 0.75rem;

text-align: right;


}

/* =========================================================
SECURITY
========================================================= */

.security-grid {


display: grid;

grid-template-columns:
    1fr 0.85fr;

gap: 90px;

align-items: center;


}

.security-grid p {


max-width: 650px;

color: var(--text-soft);

margin-bottom: 18px;


}

.security-panel {


border:
    1px solid var(--border);

border-radius: 16px;

overflow: hidden;

background:
    rgba(255, 255, 255, 0.02);


}

.security-panel-row {


display: flex;

align-items: center;

justify-content: space-between;

padding:
    17px 20px;

border-bottom:
    1px solid var(--border);


}

.security-panel-row:last-child {


border-bottom: 0;


}

.security-panel-row span {


color: var(--text-muted);

font-size: 0.8rem;


}

.security-panel-row strong {


color: var(--text-soft);

font-size: 0.78rem;

text-align: right;


}

/* =========================================================
PRIVACY
========================================================= */

.privacy-box {


display: grid;

grid-template-columns:
    70px 1fr;

gap: 25px;

padding: 45px;

border:
    1px solid
    rgba(88, 214, 255, 0.15);

border-radius: 20px;

background:
    linear-gradient(
        135deg,
        rgba(88, 214, 255, 0.06),
        rgba(255, 255, 255, 0.015)
    );


}

.privacy-icon {


width: 52px;
height: 52px;

display: grid;

place-items: center;

border-radius: 50%;

background:
    var(--accent-soft);

color: var(--accent);

font-weight: 900;

font-size: 1.2rem;


}

.privacy-box p {


max-width: 780px;

color: var(--text-soft);

margin-bottom: 14px;


}

.privacy-links {


display: flex;

flex-wrap: wrap;

gap: 20px;

margin-top: 25px;


}

.privacy-links a {


color: var(--accent);

font-size: 0.87rem;

font-weight: 750;


}

/* =========================================================
REQUIREMENTS
========================================================= */

.requirements-grid {


display: grid;

grid-template-columns:
    repeat(4, 1fr);

border:
    1px solid var(--border);

border-radius: 16px;

overflow: hidden;


}

.requirement {


min-height: 145px;

padding: 25px;

border-right:
    1px solid var(--border);


}

.requirement:last-child {


border-right: 0;


}

.requirement strong {


display: block;

margin-bottom: 10px;

font-size: 0.84rem;


}

.requirement span {


color: var(--text-muted);

font-size: 0.82rem;

line-height: 1.6;


}

/* =========================================================
DOWNLOAD
========================================================= */

.download-section {


padding:
    90px 0;

border-top:
    1px solid var(--border);

background:
    radial-gradient(
        circle at 50% 0%,
        rgba(88, 214, 255, 0.09),
        transparent 40%
    );


}

.download-box {


display: flex;

align-items: center;

justify-content: space-between;

gap: 40px;


}

.download-box p {


max-width: 650px;

color: var(--text-soft);


}

/* =========================================================
FOOTER
========================================================= */

.footer {


padding-top: 70px;

background:
    var(--bg-strong);

border-top:
    1px solid var(--border);


}

.footer-grid {


display: grid;

grid-template-columns:
    2fr 1fr 1fr 1fr;

gap: 50px;

padding-bottom: 55px;


}

.footer-brand {


max-width: 330px;


}

.footer-brand p {


margin-top: 17px;

color: var(--text-muted);

font-size: 0.82rem;

line-height: 1.7;


}

.footer-brand .developer {


color: var(--text-soft);

margin-top: 10px;


}

.footer-column {


display: flex;

flex-direction: column;

align-items: flex-start;

gap: 10px;


}

.footer-column h4 {


margin-bottom: 7px;

font-size: 0.82rem;


}

.footer-column a {


color: var(--text-muted);

font-size: 0.79rem;

transition:
    color 0.2s ease;


}

.footer-column a:hover {


color: var(--accent);


}

.footer-bottom {


min-height: 70px;

display: flex;

align-items: center;

justify-content: space-between;

gap: 20px;

border-top:
    1px solid var(--border);

color: #586474;

font-size: 0.72rem;


}

/* =========================================================
RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1000px) {


.nav-links {

    display: none;
}

.hero-grid {

    grid-template-columns: 1fr;

    gap: 55px;
}

.hero {

    min-height: auto;
}

.hero-card {

    max-width: 620px;

    width: 100%;

    margin-inline: auto;
}

.trust-grid {

    grid-template-columns:
        repeat(2, 1fr);
}

.trust-grid > div:nth-child(2) {

    border-right: 0;
}

.feature-grid {

    grid-template-columns:
        repeat(2, 1fr);
}

.recovery-grid,
.security-grid {

    grid-template-columns: 1fr;

    gap: 50px;
}

.requirements-grid {

    grid-template-columns:
        repeat(2, 1fr);
}

.requirement:nth-child(2) {

    border-right: 0;
}

.requirement:nth-child(1),
.requirement:nth-child(2) {

    border-bottom:
        1px solid var(--border);
}

.footer-grid {

    grid-template-columns:
        1.5fr 1fr 1fr;
}

.footer-brand {

    grid-column: 1 / -1;
}


}

/* =========================================================
RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 650px) {


.container {

    width:
        min(
            calc(100% - 28px),
            var(--max-width)
        );
}

.section {

    padding:
        75px 0;
}

.navbar {

    position: relative;
}

.nav-container {

    min-height: 65px;
}

.nav-button {

    display: none;
}

.hero-grid {

    padding:
        70px 0;
}

.hero h1 {

    font-size:
        clamp(
            2.9rem,
            15vw,
            4.5rem
        );
}

.hero-description {

    font-size: 1rem;
}

.hero-actions {

    flex-direction: column;

    align-items: stretch;
}

.button {

    width: 100%;
}

.trust-grid {

    grid-template-columns: 1fr;
}

.trust-grid > div {

    padding:
        15px 0;

    border-right: 0;

    border-bottom:
        1px solid var(--border);
}

.trust-grid > div:last-child {

    border-bottom: 0;
}

.feature-grid {

    grid-template-columns: 1fr;
}

.step {

    grid-template-columns: 55px 1fr;

    gap: 12px;
}

.privacy-box {

    grid-template-columns: 1fr;

    padding: 30px;
}

.requirements-grid {

    grid-template-columns: 1fr;
}

.requirement {

    border-right: 0;

    border-bottom:
        1px solid var(--border);
}

.requirement:last-child {

    border-bottom: 0;
}

.download-box {

    flex-direction: column;

    align-items: flex-start;
}

.footer-grid {

    grid-template-columns:
        repeat(2, 1fr);

    gap: 35px;
}

.footer-brand {

    grid-column: 1 / -1;
}

.footer-bottom {

    flex-direction: column;

    align-items: flex-start;

    justify-content: center;

    padding:
        18px 0;
}


}
