/*
Velocity Work Page CSS
Arrangement:
1. Global theme, buttons, layout helpers
2. Header / navigation
3. Work hero
4. Filter buttons
5. Project grid
6. Proof / client section
7. Work CTA
8. Footer
9. Responsive rules
*/

:root {
    --black: #0b0b0c;
    --dark: #151517;
    --gray-900: #202024;
    --gray-700: #55565a;
    --gray-500: #85868a;
    --gray-300: #d9d9dc;
    --gray-200: #ececef;
    --gray-100: #f7f7f8;
    --white: #fff;
    --radius-lg: 20px;
    --shadow-card: 0 18px 45px rgba(0, 0, 0, .06);
    --container: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, Arial, sans-serif;
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.5;
}

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

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

.container {
    width: min(var(--container), calc(100% - 48px));
    margin-inline: auto;
}

.section {
    padding: 90px 0;
}

.eyebrow {
    display: block;
    color: var(--gray-700);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: .25s ease;
    cursor: pointer;
    white-space: nowrap;
}

.btn-dark {
    background: var(--black);
    color: var(--white);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
}

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

.btn-light {
    background: var(--white);
    color: var(--black);
    border-color: var(--gray-300);
}

.arrow {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    font-size: 15px;
}

.btn-dark .arrow {
    background: rgba(255, 255, 255, .12);
}

.btn-light .arrow {
    background: var(--gray-100);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .86);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.nav {
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 180px;
}

.logo img {
    width: 122px;
    height: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 38px;
    font-size: 14px;
    font-weight: 600;
}

.nav-links a {
    color: #171719;
    position: relative;
}

.nav-links a:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 0;
    height: 2px;
    background: var(--black);
    transition: .25s ease;
}

.nav-links a:hover:after,
.nav-links a.active:after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--gray-300);
    border-radius: 50%;
    background: var(--white);
    font-size: 22px;
}

/* Hero */
.work-hero {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    padding: 86px 0;
    background:
        radial-gradient(circle at 75% 25%, rgba(0, 0, 0, .07), transparent 28%),
        linear-gradient(180deg, #fff 0%, #fbfbfc 68%, #f5f5f6 100%);
}

.work-hero:before,
.work-hero:after {
    content: "";
    position: absolute;
    width: 1050px;
    height: 420px;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 50%;
    transform: rotate(-13deg);
    pointer-events: none;
}

.work-hero:before {
    right: -260px;
    bottom: 70px;
}

.work-hero:after {
    right: -340px;
    bottom: -10px;
}

.hero-watermark {
    position: absolute;
    right: 9%;
    top: 105px;
    width: 300px;
    opacity: .045;
    filter: grayscale(1);
    pointer-events: none;
}

.work-hero-grid {
    position: relative;
    z-index: 2;
}

.work-hero h1 {
    font-size: clamp(52px, 7vw, 96px);
    line-height: .98;
    letter-spacing: -.075em;
    font-weight: 800;
    max-width: 780px;
    margin-bottom: 24px;
}

.work-hero p {
    max-width: 560px;
    color: var(--gray-700);
    font-size: 17px;
    margin-bottom: 34px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Filters */
.work-filter-section {
    padding: 34px 0 22px;
    background: #f8f8f9;
    border-top: 1px solid var(--gray-200);
}

.filter-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
}

.filter-btn {
    min-height: 46px;
    padding: 0 20px;
    border-radius: 8px;
    border: 1px solid transparent;
    background: transparent;
    color: #171719;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    cursor: pointer;
    transition: .2s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--black);
    color: var(--white);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .16);
}

/* Projects */
.projects-section {
    background: #f8f8f9;
    padding-top: 18px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.project-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 18px;
    box-shadow: var(--shadow-card);
    transition: .25s ease;
}

.project-card:hover {
    transform: translateY(-6px);
    border-color: #cfcfd4;
    box-shadow: 0 26px 70px rgba(0, 0, 0, .08);
}

.project-image {
    position: relative;
    height: 260px;
    overflow: hidden;
    background:
        radial-gradient(circle at 70% 20%, rgba(255,255,255,.22), transparent 28%),
        linear-gradient(135deg, #101012, #313136 70%, #0c0c0d);
}

.project-image:after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255,255,255,.08), transparent 38%),
        radial-gradient(circle at 20% 85%, rgba(255,255,255,.1), transparent 28%);
    pointer-events: none;
}

.project-content {
    padding: 26px;
}

.project-category {
    display: block;
    color: var(--gray-500);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.project-content h3 {
    font-size: 22px;
    line-height: 1.1;
    letter-spacing: -.04em;
    margin-bottom: 12px;
}

.project-content p {
    color: #333;
    font-size: 15px;
    margin-bottom: 22px;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.project-link span {
    font-size: 18px;
}

/* Mockup visuals */
.device.laptop {
    position: absolute;
    left: 50%;
    bottom: 28px;
    width: 76%;
    height: 155px;
    border: 9px solid #111;
    border-bottom-width: 16px;
    border-radius: 14px 14px 18px 18px;
    transform: translateX(-50%);
    background: #111;
    box-shadow: 0 22px 50px rgba(0,0,0,.32);
    z-index: 2;
}

.screen {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    padding: 22px;
    overflow: hidden;
}

.dark-screen {
    color: #fff;
    background:
        radial-gradient(circle at 78% 42%, rgba(255,255,255,.18), transparent 28%),
        linear-gradient(135deg, #0f0f10, #25252a);
}

.dark-screen h4,
.shop-screen h4 {
    font-size: 20px;
    line-height: 1.05;
    letter-spacing: -.04em;
    max-width: 180px;
    margin-top: 20px;
}

.mini-logo {
    font-size: 11px;
    color: rgba(255,255,255,.75);
}

.mini-button {
    display: block;
    width: 62px;
    height: 18px;
    border-radius: 999px;
    background: #fff;
    margin-top: 18px;
}

.light-screen,
.shop-screen {
    background: #f4f4f5;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 10px;
}

.dash-block {
    min-height: 45px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #e2e2e5;
}

.dash-block.wide {
    grid-column: span 2;
}

.dash-block.chart {
    background:
        linear-gradient(135deg, transparent 0 20%, #999 21% 23%, transparent 24% 42%, #777 43% 46%, transparent 47% 63%, #555 64% 67%, transparent 68%),
        #fff;
}

.product-row {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.product-row span {
    width: 48px;
    height: 52px;
    background: #ddd;
    border-radius: 8px;
    display: block;
}

.phone-set {
    position: absolute;
    inset: 36px 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    z-index: 2;
}

.phone-card {
    width: 118px;
    min-height: 190px;
    border: 7px solid #080809;
    border-radius: 26px;
    background: #151518;
    padding: 22px 14px;
    color: #fff;
    box-shadow: 0 18px 35px rgba(0,0,0,.34);
}

.phone-card h5 {
    font-size: 14px;
    line-height: 1.15;
    margin-bottom: 18px;
}

.tilted-left {
    transform: rotate(-8deg);
}

.tilted-right {
    transform: rotate(8deg);
}

.phone-line {
    height: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,.22);
    margin-bottom: 10px;
}

.phone-line.short {
    width: 55%;
}

.phone-line.mid {
    width: 72%;
}

.phone-chart {
    height: 54px;
    border-radius: 10px;
    margin: 14px 0;
    background:
        linear-gradient(135deg, transparent 0 20%, #bbb 21% 23%, transparent 24% 42%, #777 43% 46%, transparent 47% 63%, #eee 64% 67%, transparent 68%),
        rgba(255,255,255,.08);
}

.campaign-window {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    width: 76%;
    height: 165px;
    border-radius: 20px;
    padding: 24px;
    color: #fff;
    background: rgba(0,0,0,.62);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(8px);
}

.campaign-label {
    display: block;
    color: rgba(255,255,255,.68);
    font-size: 12px;
    margin-bottom: 6px;
}

.campaign-stat {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -.05em;
}

.campaign-chart {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 50px;
    margin-top: 10px;
}

.campaign-chart span {
    flex: 1;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(180deg, #fff, rgba(255,255,255,.32));
}

/* Proof section */
.proof-section {
    background: #f8f8f9;
    padding: 0 0 80px;
}

.proof-panel {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 58px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    padding: 44px;
    box-shadow: var(--shadow-card);
}

.quote-block {
    border-right: 1px solid var(--gray-200);
    padding-right: 48px;
}

.quote-mark {
    font-size: 72px;
    line-height: .6;
    font-weight: 800;
}

.quote-block p {
    font-size: 18px;
    line-height: 1.55;
    letter-spacing: -.02em;
    margin-bottom: 20px;
}

.quote-block strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}

.quote-block span {
    color: var(--gray-700);
    font-size: 13px;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 34px;
    margin-top: 26px;
}

.logo-grid div {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #2b2b30;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -.03em;
}

.logo-symbol {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    color: var(--gray-500);
    font-weight: 800;
}

/* CTA */
.work-cta {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 90% 40%, rgba(255,255,255,.13), transparent 25%),
        linear-gradient(135deg, #0d0d0e, #1b1b1f 70%, #070708);
    padding: 52px 0;
}

.work-cta:after {
    content: "";
    position: absolute;
    right: -140px;
    top: -70px;
    width: 520px;
    height: 320px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.1);
    box-shadow:
        0 0 0 18px rgba(255,255,255,.02),
        0 0 0 36px rgba(255,255,255,.014),
        0 0 0 54px rgba(255,255,255,.01);
    transform: rotate(-18deg);
}

.work-cta-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}

.work-cta h2 {
    font-size: clamp(30px, 3.6vw, 46px);
    line-height: 1.05;
    letter-spacing: -.055em;
    margin-bottom: 10px;
}

.work-cta p {
    color: rgba(255,255,255,.72);
    font-size: 17px;
}

.work-cta-actions {
    display: flex;
    gap: 16px;
}

.work-cta .btn-dark {
    background: transparent;
    border-color: rgba(255,255,255,.3);
}

/* Footer */
.footer {
    background: #111113;
    color: var(--white);
    padding: 74px 0 26px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr .8fr .8fr 1fr;
    gap: 70px;
    padding-bottom: 50px;
}

.footer-logo img {
    width: 150px;
    margin-bottom: 24px;
}

.footer p,
.footer li,
.footer a {
    color: rgba(255,255,255,.68);
    font-size: 14px;
}

.footer h4 {
    font-size: 13px;
    letter-spacing: .13em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.footer ul {
    list-style: none;
    display: grid;
    gap: 13px;
}

.socials {
    display: flex;
    gap: 10px;
    margin-top: 26px;
}

.socials a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,.18);
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    font-size: 12px;
}

.contact-list {
    display: grid;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255,255,255,.55);
    font-size: 13px;
}

.footer-links {
    display: flex;
    gap: 28px;
}

/* Responsive */
@media(max-width:1100px) {
    .nav-links {
        gap: 20px;
    }

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

    .proof-panel,
    .work-cta-inner {
        grid-template-columns: 1fr;
    }

    .quote-block {
        border-right: 0;
        border-bottom: 1px solid var(--gray-200);
        padding-right: 0;
        padding-bottom: 34px;
    }

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

@media(max-width:820px) {
    .container {
        width: min(100% - 32px, var(--container));
    }

    .nav {
        height: 78px;
    }

    .nav-links,
    .nav .btn {
        display: none;
    }

    .mobile-toggle {
        display: grid;
        place-items: center;
    }

    .logo img {
        width: 108px;
    }

    .work-hero {
        min-height: auto;
        padding: 72px 0;
    }

    .work-hero h1 {
        font-size: 48px;
    }

    .hero-actions,
    .work-cta-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .projects-grid,
    .logo-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .project-image {
        height: 235px;
    }

    .proof-panel {
        padding: 28px;
        border-radius: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media(max-width:560px) {
    .work-hero h1 {
        font-size: 42px;
    }

    .hero-watermark {
        width: 210px;
        right: -40px;
        top: 80px;
    }

    .filter-row {
        justify-content: flex-start;
        gap: 10px;
    }

    .filter-btn {
        min-height: 40px;
        font-size: 11px;
        padding: 0 14px;
    }

    .project-content {
        padding: 22px;
    }

    .phone-set {
        inset: 32px 18px;
        gap: 10px;
    }

    .phone-card {
        width: 100px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}
/* =========================================================
   Real Project Screenshot Placeholders
   Add this to the bottom of assets/css/work.css
   Replace image paths in work.html with your real screenshots.
   ========================================================= */

.project-preview-area {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 70% 20%, rgba(255,255,255,.22), transparent 28%),
    linear-gradient(135deg, #101012, #313136 70%, #0c0c0d);
}

.project-preview-area.light-preview {
  background:
    radial-gradient(circle at 72% 18%, rgba(0,0,0,.08), transparent 28%),
    linear-gradient(180deg, #fff 0%, #eeeeef 100%);
}

.project-preview-area.dark-preview {
  background:
    radial-gradient(circle at 70% 20%, rgba(255,255,255,.16), transparent 28%),
    linear-gradient(135deg, #080809, #202024 70%, #050505);
}

/* Desktop browser frame */
.desktop-frame {
  position: relative;
  z-index: 2;
  width: 92%;
  height: 190px;
  overflow: hidden;
  border: 8px solid #111;
  border-radius: 18px;
  background: #111;
  box-shadow: 0 26px 60px rgba(0,0,0,.32);
}

.wide-desktop {
  width: 96%;
  height: 185px;
}

.browser-bar {
  height: 30px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  background: #111;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.browser-bar span {
  width: 9px;
  height: 9px;
  display: block;
  border-radius: 50%;
  background: rgba(255,255,255,.48);
}

.screen-image {
  width: 100%;
  height: calc(100% - 30px);
  overflow: hidden;
  background: #f5f5f6;
}

.screen-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: .35s ease;
}

.project-card:hover .screen-image img,
.project-card:hover .phone-screen-image img,
.project-card:hover .laptop-screen img {
  /*filter: grayscale(0);*/
  transform: scale(1.03);
}

/* Laptop frame */
.laptop-frame {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 360px;
  margin: 0 auto;
}

.laptop-screen {
  height: 170px;
  overflow: hidden;
  border: 10px solid #111;
  border-radius: 18px 18px 10px 10px;
  background: #f5f5f6;
  box-shadow: 0 24px 55px rgba(0,0,0,.22);
}

.laptop-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  /*filter: grayscale(1);*/
  transition: .35s ease;
}

.laptop-base {
  width: 72%;
  height: 18px;
  margin: 0 auto;
  background: linear-gradient(180deg, #18181b, #050505);
  border-radius: 0 0 22px 22px;
  box-shadow: 0 18px 35px rgba(0,0,0,.2);
}

/* Floating browser */
.floating-browser {
  position: relative;
  z-index: 2;
  width: 86%;
  height: 185px;
  overflow: hidden;
  border: 8px solid #111;
  border-radius: 20px;
  background: #111;
  transform: rotate(-2deg);
  box-shadow: 0 30px 70px rgba(0,0,0,.35);
}

/* Mobile frames */
.mobile-preview-set {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  width: 100%;
  height: 100%;
}

.single-mobile-set {
  gap: 0;
}

.mobile-frame {
  position: relative;
  width: 112px;
  height: 205px;
  padding: 6px 6px 6px;
  border-radius: 30px;
  background: #09090a;
  box-shadow: 0 24px 45px rgba(0,0,0,.34);
  overflow: hidden;
}

.large-mobile {
  width: 132px;
  height: 220px;
}

.mobile-left {
  transform: rotate(-8deg);
}

.mobile-right {
  transform: rotate(8deg);
}

.phone-top {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 38px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255,255,255,.28);
  transform: translateX(-50%);
  z-index: 4;
}

.phone-screen-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 22px;
  background: #f5f5f6;
}

.phone-screen-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  /*filter: grayscale(1);*/
  transition: .35s ease;
}

/* Optional placeholder style if image is missing */
.screen-image,
.phone-screen-image,
.laptop-screen {
  position: relative;
}

.screen-image:before,
.phone-screen-image:before,
.laptop-screen:before {
  content: "Add Screenshot";
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  color: #888;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  background:
    linear-gradient(135deg, transparent 0 49%, rgba(0,0,0,.05) 50%, transparent 51%),
    #f5f5f6;
}

.screen-image img,
.phone-screen-image img,
.laptop-screen img {
  position: relative;
  z-index: 2;
}

/* Responsive preview fixes */
@media(max-width: 820px) {
  .desktop-frame,
  .floating-browser {
    height: 170px;
  }

  .laptop-screen {
    height: 160px;
  }

  .mobile-frame {
    width: 104px;
    height: 190px;
  }

  .large-mobile {
    width: 122px;
    height: 210px;
  }
}

@media(max-width: 560px) {


  .desktop-frame,
  .floating-browser {
    width: 100%;
    height: 165px;
  }

  .mobile-preview-set {
    gap: 10px;
  }

  .mobile-frame {
    width: 96px;
    height: 178px;
  }

  .large-mobile {
    width: 112px;
    height: 196px;
  }
}

/* =========================================================
   Mobile Header Menu
   ========================================================= */

.mobile-toggle .close-icon {
  display: none;
}

.mobile-toggle.is-open .menu-icon {
  display: none;
}

.mobile-toggle.is-open .close-icon {
  display: inline;
  font-size: 28px;
  line-height: 1;
}

.nav-cta {
  flex: 0 0 auto;
}

@media (max-width: 820px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 999;
  }

  .nav {
    position: relative;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(18px);
    border: 1px solid var(--gray-200);
    border-top: 0;
    border-radius: 0 0 22px 22px;
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.1);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 15px 16px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: var(--gray-100);
  }

  .nav-links a::after {
    display: none;
  }

  .mobile-toggle {
    display: grid;
    place-items: center;
    position: relative;
    z-index: 1000;
    cursor: pointer;
  }

  .nav .nav-cta {
    display: none;
  }

  body.menu-open {
    overflow: hidden;
  }
  .mobile-toggle .close-icon {
  display: flex;
}

.mobile-toggle.is-open .menu-icon {
  display: flex;
}
}