/*
 * NEXFABRI reusable style kit
 * Values are derived only from the supplied NEXFABRI Framer HTML/CSS.
 * Semantic class names replace Framer's generated selectors.
 */

@font-face {
    font-family: "Reddit Mono";
    src: url("https://fonts.gstatic.com/s/redditmono/v5/oPWc_kRmmu4oQ88oo13o48DHbsqn28eR20vUwCYad3nYz7yQYA.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Proxima Nova";
    src: url("https://framerusercontent.com/assets/hoDsuoqxVJm5BGmiJsrTXLRadQ.woff2") format("woff2");
    font-style: normal;
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: "Proxima Nova";
    src: url("https://framerusercontent.com/assets/lk0lI1lYugJk737ZJsSf2yWwcs.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Proxima Nova";
    src: url("https://framerusercontent.com/assets/R5AHYCd8W84pfo2c1JfxsuAxMc.woff2") format("woff2");
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

:root {
    /* Dark industrial + acid green */
    --nf-bg: #080c0a;
    --nf-white: #ffffff;
    --nf-surface: #101512;
    --nf-surface-2: #171d19;
    --nf-elevated: #1c2420;
    --nf-border: #24302a;
    --nf-border-blue: #2c3a32;
    --nf-ink: #040606;
    --nf-ink-2: #0a100c;
    --nf-text: #b4c0b8;
    --nf-text-strong: #eef6f0;
    --nf-muted: #6f8076;
    --nf-muted-2: #55635b;
    --nf-acid: #b8ff3c;
    --nf-acid-dim: rgba(184, 255, 60, 0.14);
    --nf-acid-glow: rgba(184, 255, 60, 0.28);
    --nf-cyan: #b8ff3c;
    --nf-cyan-soft: #d4ff8a;
    --nf-cyan-pale: #e8ffb8;
    --nf-teal: #b8ff3c;
    --nf-teal-dark: #9ae020;
    --nf-on-acid: #080c0a;
    --nf-success: #b8ff3c;

    --nf-font-sans: "Proxima Nova", Arial, sans-serif;
    --nf-font-mono: "Reddit Mono", ui-monospace, monospace;

    --nf-content-max: 1440px;
    --nf-page-max: 1920px;
    --nf-radius-sm: 8px;
    --nf-radius-lg: 16px;
    --nf-radius-pill: 100px;
}

html {
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
    color-scheme: dark;
}

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

body {
    margin: 0;
    background:
        radial-gradient(ellipse 90% 50% at 50% -10%, rgba(184, 255, 60, 0.07), transparent 55%),
        radial-gradient(ellipse 60% 40% at 100% 30%, rgba(184, 255, 60, 0.03), transparent 50%),
        var(--nf-bg);
    color: var(--nf-text);
    font-family: var(--nf-font-sans);
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0.04em;
    line-height: 1.3;
}

h1, h2, h3, h4, h5, h6, p, figure {
    margin: 0;
}

a {
    color: var(--nf-acid);
    text-decoration: none;
}

a:hover {
    color: var(--nf-cyan-soft);
}

.nf-page {
    width: 100%;
    max-width: var(--nf-page-max);
    margin-inline: auto;
    overflow: clip;
}

.nf-container {
    width: 100%;
    max-width: var(--nf-content-max);
    margin-inline: auto;
}

.nf-section {
    width: 100%;
    padding: 160px 24px;
}

.nf-section--white {
    background: transparent;
}

.nf-section--soft {
    background: var(--nf-surface);
}

.nf-section--dark {
    background: var(--nf-ink);
    color: var(--nf-text-strong);
}

.nf-section--teal {
    background: var(--nf-acid);
    color: var(--nf-on-acid);
}

.nf-stack {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.nf-stack--tight {
    gap: 24px;
}

.nf-display {
    color: var(--nf-text-strong);
    font-size: 96px;
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 1;
}

.nf-heading-xl {
    color: var(--nf-text-strong);
    font-size: 64px;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1;
}

.nf-heading-lg {
    color: var(--nf-text-strong);
    font-size: 48px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1;
}

.nf-heading-md {
    color: var(--nf-text-strong);
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 0.04em;
    line-height: 1.3;
}

.nf-body-lg {
    color: var(--nf-text);
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.nf-body {
    color: var(--nf-text);
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0.04em;
    line-height: 1.3;
}

.nf-small {
    color: var(--nf-text);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.06em;
    line-height: 1.3;
}

.nf-eyebrow {
    color: var(--nf-muted);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.nf-mono {
    font-family: var(--nf-font-mono);
}

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

.nf-card {
    background: var(--nf-elevated);
    border: 1px solid var(--nf-border);
    border-radius: var(--nf-radius-lg);
    padding: 28px 32px;
}

.nf-pill {
    display: inline-flex;
    align-items: center;
    width: max-content;
    padding: 14px 28px;
    background: var(--nf-elevated);
    border-radius: var(--nf-radius-pill);
}

.nf-chat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.nf-chat__question {
    width: max-content;
    max-width: 720px;
    padding: 20px 28px;
    background: var(--nf-elevated);
    border: 1px solid var(--nf-border);
    border-radius: 16px 16px 4px;
}

.nf-chat__answer {
    width: 100%;
    max-width: 840px;
    padding: 28px 32px;
    background: var(--nf-surface-2);
    border: 1px solid var(--nf-acid-dim);
    border-radius: 4px 16px 16px;
}

.nf-chat__agent {
    margin-bottom: 12px;
    color: var(--nf-acid);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.nf-chat__metric {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.nf-chat__metric-value {
    color: var(--nf-acid);
    font-size: 48px;
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1;
}

.nf-chat__metric-label {
    color: var(--nf-muted);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nf-about {
    display: flex;
    align-items: flex-start;
    gap: 96px;
}

.nf-about__title {
    width: 420px;
    flex: 0 0 420px;
}

.nf-about__copy {
    flex: 1 1 auto;
}

.nf-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
    max-width: 1000px;
    margin-inline: auto;
    text-align: center;
}

.nf-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 14px 28px;
    border: 0;
    border-radius: var(--nf-radius-pill);
    background: var(--nf-acid);
    color: var(--nf-on-acid);
    font: 600 16px/1 var(--nf-font-sans);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
}

.nf-button:hover {
    background: var(--nf-cyan-soft);
    color: var(--nf-on-acid);
}

@media (max-width: 1279.98px) {
    .nf-section {
        padding: 100px 40px;
    }

    .nf-display {
        font-size: 64px;
    }

    .nf-heading-xl {
        font-size: 48px;
    }

    .nf-heading-lg {
        font-size: 36px;
    }

    .nf-grid-3 {
        grid-template-columns: repeat(3, minmax(120px, 1fr));
    }

    .nf-about {
        flex-direction: column;
        gap: 40px;
    }

    .nf-about__title {
        width: 100%;
        flex-basis: auto;
    }
}

@media (max-width: 809.98px) {
    body {
        font-size: 18px;
    }

    .nf-section {
        padding: 80px 24px;
    }

    .nf-display {
        font-size: 48px;
    }

    .nf-heading-xl {
        font-size: 40px;
    }

    .nf-heading-lg {
        font-size: 28px;
    }

    .nf-heading-md {
        font-size: 28px;
    }

    .nf-body-lg {
        font-size: 22px;
    }

    .nf-body {
        font-size: 18px;
    }

    .nf-small {
        font-size: 12px;
    }

    .nf-eyebrow {
        font-size: 14px;
    }

    .nf-grid-3 {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .nf-card,
    .nf-chat__answer {
        padding: 24px;
    }

    .nf-chat__question {
        max-width: 100%;
        padding: 18px 22px;
    }

    .nf-chat__metric-value {
        font-size: 36px;
    }

    .nf-about {
        gap: 32px;
    }
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-stopped {
    overflow: hidden;
}


/* --------------------------------------------------
   Page extras (nav, cards-as-links, tech map, footer)
   Built on NEXFABRI tokens only.
-------------------------------------------------- */

body {
    padding-top: 72px;
}

section {
    scroll-margin-top: 90px;
}

.nf-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(8, 12, 10, 0.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(184, 255, 60, 0.08);
}

.nf-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--nf-content-max);
    margin-inline: auto;
    padding: 18px 24px;
}

.nf-nav__brand {
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: var(--nf-acid);
}

.nf-nav__brand:hover {
    color: var(--nf-cyan-soft);
}

.nf-nav__brand-name {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1;
}

.nf-nav__brand-tag {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1.2;
    color: var(--nf-muted);
}

.nf-nav__brand:hover .nf-nav__brand-tag {
    color: var(--nf-muted);
}

.nf-nav__link {
    color: var(--nf-text);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.04em;
}

.nf-nav__link:hover {
    color: var(--nf-acid);
}

.nf-hero {
    padding-top: 120px;
}

.nf-hero__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    gap: 64px;
    align-items: center;
}

.nf-hero__title {
    color: var(--nf-acid);
    font-size: clamp(56px, 8vw, 112px);
    font-weight: 600;
    letter-spacing: -0.05em;
    line-height: 0.92;
}

.nf-hero-intro {
    max-width: 720px;
    color: var(--nf-text);
}

.nf-hero__explain {
    max-width: 640px;
}

.nf-hero__punch {
    color: var(--nf-text-strong);
    font-weight: 400;
}

.nf-hero__media {
    margin: 0;
    width: 100%;
}

.nf-video-frame {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background:
        linear-gradient(160deg, var(--nf-surface) 0%, var(--nf-elevated) 100%);
    border: 1px solid var(--nf-border);
    border-radius: var(--nf-radius-lg);
    box-shadow:
        0 0 0 1px rgba(184, 255, 60, 0.04),
        0 24px 48px rgba(0, 0, 0, 0.45);
}

.nf-video-frame__media {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: transparent;
}

.nf-video-frame--empty .nf-video-frame__media {
    opacity: 0;
    pointer-events: none;
}

.nf-video-frame__placeholder {
    display: none;
    position: absolute;
    inset: 0;
    z-index: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    pointer-events: none;
}

.nf-video-frame--empty .nf-video-frame__placeholder {
    display: flex;
}

.nf-video-frame__play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    padding-left: 4px;
    background: var(--nf-elevated);
    border: 1px solid var(--nf-acid-dim);
    border-radius: 50%;
    color: var(--nf-acid);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.nf-video-frame__play svg {
    width: 22px;
    height: 22px;
}

.nf-video-frame__label {
    color: var(--nf-muted);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nf-video-frame__caption {
    margin-top: 14px;
    color: var(--nf-muted);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.04em;
}

@media (max-width: 1279.98px) {
    .nf-hero__layout {
        gap: 40px;
    }
}

@media (max-width: 809.98px) {
    .nf-hero__layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .nf-hero__media {
        max-width: 560px;
    }

    .nf-video-frame__play {
        width: 56px;
        height: 56px;
    }
}

.nf-card-link {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
    color: inherit;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.nf-card-link:hover {
    color: inherit;
    border-color: var(--nf-acid);
    transform: translateY(-2px);
}

.nf-card-link__number {
    color: var(--nf-acid);
    font-family: var(--nf-font-mono);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nf-card-link__title {
    color: var(--nf-text-strong);
    font-size: 28px;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.15;
}

.nf-card-link__body {
    color: var(--nf-muted);
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 1.35;
}

.nf-card-link__cta {
    margin-top: auto;
    color: var(--nf-acid);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nf-card-link:hover .nf-card-link__cta {
    color: var(--nf-cyan-soft);
}

.nf-usecase-heading {
    text-align: center;
}

.nf-changes-grid {
    gap: 0;
}

.nf-changes-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    padding: 8px 32px 8px 0;
    border: 0;
    border-right: 1px solid var(--nf-border);
    background: transparent;
    border-radius: 0;
}

.nf-changes-item:last-child {
    border-right: 0;
    padding-right: 0;
}

.nf-changes-item:not(:first-child) {
    padding-left: 32px;
}

.nf-changes-item__icon {
    display: inline-flex;
    width: 40px;
    height: 40px;
    padding: 8px;
    color: var(--nf-acid);
    background: var(--nf-acid-dim);
    border-radius: 10px;
}

.nf-changes-item__icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.nf-changes-item__title {
    color: var(--nf-text-strong);
    font-size: 24px;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.25;
    min-height: 2.5em;
}

.nf-changes-item__body {
    margin-top: auto;
    color: var(--nf-muted);
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 1.35;
}

.nf-usecase-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 220px;
    color: inherit;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.nf-usecase-card:hover {
    color: inherit;
    border-color: var(--nf-acid);
    transform: translateY(-2px);
}

.nf-usecase-card__icon {
    display: inline-flex;
    width: 32px;
    height: 32px;
    color: var(--nf-acid);
}

.nf-usecase-card__icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.nf-usecase-card__sector {
    color: var(--nf-acid);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1;
    text-transform: uppercase;
}

.nf-usecase-card__stack {
    color: var(--nf-text-strong);
    font-size: 24px;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

.nf-usecase-card__title {
    flex: 1 1 auto;
    margin: 0;
    color: var(--nf-text);
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 1.35;
}

.nf-section-intro {
    max-width: 760px;
}

.nf-grid-3--cards {
    margin-top: 64px;
}

.nf-about--media {
    align-items: center;
}

.nf-about__media {
    width: 480px;
    flex: 0 0 480px;
}

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

.nf-iface {
    position: relative;
    aspect-ratio: 1;
    width: 100%;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 50%, rgba(184, 255, 60, 0.1), transparent 42%),
        var(--nf-surface);
    border: 1px solid var(--nf-border);
    border-radius: var(--nf-radius-lg);
}

.nf-iface__links {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.nf-iface__rays line {
    stroke: rgba(184, 255, 60, 0.35);
    stroke-width: 1.25;
    stroke-linecap: round;
    stroke-dasharray: 4 6;
    animation: nf-iface-dash 8s linear infinite;
}

.nf-iface__hub {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 118px;
    height: 118px;
    transform: translate(-50%, -50%);
    background: var(--nf-acid);
    border-radius: 50%;
    box-shadow: 0 0 0 10px var(--nf-acid-dim);
    animation: nf-iface-pulse 3.6s ease-in-out infinite;
}

.nf-iface__hub-name {
    color: var(--nf-on-acid);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1;
}

.nf-iface__hub-tag {
    color: rgba(8, 12, 10, 0.65);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.nf-iface__nodes {
    position: absolute;
    inset: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nf-iface__node {
    position: absolute;
    top: var(--y);
    left: var(--x);
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    padding: 8px 12px;
    transform: translate(-50%, -50%);
    background: var(--nf-elevated);
    border: 1px solid var(--nf-border);
    border-radius: var(--nf-radius-pill);
    color: var(--nf-text-strong);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1;
    white-space: nowrap;
    animation: nf-iface-float 4.8s ease-in-out infinite;
    animation-delay: var(--d, 0s);
}

.nf-iface__node--soft {
    background: var(--nf-surface-2);
    border-color: transparent;
    color: var(--nf-muted);
}

@keyframes nf-iface-float {
    0%, 100% { transform: translate(-50%, -50%); }
    50% { transform: translate(-50%, calc(-50% - 5px)); }
}

@keyframes nf-iface-pulse {
    0%, 100% { box-shadow: 0 0 0 10px var(--nf-acid-dim); }
    50% { box-shadow: 0 0 0 18px rgba(184, 255, 60, 0.08); }
}

@keyframes nf-iface-dash {
    to { stroke-dashoffset: -80; }
}

@media (prefers-reduced-motion: reduce) {
    .nf-iface__hub,
    .nf-iface__node,
    .nf-iface__rays line {
        animation: none;
    }
}

.nf-tech-map {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.nf-tech-map span {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    background: var(--nf-elevated);
    border: 1px solid var(--nf-border);
    border-radius: var(--nf-radius-pill);
    color: var(--nf-text);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.nf-section--soft .nf-tech-map span {
    background: var(--nf-surface-2);
    border-color: transparent;
}

.nf-section--teal .nf-heading-lg,
.nf-section--teal .nf-body-lg,
.nf-section--teal .nf-body {
    color: var(--nf-on-acid);
}

.nf-button--outline {
    background: transparent;
    color: var(--nf-acid);
    border: 1px solid var(--nf-acid);
}

.nf-button--outline:hover {
    background: var(--nf-acid);
    color: var(--nf-on-acid);
}

.nf-cta {
    gap: 28px;
}

.nf-cta__mark {
    display: block;
    width: 40px;
    height: 4px;
    border-radius: var(--nf-radius-pill);
    background: var(--nf-acid);
}

.nf-about__copy a {
    color: var(--nf-acid);
}

.nf-about__copy a:hover {
    color: var(--nf-cyan-soft);
}

.nf-close {
    background: var(--nf-ink);
    color: var(--nf-text-strong);
    padding: 96px 24px 40px;
    border-top: 1px solid rgba(184, 255, 60, 0.1);
}

.nf-close__inner {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.nf-close__brand {
    margin: 0;
    color: var(--nf-acid);
    font-size: clamp(64px, 14vw, 160px);
    font-weight: 600;
    letter-spacing: -0.05em;
    line-height: 0.9;
}

.nf-close__grid {
    display: grid;
    grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.4fr);
    gap: 32px 40px;
    align-items: stretch;
}

.nf-close__info {
    display: flex;
    flex-direction: column;
}

.nf-close__eyebrow {
    margin: 0 0 20px;
    color: var(--nf-acid);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1;
    text-transform: uppercase;
}

.nf-close__company {
    margin: 0 0 28px;
    color: var(--nf-text-strong);
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.nf-close__details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nf-close__details li {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 14px;
    align-items: start;
    color: rgba(238, 246, 240, 0.78);
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 1.4;
}

.nf-close__icon {
    display: inline-flex;
    width: 22px;
    height: 22px;
    margin-top: 2px;
    color: var(--nf-acid);
}

.nf-close__icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.nf-close__details a {
    color: rgba(238, 246, 240, 0.78);
}

.nf-close__details a:hover {
    color: var(--nf-acid);
}

.nf-close__map {
    overflow: hidden;
    min-height: 280px;
    height: 100%;
    border: 1px solid rgba(184, 255, 60, 0.12);
    border-radius: var(--nf-radius-lg);
    background: var(--nf-ink-2);
}

.nf-close__map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 280px;
    border: 0;
    filter: grayscale(1) invert(0.92) contrast(0.9) brightness(0.85);
}

.nf-close__legal {
    margin: 8px 0 0;
    color: rgba(238, 246, 240, 0.4);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.04em;
}

@media (max-width: 1279.98px) {
    .nf-close {
        padding: 80px 40px 36px;
    }

    .nf-close__grid {
        gap: 32px;
    }
}

@media (max-width: 809.98px) {
    .nf-close {
        padding: 72px 24px 32px;
    }

    .nf-close__inner {
        gap: 36px;
    }

    .nf-close__grid {
        grid-template-columns: 1fr;
    }

    .nf-close__map,
    .nf-close__map iframe {
        min-height: 240px;
    }

    .nf-close__company {
        font-size: 20px;
    }

    .nf-close__details li {
        font-size: 16px;
    }
}

@media (max-width: 1279.98px) {
    .nf-about__media {
        width: 100%;
        flex-basis: auto;
        max-width: 520px;
        margin-inline: auto;
    }

    .nf-card-link__title {
        font-size: 24px;
    }

    .nf-usecase-card__stack {
        font-size: 22px;
    }

    .nf-changes-item__title {
        font-size: 22px;
        min-height: 0;
    }
}

@media (max-width: 809.98px) {
    .nf-nav__inner {
        padding: 16px 24px;
    }

    .nf-grid-3--cards {
        margin-top: 40px;
    }

    .nf-card-link__title {
        font-size: 22px;
    }

    .nf-card-link__body {
        font-size: 16px;
    }

    .nf-usecase-card {
        min-height: 0;
    }

    .nf-usecase-card__stack {
        font-size: 20px;
    }

    .nf-usecase-card__title {
        font-size: 16px;
    }

    .nf-changes-item {
        padding: 28px 0;
        border-right: 0;
        border-bottom: 1px solid var(--nf-border);
    }

    .nf-changes-item:first-child {
        padding-top: 0;
    }

    .nf-changes-item:not(:first-child) {
        padding-left: 0;
    }

    .nf-changes-item:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .nf-changes-item__title {
        font-size: 20px;
        min-height: 0;
    }

    .nf-changes-item__body {
        font-size: 16px;
    }

    .nf-iface__hub {
        width: 96px;
        height: 96px;
    }

    .nf-iface__hub-name {
        font-size: 13px;
    }

    .nf-iface__node {
        min-width: 0;
        padding: 6px 10px;
        font-size: 10px;
    }
}
