* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding-bottom: 4.5rem;
    background:
        linear-gradient(180deg, rgba(0, 186, 150, .08) 0, rgba(18, 18, 21, .42) 20rem, rgba(9, 9, 11, 0) 42rem),
        var(--bg-100);
    color: var(--text-100);
    font-family: var(--font-primary);
}

a {
    color: inherit;
}

img {
    max-width: 100%;
}

.local-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1em;
    height: 1em;
    flex: 0 0 auto;
    color: currentColor;
    line-height: 1;
    vertical-align: -0.125em;
}

.local-icon__svg {
    display: block;
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: .75rem;
    min-height: 4.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding: .75rem 1rem;
    background-color: rgba(9, 9, 11, .88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    width: fit-content;
    color: var(--text-100);
    font-size: 1.05rem;
    font-weight: 800;
    text-decoration: none;
}

.brand-lockup img {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(0, 186, 150, .22);
}

.nav-toggle {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.nav-toggle-button {
    display: inline-grid;
    place-items: center;
    gap: .25rem;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid var(--border-100);
    border-radius: 8px;
    background-color: var(--bg-200);
}

.nav-toggle-button span {
    display: block;
    width: 1rem;
    height: 2px;
    border-radius: 8px;
    background-color: var(--text-100);
}

.site-nav {
    display: none;
    grid-column: 1 / -1;
    gap: .45rem;
    border: 1px solid var(--border-100);
    border-radius: 8px;
    padding: .55rem;
    background-color: var(--bg-200);
}

.nav-toggle:checked ~ .site-nav {
    display: grid;
}

.site-nav a {
    display: flex;
    min-height: 2.65rem;
    align-items: center;
    border-radius: 8px;
    padding: 0 .85rem;
    color: var(--text-200);
    font-family: var(--font-secondary);
    font-size: .95rem;
    font-weight: 700;
    text-decoration: none;
    transition: color .2s ease, background-color .2s ease;
}

.site-nav a:hover {
    background-color: var(--bg-300);
    color: var(--text-100);
}

.nav-login {
    color: var(--primary-100) !important;
}

.header-actions {
    display: none;
}

.header-login,
.header-contact,
.primary-action,
.secondary-action,
.dagdev-section a,
.plan-card a,
.mobile-sticky-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    min-height: 2.85rem;
    border-radius: 8px;
    padding: 0 1rem;
    font-family: var(--font-secondary);
    font-weight: 800;
    text-decoration: none;
    transition:
        transform .2s ease,
        border-color .2s ease,
        background-color .2s ease,
        color .2s ease,
        box-shadow .2s ease;
}

.header-login,
.secondary-action,
.dagdev-section a {
    border: 1px solid var(--border-100);
    background-color: rgba(18, 18, 21, .78);
    color: var(--text-100);
}

.header-contact,
.primary-action,
.plan-card a,
.mobile-sticky-cta {
    border: 1px solid var(--primary-100);
    background-color: var(--primary-100);
    color: var(--bg-100);
    box-shadow: 0 16px 34px rgba(0, 186, 150, .18);
}

.hero-section {
    position: relative;
    min-height: calc(100svh - 5.5rem);
    overflow: hidden;
    border-bottom: 1px solid var(--border-100);
    background:
        linear-gradient(135deg, rgba(0, 186, 150, .16), transparent 40%),
        linear-gradient(315deg, rgba(230, 54, 19, .1), transparent 44%),
        linear-gradient(180deg, rgba(244, 244, 245, .035), transparent 55%),
        var(--bg-100);
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .18;
    background-image:
        linear-gradient(rgba(244, 244, 245, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(244, 244, 245, .08) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: linear-gradient(180deg, black, transparent 88%);
    pointer-events: none;
}

.hero-copy {
    position: relative;
    z-index: 2;
    display: grid;
    align-content: center;
    min-height: calc(100svh - 5.5rem);
    width: min(100% - 2rem, 43rem);
    margin: 0 auto;
    padding: 5rem 0 11rem;
}

.eyebrow {
    margin: 0 0 .8rem;
    color: var(--accent-100);
    font-family: var(--font-secondary);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.dagdev-section h2,
.final-cta h2 {
    margin: 0;
    color: var(--text-100);
    line-height: 1.04;
}

.hero-copy h1 {
    max-width: 11ch;
    font-size: 3.35rem;
}

.hero-text,
.section-heading p,
.comparison-card li,
.feature-grid p,
.workflow-list p,
.dagdev-section p,
.final-cta-copy > p:not(.eyebrow),
.proof-strip span,
.plan-note {
    color: var(--text-200);
    font-family: var(--font-secondary);
    line-height: 1.62;
}

.hero-text {
    max-width: 36rem;
    margin: 1.1rem 0 0;
    font-size: 1rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    margin-top: 1.5rem;
}

.hero-actions a {
    flex: 1 1 13rem;
}

.hero-visual {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.catalog-phone {
    position: absolute;
    right: -2.8rem;
    bottom: 1.2rem;
    width: 16rem;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 2rem;
    padding: .85rem;
    background:
        linear-gradient(180deg, rgba(28, 28, 33, .96), rgba(9, 9, 11, .96));
    box-shadow: 0 24px 80px rgba(0, 0, 0, .48);
    transform: rotate(-3deg);
    animation: heroFloat 5s ease-in-out infinite;
}

.phone-speaker {
    width: 4rem;
    height: .35rem;
    border-radius: 8px;
    margin: 0 auto .75rem;
    background-color: var(--border-100);
}

.phone-card {
    display: grid;
    gap: .75rem;
    border: 1px solid var(--border-100);
    border-radius: 1.2rem;
    padding: .7rem;
    background-color: var(--bg-100);
}

.vehicle-art {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(0, 186, 150, .38), rgba(230, 54, 19, .22)),
        var(--bg-300);
}

.vehicle-art img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vehicle-meta {
    display: grid;
    gap: .25rem;
}

.vehicle-meta span,
.vehicle-meta small {
    color: var(--text-200);
    font-family: var(--font-secondary);
    font-size: .78rem;
}

.vehicle-meta strong {
    color: var(--text-100);
    font-size: 1rem;
}

.phone-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    min-height: 2.35rem;
    border-radius: 8px;
    background-color: var(--primary-100);
    color: var(--bg-100);
    font-family: var(--font-secondary);
    font-weight: 800;
}

.proof-strip,
.problem-section,
.section-block,
.workflow-section,
.dagdev-section,
.final-cta,
.site-footer {
    width: min(100% - 2rem, 1120px);
    margin: 0 auto;
}

.proof-strip {
    display: grid;
    gap: .7rem;
    padding-top: 1rem;
}

.proof-strip div {
    display: grid;
    gap: .25rem;
    border: 1px solid var(--border-100);
    border-radius: 8px;
    padding: 1rem;
    background-color: rgba(18, 18, 21, .82);
}

.proof-strip strong {
    color: var(--text-100);
}

.proof-strip span {
    font-size: .9rem;
}

.problem-section,
.section-block,
.workflow-section,
.dagdev-section,
.final-cta {
    padding-top: 4.25rem;
}

.section-heading {
    max-width: 42rem;
    margin-bottom: 1.3rem;
}

.section-heading h2,
.dagdev-section h2,
.final-cta h2 {
    font-size: 2rem;
}

.section-heading p {
    margin: .85rem 0 0;
}

.comparison-grid,
.feature-grid,
.workflow-list,
.plan-grid {
    display: grid;
    gap: .85rem;
}

.comparison-card,
.feature-grid article,
.workflow-list article,
.plan-card,
.final-cta {
    border: 1px solid var(--border-100);
    border-radius: 8px;
    background-color: rgba(18, 18, 21, .9);
    box-shadow: 0 18px 46px rgba(0, 0, 0, .18);
}

.comparison-card,
.feature-grid article,
.workflow-list article,
.plan-card {
    padding: 1rem;
}

.comparison-card span,
.plan-badge {
    display: inline-flex;
    width: fit-content;
    border-radius: 8px;
    padding: .25rem .55rem;
    background-color: var(--bg-300);
    color: var(--text-200);
    font-family: var(--font-secondary);
    font-size: .75rem;
    font-weight: 800;
}

.comparison-card h3,
.feature-grid h3,
.workflow-list h3,
.plan-card h3 {
    margin: .85rem 0 .45rem;
    color: var(--text-100);
    font-size: 1.1rem;
    line-height: 1.18;
}

.comparison-card ul,
.plan-card ul {
    display: grid;
    gap: .55rem;
    margin: .8rem 0 0;
    padding: 0;
    list-style: none;
}

.comparison-card li,
.plan-card li {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    font-size: .93rem;
}

.comparison-card li::before,
.plan-card li::before {
    content: "";
    flex: 0 0 .5rem;
    width: .5rem;
    height: .5rem;
    border-radius: 50%;
    margin-top: .5rem;
    background-color: var(--primary-100);
}

.before-card {
    background:
        linear-gradient(135deg, rgba(239, 68, 68, .08), transparent),
        rgba(18, 18, 21, .9);
}

.after-card {
    border-color: rgba(0, 186, 150, .45);
    background:
        linear-gradient(135deg, rgba(0, 186, 150, .13), transparent),
        rgba(18, 18, 21, .9);
}

.after-card span {
    background-color: rgba(0, 186, 150, .14);
    color: var(--primary-100);
}

.feature-grid article {
    display: grid;
    align-content: start;
    min-height: 11rem;
}

.feature-grid .local-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 8px;
    margin-bottom: .8rem;
    background-color: var(--bg-100);
    color: var(--primary-100);
    font-size: 1rem;
}

.feature-grid p,
.workflow-list p {
    margin: 0;
    font-size: .95rem;
}

.workflow-list article {
    position: relative;
    overflow: hidden;
}

.workflow-list article::after {
    content: "";
    position: absolute;
    right: 1rem;
    top: 1rem;
    width: 3.4rem;
    height: 3.4rem;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
    transform: rotate(8deg);
}

.workflow-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 8px;
    background-color: rgba(230, 54, 19, .13);
    color: var(--accent-100);
    font-family: var(--font-secondary);
    font-size: .82rem;
    font-weight: 900;
}

.plans-section {
    padding-bottom: 1rem;
}

.plan-card {
    display: grid;
    gap: 1rem;
    align-content: start;
}

.featured-plan {
    border-color: rgba(0, 186, 150, .68);
    background:
        linear-gradient(180deg, rgba(0, 186, 150, .12), transparent 38%),
        rgba(18, 18, 21, .94);
}

.plan-badge {
    background-color: var(--primary-100);
    color: var(--bg-100);
}

.plan-top p {
    margin: .5rem 0 0;
    color: var(--text-200);
    font-family: var(--font-secondary);
}

.plan-top strong {
    color: var(--primary-100);
    font-size: 1.18rem;
}

.plan-card a {
    width: 100%;
    margin-top: .25rem;
}

.plan-card li {
    color: var(--text-200);
    font-family: var(--font-secondary);
}

.plan-note {
    max-width: 50rem;
    margin: 1rem auto 0;
    text-align: center;
    font-size: .92rem;
}

.dagdev-section {
    display: grid;
    gap: 1rem;
    align-items: center;
    border-top: 1px solid var(--border-100);
}

.dagdev-section div {
    max-width: 44rem;
}

.dagdev-section a {
    width: fit-content;
}

.final-cta {
    display: grid;
    gap: .9rem;
    margin-top: 4rem;
    padding: 1.5rem;
    background:
        linear-gradient(135deg, rgba(0, 186, 150, .16), rgba(230, 54, 19, .08)),
        var(--bg-200);
}

.final-cta-copy {
    display: grid;
    gap: .8rem;
    max-width: 46rem;
}

.final-cta-copy p {
    max-width: 40rem;
    margin: 0;
}

.site-footer {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    padding: 2rem 0;
    color: var(--text-200);
    font-family: var(--font-secondary);
}

.site-footer span {
    color: var(--dag-brand-100);
    font-weight: 900;
}

.mobile-sticky-cta {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 35;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .55s ease, transform .55s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes heroFloat {
    0%, 100% {
        transform: rotate(-3deg) translateY(0);
    }
    50% {
        transform: rotate(-3deg) translateY(-10px);
    }
}

@media (hover: hover) {
    .header-login:hover,
    .header-contact:hover,
    .primary-action:hover,
    .secondary-action:hover,
    .dagdev-section a:hover,
    .plan-card a:hover {
        transform: translateY(-2px);
    }

    .header-login:hover,
    .secondary-action:hover,
    .dagdev-section a:hover {
        border-color: var(--primary-100);
        color: var(--primary-100);
        box-shadow: 0 14px 30px rgba(0, 186, 150, .12);
    }

    .header-contact:hover,
    .primary-action:hover,
    .plan-card a:hover {
        border-color: var(--accent-100);
        background-color: var(--accent-100);
        color: var(--bg-100);
        box-shadow: 0 18px 38px rgba(230, 54, 19, .18);
    }

    .feature-grid article,
    .plan-card,
    .comparison-card,
    .workflow-list article {
        transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
    }

    .feature-grid article:hover,
    .plan-card:hover,
    .comparison-card:hover,
    .workflow-list article:hover {
        transform: translateY(-4px);
        border-color: rgba(244, 244, 245, .18);
        box-shadow: 0 24px 58px rgba(0, 0, 0, .24);
    }
}

@media (min-width: 700px) {
    body {
        padding-bottom: 0;
    }

    .mobile-sticky-cta {
        display: none;
    }

    .hero-section {
        min-height: calc(100svh - 6rem);
    }

    .hero-copy {
        min-height: calc(100svh - 6rem);
        padding-bottom: 7rem;
    }

    .hero-copy h1 {
        font-size: 4.35rem;
    }

    .hero-text {
        font-size: 1.08rem;
    }

    .hero-actions a {
        flex: 0 1 auto;
    }

    .catalog-phone {
        right: 6%;
        bottom: 4rem;
        width: 19rem;
    }

    .proof-strip,
    .comparison-grid,
    .workflow-list {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .final-cta {
        padding: 2.25rem;
    }

    .site-footer {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

@media (min-width: 900px) {
    .site-header {
        grid-template-columns: auto 1fr auto;
        padding: .85rem max(1.5rem, calc((100% - 1180px) / 2));
    }

    .nav-toggle-button,
    .nav-login {
        display: none;
    }

    .site-nav {
        display: flex;
        grid-column: auto;
        justify-content: center;
        width: auto;
        border: 0;
        padding: 0;
        background: transparent;
    }

    .site-nav a {
        min-height: 2.45rem;
        padding: 0 .7rem;
    }

    .header-actions {
        display: flex;
        align-items: center;
        gap: .5rem;
    }

    .hero-copy {
        width: min(100% - 3rem, 1120px);
        margin: 0 auto;
    }

    .hero-copy h1,
    .hero-text {
        max-width: 42rem;
    }

    .hero-copy h1 {
        font-size: 5.4rem;
    }

    .catalog-phone {
        right: max(2rem, calc((100% - 1120px) / 2 + 2rem));
        width: 20.5rem;
    }

    .feature-grid,
    .plan-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .section-heading h2,
    .dagdev-section h2,
    .final-cta h2 {
        font-size: 2.75rem;
    }

    .dagdev-section {
        grid-template-columns: 1fr auto;
    }

    .final-cta {
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 2rem;
        padding: 3rem;
    }

    .final-cta .hero-actions {
        justify-content: flex-end;
        margin-top: 0;
    }
}

@media (min-width: 1180px) {
    .hero-copy h1 {
        font-size: 6.15rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .001ms !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
