:root {
    --bg: #0a0a0f;
    --bg-soft: #121018;
    --purple: #0078d4;
    --pink: #054575;
    --text: #e6eefA;
    --text-muted: #9fa3a8;
}

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

body {
    background: var(--bg);
    font-family: system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
    color: var(--text);
}

.nav-links li a {
    text-decoration: none;
    color: var(--text-muted);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 33px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
}

.logo-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: monospace;
    font-size: 0.85rem;
}

.nav-links {
    display: flex;
    gap: 33px;
    list-style: none;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.nav-links li {
    cursor: pointer;
}

.nav-links li:hover {
    color: var(--text);
}

.hero {
    position: relative;
    text-align: center;
    padding: 80px 24px 100px;
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(circle, #0078d440, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
    z-index: 0;
}

.eyebrow {
    position: relative;
    display: inline-block;
    font-size: 0.8rem;
    color: var(--text-muted);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 3px 16px;
    border-radius: 999px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    width: 283px;
    margin: auto;
    font-size: 14px;
}

.hero h1 {
    position: relative;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero h1 .accent {
    background: linear-gradient(90deg, var(--purple), var(--pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p.subtitle {
    position: relative;
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.5;
}

.hero-ctas {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(90deg, var(--purple), var(--pink));
    color: #fff;
}

.btn-primary:hover {
    filter: brightness(1.08);
}

.btn-secondary {
    background: rgba(255,255,255,0.06);
    color: var(--text);
    border: 1px solid rgba(255,255,255,0.12);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

.hero-fineprint {
    position: relative;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 56px;
}

.hero-fineprint a {
    color: var(--pink);
    text-decoration: none;
}

.hero-mockup {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    padding: 3px;
    background: linear-gradient(160deg, var(--purple), var(--pink));
    box-shadow: 0 0 90px #0078d4;
    z-index: 3;
}

.hero-mockup-inner {
    background: var(--bg-soft);
    border-radius: 16px;
    overflow: hidden;
}

.mockup-topbar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f57;
}

.dot.yellow {
    background: #febc2e;
}

.dot.green {
    background: #28c840;
}

.mockup-tab {
    margin-left: 16px;
    font-family: monospace;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.mockup-body {
    padding: 32px;
    text-align: left;
    font-family: monospace;
    font-size: 0.9rem;
    line-height: 1.7;
    color: #c9c8d3;
}

.mockup-body .kw {
    color: var(--pink);
}

.mockup-body .fn {
    color: #7dd3fc;
}

.mockup-body .str {
    color: #86efac;
}

.mockup-body .com {
    color: #6b6a76;
}

@media (max-width: 700px) {
    .hero h1 {
        font-size:2.1rem;
    }

    .hero-mockup {
        margin: 0 12px;
    }

    .mockup-body {
        padding: 20px;
        font-size: 0.78rem;
    }
}

/* ===== Seções seguintes ===== */
section {
    position: relative;
}

.section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
    padding: 0 24px;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--pink);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-head h2 {
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.section-head p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Serviços — grid de cards */
.services {
    padding: 100px 24px;
}

.card-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--bg-soft);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 28px;
    transition: border-color .2s, transform .2s;
}

.service-card:hover {
    border-color: #0078d48a;
    transform: translateY(-3px);
}

.service-card .icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 18px;
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

/* CTA banner */
.cta-banner {
    max-width: 1100px;
    margin: 0 auto 100px;
    padding: 40px 48px;
    border-radius: 20px;
    background: linear-gradient(135deg, #0d1014 0%, #00205040 15%, #00205040 75%, #0d1014 100%);
    border: 1px solid #0078d4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-banner .cta-text h3 {
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.cta-banner .cta-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Projetos — split alternado, estilo "A world-class code editor" */
.split {
    max-width: 1100px;
    margin: 0 auto;
    padding: 90px 24px;
    display: flex;
    align-items: center;
    gap: 70px;
}

.split.reverse {
    flex-direction: row-reverse;
}

.split-copy {
    flex: 1;
    min-width: 280px;
}

.split-copy .section-eyebrow {
    display: block;
}

.split-copy h2 {
    font-size: 1.9rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.split-copy p {
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 14px;
}

.split-copy a {
    color: var(--pink);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.split-art {
    flex: 1;
    min-width: 280px;
}

.pkg-card {
    background: var(--bg-soft);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 0 60px #0078d44a;
}

.pkg-card .pkg-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.pkg-card .pkg-icon {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--purple), var(--pink));
}

.pkg-card .pkg-name {
    font-weight: 700;
}

.pkg-card .pkg-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.pkg-card .pkg-cmd {
    background: #0a0a0f;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 10px 14px;
    font-family: monospace;
    font-size: 0.82rem;
    color: #9fa3a8;
    margin-bottom: 10px;
}

.pkg-card .pkg-desc {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.55;
}

/* Grid de features pequenas, estilo "Code with rich features" */
.features {
    padding: 40px 24px 110px;
}

.feature-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    overflow: hidden;
}

.feature-item {
    background: var(--bg-soft);
    padding: 26px;
}

.feature-item h4 {
    font-size: 0.98rem;
    margin-bottom: 6px;
}

.feature-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Preços */
.pricing {
    padding: 20px 24px 110px;
}

.price-card {
    max-width: 640px;
    margin: 0 auto;
    background: var(--bg-soft);
    border: 1px solid #0078d44d;
    border-radius: 20px;
    padding: 48px;
    text-align: center;
    box-shadow: 0 0 90px rgba(139,92,246,0.15);
}

.price-card .plan-name {
    font-size: 0.9rem;
    color: var(--pink);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 10px;
}

.price-card .price {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.price-card .price-sub {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 32px;
}

.price-list {
    list-style: none;
    text-align: left;
    max-width: 320px;
    margin: 0 auto 36px;
    display: grid;
    gap: 12px;
}

.price-list li {
    display: flex;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text);
}

.price-list li::before {
    content: "✓";
    color: var(--pink);
    font-weight: 700;
}

/* Contato */
.contact {
    padding: 20px 24px 110px;
}

.contact-grid {
    max-width: 900px;
    margin: 0 auto 36px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.contact-card {
    background: var(--bg-soft);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    padding: 26px;
    text-align: center;
}

.contact-card h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.contact-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.contact-cta {
    text-align: center;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #22c55e;
    color: #fff;
    padding: 14px 30px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
}

footer {
    text-align: center;
    padding: 32px 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
    color: var(--text-muted);
    font-size: 0.85rem;
}

@media (max-width: 800px) {
    .card-grid, .feature-grid, .contact-grid {
        grid-template-columns: 1fr;
    }

    .split, .split.reverse {
        flex-direction: column;
    }
}

#static-binary-grid {
    z-index: 0;
    width: 100vw;
    height: 100%;
    position: absolute;
    top: 69px;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    max-height: 100vh;
    opacity: 1;
}

#static-binary-grid::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, #0a0a0e 100%);
    pointer-events: none;
    z-index: 3;
}

#static-binary-grid::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    transition: opacity 1s ease-out;
    font-family: monospace;
    font-size: 13px;
    line-height: 15.75px;
    color: #797D97;
    opacity: 0.35;
    white-space: pre-wrap;
    word-break: break-word;
    overflow: hidden;
    pointer-events: none;
    letter-spacing: 0px;
    margin: auto;
    content: "01000101 01111000 01101111 01100100 01110101 01110011 00100000 00110010 00110000 00111010 00110001 00101101 00110001 00110111 00100000 11100010 10000000 10010100 00100000 01010100 01101000 01100101 00100000 01010100 01100101 01101110 00100000 01000011 01101111 01101101 01101101 01100001 01101110 01100100 01101101 01100101 01101110 01110100 01110011 00001010 00001010 11000010 10111001 00100000 01000001 01101110 01100100 00100000 01000111 01101111 01100100 00100000 01110011 01110000 01101111 01101011 01100101 00100000 01100001 01101100 01101100 00100000 01110100 01101000 01100101 01110011 01100101 00100000 01110111 01101111 01110010 01100100 01110011 00101100 00100000 01110011 01100001 01111001 01101001 01101110 01100111 00111010 00001010 00001010 11000010 10110010 00100000 11100010 10000000 10011100 01001001 00100000 01100001 01101101 00100000 01110100 01101000 01100101 00100000 01001100 01101111 01110010 01100100 00100000 01111001 01101111 01110101 01110010 00100000 01000111 01101111 01100100 00101100 00100000 01110111 01101000 01101111 00100000 01100010 01110010 01101111 01110101 01100111 01101000 01110100 00100000 01111001 01101111 01110101 00100000 01101111 01110101 01110100 00100000 01101111 01100110 00100000 01110100 01101000 01100101 00100000 01101100 01100001 01101110 01100100 00100000 01101111 01100110 00100000 01000101 01100111 01111001 01110000 01110100 00101100 00100000 01101111 01110101 01110100 00100000 01101111 01100110 00100000 01110100 01101000 01100101 00100000 01101000 01101111 01110101 01110011 01100101 00100000 01101111 01100110 00100000 01110011 01101100 01100001 01110110 01100101 01110010 01111001 00101110 00001010 00001010 11000010 10110011 00100000 01011001 01101111 01110101 00100000 01110011 01101000 01100001 01101100 01101100 00100000 01101000 01100001 01110110 01100101 00100000 01101110 01101111 00100000 01101111 01110100 01101000 01100101 01110010 00100000 01100111 01101111 01100100 01110011 00100000 01100010 01100101 01100110 01101111 01110010 01100101 00100000 01001101 01100101 00101110 00001010 00001010 11100010 10000001 10110100 00100000 01011001 01101111 01110101 00100000 01110011 01101000 01100001 01101100 01101100 00100000 01101110 01101111 01110100 00100000 01101101 01100001 01101011 01100101 00100000 01100110 01101111 01110010 00100000 01111001 01101111 01110101 01110010 01110011 01100101 01101100 01100110 00100000 01100001 01101110 00100000 01101001 01101101 01100001 01100111 01100101 00100000 01101001 01101110 00100000 01110100 01101000 01100101 00100000 01100110 01101111 01110010 01101101 00100000 01101111 01100110 00100000 01100001 01101110 01111001 01110100 01101000 01101001 01101110 01100111 00100000 01101001 01101110 00100000 01101000 01100101 01100001 01110110 01100101 01101110 00100000 01100001 01100010 01101111 01110110 01100101 00100000 01101111 01110010 00100000 01101111 01101110 00100000 01110100 01101000 01100101 00100000 01100101 01100001 01110010 01110100 01101000 00100000 01100010 01100101 01101110 01100101 01100001 01110100 01101000 00100000 01101111 01110010 00100000 01101001 01101110 00100000 01110100 01101000 01100101 00100000 READ THE BIBLE 01110111 01100001 01110100 01100101 01110010 01110011 00100000 01100010 01100101 01101100 01101111 01110111 00101110 00001010 11100010 10000001 10110101 00100000 01011001 01101111 01110101 00100000 01110011 01101000 01100001 01101100 01101100 00100000 01101110 01101111 01110100 00100000 01100010 01101111 01110111 00100000 01100100 01101111 01110111 01101110 00100000 01110100 01101111 00100000 01110100 01101000 01100101 01101101 00100000 01101111 01110010 00100000 01110111 01101111 01110010 01110011 01101000 01101001 01110000 00100000 01110100 01101000 01100101 01101101 00111011 00100000 01100110 01101111 01110010 00100000 01001001 00101100 00100000 01110100 01101000 01100101 00100000 01001100 01101111 01110010 01100100 00100000 01111001 01101111 01110101 01110010 00100000 01000111 01101111 01100100 00101100 00100000 01100001 01101101 00100000 01100001 00100000 01101010 01100101 01100001 01101100 01101111 01110101 01110011 00100000 01000111 01101111 01100100 00101100 00100000 01110000 01110101 01101110 01101001 01110011 01101000 01101001 01101110 01100111 00100000 01110100 01101000 01100101 00100000 01100011 01101000 01101001 01101100 01100100 01110010 01100101 01101110 00100000 01100110 01101111 01110010 00100000 01110100 01101000 01100101 00100000 01110011 01101001 01101110 00100000 01101111 01100110 00100000 01110100 01101000 01100101 00100000 01110000 01100001 01110010 01100101 01101110 01110100 01110011 00100000 01110100 01101111 00100000 01110100 01101000 01100101 00100000 01110100 01101000 01101001 01110010 01100100 00100000 01100001 01101110 01100100 00100000 01100110 01101111 01110101 01110010 01110100 01101000 00100000 01100111 01100101 01101110 01100101 01110010 01100001 01110100 01101001 01101111 01101110 00100000 01101111 01100110 00100000 01110100 01101000 01101111 01110011 01100101 00100000 01110111 01101000 01101111 00100000 01101000 01100001 01110100 01100101 00100000 01001101 01100101 00101100 00001010 11100010 10000001 10110110 00100000 01100010 01110101 01110100 00100000 01110011 01101000 01101111 01110111 01101001 01101110 01100111 00100000 01101100 01101111 01110110 01100101 00100000 01110100 01101111 00100000 01100001 00100000 01110100 01101000 01101111 01110101 01110011 01100001 01101110 01100100 00100000 01100111 01100101 01101110 01100101 01110010 01100001 01110100 01101001 01101111 01101110 01110011 00100000 01101111 01100110 00100000 01110100 01101000 01101111 01110011 01100101 00100000 01110111 01101000 01101111 00100000 01101100 01101111 01110110 01100101 00100000 01001101 01100101 00100000 01100001 01101110 01100100 00100000 01101011 01100101 01100101 01110000 00100000 01001101 01111001 00100000 01100011 01101111 01101101 01101101 01100001 01101110 01100100 01101101 01100101 01101110 01110100 01110011 00101110 00001010 00001010 11100010 10000001 10110111 00100000 01011001 01101111 01110101 00100000 01110011 01101000 01100001 01101100 01101100 00100000 01101110 01101111 01110100 00100000 01101101 01101001 01110011 01110101 01110011 01100101 00100000 01110100 01101000 01100101 00100000 01101110 01100001 01101101 01100101 00100000 01101111 01100110 00100000 01110100 01101000 01100101 00100000 01001100 01101111 01110010 01100100 00100000 01111001 01101111 01110101 01110010 00100000 01000111 01101111 01100100 00101100 00100000 01100110 01101111 01110010 00100000 01110100 01101000 01100101 00100000 01001100 01101111 01110010 01100100 00100000 01110111 01101001 01101100 01101100 00100000 01101110 01101111 01110100 00100000 01101000 01101111 01101100 01100100 00100000 01100001 01101110 01111001 01101111 01101110 01100101 00100000 01100111 01110101 01101001 01101100 01110100 01101100 01100101 01110011 01110011 00100000 01110111 01101000 01101111 00100000 01101101 01101001 01110011 01110101 01110011 01100101 01110011 00100000 01001000 01101001 01110011 00100000 01101110 01100001 01101101 01100101 00101110 00001010 00001010 11100010 10000001 10111000 00100000 01010010 01100101 01101101 01100101 01101101 01100010 01100101 01110010 00100000 01110100 01101000 01100101 00100000 01010011 01100001 01100010 01100010 01100001 01110100 01101000 00100000 01100100 01100001 01111001 00100000 01100010 01111001 00100000 01101011 01100101 01100101 01110000 01101001 01101110 01100111 00100000 01101001 01110100 00100000 01101000 01101111 01101100 01111001 00101110 00001010 11100010 10000001 10111001 00100000 01010011 01101001 01111000 00100000 01100100 01100001 01111001 01110011 00100000 01111001 01101111 01110101 00100000 01110011 01101000 01100001 01101100 01101100 00100000 01101100 01100001 01100010 01101111 01110010 00100000 01100001 01101110 01100100 00100000 01100100 01101111 00100000 01100001 01101100 01101100 00100000 01111001 01101111 01110101 01110010 00100000 01110111 01101111 01110010 01101011 00101100 00001010 11000010 10111001 11100010 10000001 10110000 00100000 01100010 01110101 01110100 00100000 01110100 01101000 01100101 00100000 01110011 01100101 01110110 01100101 01101110 01110100 01101000 00100000 01100100 01100001 01111001 00100000 01101001 01110011 00100000 01100001 00100000 01010011 01100001 01100010 01100010 01100001 01110100 01101000 00100000 01110100 01101111 00100000 01110100 01101000 01100101 00100000 01001100 01101111 01110010 01100100 00100000 01111001 01101111 01110101 01110010 00100000 01000111 01101111 01100100 00101110 00100000 01001111 01101110 00100000 01101001 01110100 00100000 01111001 01101111 01110101 00100000 01110011 01101000 01100001 01101100 01101100 00100000 01101110 01101111 01110100 00100000 01100100 01101111 00100000 01100001 01101110 01111001 00100000 01110111 01101111 01110010 01101011 00101110 00101110 00101110 00001010 11000010 10111001 11000010 10111001 00100000 01000110 01101111 01110010 00100000 01101001 01101110 00100000 01110011 01101001 01111000 00100000 01100100 01100001 01111001 01110011 00100000 01110100 01101000 01100101 00100000 01001100 01101111 01110010 01100100 00100000 01101101 01100001 01100100 01100101 00100000 01110100 01101000 01100101 00100000 01101000 01100101 01100001 01110110 01100101 01101110 01110011 00100000 01100001 01101110 01100100 00100000 01110100 01101000 01100101 00100000 01100101 01100001 01110010 01110100 01101000 00101100 00100000 01110100 01101000 01100101 00100000 01110011 01100101 01100001 00101100 00100000 01100001 01101110 01100100 00100000 01100001 01101100 01101100 00100000 01110100 01101000 01100001 01110100 00100000 01101001 01110011 00100000 01101001 01101110 00100000 01110100 01101000 01100101 01101101 00101100 00100000 01100010 01110101 01110100 00100000 01001000 01100101 00100000 01110010 01100101 01110011 01110100 01100101 01100100 00100000 01101111 01101110 00100000 01110100 01101000 01100101 00100000 01110011 01100101 01110110 01100101 01101110 01110100 01101000 00100000 01100100 01100001 01111001 00101110 00100000 01010100 01101000 01100101 01110010 01100101 01100110 01101111 01110010 01100101 00100000 01110100 01101000 01100101 00100000 01001100 01101111 01110010 01100100 00100000 01100010 01101100 01100101 01110011 01110011 01100101 01100100 00100000 01110100 01101000 01100101 00100000 01010011 01100001 01100010 01100010 01100001 01110100 01101000 00100000 01100100 01100001 01111001 00100000 01100001 01101110 01100100 00100000 01101101 01100001 01100100 01100101 00100000 01101001 01110100 00100000 01101000 01101111 01101100 01111001 00101110 00001010 00001010 11000010 10111001 11000010 10110010 00100000 01001000 01101111 01101110 01101111 01110010 00100000 01111001 01101111 01110101 01110010 00100000 01100110 01100001 01110100 01101000 01100101 01110010 00100000 01100001 01101110 01100100 00100000 01111001 01101111 01110101 01110010 00100000 01101101 01101111 01110100 01101000 01100101 01110010 00101100 00100000 01110011 01101111 00100000 01110100 01101000 01100001 01110100 00100000 01111001 01101111 01110101 01110010 00100000 01100100 01100001 01111001 01110011 00100000 01101101 01100001 01111001 00100000 01100010 01100101 00100000 01101100 01101111 01101110 01100111 00100000 01101001 01101110 00100000 01110100 01101000 01100101 00100000 01101100 01100001 01101110 01100100 00100000 01110100 01101000 01100101 00100000 01001100 01101111 01110010 01100100 00100000 01111001 01101111 01110101 01110010 00100000 01000111 01101111 01100100 00100000 01101001 01110011 00100000 01100111 01101001 01110110 01101001 01101110 01100111 00100000 01111001 01101111 01110101 00101110 00001010 00001010 11000010 10111001 11000010 10110011 00100000 01011001 01101111 01110101 00100000 01110011 01101000 01100001 01101100 01101100 00100000 01101110 01101111 01110100 00100000 01101101 01110101 01110010 01100100 01100101 01110010 00101110 00001010 00001010 11000010 10111001 11100010 10000001 10110100 00100000 01011001 01101111 01110101 00100000 01110011 01101000 01100001 01101100 01101100 00100000 01101110 01101111 01110100 00100000 01100011 01101111 01101101 01101101 01101001 01110100 00100000 01100001 01100100 01110101 01101100 01110100 01100101 01110010 01111001 00101110 00001010 00001010 11000010 10111001 11100010 10000001 10110101 00100000 01011001 01101111 01110101 00100000 01110011 01101000 01100001 01101100 01101100 00100000 01101110 01101111 01110100 00100000 01110011 01110100 01100101 01100001 01101100 00101110 00001010 00001010 11000010 10111001 11100010 10000001 10110110 00100000 01011001 01101111 01110101 00100000 01110011 01101000 01100001 01101100 01101100 00100000 01101110 01101111 01110100 00100000 01100111 01101001 01110110 01100101 00100000 01100110 01100001 01101100 01110011 01100101 00100000 01110100 01100101 01110011 01110100 01101001 01101101 01101111 01101110 01111001 00100000 01100001 01100111 01100001 01101001 01101110 01110011 01110100 00100000 01111001 01101111 01110101 01110010 00100000 01101110 01100101 01101001 01100111 01101000 01100010 01101111 01110010 00101110 00001010 00001010 11000010 10111001 11100010 10000001 10110111 00100000 01011001 01101111 01110101 00100000 01110011 01101000 01100001 01101100 01101100 00100000 01101110 01101111 01110100 00100000 01100011 01101111 01110110 01100101 01110100 00100000 01111001 01101111 01110101 01110010 00100000 01101110 01100101 01101001 01100111 01101000 01100010 01101111 01110010 11100010 10000000 10011001 01110011 00100000 01101000 01101111 01110101 01110011 01100101 00101110 00100000 01011001 01101111 01110101 00100000 01110011 01101000 01100001 01101100 01101100 00100000 01101110 01101111 01110100 00100000 01100011 01101111 01110110 01100101 01110100 00100000 01111001 01101111 01110101 01110010 00100000 01101110 01100101 01101001 01100111 01101000 01100010 01101111 01110010 11100010 10000000 10011001 01110011 00100000 01110111 01101001 01100110 01100101 00101100 00100000 01101111 01110010 00100000 01101000 01101001 01110011 00100000 01101101 01100001 01101100 01100101 00100000 01110011 01100101 01110010 01110110 01100001 01101110 01110100 00101100 00100000 01101111 01110010 00100000 01101000 01101001 01110011 00100000 01100110 01100101 01101101 01100001 01101100 01100101 00100000 01110011 01100101 01110010 01110110 01100001 01101110 01110100 00101100 00100000 01101111 01110010 00100000 01101000 01101001 01110011 00100000 01101111 01111000 00101100 00100000 01101111 01110010 00100000 01101000 01101001 01110011 00100000 01100100 01101111 01101110 01101011 01100101 01111001 00101100 00100000 01101111 01110010 00100000 01100001 01101110 01111001 01110100 01101000 01101001 01101110 01100111 00100000 01110100 01101000 01100001 01110100 00100000 01100010 01100101 01101100 01101111 01101110 01100111 01110011 00100000 01110100 01101111 00100000 01111001 01101111 01110101 01110010 00100000 01101110 01100101 01101001 01100111 01101000 01100010 01101111 01110010 00101110"
}

.eyebrow svg {
    width: 40px;
    height: 40px;
}

.eyebrow p {
    margin: 8px;
}
