:root {
    --ink: #17202a;
    --teal: #0f8f7a;
    --mint: #baf4e8;
    --amber: #f3b63f;
    --paper: #f7faf9
}

* {
    box-sizing: border-box
}

html {
    scroll-padding-top: 88px
}

body {
    overflow-x: hidden;
    background-image: linear-gradient(rgba(23, 32, 42, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(23, 32, 42, .025) 1px, transparent 1px);
    background-size: 44px 44px
}

#header.scrolled {
    background: rgba(247, 250, 249, .88);
    box-shadow: 0 10px 35px rgba(23, 32, 42, .07);
    backdrop-filter: blur(18px)
}

.nav-link {
    position: relative;
    transition: .25s
}

.nav-link:after {
    content: "";
    position: absolute;
    right: 100%;
    bottom: -8px;
    left: 0;
    height: 2px;
    background: var(--teal);
    transition: .25s
}

.nav-link:hover {
    color: var(--teal)
}

.nav-link:hover:after {
    right: 0
}

.mobile-link {
    display: block;
    border-radius: .75rem;
    padding: .8rem 1rem;
    font-weight: 700
}

.hero {
    background: radial-gradient(circle at 18% 22%, rgba(186, 244, 232, .62), transparent 24%), radial-gradient(circle at 88% 20%, rgba(243, 182, 63, .18), transparent 24%), var(--paper)
}

.orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(2px)
}

.orb-one {
    right: 4%;
    top: 15%;
    height: 130px;
    width: 130px;
    border: 24px solid rgba(15, 143, 122, .07)
}

.orb-two {
    bottom: 15%;
    left: -50px;
    height: 180px;
    width: 180px;
    background: rgba(243, 182, 63, .08)
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    border: 1px solid rgba(15, 143, 122, .18);
    border-radius: 999px;
    background: rgba(255, 255, 255, .8);
    padding: .6rem 1rem;
    color: var(--teal);
    font-size: .78rem;
    font-weight: 800;
    box-shadow: 0 8px 25px rgba(23, 32, 42, .05)
}

.pulse {
    position: relative;
    width: .55rem;
    height: .55rem;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 0 5px rgba(15, 143, 122, .12)
}

.scribble {
    position: relative;
    white-space: nowrap
}

.scribble:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 8px;
    border-radius: 50%;
    border-top: 3px solid var(--amber);
    transform: rotate(-1deg)
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    font-weight: 800;
    transition: .3s
}

.btn-primary {
    background: var(--amber);
    color: var(--ink);
    box-shadow: 0 12px 28px rgba(243, 182, 63, .28)
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(243, 182, 63, .38)
}

.btn-primary span {
    transition: .3s
}

.btn-primary:hover span {
    transform: translateX(4px)
}

.btn-secondary {
    border: 1px solid rgba(23, 32, 42, .12);
    background: white
}

.btn-secondary:hover {
    border-color: var(--teal);
    color: var(--teal)
}

.stat {
    display: flex;
    flex-direction: column
}

.stat strong {
    font: 800 clamp(.9rem, 2vw, 1.05rem) Manrope
}

.stat span {
    margin-top: .3rem;
    color: #64748b;
    font-size: .68rem;
    line-height: 1.3
}

.status-card {
    position: relative;
    border-radius: 2rem;
    background: var(--ink);
    padding: clamp(1.4rem, 4vw, 2rem);
    box-shadow: 0 30px 80px rgba(23, 32, 42, .25)
}

.rotate-card {
    transform: rotate(2deg);
    transition: .5s
}

.rotate-card:hover {
    transform: rotate(0) translateY(-5px)
}

.live-badge {
    border-radius: 999px;
    background: rgba(186, 244, 232, .12);
    padding: .4rem .75rem;
    color: var(--mint);
    font-size: .7rem;
    font-weight: 800
}

.timeline>div {
    position: relative;
    display: flex;
    gap: 1rem;
    padding-bottom: 1.5rem;
    color: #64748b
}

.timeline>div:not(:last-child):after {
    content: "";
    position: absolute;
    left: 6px;
    top: 14px;
    height: calc(100% - 4px);
    width: 1px;
    background: #34404d
}

.timeline span {
    position: relative;
    z-index: 1;
    margin-top: 5px;
    height: 13px;
    width: 13px;
    flex: none;
    border: 2px solid #64748b;
    border-radius: 50%;
    background: var(--ink)
}

.timeline .done span {
    border-color: var(--teal);
    background: var(--teal)
}

.timeline .active span {
    border-color: var(--amber);
    box-shadow: 0 0 0 5px rgba(243, 182, 63, .12)
}

.timeline .done,
.timeline .active {
    color: white
}

.timeline strong,
.timeline small {
    display: block
}

.timeline strong {
    font-size: .86rem
}

.timeline small {
    margin-top: .2rem;
    color: #8491a0;
    font-size: .7rem
}

.floating-note {
    position: absolute;
    display: flex;
    align-items: center;
    gap: .75rem;
    border-radius: 1rem;
    background: white;
    padding: .8rem 1rem;
    box-shadow: 0 18px 45px rgba(23, 32, 42, .16);
    animation: float 4s ease-in-out infinite
}

.floating-note small,
.floating-note strong {
    display: block
}

.floating-note small {
    font-size: .65rem;
    color: #64748b
}

.floating-note strong {
    font-size: .78rem
}

.note-left {
    bottom: 14%;
    left: -12%
}

.note-right {
    right: -10%;
    top: 22%;
    animation-delay: -2s
}

.note-icon {
    display: grid;
    width: 2.2rem;
    height: 2.2rem;
    place-items: center;
    border-radius: .7rem;
    background: var(--mint);
    color: var(--teal);
    font-weight: 900
}

.note-icon.amber {
    background: #fff2d7;
    color: #bb7500
}

@keyframes float {
    50% {
        transform: translateY(-9px)
    }
}

.logo-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1rem, 3vw, 3rem);
    overflow: hidden;
    border-top: 1px solid rgba(23, 32, 42, .08);
    background: rgba(255, 255, 255, .65);
    padding: 1.2rem;
    color: #64748b;
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    white-space: nowrap
}

.logo-strip i {
    height: 5px;
    width: 5px;
    border-radius: 50%;
    background: var(--amber)
}

.eyebrow {
    margin-bottom: 1rem;
    color: var(--teal);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase
}

.section-title {
    font: 800 clamp(2.25rem, 5vw, 3.75rem)/1.08 Manrope;
    letter-spacing: -.045em
}

.section-copy {
    margin-top: 1.25rem;
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.75
}

.service-card {
    border: 1px solid #e2e8f0;
    border-radius: 1.5rem;
    background: white;
    padding: 2rem;
    transition: .35s
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--teal);
    box-shadow: 0 24px 55px rgba(23, 32, 42, .1)
}

.service-card.mint-card {
    border-color: var(--mint);
    background: var(--mint)
}

.card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 3rem
}

.card-top>span {
    font: 800 2.5rem Manrope;
    color: #e3e9e7
}

.mint-card .card-top>span {
    color: rgba(15, 143, 122, .2)
}

.service-icon {
    display: grid;
    height: 3.2rem;
    width: 3.2rem;
    place-items: center;
    border-radius: 1rem;
    background: var(--ink);
    color: var(--amber);
    font-size: 1.25rem
}

.service-card h3,
.process-card h3 {
    font: 800 1.25rem Manrope
}

.service-card p,
.process-card p {
    margin-top: .8rem;
    color: #64748b;
    line-height: 1.7
}

.service-card a {
    display: inline-block;
    margin-top: 1.7rem;
    color: var(--teal);
    font-size: .85rem;
    font-weight: 800
}

.process-grid {
    position: relative;
    display: grid;
    gap: 1.25rem
}

.process-card {
    position: relative;
    border-radius: 1.5rem;
    background: white;
    padding: 2rem;
    box-shadow: 0 12px 36px rgba(23, 32, 42, .06);
    transition: .3s
}

.process-card:hover {
    transform: translateY(-6px)
}

.step-number {
    position: absolute;
    right: 1.5rem;
    top: 1.1rem;
    font: 800 3rem Manrope;
    color: #e9efed
}

.process-art {
    display: grid;
    margin-bottom: 2rem;
    height: 4rem;
    width: 4rem;
    place-items: center;
    border-radius: 1.2rem;
    background: var(--ink);
    color: var(--amber);
    font-size: 1.6rem
}

.price-card {
    position: relative;
    display: flex;
    min-height: 340px;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, .04);
    padding: 2rem;
    transition: .35s
}

.price-card:hover {
    transform: translateY(-7px);
    border-color: var(--mint)
}

.price-card>p:first-child {
    color: var(--mint);
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em
}

.price-card.popular {
    border-color: var(--amber);
    background: var(--amber);
    color: var(--ink);
    transform: translateY(-8px)
}

.price-card.popular:hover {
    transform: translateY(-13px)
}

.popular .price-copy {
    color: #5b4a27
}

.popular>p:first-of-type {
    color: var(--ink)
}

.popular-label {
    position: absolute;
    right: 1.2rem;
    top: 1.2rem;
    border-radius: 999px;
    background: var(--ink);
    padding: .4rem .7rem;
    color: white;
    font-size: .62rem;
    font-weight: 800;
    text-transform: uppercase
}

.price {
    display: flex;
    align-items: flex-end;
    gap: .7rem;
    margin: 2rem 0
}

.price small {
    padding-bottom: .5rem;
    color: #94a3b8
}

.price strong {
    font: 800 clamp(2.3rem, 5vw, 3.4rem) Manrope;
    letter-spacing: -.05em
}

.price-copy {
    color: #94a3b8;
    line-height: 1.7
}

.price-card a {
    margin-top: auto;
    padding-top: 2rem;
    font-weight: 800
}

.testimonial {
    flex: 0 0 100%;
    border: 1px solid #a5c1e6;
    border-radius: 1.5rem;
    background: var(--paper);
    padding: clamp(1.6rem, 5vw, 3.5rem)
}

.stars {
    color: var(--amber);
    letter-spacing: .15em
}

.testimonial blockquote {
    margin: 1.7rem 0 2.5rem;
    max-width: 900px;
    font: 700 clamp(1.35rem, 3vw, 2.15rem)/1.45 Manrope;
    letter-spacing: -.025em
}

.customer {
    display: flex;
    align-items: center;
    gap: .8rem
}

.customer>span {
    display: grid;
    height: 2.8rem;
    width: 2.8rem;
    place-items: center;
    border-radius: 50%;
    background: var(--mint);
    color: var(--teal);
    font-weight: 800
}

.customer strong,
.customer small {
    display: block
}

.customer small {
    margin-top: .2rem;
    color: #64748b
}

.story-btn {
    display: grid;
    height: 3rem;
    width: 3rem;
    place-items: center;
    border: 1px solid #dbe4e1;
    border-radius: 50%;
    transition: .25s
}

.story-btn:hover {
    border-color: var(--ink);
    background: var(--ink);
    color: white
}

.faq {
    border-bottom: 1px solid #dbe4e1;
    padding: 1.25rem 0
}

.faq summary {
    display: flex;
    cursor: pointer;
    list-style: none;
    justify-content: space-between;
    gap: 1rem;
    font: 700 1.05rem Manrope
}

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

.faq summary span {
    color: var(--teal);
    font-size: 1.5rem;
    transition: .3s
}

.faq[open] summary span {
    transform: rotate(45deg)
}

.faq p {
    padding: 1rem 2rem 0 0;
    color: #64748b;
    line-height: 1.7
}

.contact-shell {
    border-radius: 2rem;
    box-shadow: 0 28px 75px rgba(23, 32, 42, .14)
}

.contact-ring {
    position: absolute;
    right: -120px;
    bottom: -120px;
    height: 340px;
    width: 340px;
    border: 48px solid rgba(186, 244, 232, .09);
    border-radius: 50%
}

.contact-line {
    display: flex;
    align-items: center;
    gap: 1rem
}

.contact-line>span {
    display: grid;
    height: 3rem;
    width: 3rem;
    place-items: center;
    border-radius: .9rem;
    background: rgba(255, 255, 255, .12);
    color: var(--mint);
    font-weight: 800
}

.contact-line small,
.contact-line strong {
    display: block
}

.contact-line small {
    color: rgba(255, 255, 255, .65);
    font-size: .7rem
}

.contact-line strong {
    margin-top: .15rem;
    font-size: .9rem
}

form label {
    display: block;
    margin-bottom: 1.1rem;
    color: #475569;
    font-size: .78rem;
    font-weight: 700
}

input,
select,
textarea {
    margin-top: .45rem;
    width: 100%;
    border: 1px solid #dbe4e1;
    border-radius: .8rem;
    background: #fafffe;
    padding: .85rem 1rem;
    color: var(--ink);
    font: inherit;
    outline: none;
    transition: .2s
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(15, 143, 122, .12)
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal.visible {
    opacity: 1;
    transform: none
}

.delay {
    transition-delay: .12s
}

@media(min-width:768px) {
    .process-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .process-grid:before {
        content: "";
        position: absolute;
        right: 12%;
        top: 33px;
        left: 12%;
        border-top: 2px dashed rgba(15, 143, 122, .2)
    }
}

@media(max-width:900px) {
    .floating-note {
        display: none
    }

    .rotate-card {
        transform: none
    }
}

@media(prefers-reduced-motion:reduce) {
    * {
        scroll-behavior: auto !important;
        animation: none !important;
        transition-duration: .01ms !important
    }

    .reveal {
        opacity: 1;
        transform: none
    }
}