:root {
    --bg: #f7f4ef;
    --ink: #0f1412;
    --muted: #4f5a55;
    --accent: #1e6f5c;
    --accent-2: #f08a4b;
    --card: #ffffff;
    --border: rgba(13, 20, 18, .1);
    --shadow: 0 28px 70px rgba(0, 0, 0, .14);
    --shadow-soft: 0 14px 40px rgba(0, 0, 0, .08);
    --glass: rgba(255, 255, 255, .7);
    --radium: #ccff00
}

.glow-cta svg {
    color: var(--radium);
    filter: drop-shadow(0 0 5px rgba(204, 255, 0, 0.8));
    animation: radiumGlow 2s ease-in-out infinite
}

@keyframes radiumGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 5px rgba(204, 255, 0, 0.6));
        transform: scale(1)
    }

    50% {
        filter: drop-shadow(0 0 15px rgba(204, 255, 0, 0.9));
        transform: scale(1.15)
    }
}

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

body {
    font-family: Space Grotesk, system-ui, sans-serif;
    color: var(--ink);
    background: radial-gradient(circle at top, #fffaf1, #f7f4ef 55%, #eee7df);
    line-height: 1.6
}

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

.nav-links a {
    position: relative;
    padding: 6px 2px;
    font-weight: 500
}

.nav-links a:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    transition: width .2s ease
}

.nav-links a:hover:after {
    width: 100%
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid rgba(30, 111, 92, .5);
    outline-offset: 2px
}

.grain {
    pointer-events: none;
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
    mix-blend-mode: multiply;
    z-index: 1
}

.bg-orb {
    position: fixed;
    width: 360px;
    height: 360px;
    border-radius: 999px;
    background: radial-gradient(circle, #f08a4b66, #f08a4b00);
    filter: blur(8px);
    z-index: 0;
    opacity: .6
}

.comets {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    overflow: hidden
}

.comet {
    position: absolute;
    width: 220px;
    height: 3px;
    background: linear-gradient(90deg, #fff0, #21c08b);
    filter: drop-shadow(0 0 10px rgba(33, 192, 139, .9));
    transform: rotate(-20deg);
    opacity: .95
}

.comet:after {
    content: "";
    position: absolute;
    right: 0;
    top: -4px;
    width: 10px;
    height: 10px;
    background: #21c08b;
    border-radius: 50%;
    box-shadow: 0 0 16px #21c08b, 0 0 28px #21c08bb3;
    animation: cometBurst 1.8s ease-in-out infinite
}

.comet-1 {
    top: 10%;
    left: -20%;
    animation: cometFly 3.2s linear infinite
}

.comet-2 {
    top: 32%;
    left: -30%;
    animation: cometFly 3.6s linear infinite;
    animation-delay: .4s
}

.comet-3 {
    top: 58%;
    left: -25%;
    animation: cometFly 3.4s linear infinite;
    animation-delay: .9s
}

.comet-4 {
    top: 18%;
    left: -35%;
    background: linear-gradient(90deg, #fff0, #f08a4b);
    filter: drop-shadow(0 0 10px rgba(240, 138, 75, .9));
    animation: cometFlyAlt 3.1s linear infinite
}

.comet-5 {
    top: 44%;
    left: -40%;
    background: linear-gradient(90deg, #fff0, #5b7cff);
    filter: drop-shadow(0 0 10px rgba(91, 124, 255, .9));
    animation: cometFlyAlt 3.8s linear infinite;
    animation-delay: .5s
}

.comet-6 {
    top: 72%;
    left: -30%;
    background: linear-gradient(90deg, #fff0, #7c5cff);
    filter: drop-shadow(0 0 10px rgba(124, 92, 255, .9));
    animation: cometFlyAlt 3.5s linear infinite;
    animation-delay: .7s
}

.comet-halo {
    position: absolute;
    top: 40%;
    left: 55%;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, #fffc, #fff0);
    box-shadow: 0 0 40px #21c08b80, 0 0 70px #f08a4b66, 0 0 100px #5b7cff59;
    opacity: 0;
    animation: haloPulse 3.2s ease-in-out infinite
}

.starfield {
    position: absolute;
    inset: 0;
    background-repeat: repeat;
    background-size: 260px 260px;
    opacity: .7;
    animation: twinkle 2.4s ease-in-out infinite
}

.star-1 {
    background-image: radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, .9) 50%, transparent 51%), radial-gradient(1.5px 1.5px at 80px 120px, rgba(255, 255, 255, .8) 50%, transparent 51%), radial-gradient(2px 2px at 200px 80px, rgba(255, 255, 255, .7) 50%, transparent 51%), radial-gradient(1.5px 1.5px at 160px 200px, rgba(255, 255, 255, .6) 50%, transparent 51%)
}

.star-2 {
    background-image: radial-gradient(2px 2px at 40px 160px, rgba(33, 192, 139, .9) 50%, transparent 51%), radial-gradient(1.5px 1.5px at 140px 40px, rgba(240, 138, 75, .8) 50%, transparent 51%), radial-gradient(2px 2px at 220px 220px, rgba(91, 124, 255, .7) 50%, transparent 51%), radial-gradient(1.5px 1.5px at 120px 200px, rgba(255, 255, 255, .7) 50%, transparent 51%);
    animation-delay: .8s
}

.star-3 {
    background-image: radial-gradient(1.5px 1.5px at 30px 90px, rgba(255, 255, 255, .8) 50%, transparent 51%), radial-gradient(2px 2px at 110px 180px, rgba(255, 255, 255, .7) 50%, transparent 51%), radial-gradient(1.5px 1.5px at 210px 30px, rgba(240, 138, 75, .7) 50%, transparent 51%), radial-gradient(2px 2px at 240px 140px, rgba(33, 192, 139, .8) 50%, transparent 51%);
    animation-delay: 1.4s
}

.orb-1 {
    top: -80px;
    left: -40px
}

.orb-2 {
    bottom: 10%;
    right: -80px;
    background: radial-gradient(circle, #1e6f5c66, #1e6f5c00)
}

.orb-3 {
    top: 40%;
    left: 55%;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, #284b6359, #284b6300)
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    background: #f7f4efe0;
    border-bottom: 1px solid var(--border)
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.logo {
    display: flex;
    align-items: center
}

.logo-img {
    height: 48px;
    width: auto;
    display: block
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--card);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--ink);
    display: block
}

.btn {
    padding: 12px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
    font-weight: 600;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    filter: saturate(1.1)
}

.btn-outline {
    background: #1e6f5c14;
    color: var(--ink);
    border: 1px solid rgba(30, 111, 92, .35)
}

.btn-ghost {
    background: #1313130d;
    color: var(--ink)
}

.btn-whatsapp {
    background: #1f7a63;
    color: #fff
}

.btn-whatsapp:hover {
    box-shadow: 0 18px 45px #1f7a6359
}

.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: .75rem;
    color: var(--muted);
    margin-bottom: 12px
}

.neon-domain {
    text-transform: lowercase;
    letter-spacing: 3px;
    color: #21c08b;
    text-shadow: 0 0 6px rgba(33, 192, 139, .6), 0 0 16px rgba(33, 192, 139, .45), 0 0 28px rgba(33, 192, 139, .3);
    animation: neonPulse 1.8s ease-in-out infinite
}

.hero h1 {
    font-family: Fraunces, serif;
    font-size: clamp(2.6rem, 4vw, 4rem);
    line-height: 1.05;
    margin-bottom: 20px
}

.hero h1 span {
    color: var(--accent)
}

.hero-subline {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 10px
}

.lead {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 24px
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px
}

.trust-row span {
    background: #13131314;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: .85rem
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
    border-top: 1px solid var(--border);
    padding-top: 20px
}

.hero-stats h3 {
    font-size: 1.3rem
}

.hero-card {
    background: var(--card);
    border-radius: 28px;
    padding: 28px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, .7);
    -webkit-backdrop-filter: blur(14px) saturate(1.1);
    backdrop-filter: blur(14px) saturate(1.1);
    display: flex;
    flex-direction: column;
    gap: 16px
}

.hero-card-header {
    display: flex;
    justify-content: space-between;
    font-size: .9rem;
    color: var(--muted)
}

.pill {
    background: var(--accent-2);
    color: #fff;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: .75rem
}

.hero-card ul {
    list-style: none;
    display: grid;
    gap: 16px;
    color: var(--muted)
}

.hero-card li strong {
    display: block;
    color: var(--ink);
    margin-bottom: 4px
}

.hero-card-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid var(--border);
    padding-top: 16px
}

.logo-strip {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px 60px;
    color: var(--muted)
}

.logo-strip p {
    margin-bottom: 16px
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    font-weight: 600;
    color: var(--ink)
}

.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
    position: relative;
    z-index: 2
}

.section.alt {
    background: #fefaf4;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border)
}

.section-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 640px;
    margin-bottom: 40px
}

.section-header h2 {
    font-family: Fraunces, serif;
    font-size: clamp(2rem, 3vw, 3rem)
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px
}

.card {
    background: linear-gradient(180deg, #fff, #fbf9f6);
    border-radius: 24px;
    padding: 24px;
    border: 1px solid rgba(19, 19, 19, .08);
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 16px;
    position: relative;
    overflow: hidden
}

.glass {
    background: #fff9;
    border: 1px solid rgba(255, 255, 255, .5);
    -webkit-backdrop-filter: blur(14px) saturate(1.1);
    backdrop-filter: blur(14px) saturate(1.1);
    box-shadow: 0 24px 60px #0000001f
}

.card:before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, #1e6f5c2e, #f08a4b33);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none
}

.card img {
    width: 100%;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .4);
    box-shadow: 0 18px 40px #00000038;
    background: #0d1714;
    aspect-ratio: 16 / 10;
    object-fit: cover
}

.card ul {
    list-style: none;
    display: grid;
    gap: 8px;
    color: var(--muted)
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px
}

.work-grid article {
    padding: 28px;
    border-radius: 26px;
    border: 1px solid var(--border);
    background: linear-gradient(180deg, #fff, #faf7f2);
    display: grid;
    gap: 12px
}

.tag {
    align-self: flex-start;
    padding: 4px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    font-size: .8rem
}

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px
}

.timeline div {
    padding: 20px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid var(--border);
    display: grid;
    gap: 10px
}

.timeline span {
    font-weight: 600;
    color: var(--accent)
}

.insights {
    background: linear-gradient(135deg, #1e6f5c1f, #f08a4b1f);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border)
}

.insight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px
}

.insight-grid article {
    background: #fff;
    padding: 22px;
    border-radius: 20px;
    border: 1px solid var(--border);
    display: grid;
    gap: 12px
}

.value {
    background: #fffdf7;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border)
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px
}

.value-grid div {
    background: #fff;
    padding: 22px;
    border-radius: 20px;
    border: 1px solid var(--border);
    display: grid;
    gap: 10px
}

.highlights {
    background: #fef7ef;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border)
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px
}

.highlight-grid div {
    background: #fff;
    padding: 22px;
    border-radius: 20px;
    border: 1px solid var(--border);
    display: grid;
    gap: 10px
}

.gallery {
    background: #f4f1ec;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border)
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px
}

.gallery-grid figure {
    background: linear-gradient(180deg, #fff, #faf7f2);
    border-radius: 20px;
    border: 1px solid var(--border);
    padding: 12px;
    display: grid;
    gap: 10px
}

.gallery-grid img {
    width: 100%;
    border-radius: 14px;
    display: block;
    box-shadow: 0 18px 40px #00000038;
    aspect-ratio: 16 / 10;
    object-fit: cover
}

.gallery-grid figcaption {
    font-size: .9rem;
    color: var(--muted)
}

.pricing {
    background: #f8f6f1;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border)
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px
}

.pricing-grid article {
    background: linear-gradient(180deg, #fff, #faf7f2);
    padding: 22px;
    border-radius: 20px;
    border: 1px solid var(--border);
    display: grid;
    gap: 10px
}

.pricing-grid ul {
    list-style: none;
    display: grid;
    gap: 6px;
    color: var(--muted)
}

.price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px
}

.pricing-note {
    margin-top: 18px;
    color: var(--muted)
}

.pricing-gst {
    margin-top: 6px;
    font-size: .85rem;
    color: var(--muted)
}

.strike {
    color: var(--muted);
    text-decoration: line-through;
    font-size: 1rem
}

.badge.discount {
    background: #1e6f5c2e;
    color: var(--accent);
    border: 1px solid rgba(30, 111, 92, .35);
    box-shadow: 0 0 #1e6f5c59;
    animation: glowPulse 1.6s ease-in-out infinite
}

.proof {
    background: #f4f8f7;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border)
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px
}

.proof-grid div {
    background: #fff;
    padding: 24px;
    border-radius: 20px;
    border: 1px solid var(--border);
    text-align: center
}

.proof-grid h3 {
    font-size: 2rem;
    color: var(--accent)
}

.testimonials {
    background: #fff7f0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border)
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px
}

.testimonial-grid article {
    background: linear-gradient(180deg, #fff, #faf7f2);
    padding: 22px;
    border-radius: 20px;
    border: 1px solid var(--border);
    display: grid;
    gap: 12px
}

.testimonial-grid span {
    color: var(--muted);
    font-size: .9rem
}

.testimonial-marquee {
    margin-top: 26px;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: #fff;
    padding: 12px 0
}

.marquee-track {
    display: flex;
    gap: 40px;
    white-space: nowrap;
    animation: marquee 22s linear infinite;
    padding: 0 24px
}

.marquee-track span {
    font-size: .95rem;
    color: var(--ink);
    background: #1313130f;
    padding: 8px 14px;
    border-radius: 999px
}

.before-after {
    background: #f7f5ff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border)
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px
}

.before-after-grid article {
    background: #fff;
    padding: 24px;
    border-radius: 22px;
    border: 1px solid var(--border);
    display: grid;
    gap: 12px
}

.badge {
    align-self: flex-start;
    padding: 6px 14px;
    border-radius: 999px;
    background: #13131314;
    font-size: .8rem;
    font-weight: 600
}

.badge.after {
    background: #1e6f5c29;
    color: var(--accent)
}

.mockup {
    border-radius: 18px;
    border: 1px solid var(--border);
    background: #f4f4f4;
    padding: 10px;
    display: grid;
    gap: 12px
}

.mockup img {
    width: 100%;
    border-radius: 14px;
    display: block;
    box-shadow: 0 18px 40px #00000038;
    aspect-ratio: 16 / 10;
    object-fit: cover
}

.contact {
    padding-top: 100px
}

.contact-card {
    background: var(--ink);
    color: #fff;
    border-radius: 32px;
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px
}

.contact-card form {
    display: grid;
    gap: 16px
}

.contact-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px
}

.contact-badges span {
    background: #ffffff1f;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: .85rem
}

.form-success {
    display: none;
    font-size: .95rem;
    color: #d5f5e6;
    background: #ffffff14;
    padding: 12px 16px;
    border-radius: 14px
}

.form-success.show {
    display: block
}

.form-error {
    display: none;
    font-size: .95rem;
    color: #ffd7d7;
    background: #ffffff14;
    padding: 12px 16px;
    border-radius: 14px
}

.form-error.show {
    display: block
}

.contact-card label {
    display: grid;
    gap: 6px;
    font-size: .9rem
}

.contact-card input,
.contact-card textarea {
    padding: 12px 14px;
    border-radius: 14px;
    border: none;
    font-family: inherit
}

.footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px 80px;
    display: grid;
    gap: 12px;
    color: var(--muted)
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 12px;
    display: block
}

.legal {
    padding-top: 40px
}

.cta-band {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 32px 24px;
    background: linear-gradient(135deg, #0f1f1b, #1d3d33);
    color: #fff;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    overflow: hidden
}

.cta-band:after {
    content: "";
    position: absolute;
    inset: -60% -30%;
    background: radial-gradient(circle, #f08a4b2e, #0000);
    pointer-events: none
}

.cta-band h2 {
    font-family: Fraunces, serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem)
}

@media(max-width:900px) {
    .nav-links {
        position: fixed;
        top: 80px;
        right: 24px;
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: 20px;
        padding: 16px;
        display: none;
        flex-direction: column;
        gap: 12px;
        box-shadow: var(--shadow)
    }

    .nav-links.show,
    .menu-toggle {
        display: flex
    }
}

@media(max-width:720px) {
    .cta-band {
        flex-direction: column;
        text-align: center
    }
}

@keyframes floatIn {
    0% {
        opacity: 0;
        transform: translateY(20px)
    }

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

@keyframes marquee {
    0% {
        transform: translate(0)
    }

    to {
        transform: translate(-50%)
    }
}

@keyframes neonPulse {

    0%,
    to {
        text-shadow: 0 0 6px rgba(33, 192, 139, .55), 0 0 16px rgba(33, 192, 139, .4), 0 0 28px rgba(33, 192, 139, .25)
    }

    50% {
        text-shadow: 0 0 10px rgba(33, 192, 139, .8), 0 0 22px rgba(33, 192, 139, .6), 0 0 36px rgba(33, 192, 139, .4)
    }
}

@keyframes cometFly {
    0% {
        transform: translate(-120%) translateY(0) rotate(-20deg);
        opacity: 0
    }

    10% {
        opacity: .9
    }

    60% {
        opacity: .9
    }

    to {
        transform: translate(160%) translateY(40px) rotate(-20deg);
        opacity: 0
    }
}

@keyframes cometFlyAlt {
    0% {
        transform: translate(-140%) translateY(10px) rotate(-24deg);
        opacity: 0
    }

    12% {
        opacity: .95
    }

    60% {
        opacity: .95
    }

    to {
        transform: translate(170%) translateY(60px) rotate(-24deg);
        opacity: 0
    }
}

@keyframes haloPulse {

    0%,
    70%,
    to {
        opacity: 0;
        transform: scale(.6)
    }

    30% {
        opacity: .85;
        transform: scale(1.2)
    }

    50% {
        opacity: .4;
        transform: scale(.9)
    }
}

@keyframes twinkle {

    0%,
    to {
        opacity: .4
    }

    50% {
        opacity: .9
    }
}

@keyframes cometBurst {

    0%,
    to {
        transform: scale(.8);
        opacity: .7
    }

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

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 #1e6f5c59
    }

    50% {
        box-shadow: 0 0 18px #1e6f5c73
    }

    to {
        box-shadow: 0 0 #1e6f5c59
    }
}

.section,
.hero,
.logo-strip {
    opacity: 0;
    transform: translateY(20px)
}

.revealed {
    animation: floatIn .9s ease both
}