:root {
    --bg: #050706;
    --panel: rgba(10, 17, 13, .82);
    --line: rgba(83, 252, 24, .2);
    --text: #f4fbf5;
    --muted: #aebdb3;
    --green: #53fc18;
    --mint: #53fc18;
    --cyan: #62d7ff;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: var(--bg);
    color: var(--text);
    font-family: Poppins, Arial, sans-serif;
}

body {
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 8% 14%, rgba(83, 252, 24, .18), transparent 28%),
        radial-gradient(circle at 88% 16%, rgba(98, 215, 255, .12), transparent 24%),
        linear-gradient(145deg, #050706 0%, #07140d 44%, #050706 100%);
}

body::before {
    position: fixed;
    inset: 0;
    pointer-events: none;
    content: "";
    opacity: .42;
    background-image:
        linear-gradient(rgba(83, 252, 24, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(83, 252, 24, .035) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(circle at 50% 0%, black, transparent 72%);
}

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

.shell {
    position: relative;
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 74px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 900;
    color: var(--mint) !important;
}

.brand-badge {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--green);
    color: #061006;
    font-size: 19px;
    box-shadow: 0 0 24px rgba(83, 252, 24, .34);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(360px, .8fr);
    align-items: center;
    gap: clamp(28px, 5vw, 72px);
    min-height: calc(100vh - 74px);
    padding: 46px 0 70px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0 14px;
    background: rgba(83, 252, 24, .08);
    color: #bfffd1;
    font-size: 13px;
    font-weight: 800;
}

.pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 8px rgba(83, 252, 24, .12);
}

h1 {
    max-width: 760px;
    margin: 22px 0 0;
    font-size: clamp(42px, 6.2vw, 82px);
    font-weight: 900;
    line-height: .98;
    letter-spacing: 0;
}

.lead {
    max-width: 650px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: clamp(17px, 2vw, 22px);
    font-weight: 650;
    line-height: 1.55;
}

.lead strong {
    color: #f8fff8;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    border: 0;
    border-radius: 14px;
    padding: 0 24px;
    background: var(--green);
    color: #061006;
    font-size: 15px;
    font-weight: 900;
    box-shadow: 0 18px 44px rgba(83, 252, 24, .22);
    transition: transform .18s ease, box-shadow .18s ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 54px rgba(83, 252, 24, .3);
}

.auth-error {
    max-width: 650px;
    margin-top: 18px;
    border: 1px solid rgba(255, 94, 94, .36);
    border-radius: 14px;
    padding: 14px 16px;
    background: rgba(94, 22, 22, .3);
    color: #ffdada;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.5;
}

.mini-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.mini-stat {
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, .035);
}

.mini-stat b {
    display: block;
    color: white;
    font-size: 18px;
    font-weight: 900;
}

.mini-stat span {
    color: #9db0a4;
    font-size: 12px;
    font-weight: 700;
}

.preview {
    position: relative;
    border: 1px solid rgba(83, 252, 24, .22);
    border-radius: 28px;
    padding: 18px;
    background:
        linear-gradient(180deg, rgba(83, 252, 24, .1), rgba(83, 252, 24, .02)),
        rgba(6, 11, 8, .74);
    box-shadow: 0 28px 90px rgba(0, 0, 0, .44);
}

.preview::before {
    position: absolute;
    inset: -1px;
    z-index: -1;
    border-radius: 28px;
    content: "";
    background: linear-gradient(140deg, rgba(83, 252, 24, .44), transparent 38%, rgba(98, 215, 255, .2));
    filter: blur(18px);
    opacity: .62;
}

.window {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    background: #080b09;
}

.window-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding: 0 16px;
    color: #b7c6bc;
    font-size: 13px;
    font-weight: 800;
}

.dots {
    display: flex;
    gap: 7px;
}

.dots i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .24);
}

.widget-demo {
    display: grid;
    gap: 14px;
    padding: 18px;
}

.alert-demo {
    border: 1px solid rgba(83, 252, 24, .42);
    border-radius: 16px;
    padding: 22px;
    background: #050705;
    text-align: center;
    box-shadow: 0 0 34px rgba(83, 252, 24, .18);
}

.alert-demo small {
    display: block;
    color: #d9ffe0;
    font-weight: 900;
    text-transform: uppercase;
}

.alert-demo strong {
    display: block;
    margin-top: 8px;
    color: var(--green);
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 900;
    line-height: 1.04;
}

.chat-line {
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, .04);
    color: #e8f0ea;
    font-size: 14px;
    font-weight: 700;
}

.chat-line span {
    color: var(--mint);
    font-weight: 900;
}

.target-bar {
    position: relative;
    overflow: hidden;
    min-height: 44px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    background: rgba(255, 255, 255, .05);
}

.target-fill {
    position: absolute;
    inset: 0 auto 0 0;
    width: 68%;
    background: linear-gradient(90deg, var(--green), var(--mint));
}

.target-label {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
    padding: 0 16px;
    color: white;
    font-size: 13px;
    font-weight: 900;
}

.feature-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    padding: 0 0 76px;
}

.feature {
    border: 1px solid rgba(83, 252, 24, .18);
    border-radius: 18px;
    padding: 18px;
    background: rgba(9, 19, 14, .7);
}

.feature h3 {
    margin: 0 0 8px;
    color: var(--mint);
    font-size: 15px;
    font-weight: 900;
}

.feature p {
    margin: 0;
    color: #bccbc1;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.55;
}

.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 86px;
    border-top: 1px solid rgba(83, 252, 24, .18);
    color: #9eb2a5;
    font-size: 13px;
    font-weight: 600;
}

.footer a {
    color: #ccefd4;
    font-weight: 800;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--mint);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-label::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--green);
    border-radius: 2px;
}

.section-title {
    margin: 0 0 14px;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 900;
    line-height: 1.08;
}

.section-lead {
    margin: 0 0 52px;
    max-width: 560px;
    color: var(--muted);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
}

.how-section {
    padding: 76px 0;
    border-top: 1px solid rgba(83, 252, 24, .12);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.step {
    position: relative;
    border: 1px solid rgba(83, 252, 24, .14);
    border-radius: 20px;
    padding: 30px 28px;
    background: rgba(9, 19, 14, .6);
    overflow: hidden;
}

.step::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0% 0%, rgba(83, 252, 24, .07), transparent 60%);
    pointer-events: none;
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(83, 252, 24, .12);
    border: 1px solid rgba(83, 252, 24, .3);
    color: var(--green);
    font-size: 17px;
    font-weight: 900;
    margin-bottom: 20px;
}

.step h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 900;
    color: #f0faf2;
}

.step p {
    margin: 0;
    color: #9db5a4;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.6;
}

.step-connector {
    display: none;
}

.widgets-section {
    padding: 76px 0;
    border-top: 1px solid rgba(83, 252, 24, .12);
}

.widget-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.widget-card {
    border: 1px solid rgba(83, 252, 24, .18);
    border-radius: 20px;
    padding: 24px;
    background: rgba(9, 19, 14, .7);
    transition: border-color .2s ease, transform .2s ease;
}

.widget-card:hover {
    border-color: rgba(83, 252, 24, .4);
    transform: translateY(-3px);
}

.widget-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(83, 252, 24, .1);
    border: 1px solid rgba(83, 252, 24, .24);
    font-size: 22px;
    margin-bottom: 16px;
}

.widget-card h3 {
    margin: 0 0 8px;
    color: #f0faf2;
    font-size: 16px;
    font-weight: 900;
}

.widget-card p {
    margin: 0 0 16px;
    color: #8fa89a;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.55;
}

.widget-tag {
    display: inline-block;
    border: 1px solid rgba(83, 252, 24, .24);
    border-radius: 999px;
    padding: 3px 10px;
    color: var(--mint);
    font-size: 11px;
    font-weight: 800;
    background: rgba(83, 252, 24, .06);
}

.social-section {
    padding: 76px 0;
    border-top: 1px solid rgba(83, 252, 24, .12);
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.testimonial {
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    padding: 24px;
    background: rgba(9, 19, 14, .5);
}

.stars {
    color: var(--green);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.testimonial blockquote {
    margin: 0 0 18px;
    color: #d4e8d8;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.65;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.t-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--cyan));
    display: grid;
    place-items: center;
    color: #061006;
    font-size: 13px;
    font-weight: 900;
}

.t-name {
    color: #f0faf2;
    font-size: 13px;
    font-weight: 800;
}

.t-handle {
    color: #6b8a74;
    font-size: 12px;
    font-weight: 600;
}

.faq-section {
    padding: 76px 0;
    border-top: 1px solid rgba(83, 252, 24, .12);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.faq-item {
    border: 1px solid rgba(83, 252, 24, .14);
    border-radius: 16px;
    padding: 22px 24px;
    background: rgba(9, 19, 14, .6);
}

.faq-item h4 {
    margin: 0 0 10px;
    color: #f0faf2;
    font-size: 15px;
    font-weight: 900;
}

.faq-item p {
    margin: 0;
    color: #8fa89a;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.6;
}

.cta-section {
    padding: 76px 0;
}

.cta-banner {
    border: 1px solid rgba(83, 252, 24, .28);
    border-radius: 28px;
    padding: clamp(36px, 5vw, 64px);
    background:
        radial-gradient(circle at 20% 50%, rgba(83, 252, 24, .12), transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(98, 215, 255, .07), transparent 50%),
        rgba(6, 11, 8, .8);
    text-align: center;
}

.cta-banner h2 {
    margin: 0 0 16px;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    line-height: 1.1;
}

.cta-banner p {
    margin: 0 auto 32px;
    max-width: 480px;
    color: var(--muted);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
}

.cta-banner .cta-row {
    justify-content: center;
    margin-top: 0;
}

.button-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 50px;
    border: 1px solid rgba(83, 252, 24, .36);
    border-radius: 14px;
    padding: 0 24px;
    background: transparent;
    color: var(--mint);
    font-size: 15px;
    font-weight: 800;
    transition: background .18s ease, border-color .18s ease;
}

.button-ghost:hover {
    background: rgba(83, 252, 24, .08);
    border-color: rgba(83, 252, 24, .6);
}

.footer-full {
    border-top: 1px solid rgba(83, 252, 24, .18);
    padding: 52px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-col h4 {
    margin: 0 0 16px;
    color: #f0faf2;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.footer-col p {
    margin: 0 0 6px;
    color: #6e8c79;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.6;
}

.footer-col a {
    display: block;
    margin-bottom: 8px;
    color: #7a9e86;
    font-size: 13px;
    font-weight: 700;
    transition: color .15s ease;
}

.footer-col a:hover {
    color: var(--mint);
}

.footer-brand-desc {
    margin-top: 12px;
    color: #5a7a66;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(83, 252, 24, .1);
    color: #4a6654;
    font-size: 13px;
    font-weight: 600;
}

.footer-bottom a {
    color: #6a9478;
    font-weight: 700;
}

.footer-bottom a:hover {
    color: var(--mint);
}

@media (max-width: 980px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 38px;
    }

    .preview {
        max-width: 640px;
    }

    .feature-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .widget-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .testimonials {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 620px) {
    .nav {
        min-height: 62px;
    }

    .feature-strip {
        grid-template-columns: 1fr;
    }

    .widget-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

.bng-section {
    padding: 76px 0;
    border-top: 1px solid rgba(83, 252, 24, .12);
}

.bng-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 80px);
    align-items: center;
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
}

.bng-logo-wrap {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    padding: 14px 20px;
    border: 1px solid rgba(83, 252, 24, .2);
    border-radius: 18px;
    background: rgba(9, 19, 14, .7);
}

.bng-logo {
    height: 36px;
    width: auto;
    object-fit: contain;
    display: block;
}

.bng-logo-badge {
    border: 1px solid rgba(83, 252, 24, .4);
    border-radius: 999px;
    padding: 3px 10px;
    background: rgba(83, 252, 24, .08);
    color: var(--mint);
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
}

.bng-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bng-chip {
    border: 1px solid rgba(83, 252, 24, .18);
    border-radius: 999px;
    padding: 6px 14px;
    background: rgba(9, 19, 14, .7);
    color: #bfffd1;
    font-size: 13px;
    font-weight: 700;
    transition: border-color .18s ease, background .18s ease;
}

.bng-chip:hover {
    border-color: rgba(83, 252, 24, .42);
    background: rgba(83, 252, 24, .06);
}

.bng-steps-card {
    border: 1px solid rgba(83, 252, 24, .2);
    border-radius: 24px;
    padding: 32px;
    background:
        radial-gradient(circle at 90% 10%, rgba(83, 252, 24, .07), transparent 50%),
        rgba(6, 11, 8, .82);
    box-shadow: 0 24px 64px rgba(0, 0, 0, .32);
}

.bng-steps-title {
    margin-bottom: 24px;
    color: var(--mint);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.bng-steps-list {
    display: grid;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: none;
}

.bng-steps-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.bng-step-num {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(83, 252, 24, .12);
    border: 1px solid rgba(83, 252, 24, .3);
    color: var(--green);
    font-size: 14px;
    font-weight: 900;
}

.bng-steps-list li > div {
    display: grid;
    gap: 4px;
}

.bng-steps-list strong {
    color: #f0faf2;
    font-size: 14px;
    font-weight: 900;
    display: block;
}

.bng-steps-list span {
    color: #8fa89a;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.55;
    display: block;
}

.bng-steps-list em {
    color: var(--mint);
    font-style: normal;
    font-weight: 800;
}

.mini-stat--bng {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex-direction: column;
    min-width: 175px;
}

.mini-stat-logo {
    height: 22px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: brightness(1.1);
}


@media (max-width: 980px) {
    .bng-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .bng-steps-card {
        padding: 22px 18px;
    }
}

.tw-section {
    padding: 76px 0;
    border-top: 1px solid rgba(83, 252, 24, .12);
}

.tw-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 80px);
    align-items: center;
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
}

.tw-code-card {
    border: 1px solid rgba(56, 189, 248, .22);
    border-radius: 22px;
    overflow: hidden;
    background: #080e10;
    box-shadow:
        0 0 0 1px rgba(56, 189, 248, .08),
        0 28px 72px rgba(0, 0, 0, .44),
        0 0 60px rgba(56, 189, 248, .06);
}

.tw-code-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
    border-bottom: 1px solid rgba(56, 189, 248, .1);
    padding: 0 16px;
    background: rgba(56, 189, 248, .04);
    color: #7da9b8;
    font-size: 12px;
    font-weight: 800;
}

.tw-code-dots {
    display: flex;
    gap: 6px;
}

.tw-code-dots i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .14);
}

.tw-code {
    margin: 0;
    padding: 24px 22px;
    font-family: "Fira Code", "Cascadia Code", "Consolas", monospace;
    font-size: 13px;
    line-height: 1.75;
    overflow-x: auto;
    white-space: pre;
    color: #c9d1d9;
}

.tw-c-tag  { color: #7dd3fc; }
.tw-c-attr { color: #86efac; }
.tw-c-str  { color: #fbbf24; }
.tw-c-var  { color: #f472b6; } 

.tw-logo-row {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    padding: 10px 18px;
    border: 1px solid rgba(56, 189, 248, .22);
    border-radius: 14px;
    background: rgba(8, 14, 16, .7);
}

.tw-logo {
    height: 26px;
    width: auto;
    object-fit: contain;
    display: block;
    margin: 4px 0;
}

.tw-logo-label {
    border: 1px solid rgba(56, 189, 248, .36);
    border-radius: 999px;
    padding: 3px 10px;
    background: rgba(56, 189, 248, .08);
    color: #7dd3fc;
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
}

.tw-badges {
    display: grid;
    gap: 14px;
}

.tw-badge {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border: 1px solid rgba(56, 189, 248, .12);
    border-radius: 16px;
    padding: 16px 18px;
    background: rgba(8, 14, 16, .6);
    transition: border-color .18s ease;
}

.tw-badge:hover {
    border-color: rgba(56, 189, 248, .3);
}

.tw-badge-icon {
    font-size: 22px;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 1px;
}

.tw-badge div {
    display: grid;
    gap: 3px;
}

.tw-badge strong {
    color: #f0faf2;
    font-size: 14px;
    font-weight: 900;
    display: block;
}

.tw-badge span {
    color: #7a9e8a;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
}

.tw-badge code {
    padding: 1px 6px;
    border-radius: 6px;
    background: rgba(56, 189, 248, .1);
    border: 1px solid rgba(56, 189, 248, .2);
    color: #7dd3fc;
    font-size: 12px;
    font-family: "Fira Code", "Consolas", monospace;
}

@media (max-width: 980px) {
    .tw-inner {
        grid-template-columns: 1fr;
    }

    .tw-right {
        order: -1;
    }
}

@media (max-width: 620px) {
    .tw-code {
        font-size: 11.5px;
        padding: 18px 14px;
    }
}

.footer-bottom i {
    color: white;
}