:root {
    --primary: #cf3f32;
    --primary-hover: #e14a3b;
    --primary-dark: #98271f;
    --primary-deep: #681713;
    --primary-light: #fde9e5;
    --primary-soft: #fff5f2;

    --heading: #22252b;
    --text: #565c65;
    --muted: #7e838b;

    --white: #ffffff;
    --soft-background: #faf8f7;
    --border: #e8e2df;

    --small-shadow:
            0 12px 32px rgba(74, 33, 27, 0.08);

    --medium-shadow:
            0 22px 60px rgba(74, 33, 27, 0.11);

    --transition: 220ms ease;
}


/* ==================================================
   GENERAL
================================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;

    font-family: "Inter", sans-serif;

    color: var(--heading);
    background-color: var(--white);

    -webkit-font-smoothing: antialiased;
}

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

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

.custom-container {
    width: min(1220px, calc(100% - 44px));
    max-width: 1220px;
}


/* ==================================================
   NAVBAR
================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background-color: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid transparent;

    backdrop-filter: blur(16px);

    transition:
            border-color var(--transition),
            box-shadow var(--transition);
}

.site-header.scrolled {
    border-bottom-color: rgba(34, 37, 43, 0.07);

    box-shadow:
            0 8px 28px rgba(34, 37, 43, 0.05);
}

.navbar {
    min-height: 82px;
    padding: 11px 0;
}

.navbar-brand {
    padding: 0;
}

.brand-logo {
    width: 74px;
    height: 54px;

    object-fit: contain;
    object-position: left center;
}

.navbar-nav {
    gap: 27px;
}

.nav-link {
    position: relative;

    padding: 10px 6px !important;

    color: #30343a !important;

    font-size: 14px;
    font-weight: 500;
}

.nav-link::after {
    position: absolute;
    right: 6px;
    bottom: 3px;
    left: 6px;

    height: 2px;

    content: "";

    background-color: var(--primary);

    transform: scaleX(0);
    transform-origin: center;

    transition: transform var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}


/* ==================================================
   BUTTONS
================================================== */

.btn {
    border-radius: 9px;

    font-size: 13px;
    font-weight: 600;

    transition:
            transform var(--transition),
            box-shadow var(--transition),
            background-color var(--transition),
            border-color var(--transition),
            color var(--transition);
}

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

.btn-sign-in {
    min-width: 92px;
    padding: 10px 18px;

    border: 1px solid #d6d6d6;

    color: var(--heading);
    background-color: var(--white);
}

.btn-sign-in:hover {
    border-color: #b9bcc0;

    color: var(--heading);
    background-color: #fafafa;
}

.btn-primary-custom {
    position: relative;

    min-width: 134px;
    overflow: hidden;

    padding: 11px 20px;

    border: 1px solid var(--primary);

    color: var(--white);

    background:
            linear-gradient(
                    135deg,
                    var(--primary-hover),
                    var(--primary-dark)
            );

    box-shadow:
            0 12px 26px rgba(207, 63, 50, 0.22);
}

.btn-primary-custom:hover {
    border-color: var(--primary-dark);

    color: var(--white);

    background:
            linear-gradient(
                    135deg,
                    #e84f3f,
                    #852019
            );

    box-shadow:
            0 16px 34px rgba(207, 63, 50, 0.30);
}

.btn-outline-custom {
    border: 1px solid var(--primary);

    color: var(--primary);
    background-color: var(--white);
}

.btn-outline-custom:hover {
    color: var(--white);
    background-color: var(--primary);
}


/* ==================================================
   HERO
================================================== */

.hero-section {
    position: relative;

    min-height: calc(100vh - 82px);
    overflow: hidden;

    padding: 58px 0 28px;
}

.hero-content {
    position: relative;
    z-index: 5;

    max-width: 500px;
}

.hero-title {
    display: flex;

    min-height: 158px;
    margin: 0 0 20px;

    flex-direction: column;

    font-size: clamp(37px, 3.45vw, 51px);
    font-weight: 750;
    line-height: 1.07;
    letter-spacing: -1.7px;
}

.hero-title-dark {
    display: block;

    margin-bottom: 4px;

    color: var(--heading);
}

.typing-wrapper {
    position: relative;

    display: inline-block;

    min-height: 100px;
    max-width: 490px;

    color: var(--primary);
}

.typing-text {
    display: inline;

    color: var(--primary);
}

.typing-cursor {
    display: inline-block;

    width: 3px;
    height: 0.82em;

    margin-left: 3px;

    vertical-align: -0.06em;

    background-color: var(--primary);

    animation:
            typingCursorBlink
            0.75s
            steps(1)
            infinite;
}

.typing-wrapper.is-empty .typing-cursor {
    display: none;
}

.hero-description {
    max-width: 490px;
    margin-bottom: 10px;

    color: var(--text);

    font-size: 16px;
    line-height: 1.75;
}

.hero-supporting-text {
    max-width: 475px;
    margin-bottom: 25px;

    color: var(--text);

    font-size: 15px;
    font-weight: 500;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 15px;
}

.hero-button {
    min-width: 165px;
    padding: 12px 21px;

    font-size: 13px;
}

.hero-visual {
    position: relative;

    display: flex;

    min-height: 420px;

    align-items: center;
    justify-content: center;

    overflow: visible;
}

.hero-background-shape {
    position: absolute;
    top: 50%;
    left: 51%;
    z-index: 0;

    width: 98%;
    height: 82%;

    border-radius:
            41% 59% 54% 46%
        /
        52% 42% 58% 48%;

    background:
            radial-gradient(
                    circle at 28% 30%,
                    rgba(255, 252, 250, 1) 0%,
                    rgba(253, 235, 230, 0.98) 42%,
                    rgba(250, 220, 213, 0.90) 72%,
                    rgba(255, 242, 238, 0.72) 100%
            );

    box-shadow:
            0 28px 60px rgba(152, 39, 31, 0.07);

    transform:
            translate(-50%, -50%)
            rotate(-1.5deg);

    animation:
            heroOrganicShape
            10s
            ease-in-out
            infinite;
}

.hero-background-ring {
    position: absolute;
    z-index: 1;

    border: 1px dashed rgba(207, 63, 50, 0.15);
    border-radius: 50%;

    pointer-events: none;
}

.hero-ring-one {
    top: 11%;
    left: 22%;

    width: 57%;
    height: 63%;

    animation:
            rotateRing
            30s
            linear
            infinite;
}

.hero-ring-two {
    right: 5%;
    bottom: 2%;

    width: 38%;
    height: 41%;

    opacity: 0.55;

    animation:
            rotateRingReverse
            25s
            linear
            infinite;
}

.hero-dot {
    position: absolute;
    z-index: 2;

    border-radius: 50%;

    background-color: rgba(207, 63, 50, 0.55);

    box-shadow:
            0 0 0 6px rgba(207, 63, 50, 0.08);

    animation:
            dotFloat
            4s
            ease-in-out
            infinite;
}

.hero-dot-one {
    top: 21%;
    left: 11%;

    width: 6px;
    height: 6px;
}

.hero-dot-two {
    right: 9%;
    bottom: 20%;

    width: 8px;
    height: 8px;

    animation-delay: 1s;
}

.hero-dot-three {
    top: 16%;
    right: 20%;

    width: 5px;
    height: 5px;

    animation-delay: 2s;
}

.hero-illustration {
    position: relative;
    z-index: 3;

    width: 91%;
    max-width: 650px;
    max-height: 445px;

    object-fit: contain;

    filter:
            drop-shadow(
                    0 24px 32px rgba(38, 25, 23, 0.09)
            );

    animation:
            heroIllustrationFloat
            6s
            ease-in-out
            infinite;
}

.hero-process {
    display: flex;

    width: fit-content;

    margin-top: 12px;
    padding: 11px 0;

    align-items: center;
    gap: 18px;

    border-bottom: 1px solid var(--border);
}

.process-item {
    display: flex;

    align-items: center;
    gap: 8px;

    color: #3d4248;

    font-size: 13px;
    font-weight: 600;
}

.process-item i {
    color: var(--primary);

    font-size: 19px;
}

.process-arrow {
    color: #74797f;

    font-size: 12px;
}


/* ==================================================
   SHARED TYPOGRAPHY
================================================== */

.section-heading {
    max-width: 465px;
}

.section-number,
.example-label,
.cta-number {
    display: inline-block;

    margin-bottom: 13px;

    color: var(--primary);

    font-size: 13px;
    font-weight: 800;
}

.section-heading h2 {
    margin-bottom: 18px;

    font-size: clamp(30px, 2.8vw, 40px);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -1.1px;
}

.section-heading h2 span {
    color: var(--primary);
}

.section-heading p {
    margin: 0;

    color: var(--text);

    font-size: 16px;
    line-height: 1.75;
}


/* ==================================================
   CONNECTION SECTION
================================================== */

.connection-section {
    padding: 84px 0;

    background:
            radial-gradient(
                    circle at 82% 18%,
                    rgba(207, 63, 50, 0.07),
                    transparent 34%
            ),
            var(--soft-background);
}

.connection-visual-card {
    position: relative;

    display: flex;

    min-height: 360px;
    overflow: hidden;

    align-items: center;
    justify-content: center;

    padding: 30px 34px;

    border: 1px solid rgba(207, 63, 50, 0.14);
    border-radius: 27px;

    background:
            linear-gradient(
                    145deg,
                    #ffffff,
                    #fbf2ef
            );

    box-shadow:
            0 25px 65px rgba(82, 36, 30, 0.09);
}

.connection-decoration {
    position: absolute;

    border-radius: 50%;

    background-color: rgba(207, 63, 50, 0.07);
}

.connection-decoration-one {
    top: -95px;
    right: -75px;

    width: 260px;
    height: 260px;
}

.connection-decoration-two {
    bottom: -100px;
    left: -60px;

    width: 230px;
    height: 230px;
}

.connection-illustration {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 720px;
    max-height: 320px;

    object-fit: contain;

    animation:
            smallFloat
            6s
            ease-in-out
            infinite;
}


/* ==================================================
   ACTIVATE SECTION
================================================== */

.activate-section {
    padding: 74px 0;
}

.activate-section .section-heading {
    max-width: 430px;
}

.activate-section .section-heading h2 {
    font-size: clamp(31px, 2.75vw, 40px);
}

.activate-section .section-heading p {
    font-size: 16px;
    line-height: 1.75;
}

.people-can-title {
    margin-top: 18px !important;

    color: var(--heading) !important;

    font-size: 16px !important;
    font-weight: 700;
}

.benefit-list {
    display: grid;

    margin: 11px 0 0;
    padding: 0;

    gap: 11px;

    list-style: none;

    color: var(--text);

    font-size: 16px;
    line-height: 1.55;
}

.benefit-list li {
    display: flex;

    align-items: center;
    gap: 10px;
}

.benefit-list i {
    color: var(--primary);

    font-size: 16px;
}


/* ==================================================
   EXAMPLE NEEDS CONTAINER
================================================== */

.example-needs-card {
    width: 100%;
    padding: 25px;

    border: 1px solid rgba(207, 63, 50, 0.16);
    border-radius: 24px;

    background:
            linear-gradient(
                    145deg,
                    #ffffff 0%,
                    #fff9f7 100%
            );

    box-shadow:
            0 24px 60px rgba(88, 37, 30, 0.10);
}

.example-card-header {
    display: flex;

    margin-bottom: 19px;

    align-items: center;
    justify-content: space-between;

    gap: 24px;
}

.example-label {
    display: block;

    margin: 0;

    color: var(--primary);

    font-size: 15px;
    font-weight: 800;
    line-height: 1.3;
}

.example-subtitle {
    margin: 0;

    color: var(--muted);

    font-size: 12px;
    line-height: 1.5;

    text-align: right;
}

.example-needs-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 14px;
}


/* ==================================================
   NEED CARDS
================================================== */

.need-card {
    position: relative;

    display: grid;

    min-width: 0;
    min-height: 188px;
    overflow: hidden;

    padding: 19px;

    grid-template-columns: 54px minmax(0, 1fr);

    grid-template-rows:
        auto
        auto
        1fr
        auto;

    grid-template-areas:
        "icon copy"
        "icon tags"
        ". tags"
        ". link";

    column-gap: 14px;
    row-gap: 11px;

    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 18px;

    color: var(--white);

    box-shadow:
            0 14px 30px rgba(116, 30, 23, 0.19);

    transition:
            transform var(--transition),
            box-shadow var(--transition);
}

.need-card-one {
    background:
            linear-gradient(
                    140deg,
                    #df5947 0%,
                    #a62e24 100%
            );
}

.need-card-two {
    background:
            linear-gradient(
                    140deg,
                    #ce3d31 0%,
                    #741914 100%
            );
}

.need-card-three {
    background:
            linear-gradient(
                    140deg,
                    #e45c49 0%,
                    #a52b22 100%
            );
}

.need-card-four {
    background:
            linear-gradient(
                    140deg,
                    #b92f25 0%,
                    #62130f 100%
            );
}

.need-card:hover {
    transform: translateY(-4px);

    box-shadow:
            0 20px 38px rgba(116, 30, 23, 0.27);
}

.need-card::before {
    position: absolute;
    top: -58px;
    right: -44px;

    width: 140px;
    height: 140px;

    content: "";

    border-radius: 50%;

    background-color: rgba(255, 255, 255, 0.075);
}

.need-card::after {
    position: absolute;
    bottom: -82px;
    left: -58px;

    width: 155px;
    height: 155px;

    content: "";

    border-radius: 50%;

    background-color: rgba(255, 255, 255, 0.045);
}

.need-icon {
    position: relative;
    z-index: 2;

    grid-area: icon;

    display: grid;

    width: 54px;
    height: 54px;

    place-items: center;
    align-self: start;

    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 50%;

    color: var(--white);
    background-color: rgba(255, 255, 255, 0.12);

    font-size: 22px;

    backdrop-filter: blur(8px);

    animation:
            iconPulse
            4.5s
            ease-in-out
            infinite;
}

.need-card-copy {
    position: relative;
    z-index: 2;

    grid-area: copy;

    min-width: 0;
    padding-top: 1px;
}

.need-card-copy h3 {
    margin: 0 0 5px;

    color: var(--white);

    font-size: 15px;
    font-weight: 750;
    line-height: 1.32;
}

.need-card-copy p {
    margin: 0;

    color: rgba(255, 255, 255, 0.78);

    font-size: 11px;
    line-height: 1.45;
}

.need-tags {
    position: relative;
    z-index: 2;

    grid-area: tags;

    display: flex;
    flex-wrap: wrap;

    align-content: flex-start;

    gap: 7px;
}

.need-tags span {
    display: inline-flex;

    min-height: 27px;
    padding: 6px 9px;

    align-items: center;
    gap: 5px;

    border: 1px solid rgba(255, 255, 255, 0.23);
    border-radius: 999px;

    color: rgba(255, 255, 255, 0.94);
    background-color: rgba(255, 255, 255, 0.095);

    font-size: 10px;
    font-weight: 650;
    line-height: 1;

    white-space: nowrap;
}

.need-tags span i {
    font-size: 10px;
}

.need-card-link {
    position: relative;
    z-index: 2;

    grid-area: link;

    display: flex;

    width: 100%;
    padding-top: 9px;

    align-items: center;
    justify-content: space-between;

    gap: 12px;

    border-top: 1px solid rgba(255, 255, 255, 0.13);

    color: var(--white);

    font-size: 11px;
    font-weight: 750;
    line-height: 1.3;
}

.need-card-link:hover {
    color: var(--white);
}

.need-card-link i {
    flex: 0 0 auto;

    font-size: 14px;

    transition: transform var(--transition);
}

.need-card-link:hover i {
    transform: translateX(4px);
}


/* ==================================================
   COLLABORATION SECTION
================================================== */

.collaboration-section {
    padding: 84px 0;

    background:
            linear-gradient(
                    180deg,
                    #ffffff,
                    #faf7f6
            );
}

.collaboration-image-wrapper {
    position: relative;

    display: flex;

    min-height: 390px;

    align-items: center;
    justify-content: center;
}

.collaboration-image-background {
    position: absolute;

    width: 88%;
    height: 76%;

    border-radius:
            47% 53% 42% 58%
        /
        52% 45% 55% 48%;

    background-color: #fae9e5;

    animation:
            smallShapeMove
            8s
            ease-in-out
            infinite;
}

.collaboration-illustration {
    position: relative;
    z-index: 2;

    width: 100%;
    max-height: 400px;

    object-fit: contain;

    animation:
            smallFloat
            6.5s
            ease-in-out
            infinite;
}

.collaboration-heading {
    max-width: 690px;
}

.collaboration-flow {
    display: flex;

    margin-top: 33px;

    align-items: flex-start;
}

.flow-step {
    display: grid;

    min-width: 90px;

    justify-items: center;
    gap: 11px;

    text-align: center;
}

.flow-icon {
    display: grid;

    width: 58px;
    height: 58px;

    place-items: center;

    border-radius: 50%;

    color: var(--white);
    background-color: #292d32;

    font-size: 20px;

    box-shadow:
            0 12px 23px rgba(31, 35, 41, 0.15);

    animation:
            flowPulse
            4.5s
            ease-in-out
            infinite;
}

.flow-icon-red {
    background:
            linear-gradient(
                    145deg,
                    var(--primary-hover),
                    var(--primary-dark)
            );
}

.flow-icon-light {
    background-color: #747980;
}

.flow-step span {
    font-size: 12px;
    font-weight: 700;
}

.flow-divider {
    flex: 1;

    height: 1px;
    margin-top: 29px;

    border-top: 2px dotted #a5a8ac;
}

.comparison-message {
    margin-top: 25px;
    padding: 12px 18px;

    border-radius: 50px;

    color: #63676d;
    background-color: #efedec;

    text-align: center;

    font-size: 13px;
}

.comparison-message strong {
    color: var(--primary);
}


/* ==================================================
   FINAL CTA
================================================== */

.final-cta-section {
    padding-top: 18px;
}

.final-cta-card {
    position: relative;

    display: flex;

    min-height: 235px;
    overflow: hidden;

    align-items: center;

    padding: 31px 42px;

    border-radius: 22px 22px 0 0;

    color: var(--white);

    background:
            radial-gradient(
                    circle at 72% 16%,
                    rgba(255, 255, 255, 0.10),
                    transparent 26%
            ),
            linear-gradient(
                    118deg,
                    #741a15 0%,
                    #c13a2f 56%,
                    #681612 100%
            );
}

.final-cta-card::before {
    position: absolute;
    inset: 0;
    z-index: 1;

    content: "";

    opacity: 0.25;

    background-image:
            radial-gradient(
                    rgba(255, 255, 255, 0.60) 1px,
                    transparent 1px
            );

    background-size: 31px 31px;

    pointer-events: none;
}

.final-cta-content {
    position: relative;
    z-index: 5;

    width: calc(100% - 500px);
    max-width: 660px;
}

.cta-number {
    display: block;

    margin-bottom: 8px;

    color: rgba(255, 255, 255, 0.87);

    font-size: 11px;
    font-weight: 800;
}

.final-cta-content h2 {
    margin: 0 0 10px;

    color: var(--white);

    font-size: clamp(29px, 2.7vw, 39px);
    font-weight: 700;
    line-height: 1.13;
    letter-spacing: -0.95px;
}

.final-cta-content p {
    margin: 0 0 18px;

    color: rgba(255, 255, 255, 0.84);

    font-size: 14px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 11px;
}

.cta-buttons .btn {
    min-width: 155px;
    padding: 10px 18px;

    font-size: 12px;
}

.btn-light-custom {
    border: 1px solid var(--white);

    color: #292d32;
    background-color: var(--white);

    box-shadow:
            0 9px 21px rgba(0, 0, 0, 0.16);
}

.btn-light-custom:hover {
    color: var(--primary);

    background-color: #fafafa;
}

.btn-transparent-custom {
    border: 1px solid rgba(255, 255, 255, 0.74);

    color: var(--white);
    background-color: transparent;
}

.btn-transparent-custom:hover {
    color: var(--primary-dark);
    background-color: var(--white);
}


/* ==================================================
   CTA ROCKET
================================================== */

.rocket-wrapper {
    position: absolute;

    top: 50%;
    right: -5px;
    z-index: 4;

    width: 505px;
    height: 310px;

    transform: translateY(-50%);

    pointer-events: none;
}

.rocket-circle {
    position: absolute;

    top: 50%;
    left: 53%;

    width: 285px;
    height: 285px;

    border: 2px solid rgba(255, 255, 255, 0.20);
    border-radius: 50%;

    transform: translate(-50%, -50%);

    animation:
            rocketCirclePulse
            5s
            ease-in-out
            infinite;
}

.rocket-circle::before {
    position: absolute;
    inset: 22px;

    content: "";

    border: 1px dashed rgba(255, 255, 255, 0.13);
    border-radius: 50%;
}

.rocket-glow {
    position: absolute;

    top: 50%;
    left: 53%;

    width: 250px;
    height: 250px;

    border-radius: 50%;

    background:
            radial-gradient(
                    circle,
                    rgba(255, 255, 255, 0.17),
                    rgba(255, 255, 255, 0.05) 56%,
                    transparent 74%
            );

    filter: blur(11px);

    transform: translate(-50%, -50%);
}

.rocket-illustration {
    position: absolute;

    top: 45%;
    left: 53%;
    z-index: 5;

    width: 370px;
    height: 370px;

    object-fit: contain;

    filter:
            drop-shadow(
                    0 25px 32px rgba(43, 9, 7, 0.33)
            );

    transform: translate(-50%, -50%);

    animation:
            rocketMoveCentered
            4s
            ease-in-out
            infinite;
}


/* ==================================================
   FOOTER
================================================== */

.site-footer {
    padding: 25px 0;

    border-top: 1px solid #ecebea;

    background-color: var(--white);
}

.footer-content {
    display: grid;

    grid-template-columns:
        1fr auto 1fr;

    align-items: center;
    gap: 30px;
}

.footer-logo {
    width: 98px;
    max-height: 41px;

    object-fit: contain;
    object-position: left center;
}

.footer-navigation {
    display: flex;
    flex-wrap: wrap;

    justify-content: center;
    gap: 25px;
}

.footer-navigation a {
    color: #60656b;

    font-size: 12px;
    font-weight: 500;

    transition: color var(--transition);
}

.footer-navigation a:hover {
    color: var(--primary);
}

.footer-social {
    display: flex;

    justify-content: flex-end;
    gap: 16px;
}

.footer-social a {
    color: #60656b;

    font-size: 17px;

    transition:
            color var(--transition),
            transform var(--transition);
}

.footer-social a:hover {
    color: var(--primary);

    transform: translateY(-2px);
}


/* ==================================================
   BACK TO TOP
================================================== */

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 999;

    display: grid;

    width: 48px;
    height: 48px;

    place-items: center;

    border: 0;
    border-radius: 50%;

    opacity: 0;

    color: var(--white);
    background-color: #24282d;

    box-shadow:
            0 10px 24px rgba(31, 35, 41, 0.20);

    pointer-events: none;

    transform: translateY(12px);

    transition:
            opacity var(--transition),
            transform var(--transition);
}

.back-to-top.visible {
    opacity: 1;

    pointer-events: auto;

    transform: translateY(0);
}


/* ==================================================
   REVEAL
================================================== */

.reveal {
    opacity: 0;

    transform: translateY(20px);

    transition:
            opacity 750ms cubic-bezier(0.22, 1, 0.36, 1),
            transform 750ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.revealed {
    opacity: 1;

    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 120ms;
}

.reveal-delay-2 {
    transition-delay: 220ms;
}


/* ==================================================
   ANIMATIONS
================================================== */

@keyframes typingCursorBlink {

    0%,
    48% {
        opacity: 1;
    }

    49%,
    100% {
        opacity: 0;
    }

}

@keyframes heroOrganicShape {

    0%,
    100% {
        border-radius:
                41% 59% 54% 46%
            /
            52% 42% 58% 48%;

        transform:
                translate(-50%, -50%)
                rotate(-1.5deg)
                scale(1);
    }

    33% {
        border-radius:
                53% 47% 43% 57%
            /
            44% 58% 42% 56%;

        transform:
                translate(-50%, -51%)
                rotate(0.5deg)
                scale(1.015);
    }

    66% {
        border-radius:
                46% 54% 58% 42%
            /
            59% 43% 57% 41%;

        transform:
                translate(-49%, -50%)
                rotate(1.5deg)
                scale(0.99);
    }

}

@keyframes heroIllustrationFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }

}

@keyframes rotateRing {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}

@keyframes rotateRingReverse {

    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }

}

@keyframes dotFloat {

    0%,
    100% {
        opacity: 0.45;

        transform: translateY(0);
    }

    50% {
        opacity: 1;

        transform: translateY(-8px);
    }

}

@keyframes smallFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

}

@keyframes smallShapeMove {

    0%,
    100% {
        border-radius:
                47% 53% 42% 58%
            /
            52% 45% 55% 48%;

        transform: scale(1);
    }

    50% {
        border-radius:
                54% 46% 57% 43%
            /
            43% 56% 44% 57%;

        transform: scale(1.025);
    }

}

@keyframes iconPulse {

    0%,
    100% {
        transform:
                translateY(0)
                scale(1);
    }

    50% {
        transform:
                translateY(-3px)
                scale(1.04);
    }

}

@keyframes flowPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }

}

@keyframes rocketMoveCentered {

    0%,
    100% {
        transform:
                translate(-50%, -50%)
                rotate(0deg);
    }

    50% {
        transform:
                translate(
                        calc(-50% - 10px),
                        calc(-50% - 14px)
                )
                rotate(-1.3deg);
    }

}

@keyframes rocketCirclePulse {

    0%,
    100% {
        opacity: 0.5;

        transform:
                translate(-50%, -50%)
                scale(1);
    }

    50% {
        opacity: 0.9;

        transform:
                translate(-50%, -50%)
                scale(1.045);
    }

}


/* ==================================================
   REDUCED MOTION
================================================== */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }

}
/* ==================================================
   FINAL LOGO + EXAMPLE NEEDS OVERRIDES
================================================== */


/* ==================================================
   HEADER LOGO
   Larger visually without moving navigation
================================================== */

.navbar {
    min-height: 82px;
    padding: 10px 0;
}

.navbar-brand {
    position: relative;

    display: block;
    flex: 0 0 120px;

    width: 120px;
    height: 56px;

    margin: 0;
    padding: 0;

    overflow: visible;
}

.brand-logo {
    position: absolute;

    top: 50%;
    left: 0;

    display: block;

    width: 235px;
    height: 78px;
    max-width: none;

    object-fit: contain;
    object-position: left center;

    transform: translateY(-50%);
    transform-origin: left center;

    pointer-events: none;
}


/* ==================================================
   EXAMPLE NEEDS CONTAINER
================================================== */

.example-needs-card {
    width: 94%;
    max-width: 790px;

    margin-left: auto;
    padding: 19px;

    border: 1px solid rgba(207, 63, 50, 0.16);
    border-radius: 21px;

    background:
            linear-gradient(
                    145deg,
                    #ffffff 0%,
                    #fff9f7 100%
            );

    box-shadow:
            0 18px 44px rgba(88, 37, 30, 0.09);
}

.example-card-header {
    display: flex;

    margin-bottom: 15px;

    align-items: center;
    justify-content: space-between;

    gap: 18px;
}

.example-label {
    display: block;

    margin: 0;

    color: var(--primary);

    font-size: 14px;
    font-weight: 800;
    line-height: 1.3;
}

.example-subtitle {
    max-width: 310px;
    margin: 0;

    color: var(--muted);

    font-size: 11px;
    line-height: 1.5;

    text-align: right;
}


/* ==================================================
   EXAMPLE NEEDS GRID
================================================== */

.example-needs-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 11px;
}


/* ==================================================
   NEED CARDS
================================================== */

.need-card {
    position: relative;

    display: grid;

    min-width: 0;
    min-height: 156px;
    overflow: hidden;

    padding: 15px 16px;

    grid-template-columns:
        46px minmax(0, 1fr);

    grid-template-rows:
        auto
        auto
        1fr
        auto;

    grid-template-areas:
        "icon copy"
        "icon tags"
        ". tags"
        ". link";

    column-gap: 11px;
    row-gap: 8px;

    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 16px;

    color: var(--white);

    box-shadow:
            0 11px 25px rgba(116, 30, 23, 0.17);

    transition:
            transform var(--transition),
            box-shadow var(--transition);
}

.need-card-one {
    background:
            linear-gradient(
                    140deg,
                    #df5947 0%,
                    #a62e24 100%
            );
}

.need-card-two {
    background:
            linear-gradient(
                    140deg,
                    #ce3d31 0%,
                    #741914 100%
            );
}

.need-card-three {
    background:
            linear-gradient(
                    140deg,
                    #e45c49 0%,
                    #a52b22 100%
            );
}

.need-card-four {
    background:
            linear-gradient(
                    140deg,
                    #b92f25 0%,
                    #62130f 100%
            );
}

.need-card:hover {
    transform: translateY(-3px);

    box-shadow:
            0 16px 31px rgba(116, 30, 23, 0.23);
}

.need-card::before {
    position: absolute;
    top: -60px;
    right: -46px;

    width: 118px;
    height: 118px;

    content: "";

    border-radius: 50%;

    background-color: rgba(255, 255, 255, 0.075);

    pointer-events: none;
}

.need-card::after {
    position: absolute;
    bottom: -78px;
    left: -52px;

    width: 132px;
    height: 132px;

    content: "";

    border-radius: 50%;

    background-color: rgba(255, 255, 255, 0.045);

    pointer-events: none;
}


/* ==================================================
   NEED CARD ICON
================================================== */

.need-icon {
    position: relative;
    z-index: 2;

    grid-area: icon;

    display: grid;

    width: 46px;
    height: 46px;

    place-items: center;
    align-self: start;

    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 50%;

    color: var(--white);
    background-color: rgba(255, 255, 255, 0.12);

    font-size: 19px;

    backdrop-filter: blur(8px);

    animation:
            iconPulse
            4.5s
            ease-in-out
            infinite;
}


/* ==================================================
   NEED CARD COPY
================================================== */

.need-card-copy {
    position: relative;
    z-index: 2;

    grid-area: copy;

    min-width: 0;
    padding-top: 0;
}

.need-card-copy h3 {
    margin: 0 0 4px;

    color: var(--white);

    font-size: 13px;
    font-weight: 750;
    line-height: 1.28;
}

.need-card-copy p {
    margin: 0;

    color: rgba(255, 255, 255, 0.79);

    font-size: 9.5px;
    line-height: 1.4;
}


/* ==================================================
   NEED TAGS
================================================== */

.need-tags {
    position: relative;
    z-index: 2;

    grid-area: tags;

    display: flex;
    flex-wrap: wrap;

    align-content: flex-start;

    gap: 5px;
}

.need-tags span {
    display: inline-flex;

    min-height: 23px;
    padding: 4px 7px;

    align-items: center;
    gap: 4px;

    border: 1px solid rgba(255, 255, 255, 0.23);
    border-radius: 999px;

    color: rgba(255, 255, 255, 0.94);
    background-color: rgba(255, 255, 255, 0.095);

    font-size: 8.5px;
    font-weight: 650;
    line-height: 1;

    white-space: nowrap;
}

.need-tags span i {
    font-size: 8px;
}


/* ==================================================
   NEED CARD LINK
================================================== */

.need-card-link {
    position: relative;
    z-index: 2;

    grid-area: link;

    display: flex;

    width: 100%;
    padding-top: 7px;

    align-items: center;
    justify-content: space-between;

    gap: 12px;

    border-top: 1px solid rgba(255, 255, 255, 0.13);

    color: var(--white);

    font-size: 9.5px;
    font-weight: 750;
    line-height: 1.3;
}

.need-card-link:hover {
    color: var(--white);
}

.need-card-link i {
    flex: 0 0 auto;

    font-size: 12px;

    transition: transform var(--transition);
}

.need-card-link:hover i {
    transform: translateX(4px);
}


/* ==================================================
   FOOTER LOGO
   Larger visually without moving footer columns
================================================== */

.footer-logo-link {
    position: relative;

    display: block;

    width: 115px;
    height: 50px;

    margin: 0;
    padding: 0;

    overflow: visible;
}

.footer-logo {
    position: absolute;

    top: 50%;
    left: 0;

    display: block;

    width: 220px;
    height: 72px;
    max-width: none;

    object-fit: contain;
    object-position: left center;

    transform: translateY(-50%);

    pointer-events: none;
}
/* ==================================================
   FINAL CTA HEIGHT FIX
================================================== */

.final-cta-card {
    min-height: 190px;

    padding:
            22px
            42px;
}

.final-cta-content {
    max-width: 650px;
}

.cta-number {
    margin-bottom: 5px;

    font-size: 10px;
}

.final-cta-content h2 {
    margin-bottom: 7px;

    font-size: clamp(27px, 2.5vw, 36px);
    line-height: 1.08;
}

.final-cta-content p {
    margin-bottom: 13px;

    font-size: 13px;
    line-height: 1.45;
}

.cta-buttons {
    gap: 10px;
}

.cta-buttons .btn {
    min-width: 150px;

    padding:
            9px
            17px;

    font-size: 11px;
}


/* =========================
   ROCKET AREA
========================= */

.rocket-wrapper {
    right: 0;

    width: 470px;
    height: 245px;
}

.rocket-circle {
    width: 225px;
    height: 225px;
}

.rocket-circle::before {
    inset: 18px;
}

.rocket-glow {
    width: 205px;
    height: 205px;
}

.rocket-illustration {
    top: 45%;

    width: 300px;
    height: 300px;
}
/* ==================================================
   CTA ROCKET — FULL HEIGHT
================================================== */

.rocket-wrapper {
    top: 50%;
    right: 10px;

    width: 470px;
    height: 100%;

    transform: translateY(-50%);
}

/* حلقه تقریباً کل ارتفاع CTA را می‌گیرد */
.rocket-circle {
    top: 50%;
    left: 54%;

    width: 245px;
    height: 245px;

    transform: translate(-50%, -50%);
}

.rocket-circle::before {
    inset: 18px;
}

.rocket-glow {
    top: 50%;
    left: 54%;

    width: 220px;
    height: 220px;

    transform: translate(-50%, -50%);
}

/* خود موشک بزرگ‌تر از حلقه و تقریباً هم‌قد CTA */
.rocket-illustration {
    top: 55%;
    left: 54%;

    width: 410px;
    height: 410px;

    max-width: none;
    max-height: none;

    object-fit: contain;

    transform: translate(-50%, -50%);

    filter:
            drop-shadow(
                    0 20px 28px rgba(43, 9, 7, 0.32)
            );

    animation:
            rocketMoveFullHeight
            4s
            ease-in-out
            infinite;
}

@keyframes rocketMoveFullHeight {

    0%,
    100% {
        transform:
                translate(-50%, -50%)
                rotate(0deg);
    }

    50% {
        transform:
                translate(
                        calc(-50% - 7px),
                        calc(-50% - 9px)
                )
                rotate(-1deg);
    }

}
/* ==================================================
   FINAL FOOTER LOGO FIX
   Must remain at the very end of style.css
================================================== */

.site-footer {
    min-height: 110px;
    overflow: visible !important;
}

.footer-content {
    overflow: visible !important;
}

.footer-logo-link {
    position: relative !important;

    display: block !important;

    width: 115px !important;
    height: 70px !important;

    overflow: visible !important;
}

.footer-logo {
    position: absolute !important;

    top: 50% !important;
    left: 0 !important;

    width: 130px !important;
    height: 82px !important;
    max-width: none !important;
    max-height: none !important;

    object-fit: contain !important;
    object-position: left center !important;

    transform:
            translateY(-50%)
            scale(1.65) !important;

    transform-origin: left center !important;

    pointer-events: none;
}