:root {
    --bg-color: #060b09;
    --text-color: #e9fef4;
    --primary-color: #00ff88;
    --secondary-color: #1cf39d;
    --muted: #94b8a7;
    --card-bg: #0f1a16;
    --card-border: #20362d;
    --font-main: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: radial-gradient(circle at top, #0d2418 0%, #050805 45%, #040705 100%);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

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

ul {
    list-style: none;
}

.container {
    width: min(1220px, 100% - 3rem);
    margin: 0 auto;
}

.cursor-glow {
    width: 260px;
    height: 260px;
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    z-index: 2;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.2), rgba(0, 255, 136, 0));
    transform: translate(-50%, -50%);
    transition: transform 0.08s linear;
}

.page-noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.03;
    z-index: 1;
    background-image: radial-gradient(#ffffff 0.4px, transparent 0.4px);
    background-size: 4px 4px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 30;
    background: rgba(8, 12, 10, 0.65);
    border-bottom: 1px solid rgba(73, 114, 94, 0.4);
    backdrop-filter: blur(14px);
}

.header .container {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--primary-color);
    font-weight: 800;
    letter-spacing: 0.2px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 1.1rem;
}

.nav a {
    color: #c8e7d8;
    font-weight: 500;
    font-size: 0.93rem;
    padding: 0.4rem 0.55rem;
    border-radius: 8px;
    transition: color 0.25s ease, background-color 0.25s ease;
}

.nav a:hover {
    color: var(--primary-color);
    background: rgba(0, 255, 136, 0.1);
}

.btn {
    border: 1px solid transparent;
    padding: 0.78rem 1.35rem;
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: 0.2px;
    transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(120deg, var(--primary-color), #00d176);
    color: #042010;
    box-shadow: 0 8px 28px rgba(0, 255, 136, 0.35);
}

.btn-secondary {
    border-color: rgba(0, 255, 136, 0.6);
    color: var(--primary-color);
    background: rgba(0, 255, 136, 0.08);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-large {
    font-size: 1.05rem;
    padding: 0.95rem 2rem;
}

section {
    position: relative;
    z-index: 3;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8.2rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(10, 40, 25, 0.65) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 40, 25, 0.65) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.26;
    animation: drift-grid 18s linear infinite;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(55px);
}

.hero-orb-one {
    width: 330px;
    height: 330px;
    background: rgba(0, 255, 136, 0.18);
    top: 10%;
    right: -5%;
    animation: orb-float 8s ease-in-out infinite;
}

.hero-orb-two {
    width: 240px;
    height: 240px;
    background: rgba(48, 255, 197, 0.18);
    left: -5%;
    bottom: 10%;
    animation: orb-float 10s ease-in-out infinite reverse;
}

.hero-content {
    display: grid;
    gap: 3.4rem;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.eyebrow {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    color: #8adab3;
    margin-bottom: 0.9rem;
}

.hero-text h1 {
    font-family: var(--font-mono);
    font-size: clamp(2.5rem, 6vw, 4.6rem);
    line-height: 1.07;
    margin-bottom: 1.1rem;
}

.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    color: #d4ffec;
    opacity: 0.85;
}

.glitch::before {
    transform: translate(1px, 0);
    text-shadow: -2px 0 #16ffc4;
    clip-path: polygon(0 12%, 100% 12%, 100% 36%, 0 36%);
    animation: glitch-top 2.2s infinite linear alternate-reverse;
}

.glitch::after {
    transform: translate(-1px, 0);
    text-shadow: 2px 0 #00bfff;
    clip-path: polygon(0 68%, 100% 68%, 100% 95%, 0 95%);
    animation: glitch-bottom 2.8s infinite linear alternate-reverse;
}

.hero-subtitle {
    max-width: 620px;
    color: var(--muted);
    font-size: 1.15rem;
}

.hero-tags {
    margin-top: 1.3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.pill {
    font-family: var(--font-mono);
    font-size: 0.76rem;
    color: #9ff5cb;
    border: 1px solid rgba(80, 174, 127, 0.55);
    border-radius: 999px;
    padding: 0.4rem 0.72rem;
    background: rgba(12, 39, 25, 0.6);
    animation: pulse-pill 3.6s ease-in-out infinite;
}

.hero-actions {
    margin-top: 1.7rem;
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    display: grid;
    gap: 1rem;
    justify-items: center;
}

.encryption-visualizer {
    width: min(440px, 86vw);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    border: 1px solid rgba(0, 255, 136, 0.45);
    background: radial-gradient(circle, rgba(30, 83, 58, 0.4), rgba(10, 18, 14, 0.8));
    display: grid;
    place-items: center;
    position: relative;
    transform-style: preserve-3d;
    box-shadow: 0 0 70px rgba(0, 255, 136, 0.2);
}

.ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(74, 255, 170, 0.55);
}

.ring-one {
    width: 76%;
    height: 76%;
    animation: spin 14s linear infinite;
}

.ring-two {
    width: 92%;
    height: 92%;
    animation: spin-rev 10s linear infinite;
}

.ring-three {
    width: 58%;
    height: 58%;
    animation: spin 8s linear infinite;
}

.lock-icon {
    z-index: 3;
    animation: float 3.5s ease-in-out infinite;
}

.code-stream {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.code-drop {
    position: absolute;
    color: rgba(124, 255, 197, 0.8);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    animation: drop 2.5s linear forwards;
}

.status-card {
    width: min(320px, 84%);
    border: 1px solid var(--card-border);
    background: rgba(11, 22, 17, 0.78);
    border-radius: 16px;
    padding: 0.95rem 1rem;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.45);
}

.status-line {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 0.86rem;
    color: #a8c8b8;
    padding: 0.35rem 0;
}

.status-line strong {
    color: #83ffc5;
}

.stats {
    padding: 1.5rem 0 0.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.stat-card {
    padding: 1.2rem 1.1rem;
    border: 1px solid var(--card-border);
    border-radius: 14px;
    background: rgba(8, 18, 13, 0.7);
}

.stat-card h3 {
    font-size: 1.9rem;
    color: #98ffd0;
    margin-bottom: 0.4rem;
}

.stat-card p {
    color: #9ec3b2;
    font-size: 0.92rem;
}

.features,
.pipeline,
.tech-specs,
.why,
.privacy-summary,
.cta-section {
    padding: 6.2rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 2.8rem;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.1;
    margin-bottom: 0.8rem;
    color: #b0ffd8;
}

.section-header p {
    color: var(--muted);
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.feature-card {
    border: 1px solid var(--card-border);
    background: rgba(11, 22, 17, 0.8);
    border-radius: 16px;
    padding: 1.4rem;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 255, 136, 0.6);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.12);
}

.feature-card .icon {
    font-size: 1.8rem;
    margin-bottom: 0.7rem;
}

.feature-card h3 {
    margin-bottom: 0.45rem;
    font-size: 1.2rem;
}

.feature-card p {
    color: #9fc3b2;
}

.pipeline-track {
    position: relative;
    display: grid;
    gap: 1rem;
}

.pipeline-progress {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 2px;
    background: linear-gradient(180deg, rgba(0, 255, 136, 0.2), rgba(0, 255, 136, 0.8), rgba(0, 255, 136, 0.2));
    transform-origin: top;
    transform: scaleY(0.2);
}

.pipeline-step {
    margin-left: 2.5rem;
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 1rem 1rem 1rem 1.2rem;
    background: rgba(9, 17, 14, 0.74);
    position: relative;
}

.pipeline-step::before {
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary-color);
    box-shadow: 0 0 16px rgba(0, 255, 136, 0.8);
    position: absolute;
    left: -2.95rem;
    top: 1.35rem;
}

.pipeline-step span {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: #86fbc4;
    margin-bottom: 0.3rem;
}

.pipeline-step h3 {
    margin-bottom: 0.25rem;
}

.pipeline-step p {
    color: #99bead;
}

.deep-encryption {
    padding-top: 2.5rem;
}

.deep-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.deep-card {
    border: 1px solid var(--card-border);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(11, 26, 19, 0.78), rgba(8, 18, 13, 0.92));
    padding: 1.2rem;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.deep-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 255, 136, 0.65);
    box-shadow: 0 12px 28px rgba(0, 255, 136, 0.12);
}

.deep-card h3 {
    margin-bottom: 0.45rem;
    color: #9dffd2;
    font-size: 1.2rem;
}

.deep-card p {
    color: #9cc2af;
}

.chip-row {
    margin-top: 0.85rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.chip {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: #98ffd0;
    border: 1px solid rgba(0, 255, 136, 0.45);
    background: rgba(0, 255, 136, 0.08);
    border-radius: 999px;
    padding: 0.35rem 0.62rem;
}

.video-security {
    padding-top: 2.4rem;
}

.video-layout {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 1rem;
    align-items: stretch;
}

.video-explain {
    border: 1px solid var(--card-border);
    border-radius: 14px;
    background: rgba(10, 20, 15, 0.75);
    padding: 1rem;
    display: grid;
    gap: 0.7rem;
}

.video-step {
    border: 1px solid rgba(89, 136, 111, 0.4);
    border-radius: 12px;
    padding: 0.85rem;
    background: rgba(9, 21, 15, 0.8);
}

.video-step span {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: #7bf7c1;
}

.video-step h3 {
    margin: 0.25rem 0 0.25rem;
    color: #a4ffd5;
    font-size: 1.05rem;
}

.video-step p {
    color: #97bcaa;
    font-size: 0.95rem;
}

.video-visual {
    border: 1px solid var(--card-border);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(11, 28, 19, 0.9), rgba(8, 14, 11, 0.95));
    padding: 1rem;
    display: grid;
}

.video-canvas {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(89, 136, 111, 0.4);
    background: rgba(5, 13, 10, 0.88);
    padding: 0.9rem;
    display: grid;
    align-content: space-between;
    gap: 1rem;
}

.video-track {
    display: grid;
    gap: 0.45rem;
}

.chunk-item {
    border: 1px solid rgba(92, 155, 124, 0.45);
    background: linear-gradient(90deg, rgba(30, 97, 67, 0.25), rgba(16, 36, 27, 0.85));
    color: #b8e8d1;
    border-radius: 10px;
    padding: 0.48rem 0.62rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transform: translateX(0);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.chunk-item.active {
    border-color: rgba(0, 255, 136, 0.9);
    transform: translateX(6px);
}

.chunk-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(0, 255, 136, 0.3), transparent);
    transform: translateX(-120%);
}

.chunk-item.active::after {
    animation: chunk-scan 0.8s ease forwards;
}

.chunk-item span {
    font-family: var(--font-mono);
    font-size: 0.76rem;
}

.chunk-item em {
    font-style: normal;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: #7efdc8;
}

.video-shield {
    border: 1px solid rgba(0, 255, 136, 0.45);
    background: rgba(0, 255, 136, 0.08);
    color: #9effd3;
    border-radius: 10px;
    text-align: center;
    padding: 0.55rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.4px;
}

.tech-specs {
    background: linear-gradient(180deg, rgba(6, 12, 9, 0.3), rgba(6, 15, 11, 0.9));
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.tech-card {
    background: #101915;
    border-radius: 14px;
    border: 1px solid var(--card-border);
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 255, 136, 0.65);
}

.card-header {
    background: #18231d;
    padding: 0.65rem 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27c93f;
}

.tech-card h3 {
    margin: 0.95rem 1rem 0.2rem;
    color: #8efec8;
    font-family: var(--font-mono);
}

.code-block {
    padding: 0.5rem 1rem 1rem;
    font-family: var(--font-mono);
    font-size: 0.88rem;
}

.code-block p {
    color: #b8e8d1;
}

.keyword {
    color: #d498ff;
}

.type {
    color: #76ffd7;
}

.comment {
    color: #6acc8e;
}

.tech-details {
    margin-top: 0.8rem;
    display: grid;
    gap: 0.36rem;
}

.tech-details li {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    color: #a9cfbe;
}

.property {
    color: #b6ffd9;
}

.why-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.why-card {
    border-radius: 14px;
    border: 1px solid var(--card-border);
    background: rgba(11, 22, 17, 0.7);
    padding: 1.2rem;
    transition: transform 0.28s ease, border-color 0.28s ease;
}

.why-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 255, 136, 0.6);
}

.why-card h3 {
    margin-bottom: 0.45rem;
    color: #98ffd0;
}

.why-card p {
    color: #9ec1b1;
}

.privacy-content {
    text-align: center;
}

.privacy-content > p {
    color: #9ebdad;
}

.privacy-grid {
    margin: 2.3rem 0 1.6rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    text-align: left;
}

.privacy-column {
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 1.2rem;
}

.privacy-column h3 {
    margin-bottom: 0.6rem;
}

.privacy-column ul {
    display: grid;
    gap: 0.4rem;
}

.privacy-column.bad {
    background: rgba(42, 18, 18, 0.28);
}

.privacy-column.bad h3 {
    color: #ff8c8c;
}

.privacy-column.bad li {
    color: #f5b7b7;
}

.privacy-column.good {
    background: rgba(12, 36, 24, 0.46);
}

.privacy-column.good h3 {
    color: #98ffd0;
}

.privacy-column.good li {
    color: #b9f6d8;
}

.privacy-links {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.link {
    color: var(--primary-color);
    font-weight: 700;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.link:hover {
    border-color: var(--primary-color);
}

.cta-section {
    text-align: center;
    background: radial-gradient(circle at center, rgba(0, 255, 136, 0.1), rgba(0, 0, 0, 0));
}

.cta-section h2 {
    font-size: clamp(2rem, 5vw, 3.1rem);
    margin-bottom: 0.7rem;
}

.cta-section p {
    color: #9fc4b2;
    margin-bottom: 1.4rem;
}

.legal-page {
    padding-top: 7.6rem;
    padding-bottom: 2.5rem;
}

.legal-hero {
    padding: 2.1rem 0 1.1rem;
}

.legal-hero h1 {
    font-size: clamp(2rem, 5vw, 3.1rem);
    margin-bottom: 0.45rem;
    color: #9dffd2;
}

.legal-hero p {
    color: #92b9a6;
}

.legal-body {
    padding: 1.4rem 0 4rem;
}

.legal-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.legal-card {
    border: 1px solid var(--card-border);
    border-radius: 14px;
    background: rgba(11, 22, 17, 0.72);
    padding: 1.15rem;
    transition: transform 0.28s ease, border-color 0.28s ease;
}

.legal-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 255, 136, 0.6);
}

.legal-card h2 {
    margin-bottom: 0.45rem;
    font-size: 1.14rem;
    color: #a3ffd4;
}

.legal-card p,
.legal-card li {
    color: #9dc2b1;
}

.legal-card ul {
    list-style: disc;
    margin-left: 1.15rem;
    display: grid;
    gap: 0.28rem;
}

.legal-card a {
    color: #8dffd0;
}

.footer {
    border-top: 1px solid rgba(57, 88, 73, 0.6);
    background: #050906;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    gap: 1.2rem;
    grid-template-columns: 1.2fr 1fr 1fr;
}

.footer-logo h3 {
    color: #95ffd0;
}

.footer-logo p {
    color: #8db3a1;
    margin-top: 0.4rem;
    max-width: 320px;
}

.footer-links,
.footer-contact {
    display: grid;
    gap: 0.42rem;
    align-content: start;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 0.35rem;
}

.footer-links a,
.footer-contact a {
    color: #a9cbb9;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #95ffd0;
}

.footer-bottom {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(56, 87, 72, 0.6);
    text-align: center;
    color: #6f8b7d;
    font-size: 0.92rem;
}

[data-aos] {
    opacity: 0;
    transform: translateY(22px) scale(0.98);
    transition: opacity 0.85s ease, transform 0.85s ease;
}

[data-aos="fade-left"] {
    transform: translateX(28px);
}

[data-aos="fade-right"] {
    transform: translateX(-28px);
}

[data-aos="zoom-in"] {
    transform: scale(0.88);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

@keyframes glitch-top {
    0% { transform: translate(1px, 0); }
    50% { transform: translate(-1px, -1px); }
    100% { transform: translate(1px, 1px); }
}

@keyframes glitch-bottom {
    0% { transform: translate(-1px, 0); }
    50% { transform: translate(1px, 1px); }
    100% { transform: translate(-1px, -1px); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes spin-rev {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

@keyframes drop {
    0% { transform: translateY(-24px); opacity: 0; }
    40% { opacity: 1; }
    100% { transform: translateY(220px); opacity: 0; }
}

@keyframes chunk-scan {
    0% { transform: translateX(-120%); }
    100% { transform: translateX(120%); }
}

@keyframes pulse-pill {
    0% { box-shadow: 0 0 0 rgba(0, 255, 136, 0); }
    50% { box-shadow: 0 0 12px rgba(0, 255, 136, 0.25); }
    100% { box-shadow: 0 0 0 rgba(0, 255, 136, 0); }
}

@keyframes drift-grid {
    from { transform: translateY(0); }
    to { transform: translateY(40px); }
}

@keyframes orb-float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-22px); }
    100% { transform: translateY(0); }
}

@media (max-width: 1100px) {
    .nav {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

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

    .hero-tags,
    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 900px) {
    .feature-grid,
    .deep-grid,
    .video-layout,
    .tech-grid,
    .privacy-grid,
    .stats-grid,
    .why-grid,
    .legal-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .pipeline-step {
        margin-left: 2rem;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(1220px, 100% - 1.4rem);
    }

    .header .container {
        min-height: 72px;
    }

    .btn {
        width: 100%;
    }

    .hero-actions {
        width: 100%;
    }

    .cursor-glow {
        display: none;
    }
}
