/*
   DataFortis homepage — editorial system
   Scoped to .home-v2 so the rest of the site remains stable.
*/

.home-v2 {
    --df-ink: #11151d;
    --df-ink-soft: #343a46;
    --df-muted: #686f7b;
    --df-line: rgba(17, 21, 29, 0.13);
    --df-paper: #f7f4ee;
    --df-paper-deep: #ece7df;
    --df-panel: #fffdf9;
    --df-night: #090d15;
    --df-night-2: #101722;
    --df-orange: #f47a18;
    --df-orange-light: #ffad62;
    --df-blue: #79a9ff;
    margin: 0;
    color: var(--df-ink);
    background:
        radial-gradient(circle at 88% 7%, rgba(244, 122, 24, 0.09), transparent 24rem),
        linear-gradient(180deg, #f5f1e9 0%, #faf8f4 30%, #f0ece5 100%);
    font-family: "Outfit", sans-serif;
}

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

.home-v2 main {
    display: block;
    overflow: clip;
}

.home-v2 .container {
    width: min(100% - 48px, 1320px);
    max-width: 1320px;
    margin-inline: auto;
    padding-inline: 0;
}

.home-v2 h1,
.home-v2 h2,
.home-v2 h3,
.home-v2 blockquote {
    margin: 0;
    color: inherit;
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    letter-spacing: -0.052em;
}

.home-v2 p {
    color: inherit;
}

.home-v2 img {
    max-width: 100%;
}

.home-v2 .navbar {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    height: 82px;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(9, 13, 21, 0.9);
    box-shadow: none;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.home-v2 .navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.home-v2 .nav-left,
.home-v2 .nav-right {
    display: flex;
    align-items: center;
}

.home-v2 .nav-left {
    gap: clamp(2rem, 5vw, 5rem);
}

.home-v2 .logo {
    display: inline-flex;
    align-items: center;
    width: 168px;
    flex: 0 0 auto;
}

.home-v2 .logo-img {
    display: block;
    width: 100%;
    height: auto;
}

.home-v2 .nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.home-v2 .nav-link {
    position: relative;
    padding: 0.55rem 0;
    color: rgba(255, 255, 255, 0.69);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: color 180ms ease;
}

.home-v2 .nav-link::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0.2rem;
    left: 0;
    height: 1px;
    background: var(--df-orange);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.home-v2 .nav-link:hover,
.home-v2 .nav-link:focus-visible {
    color: #fff;
}

.home-v2 .nav-link:hover::after,
.home-v2 .nav-link:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.home-v2 .nav-cta {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0.72rem 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: #15120f;
    background: #fff;
    box-shadow: none;
    font-size: 0.8rem;
    font-weight: 650;
    text-decoration: none;
    transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.home-v2 .nav-cta:hover {
    color: #fff;
    background: var(--df-orange);
    transform: translateY(-1px);
}

.home-v2 .mobile-menu-btn {
    display: none;
    color: #fff;
}

.df-hero {
    position: relative;
    padding: clamp(10.5rem, 15vw, 13rem) 0 0;
}

.df-hero::before {
    content: "";
    position: absolute;
    top: 4rem;
    left: 50%;
    width: min(90vw, 980px);
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 67%);
    transform: translateX(-50%);
    pointer-events: none;
}

.df-hero-copy {
    position: relative;
    z-index: 1;
    max-width: 1120px;
    margin: 0 auto clamp(3.5rem, 7vw, 5.5rem);
    text-align: center;
}

.df-eyebrow,
.df-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: #6b5f53;
    font-family: "Space Mono", monospace;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.3;
    text-transform: uppercase;
}

.df-eyebrow > span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--df-orange);
    box-shadow: 0 0 0 5px rgba(244, 122, 24, 0.12);
}

.df-hero h1 {
    max-width: 1080px;
    margin: 1.35rem auto 0;
    font-size: clamp(3.45rem, 7.35vw, 7.1rem);
    line-height: 0.91;
}

.df-hero h1 em,
.df-statement h2 em {
    color: var(--df-orange);
    font-style: normal;
}

.df-hero-copy > p {
    max-width: 720px;
    margin: 2rem auto 0;
    color: var(--df-ink-soft);
    font-size: clamp(1rem, 1.5vw, 1.22rem);
    line-height: 1.72;
}

.df-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2.1rem;
}

.df-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    min-height: 54px;
    padding: 0.92rem 1.4rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 650;
    line-height: 1;
    text-decoration: none;
    transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.df-button i,
.df-text-link i,
.df-offer-copy a i {
    font-size: 0.75em;
    transition: transform 180ms ease;
}

.df-button:hover i,
.df-text-link:hover i,
.df-offer-copy a:hover i {
    transform: translateX(3px);
}

.df-button-primary {
    color: #fff;
    background: var(--df-orange);
    box-shadow: 0 18px 38px -22px rgba(176, 69, 0, 0.8);
}

.df-button-primary:hover {
    color: #fff;
    background: #d85f08;
    transform: translateY(-2px);
}

.df-button-quiet {
    border-color: var(--df-line);
    color: var(--df-ink);
    background: rgba(255, 255, 255, 0.56);
}

.df-button-quiet:hover {
    border-color: rgba(17, 21, 29, 0.28);
    color: var(--df-ink);
    background: #fff;
    transform: translateY(-2px);
}

.df-hero-stage {
    position: relative;
    min-height: clamp(470px, 52vw, 670px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: clamp(24px, 3vw, 44px);
    background: #080c13;
    box-shadow: 0 40px 90px -46px rgba(10, 15, 24, 0.75);
    isolation: isolate;
}

.df-hero-stage > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 63%;
    filter: saturate(0.86) contrast(1.04);
    transform: scale(1.035);
}

.df-hero-stage::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 9, 15, 0.83) 0%, rgba(5, 9, 15, 0.12) 42%, rgba(5, 9, 15, 0.3) 100%),
        linear-gradient(0deg, rgba(5, 9, 15, 0.82) 0%, transparent 42%, rgba(5, 9, 15, 0.26) 100%);
    pointer-events: none;
}

.df-stage-glow {
    position: absolute;
    z-index: 1;
    top: 43%;
    left: 50%;
    width: 45%;
    height: 54%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 122, 24, 0.22), transparent 65%);
    transform: translate(-50%, -50%);
    filter: blur(20px);
}

.df-stage-card {
    position: absolute;
    z-index: 2;
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    background: rgba(12, 17, 27, 0.73);
    box-shadow: 0 24px 70px -34px rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.df-stage-card-top {
    top: 2rem;
    left: 2rem;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.1rem;
    border-radius: 16px;
}

.df-live-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #6ee7a2;
    box-shadow: 0 0 0 6px rgba(110, 231, 162, 0.11), 0 0 18px rgba(110, 231, 162, 0.7);
}

.df-stage-card small,
.df-stage-card strong {
    display: block;
}

.df-stage-card small {
    color: rgba(255, 255, 255, 0.47);
    font-family: "Space Mono", monospace;
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.df-stage-card strong {
    margin-top: 0.22rem;
    font-size: 0.86rem;
    font-weight: 600;
}

.df-stage-card-side {
    top: 2rem;
    right: 2rem;
    display: block;
    width: min(340px, calc(100% - 4rem));
    padding: 1rem;
    border-radius: 18px;
}

.df-stage-pills {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.4rem;
    margin-top: 0.75rem;
}

.df-stage-pills span {
    padding: 0.55rem 0.25rem;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 9px;
    color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.63rem;
    text-align: center;
}

.df-stage-flow {
    position: absolute;
    z-index: 2;
    right: 2rem;
    bottom: 2rem;
    left: 2rem;
    display: grid;
    grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 17px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(7, 11, 18, 0.77);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.df-stage-flow span {
    font-family: "Space Mono", monospace;
    font-size: 0.64rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.df-stage-flow i {
    position: relative;
    display: block;
    height: 1px;
    overflow: visible;
    background: linear-gradient(90deg, rgba(244, 122, 24, 0.18), var(--df-orange));
}

.df-stage-flow i::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -1px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--df-orange-light);
    box-shadow: 0 0 12px var(--df-orange);
    transform: translateY(-50%);
}

.df-proof-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0 0 clamp(5rem, 9vw, 8rem);
    padding: 1.45rem 0;
    border-bottom: 1px solid var(--df-line);
}

.df-proof-row > div {
    min-width: 0;
    padding: 0 1.3rem;
    border-right: 1px solid var(--df-line);
}

.df-proof-row > div:first-child {
    padding-left: 0;
}

.df-proof-row > div:last-child {
    padding-right: 0;
    border-right: 0;
}

.df-proof-row strong,
.df-proof-row span {
    display: block;
}

.df-proof-row strong {
    color: var(--df-ink);
    font-family: "Outfit", sans-serif;
    font-size: 1rem;
}

.df-proof-row span {
    margin-top: 0.35rem;
    color: var(--df-muted);
    font-size: 0.76rem;
    line-height: 1.45;
}

.df-industry-strip {
    padding: 0 0 clamp(6rem, 11vw, 10rem);
}

.df-industry-strip .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.df-industry-strip .container > span {
    flex: 0 0 auto;
    color: var(--df-muted);
    font-family: "Space Mono", monospace;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.df-industry-strip ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0;
    margin: 0;
    padding: 0;
    color: #5c626c;
    list-style: none;
}

.df-industry-strip li {
    display: flex;
    align-items: center;
    font-size: 0.78rem;
    white-space: nowrap;
}

.df-industry-strip li:not(:last-child)::after {
    content: "";
    width: 3px;
    height: 3px;
    margin: 0 0.8rem;
    border-radius: 50%;
    background: var(--df-orange);
}

.df-offers {
    padding: clamp(5rem, 10vw, 9rem) 0 clamp(6rem, 11vw, 10rem);
    border-top: 1px solid rgba(17, 21, 29, 0.08);
    background:
        radial-gradient(circle at 90% 8%, rgba(121, 169, 255, 0.11), transparent 28rem),
        linear-gradient(180deg, rgba(255, 255, 255, 0.67), rgba(247, 244, 238, 0.86));
}

.df-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(260px, 0.72fr);
    column-gap: clamp(2rem, 8vw, 8rem);
    align-items: end;
    margin-bottom: clamp(3rem, 7vw, 5.6rem);
}

.df-section-heading .df-kicker {
    grid-column: 1 / -1;
    margin-bottom: 1.1rem;
}

.df-section-heading h2,
.df-platform-heading h2,
.df-work h2,
.df-faq-heading h2,
.df-security-intro h2 {
    font-size: clamp(2.85rem, 6vw, 6.1rem);
    line-height: 0.96;
}

.df-section-heading > p {
    margin: 0 0 0.35rem;
    color: var(--df-muted);
    font-size: 0.96rem;
    line-height: 1.75;
}

.df-offer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
}

.df-offer-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--df-line);
    border-radius: 28px;
    background: rgba(255, 253, 249, 0.8);
    box-shadow: 0 30px 65px -54px rgba(17, 21, 29, 0.55);
    transition: transform 240ms ease, box-shadow 240ms ease;
}

.df-offer-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 40px 80px -50px rgba(17, 21, 29, 0.45);
}

.df-offer-visual {
    position: relative;
    min-height: 410px;
    overflow: hidden;
    background: #0a0f18;
}

.df-offer-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 11, 18, 0.04) 40%, rgba(7, 11, 18, 0.82) 100%);
    pointer-events: none;
}

.df-offer-visual > img {
    width: 100%;
    height: 100%;
    min-height: 410px;
    object-fit: cover;
    transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.df-offer-card:hover .df-offer-visual > img {
    transform: scale(1.035);
}

.df-offer-audit > img {
    object-position: 50% 36%;
}

.df-offer-build > img {
    object-position: 50% 62%;
}

.df-offer-optimize > img {
    object-position: 50% 52%;
}

.df-ui-panel,
.df-ui-metric,
.df-ui-stack {
    position: absolute;
    z-index: 2;
    right: 1.2rem;
    bottom: 1.2rem;
    left: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.13);
    color: #fff;
    background: rgba(10, 15, 24, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.df-ui-panel,
.df-ui-metric {
    padding: 1rem;
    border-radius: 16px;
}

.df-ui-panel small,
.df-ui-panel strong,
.df-ui-metric small,
.df-ui-metric strong {
    display: block;
}

.df-ui-panel small,
.df-ui-metric small {
    color: rgba(255, 255, 255, 0.45);
    font-family: "Space Mono", monospace;
    font-size: 0.58rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.df-ui-panel strong,
.df-ui-metric strong {
    margin-top: 0.3rem;
    font-size: 0.86rem;
}

.df-ui-bars {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-top: 0.75rem;
}

.df-ui-bars i {
    display: block;
    width: var(--bar);
    height: 5px;
    border-radius: 9px;
    background: linear-gradient(90deg, var(--df-orange), #ffd6af);
}

.df-ui-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
    padding: 0.7rem;
    border-radius: 16px;
}

.df-ui-stack span {
    padding: 0.72rem 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.035);
    font-size: 0.65rem;
}

.df-ui-metric > span {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.75rem;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.65rem;
}

.df-ui-metric > span i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #6ee7a2;
    box-shadow: 0 0 10px rgba(110, 231, 162, 0.75);
}

.df-offer-copy {
    padding: 1.7rem 1.65rem 1.9rem;
}

.df-offer-copy > span {
    color: #8a7562;
    font-family: "Space Mono", monospace;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.df-offer-copy h3 {
    margin-top: 0.8rem;
    font-size: clamp(1.65rem, 2.6vw, 2.25rem);
    letter-spacing: -0.04em;
}

.df-offer-copy p {
    min-height: 5.3rem;
    margin: 0.95rem 0 1.3rem;
    color: var(--df-muted);
    font-size: 0.86rem;
    line-height: 1.7;
}

.df-offer-copy a,
.df-text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--df-ink);
    font-size: 0.77rem;
    font-weight: 700;
    text-decoration: none;
}

.df-statement {
    padding: clamp(7rem, 14vw, 13rem) 0;
    color: #fff;
    background:
        radial-gradient(circle at 78% 30%, rgba(244, 122, 24, 0.17), transparent 28rem),
        radial-gradient(circle at 15% 90%, rgba(121, 169, 255, 0.11), transparent 24rem),
        var(--df-night);
}

.df-statement .df-kicker {
    color: rgba(255, 255, 255, 0.46);
}

.df-statement h2 {
    margin-top: 2.2rem;
    font-size: clamp(3.2rem, 7vw, 7.4rem);
    line-height: 0.96;
}

.df-platform {
    padding: clamp(6rem, 12vw, 11rem) 0;
    color: #fff;
    background: var(--df-night);
}

.df-platform-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(260px, 0.65fr);
    gap: clamp(2rem, 8vw, 7rem);
    align-items: end;
    padding-top: clamp(2rem, 4vw, 4rem);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.df-platform-heading .df-kicker {
    grid-column: 1 / -1;
    color: rgba(255, 255, 255, 0.44);
}

.df-platform-heading > p {
    margin: 0;
    color: rgba(255, 255, 255, 0.57);
    font-size: 0.94rem;
    line-height: 1.8;
}

.df-platform-board {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
    gap: 1rem;
    margin-top: clamp(3.5rem, 7vw, 6rem);
}

.df-platform-media {
    position: relative;
    min-height: 690px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    background: var(--df-night-2);
}

.df-platform-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(5, 8, 14, 0.7) 100%);
}

.df-platform-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.df-platform-media > span {
    position: absolute;
    z-index: 1;
    bottom: 1.5rem;
    left: 1.5rem;
    padding: 0.68rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.72);
    background: rgba(7, 11, 18, 0.75);
    font-family: "Space Mono", monospace;
    font-size: 0.59rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}

.df-layer-list {
    display: grid;
    grid-template-rows: repeat(5, 1fr);
    gap: 0.7rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.df-layer-list li {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    min-height: 126px;
    padding: 1.15rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 22px;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
    transition: border-color 180ms ease, background 180ms ease;
}

.df-layer-list li:hover {
    border-color: rgba(244, 122, 24, 0.42);
    background: linear-gradient(120deg, rgba(244, 122, 24, 0.11), rgba(255, 255, 255, 0.025));
}

.df-layer-list li > span {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 50%;
    color: var(--df-orange-light);
    font-family: "Space Mono", monospace;
    font-size: 0.58rem;
}

.df-layer-list strong,
.df-layer-list small {
    display: block;
}

.df-layer-list strong {
    font-size: 1rem;
}

.df-layer-list small {
    margin-top: 0.28rem;
    color: rgba(255, 255, 255, 0.43);
    font-size: 0.68rem;
    line-height: 1.45;
}

.df-layer-list li > i {
    color: rgba(255, 255, 255, 0.42);
    font-family: "Space Mono", monospace;
    font-size: 0.56rem;
    font-style: normal;
    text-align: right;
}

.df-work {
    padding: clamp(6rem, 12vw, 11rem) 0;
    background:
        radial-gradient(circle at 8% 16%, rgba(244, 122, 24, 0.08), transparent 24rem),
        #f6f2ea;
}

.df-heading-row {
    grid-template-columns: 1fr auto;
    align-items: end;
}

.df-heading-row > div h2 {
    margin-top: 0.9rem;
}

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

.df-work-card {
    position: relative;
    display: flex;
    min-height: 500px;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
    padding: 1.65rem;
    border: 1px solid transparent;
    border-radius: 28px;
    color: inherit;
    text-decoration: none;
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.df-work-card:hover {
    color: inherit;
    transform: translateY(-6px);
    box-shadow: 0 36px 72px -50px rgba(17, 21, 29, 0.5);
}

.df-work-card::before {
    content: "";
    position: absolute;
    right: -18%;
    bottom: -5%;
    width: 85%;
    aspect-ratio: 1;
    border: 1px solid currentColor;
    border-radius: 50%;
    opacity: 0.09;
}

.df-work-card::after {
    content: "";
    position: absolute;
    right: 8%;
    bottom: 7%;
    width: 42%;
    aspect-ratio: 1;
    border: 1px solid currentColor;
    border-radius: 50%;
    opacity: 0.11;
}

.df-work-card > span {
    position: relative;
    z-index: 1;
    font-family: "Space Mono", monospace;
    font-size: 0.6rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    opacity: 0.62;
}

.df-work-card > strong {
    position: relative;
    z-index: 1;
    margin-top: auto;
    font-family: "Outfit", sans-serif;
    font-size: clamp(4.5rem, 7.5vw, 7rem);
    letter-spacing: -0.07em;
    line-height: 0.86;
}

.df-work-card h3 {
    position: relative;
    z-index: 1;
    margin-top: 0.75rem;
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    letter-spacing: -0.04em;
}

.df-work-card p {
    position: relative;
    z-index: 1;
    max-width: 310px;
    margin: 1rem 0 0;
    font-size: 0.79rem;
    line-height: 1.65;
    opacity: 0.66;
}

.df-work-card > i {
    position: absolute;
    z-index: 1;
    right: 1.5rem;
    bottom: 1.5rem;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: 0.72rem;
    opacity: 0.5;
}

.df-work-card-dark {
    color: #fff;
    background: #121821;
}

.df-work-card-orange {
    color: #24150b;
    background: #f58a31;
}

.df-work-card-light {
    border-color: var(--df-line);
    color: var(--df-ink);
    background: #fffdf9;
}

.df-proof-note {
    margin: 1.2rem 0 0;
    color: var(--df-muted);
    font-size: 0.68rem;
    line-height: 1.55;
}

.df-founder {
    padding: 0 0 clamp(6rem, 12vw, 11rem);
    background: #f6f2ea;
}

.df-founder-card {
    display: grid;
    grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
    overflow: hidden;
    border: 1px solid var(--df-line);
    border-radius: 36px;
    background: #fffdf9;
    box-shadow: 0 36px 90px -68px rgba(17, 21, 29, 0.6);
}

.df-founder-photo {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background: #ded5cc;
}

.df-founder-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 62%, rgba(10, 13, 19, 0.2) 100%);
    pointer-events: none;
}

.df-founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transform: scale(1.01);
}

.df-founder-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2.3rem, 6vw, 6rem);
}

.df-founder-copy blockquote {
    max-width: 700px;
    margin-top: 1.6rem;
    font-size: clamp(2.4rem, 4.6vw, 4.8rem);
    line-height: 1.02;
}

.df-founder-copy > p {
    max-width: 650px;
    margin: 1.8rem 0 0;
    color: var(--df-muted);
    font-size: 0.93rem;
    line-height: 1.8;
}

.df-founder-meta {
    margin: 2rem 0 1.2rem;
    padding-top: 1.4rem;
    border-top: 1px solid var(--df-line);
}

.df-founder-meta strong,
.df-founder-meta span {
    display: block;
}

.df-founder-meta strong {
    font-size: 0.86rem;
}

.df-founder-meta span {
    margin-top: 0.3rem;
    color: var(--df-muted);
    font-size: 0.7rem;
}

.df-security {
    padding: clamp(6rem, 12vw, 10rem) 0;
    color: #fff;
    background:
        linear-gradient(110deg, rgba(244, 122, 24, 0.06), transparent 44%),
        #121821;
}

.df-security .container {
    display: grid;
    grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
    gap: clamp(3rem, 9vw, 9rem);
}

.df-security .df-kicker {
    color: rgba(255, 255, 255, 0.44);
}

.df-security-intro h2 {
    margin-top: 1.2rem;
}

.df-security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-content: center;
}

.df-security-grid > div {
    min-height: 190px;
    padding: 1.6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.df-security-grid > div:nth-child(odd) {
    border-left: 0;
}

.df-security-grid i {
    color: var(--df-orange-light);
    font-size: 1.2rem;
}

.df-security-grid strong,
.df-security-grid span {
    display: block;
}

.df-security-grid strong {
    margin-top: 2rem;
    font-size: 0.95rem;
}

.df-security-grid span {
    max-width: 260px;
    margin-top: 0.55rem;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.72rem;
    line-height: 1.65;
}

.df-faq {
    padding: clamp(6rem, 12vw, 11rem) 0;
    background: #f6f2ea;
}

.df-faq .container {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(3rem, 9vw, 9rem);
}

.df-faq-heading h2 {
    margin-top: 1.2rem;
}

.df-faq-heading p {
    max-width: 300px;
    margin: 1.2rem 0 0;
    color: var(--df-muted);
    font-size: 0.85rem;
    line-height: 1.7;
}

.df-faq-list {
    border-top: 1px solid var(--df-line);
}

.df-faq-list details {
    border-bottom: 1px solid var(--df-line);
}

.df-faq-list summary {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: 1.65rem 0;
    color: var(--df-ink);
    cursor: pointer;
    font-family: "Outfit", sans-serif;
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
    font-weight: 600;
    letter-spacing: -0.025em;
    list-style: none;
}

.df-faq-list summary::-webkit-details-marker {
    display: none;
}

.df-faq-list summary i {
    color: var(--df-orange);
    font-size: 0.75rem;
    transition: transform 180ms ease;
}

.df-faq-list details[open] summary i {
    transform: rotate(45deg);
}

.df-faq-list details p {
    max-width: 700px;
    margin: -0.5rem 0 1.65rem;
    padding-right: 3rem;
    color: var(--df-muted);
    font-size: 0.83rem;
    line-height: 1.75;
}

.df-final-cta {
    position: relative;
    padding: clamp(7rem, 15vw, 14rem) 0;
    color: #fff;
    background:
        radial-gradient(circle at 74% 48%, rgba(244, 122, 24, 0.25), transparent 30rem),
        radial-gradient(circle at 20% 85%, rgba(121, 169, 255, 0.12), transparent 26rem),
        #080c13;
    text-align: center;
}

.df-final-cta::before {
    content: "";
    position: absolute;
    top: 10%;
    left: 50%;
    width: min(78vw, 960px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
    transform: translateX(-50%);
}

.df-final-cta .df-kicker {
    color: rgba(255, 255, 255, 0.46);
}

.df-final-cta h2 {
    max-width: 1120px;
    margin: 1.5rem auto 0;
    font-size: clamp(3.2rem, 7.8vw, 8rem);
    line-height: 0.92;
}

.df-final-cta > .container > p {
    max-width: 620px;
    margin: 1.8rem auto 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.95rem;
    line-height: 1.75;
}

.df-button-dark {
    border-color: rgba(255, 255, 255, 0.16);
    color: #fff;
    background: rgba(255, 255, 255, 0.055);
}

.df-button-dark:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.home-v2 footer {
    padding: 5rem 0 0;
    background: #070a10;
}

.home-v2 .footer-grid {
    padding-bottom: 4rem;
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.home-v2 .footer-logo {
    display: block;
    width: 170px;
}

.home-v2 .footer-col > p,
.home-v2 .footer-col li,
.home-v2 .footer-col a,
.home-v2 .footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
}

.home-v2 .footer-col h4 {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.75rem;
}

.home-v2 .social-links a {
    border-color: rgba(255, 255, 255, 0.11);
}

.home-v2 a:focus-visible,
.home-v2 button:focus-visible,
.home-v2 summary:focus-visible {
    outline: 3px solid rgba(244, 122, 24, 0.48);
    outline-offset: 4px;
}

@media (max-width: 1120px) {
    .home-v2 .nav-menu {
        gap: 1.25rem;
    }

    .df-section-heading {
        grid-template-columns: minmax(0, 1.5fr) minmax(240px, 0.75fr);
    }

    .df-offer-visual,
    .df-offer-visual > img {
        min-height: 350px;
    }

    .df-platform-board {
        grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
    }

    .df-layer-list li {
        grid-template-columns: auto 1fr;
    }

    .df-layer-list li > i {
        display: none;
    }
}

@media (max-width: 900px) {
    .home-v2 .container {
        width: min(100% - 36px, 1320px);
    }

    .home-v2 .navbar {
        height: 74px;
    }

    .home-v2 .logo {
        width: 154px;
    }

    .home-v2 .mobile-menu-btn {
        display: grid;
        width: 44px;
        height: 44px;
        margin-left: 0.45rem;
        padding: 0;
        place-items: center;
        border: 1px solid rgba(255, 255, 255, 0.13);
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.05);
    }

    .home-v2 .nav-menu {
        position: fixed;
        top: 74px;
        right: 18px;
        left: 18px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.7rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        background: rgba(9, 13, 21, 0.98);
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
    }

    .home-v2 .nav-menu.active {
        display: flex;
    }

    .home-v2 .nav-link {
        display: block;
        padding: 0.9rem 1rem;
        border-radius: 12px;
        color: rgba(255, 255, 255, 0.75);
        font-size: 0.9rem;
    }

    .home-v2 .nav-link:hover {
        background: rgba(255, 255, 255, 0.06);
    }

    .home-v2 .nav-link::after {
        display: none;
    }

    .df-hero {
        padding-top: 9.7rem;
    }

    .df-hero-stage {
        min-height: 560px;
    }

    .df-stage-card-side {
        top: auto;
        right: 1.2rem;
        bottom: 5.8rem;
        left: 1.2rem;
        width: auto;
    }

    .df-stage-card-top {
        top: 1.2rem;
        left: 1.2rem;
    }

    .df-stage-flow {
        right: 1.2rem;
        bottom: 1.2rem;
        left: 1.2rem;
    }

    .df-proof-row {
        grid-template-columns: 1fr 1fr;
    }

    .df-proof-row > div {
        padding: 1.2rem;
        border-bottom: 1px solid var(--df-line);
    }

    .df-proof-row > div:first-child {
        padding-left: 1.2rem;
    }

    .df-proof-row > div:nth-child(2) {
        border-right: 0;
    }

    .df-proof-row > div:nth-child(3),
    .df-proof-row > div:nth-child(4) {
        border-bottom: 0;
    }

    .df-offer-grid,
    .df-work-grid {
        grid-template-columns: 1fr;
    }

    .df-offer-card {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .df-offer-visual,
    .df-offer-visual > img {
        min-height: 420px;
    }

    .df-offer-copy {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
    }

    .df-offer-copy p {
        min-height: 0;
    }

    .df-platform-heading,
    .df-section-heading {
        grid-template-columns: 1fr;
    }

    .df-section-heading > p,
    .df-platform-heading > p {
        max-width: 620px;
        margin-top: 1.2rem;
    }

    .df-platform-board {
        grid-template-columns: 1fr;
    }

    .df-platform-media {
        min-height: 600px;
    }

    .df-layer-list {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .df-layer-list li:last-child {
        grid-column: 1 / -1;
    }

    .df-work-card {
        min-height: 390px;
    }

    .df-founder-card {
        grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
    }

    .df-founder-photo {
        min-height: 550px;
    }

    .df-security .container,
    .df-faq .container {
        grid-template-columns: 1fr;
    }

    .df-security-intro h2 br {
        display: none;
    }
}

@media (max-width: 680px) {
    .home-v2 .container {
        width: min(100% - 28px, 1320px);
    }

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

    .df-hero {
        padding-top: 8.8rem;
    }

    .df-hero h1 {
        font-size: clamp(3rem, 14vw, 4.55rem);
        line-height: 0.94;
    }

    .df-hero-copy > p {
        font-size: 0.96rem;
        line-height: 1.65;
    }

    .df-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .df-button {
        width: 100%;
    }

    .df-hero-stage {
        min-height: 520px;
        border-radius: 24px;
    }

    .df-hero-stage > img {
        object-position: 50% 63%;
    }

    .df-stage-card-top {
        right: 1rem;
        left: 1rem;
    }

    .df-stage-card-side {
        right: 1rem;
        bottom: 6.25rem;
        left: 1rem;
    }

    .df-stage-flow {
        right: 1rem;
        bottom: 1rem;
        left: 1rem;
        grid-template-columns: 1fr 1fr;
        gap: 0.55rem;
        padding: 0.75rem;
    }

    .df-stage-flow i {
        display: none;
    }

    .df-stage-flow span {
        padding: 0.5rem;
        border: 1px solid rgba(255, 255, 255, 0.07);
        border-radius: 8px;
        text-align: center;
    }

    .df-proof-row {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .df-proof-row > div,
    .df-proof-row > div:first-child,
    .df-proof-row > div:nth-child(3) {
        padding: 1rem 0;
        border-right: 0;
        border-bottom: 1px solid var(--df-line);
    }

    .df-proof-row > div:last-child {
        border-bottom: 0;
    }

    .df-industry-strip .container {
        align-items: flex-start;
        flex-direction: column;
    }

    .df-industry-strip ul {
        justify-content: flex-start;
    }

    .df-section-heading h2,
    .df-platform-heading h2,
    .df-work h2,
    .df-faq-heading h2,
    .df-security-intro h2 {
        font-size: clamp(2.65rem, 12vw, 4rem);
    }

    .df-offer-card {
        display: block;
        border-radius: 23px;
    }

    .df-offer-visual,
    .df-offer-visual > img {
        min-height: 390px;
    }

    .df-statement h2 {
        font-size: clamp(2.9rem, 13vw, 4.6rem);
    }

    .df-statement h2 br {
        display: none;
    }

    .df-platform-media {
        min-height: 500px;
        border-radius: 24px;
    }

    .df-layer-list {
        grid-template-columns: 1fr;
    }

    .df-layer-list li,
    .df-layer-list li:last-child {
        grid-column: auto;
    }

    .df-work-card {
        min-height: 420px;
        border-radius: 23px;
    }

    .df-heading-row {
        grid-template-columns: 1fr;
    }

    .df-heading-row .df-text-link {
        margin-top: 1.2rem;
    }

    .df-founder-card {
        grid-template-columns: 1fr;
        border-radius: 24px;
    }

    .df-founder-photo {
        min-height: 0;
        aspect-ratio: 1 / 1.03;
    }

    .df-founder-copy {
        padding: 2rem 1.5rem 2.3rem;
    }

    .df-founder-copy blockquote {
        font-size: clamp(2.2rem, 10vw, 3.2rem);
    }

    .df-security-grid {
        grid-template-columns: 1fr;
    }

    .df-security-grid > div,
    .df-security-grid > div:nth-child(odd) {
        min-height: 0;
        padding: 1.5rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-left: 0;
    }

    .df-security-grid strong {
        margin-top: 1rem;
    }

    .df-faq-list details p {
        padding-right: 0;
    }

    .df-final-cta h2 {
        font-size: clamp(3rem, 14vw, 4.8rem);
    }

    .home-v2 .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .home-v2 .footer-grid .footer-col:first-child,
    .home-v2 .footer-grid .footer-col:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 420px) {
    .home-v2 .logo {
        width: 142px;
    }

    .df-eyebrow,
    .df-kicker {
        font-size: 0.61rem;
    }

    .df-stage-pills {
        grid-template-columns: 1fr 1fr;
    }

    .df-stage-card-side {
        bottom: 6.8rem;
    }

    .df-offer-visual,
    .df-offer-visual > img {
        min-height: 350px;
    }

    .home-v2 .footer-grid {
        grid-template-columns: 1fr;
    }

    .home-v2 .footer-grid .footer-col:first-child,
    .home-v2 .footer-grid .footer-col:last-child {
        grid-column: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-v2 *,
    .home-v2 *::before,
    .home-v2 *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
