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

    :root {
        --orange: #c11f2f;
        --orange2: #bb1223;
        --navy: #1a1a2e;
        --border: rgba(0, 0, 0, 0.07);
    }

    body {
        font-family: 'Inter', sans-serif;
        background: #fdf9f5;
        overflow-x: hidden;
    }

    /* ══════════════════════════════════════    NAV    ══════════════════════════════════════ */
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 20;
        background: transparent;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 52px;
        /* height: 72px; */
        transition: background 0.2s ease, border-color 0.2s ease;
    }

    .nav.scrolled {
        background: #fff;
        border-bottom: 1px solid rgba(230, 209, 204, 0.5);
        z-index: 11111;
        height: 72px;
    }

    .nav.scrolled ul.nav-links-row {
        margin-bottom: 0;
    }

    .nav.scrolled .mobile-drawer {
        top: 72px;
    }

    a.nav-logo-h {
        display: flex;
        align-items: center;
        height: 100%;
        line-height: 0;
    }

    .nav-logo {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1px;
        text-decoration: none;
        color: var(--navy);
    }

    .nav-logo svg {
        width: 40px;
        height: 26px;
    }

    .nav-logo span {
        font-size: 12.5px;
        font-weight: 500;
        letter-spacing: 0.05em;
    }

    .nav-links-row {
        display: flex;
        align-items: center;
        gap: 2px;
        list-style: none;
    }

    .nav-links-row a {
        display: block;
        padding: 6px 13px;
        font-size: 13.5px;
        font-weight: 400;
        text-decoration: none;
        color: #555;
        border-radius: 6px;
        transition: background 0.15s, color 0.15s;
    }

    .nav-links-row a:hover {
        background: rgba(0, 0, 0, 0.04);
        color: var(--navy);
    }

    .nav-cta-btn {
        font-family: 'Inter', sans-serif;
        font-size: 13.5px;
        font-weight: 600;
        color: #fff;
        background: var(--orange);
        border: none;
        cursor: pointer;
        height: 40px;
        padding: 0 22px;
        border-radius: 8px;
        transition: background 0.15s, transform 0.12s;
        box-shadow: 0 3px 14px rgba(232, 87, 26, 0.28);
    }

    .nav-cta-btn:hover {
        background: #b60f20;
        transform: translateY(-1px);
    }

    /* Mobile hamburger */
    .hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        background: none;
        border: none;
        padding: 4px;
    }

    .hamburger span {
        display: block;
        width: 22px;
        height: 1.5px;
        background: var(--navy);
        border-radius: 2px;
        transition: all 0.22s ease;
    }

    .hamburger.open span:nth-child(1) {
        transform: translateY(6.5px) rotate(45deg);
    }

    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
        transform: translateY(-6.5px) rotate(-45deg);
    }

    .mobile-drawer {
        display: none;
        position: fixed;
        top: 96px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--border);
        padding: 12px 24px 20px;
        z-index: 99;
        opacity: 0;
        transform: translateY(-6px);
        transition: opacity 0.2s, transform 0.2s;
        pointer-events: none;
    }

    .mobile-drawer.open {
        display: block;
        opacity: 1;
        transform: translateY(0);
        pointer-events: all;
    }

    .mobile-drawer a {
        display: block;
        padding: 13px 0;
        font-size: 15px;
        color: var(--navy);
        text-decoration: none;
        border-bottom: 1px solid var(--border);
    }

    .mobile-drawer .mob-cta {
        width: 100%;
        margin-top: 16px;
        height: 48px;
        background: var(--orange);
        color: #fff;
        border: none;
        border-radius: 10px;
        font-family: 'Inter', sans-serif;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
    }

    .phil-text-left {
        display: block;
    }

    /* ══════════════════════════════════════   HERO SECTION    ══════════════════════════════════════ */
    .font-cursive {
        font-family: 'Dancing Script', cursive;
        animation: fade-up .6s ease .42s forwards;
        font-size: 48px;
    }

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

    a.nav-logo-h img {
        height: 90px;
        width: auto;
        display: block;
        transition: height 0.2s ease;
    }

    .nav.scrolled a.nav-logo-h img {
        height: 62px;
    }

    .about-headline.reveal.head {
        text-transform: capitalize;
    }

    .center-card img {
        height: 44px;
        width: auto;
        display: block;
    }

    #hero-c {
        position: relative;
        width: 100%;
        min-height: 100vh;
        /* overflow: hidden; */
        background: #fdf9f5;
    }

    /* Background image */
    .c-bg {
        position: absolute;
        inset: 0;
        z-index: 0;
        overflow: hidden;
    }

    .c-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        transform: scale(1.04);
        animation: slow-zoom-c 16s ease-out forwards;
    }

    @keyframes slow-zoom-c {
        from {
            transform: scale(1.08);
        }

        to {
            transform: scale(1.0);
        }
    }

    .c-bg::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to right, rgba(253, 249, 245, 0.97) 0%, rgba(253, 249, 245, 0.88) 30%, rgba(253, 249, 245, 0.55) 55%, rgba(253, 249, 245, 0.15) 75%, transparent 100%), linear-gradient(to bottom, rgba(253, 249, 245, 0.3) 0%, transparent 30%, transparent 70%, rgba(253, 249, 245, 0.4) 100%);
    }

    /* Animated blobs */
    .blob {
        position: absolute;
        border-radius: 50%;
        filter: blur(60px);
        z-index: 1;
        pointer-events: none;
    }

    .blob-1 {
        width: 500px;
        height: 500px;
        top: -100px;
        right: -80px;
        background: radial-gradient(circle, rgba(232, 87, 26, 0.12), transparent 70%);
        animation: blob-drift-1 14s ease-in-out infinite;
    }

    .blob-2 {
        width: 380px;
        height: 380px;
        bottom: -60px;
        right: 30%;
        background: radial-gradient(circle, rgba(255, 140, 60, 0.09), transparent 70%);
        animation: blob-drift-2 18s ease-in-out infinite;
    }

    .blob-3 {
        width: 280px;
        height: 280px;
        top: 30%;
        left: -40px;
        background: radial-gradient(circle, rgba(232, 87, 26, 0.07), transparent 70%);
        animation: blob-drift-3 10s ease-in-out infinite;
    }

    @keyframes blob-drift-1 {

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

        33% {
            transform: translate(-30px, 40px) scale(1.08);
        }

        66% {
            transform: translate(20px, -20px) scale(0.95);
        }
    }

    @keyframes blob-drift-2 {

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

        50% {
            transform: translate(40px, -50px) scale(1.1);
        }
    }

    @keyframes blob-drift-3 {

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

        50% {
            transform: translate(20px, 30px) scale(1.06);
        }
    }

    /* Animated dot grid */
    #hero-c::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle, rgba(232, 87, 26, 0.18) 1.5px, transparent 1.5px);
        background-size: 32px 32px;
        z-index: 2;
        mask-image: radial-gradient(ellipse 70% 80% at 72% 52%, black 10%, rgba(0, 0, 0, 0.4) 50%, transparent 80%);
        animation: grid-drift 20s linear infinite;
        pointer-events: none;
    }

    @keyframes grid-drift {
        0% {
            background-position: 0px 0px;
        }

        100% {
            background-position: 32px 32px;
        }
    }

    /* Noise grain */
    #hero-c::after {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 3;
        opacity: 0.025;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
        background-size: 200px 200px;
        pointer-events: none;
    }

    /* ── Inner grid ── */
    .hero-c-inner {
        position: relative;
        z-index: 10;
        display: grid;
        grid-template-columns: 1fr 1fr;
        min-height: 100vh;
        align-items: center;
        padding: 72px 52px 0;
        gap: 32px;
    }

    /* ── LEFT text ── */
    @keyframes fade-up {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes pulse-dot {

        0%,
        100% {
            box-shadow: 0 0 0 0 rgba(232, 87, 26, 0.5);
        }

        50% {
            box-shadow: 0 0 0 6px rgba(232, 87, 26, 0);
        }
    }

    .feature-item i {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 35px;
        height: 35px;
        background: #e6d1cc;
        border-radius: 50%;
        font-size: 20px;
        color: #c11f2f;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    }

    .tag-c {
        display: inline-block;
        align-items: center;
        gap: 8px;
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        color: var(--orange);
        background: rgba(232, 87, 26, 0.07);
        border: 1px solid rgba(232, 87, 26, 0.18);
        padding: 6px 14px;
        border-radius: 50px;
        margin-bottom: 22px;
        opacity: 0;
        animation: fade-up 0.5s ease 0.1s forwards;
    }

    .tag-c .blink {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--orange);
        animation: pulse-dot 1.4s ease infinite;
        display: inline-block;
        margin-right: 5px;
    }

    h1 {
        margin-bottom: 24px;
        line-height: 1.0;
    }

    h1 .c1 {
        display: block;
        font-size: clamp(40px, 4.2vw, 62px);
        font-weight: 900;
        color: var(--navy);
        letter-spacing: -0.03em;
        opacity: 0;
        animation: fade-up 0.6s ease 0.26s forwards;
    }

    h1 .c2 {
        /* display: block; */
        font-family: 'Dancing Script', cursive;
        font-size: clamp(54px, 5.6vw, 80px);
        color: var(--orange);
        line-height: 1.0;
        opacity: 0;
        animation: fade-up 0.6s ease 0.42s forwards;
    }

    h1 .c3 {
        /* display: block; */
        font-size: clamp(40px, 4.2vw, 62px);
        font-weight: 900;
        color: var(--navy);
        letter-spacing: -0.03em;
        opacity: 0;
        animation: fade-up 0.6s ease 0.58s forwards;
    }

    h1 .c3 em {
        /* display: block; */
        font-style: normal;
        color: var(--orange);
    }

    .desc-c {
        font-size: 15px;
        color: #555;
        line-height: 1.72;
        font-weight: 400;
        max-width: 400px;
        margin-bottom: 34px;
        opacity: 0;
        animation: fade-up 0.6s ease 0.72s forwards;
    }

    .desc-c span {
        color: var(--orange);
        font-weight: 500;
    }

    .btn-c {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-family: 'Inter', sans-serif;
        font-size: 14px;
        font-weight: 600;
        color: #fff;
        background: var(--orange);
        border: none;
        cursor: pointer;
        height: 50px;
        padding: 0 30px;
        border-radius: 10px;
        opacity: 0;
        animation: fade-up 0.6s ease 0.86s forwards;
        transition: background 0.15s, transform 0.12s, box-shadow 0.15s;
        box-shadow: 0 5px 20px rgba(232, 87, 26, 0.3);
    }

    .btn-c:hover {
        background: #b60f20;
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(232, 87, 26, 0.4);
    }

    .btn-c .arrow {
        transition: transform 0.2s;
    }

    .btn-c:hover .arrow {
        transform: translateX(4px);
    }

    /* ── RIGHT ring ── */
    @keyframes fade-in {
        from {
            opacity: 0
        }

        to {
            opacity: 1
        }
    }

    @keyframes spin-slow {
        from {
            transform: rotate(0)
        }

        to {
            transform: rotate(360deg)
        }
    }

    @keyframes ring-pulse {

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

        50% {
            transform: scale(1.06);
            opacity: 1;
        }
    }

    @keyframes float-gentle {

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

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

    @keyframes float-n1 {

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

        50% {
            transform: translateY(-7px)
        }
    }

    @keyframes float-n2 {

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

        50% {
            transform: translateY(7px)
        }
    }

    .c-right {
        position: relative;
        height: 520px;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        animation: fade-in 0.8s ease 0.6s forwards;
    }

    .ring-glow {
        position: absolute;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(232, 87, 26, 0.07) 0%, transparent 70%);
        animation: ring-pulse 4s ease-in-out infinite;
    }

    .ring-orbit {
        position: absolute;
        width: 360px;
        height: 360px;
        border-radius: 50%;
        border: 1.5px dashed rgba(232, 87, 26, 0.25);
        animation: spin-slow 24s linear infinite;
    }

    .ring-orbit-2 {
        position: absolute;
        width: 280px;
        height: 280px;
        border-radius: 50%;
        border: 1px solid rgba(232, 87, 26, 0.12);
        animation: spin-slow 18s linear infinite reverse;
    }

    /* Center card */
    .center-card {
        position: absolute;
        background: #fff;
        border-radius: 18px;
        padding: 18px 24px;
        box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.8);
        text-align: center;
        z-index: 10;
        animation: float-gentle 5s ease-in-out infinite;
    }

    .center-card svg {
        width: 42px;
        height: 26px;
        margin-bottom: 4px;
    }

    .center-card span {
        display: block;
        font-size: 12.5px;
        font-weight: 500;
        color: var(--navy);
        letter-spacing: 0.04em;
    }

    /* Orbit nodes */
    .orbit-node {
        position: absolute;
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: #fff;
        border: 2px solid rgba(232, 87, 26, 0.25);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        z-index: 8;
        cursor: pointer;
        transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s, border-color 0.2s;
    }

    .orbit-node:hover {
        box-shadow: 0 10px 32px rgba(232, 87, 26, 0.28);
        border-color: var(--orange);
        z-index: 20;
    }

    /* Node positions — 60° intervals, 180px radius */
    .node-1 {
        top: calc(50% - 180px - 28px);
        left: calc(50% - 28px);
        animation: float-n1 3.4s ease-in-out infinite;
    }

    .node-2 {
        top: calc(50% - 90px - 28px);
        left: calc(50% + 156px - 28px);
        animation: float-n2 3.8s ease-in-out 0.3s infinite;
    }

    .node-3 {
        top: calc(50% + 90px - 28px);
        left: calc(50% + 156px - 28px);
        animation: float-n1 4.1s ease-in-out 0.6s infinite;
    }

    .node-4 {
        top: calc(50% + 180px - 28px);
        left: calc(50% - 28px);
        animation: float-n2 3.6s ease-in-out 0.9s infinite;
    }

    .node-5 {
        top: calc(50% + 90px - 28px);
        left: calc(50% - 156px - 28px);
        animation: float-n1 3.9s ease-in-out 0.5s infinite;
    }

    .node-6 {
        top: calc(50% - 90px - 28px);
        left: calc(50% - 156px - 28px);
        animation: float-n2 4.3s ease-in-out 0.2s infinite;
    }

    /* Popup card */
    .node-popup {
        position: absolute;
        bottom: calc(100% + 14px);
        left: 50%;
        transform: translateX(-50%) translateY(8px) scale(0.9);
        width: 180px;
        background: #fff;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(232, 87, 26, 0.1);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        z-index: 30;
    }

    .node-popup.open-bottom {
        bottom: auto;
        top: calc(100% + 14px);
    }

    .node-popup.shift-left {
        left: auto;
        right: 0;
    }

    .node-popup.shift-right {
        left: 0;
    }

    .orbit-node:hover .node-popup {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
        pointer-events: all;
    }

    .popup-img-placeholder {
        width: 100%;
        height: 110px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 36px;
    }

    .node-popup .popup-body {
        padding: 12px 14px;
    }

    .node-popup .popup-body strong {
        display: block;
        font-size: 12.5px;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 4px;
    }

    .node-popup .popup-body p {
        font-size: 11px;
        color: #888;
        line-height: 1.5;
    }

    .node-popup::after {
        content: '';
        position: absolute;
        bottom: -6px;
        left: 50%;
        transform: translateX(-50%) rotate(45deg);
        width: 12px;
        height: 12px;
        background: #fff;
        border-right: 1px solid rgba(232, 87, 26, 0.1);
        border-bottom: 1px solid rgba(232, 87, 26, 0.1);
    }

    .node-4 .node-popup::after,
    .node-5 .node-popup::after {
        bottom: auto;
        top: -6px;
        border-right: none;
        border-bottom: none;
        border-left: 1px solid rgba(232, 87, 26, 0.1);
        border-top: 1px solid rgba(232, 87, 26, 0.1);
    }

    /* Growth chip */
    .growth-chip-c {
        position: absolute;
        bottom: 60px;
        right: 20px;
        background: #fff;
        border-radius: 50px;
        padding: 9px 18px;
        display: flex;
        align-items: center;
        gap: 8px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.09);
        font-size: 12px;
        font-weight: 600;
        color: var(--navy);
        z-index: 15;
        white-space: nowrap;
        animation: float-gentle 5s ease-in-out 1s infinite;
    }

    .growth-chip-c .g-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #22c55e;
        animation: pulse-dot 1.6s ease infinite;
    }

    .growth-chip-c span {
        color: #22c55e;
    }

    .heart {
        display: inline-block;
        animation: blink 2s infinite;
    }

    @keyframes blink {
        0% {
            opacity: 1;
            transform: scale(1);
        }

        50% {
            opacity: 0.4;
            transform: scale(1.1);
        }

        100% {
            opacity: 1;
            transform: scale(1);
        }
    }

    .footer-bottom {
        position: relative;
        display: flex;
        align-items: center;
    }

    .footer-copy {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
    }

    span.footer-made {
        margin-left: auto;
        text-align: right;
        padding-right: 35px;
        font-size: 13px;
        color: #5E5A62;
    }

    span.footer-made a {
        color: #5E5A62;
        text-decoration: none;
    }

    /* ══════════════════════════════════════   MOBILE RESPONSIVE══════════════════════════════════════ */
    @media (max-width: 768px) {

        .nav-links-row,
        .nav-cta-btn {
            display: none;
        }

        .hamburger {
            display: flex;
            margin-left: auto;
        }

        .hero-c-inner {
            grid-template-columns: 1fr;
            padding: 80px 24px 40px;
            gap: 0;
            min-height: auto;
        }

        .c-bg img {
            object-position: 70% center;
        }

        .c-bg::after {
            background: linear-gradient(to bottom, rgba(253, 249, 245, 0.97) 0%, rgba(253, 249, 245, 0.90) 45%, rgba(253, 249, 245, 0.72) 70%, rgba(253, 249, 245, 0.45) 100%);
        }

        #hero-c::before {
            mask-image: radial-gradient(ellipse 100% 60% at 50% 70%, black 10%, rgba(0, 0, 0, 0.3) 60%, transparent 90%);
        }

        .c-left {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding-bottom: 36px;
            padding-top: 36px;
        }

        h1 .c1,
        h1 .c3 {
            font-size: clamp(34px, 9vw, 50px);
        }

        h1 .c2 {
            font-size: clamp(46px, 12vw, 66px);
        }

        .desc-c {
            text-align: center;
            max-width: 340px;
            font-size: 14.5px;
        }

        .btn-c {
            width: 100%;
            max-width: 280px;
            justify-content: center;
            height: 52px;
            font-size: 15px;
        }

        .c-right {
            height: 360px;
            width: 100%;
        }

        .ring-glow {
            width: 280px;
            height: 280px;
        }

        .ring-orbit {
            width: 250px;
            height: 250px;
        }

        .ring-orbit-2 {
            width: 190px;
            height: 190px;
        }

        .node-1 {
            top: calc(50% - 125px - 22px);
            left: calc(50% - 22px);
        }

        .node-2 {
            top: calc(50% - 63px - 22px);
            left: calc(50% + 108px - 22px);
        }

        .node-3 {
            top: calc(50% + 63px - 22px);
            left: calc(50% + 108px - 22px);
        }

        .node-4 {
            top: calc(50% + 125px - 22px);
            left: calc(50% - 22px);
        }

        .node-5 {
            top: calc(50% + 63px - 22px);
            left: calc(50% - 108px - 22px);
        }

        .node-6 {
            top: calc(50% - 63px - 22px);
            left: calc(50% - 108px - 22px);
        }

        .orbit-node {
            width: 44px;
            height: 44px;
            font-size: 18px;
        }

        .node-popup {
            width: 150px;
            left: 50%;
            transform: translateX(-50%) translateY(8px) scale(0.9);
        }

        .node-popup.open-bottom {
            bottom: auto;
            top: calc(100% + 10px);
        }

        .node-popup.shift-left {
            left: auto;
            right: 0;
        }

        .node-popup.shift-right {
            left: 0;
        }

        .popup-img-placeholder {
            height: 80px;
            font-size: 28px;
        }

        .node-popup .popup-body {
            padding: 9px 12px;
        }

        .node-popup .popup-body strong {
            font-size: 11.5px;
        }

        .node-popup .popup-body p {
            font-size: 10px;
        }

        .growth-chip-c {
            bottom: -40px;
            right: auto;
            left: 50%;
            transform: translateX(-50%);
            animation: none;
            font-size: 11px;
        }

        .blob-1 {
            width: 300px;
            height: 300px;
            top: -60px;
            right: -60px;
        }

        .blob-2 {
            width: 240px;
            height: 240px;
        }

        .blob-3 {
            display: none;
        }
    }

    @media (max-width: 480px) {
        .hero-c-inner {
            padding: 80px 20px 32px;
        }

        h1 .c1,
        h1 .c3 {
            font-size: 32px;
        }

        h1 .c2 {
            font-size: 44px;
        }

        .c-right {
            height: 300px;
        }

        .ring-glow {
            width: 220px;
            height: 220px;
        }

        .ring-orbit {
            width: 200px;
            height: 200px;
        }

        .ring-orbit-2 {
            width: 154px;
            height: 154px;
        }

        .node-1 {
            top: calc(50% - 100px - 20px);
            left: calc(50% - 20px);
        }

        .node-2 {
            top: calc(50% - 50px - 20px);
            left: calc(50% + 87px - 20px);
        }

        .node-3 {
            top: calc(50% + 50px - 20px);
            left: calc(50% + 87px - 20px);
        }

        .node-4 {
            top: calc(50% + 100px - 20px);
            left: calc(50% - 20px);
        }

        .node-5 {
            top: calc(50% + 50px - 20px);
            left: calc(50% - 87px - 20px);
        }

        .node-6 {
            top: calc(50% - 50px - 20px);
            left: calc(50% - 87px - 20px);
        }

        .orbit-node {
            width: 40px;
            height: 40px;
            font-size: 16px;
        }
    }

    @media (max-width: 576px) {
        .footer-bottom {
            flex-direction: column;
            gap: 6px;
        }

        .footer-copy {
            position: static;
            transform: none;
        }

        .footer-made {
            margin-left: 0;
        }

        span.footer-made {
            text-align: center;
            padding: 0;
            margin: 0;
        }
    }
    