:root {
    --primary: #3B82F6;
    --primary-dark: #2563EB;
    --text-dark: #0F172A;
    --text-muted: #64748B;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: #EDEFF3;
    display: flex;
    justify-content: center;
}

/* FORCE MOBILE WIDTH */

.site-wrapper {
    width: 100%;
    max-width: 430px;
    background: #ffffff;
}

/* ================= HEADER ================= */

.header {
    padding: 16px 20px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 26px;
}

.btn-top {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

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

.hero {
    padding: 25px 20px 35px;
    background: linear-gradient(
        180deg,
        rgba(59,130,246,0.15) 0%,
        rgba(59,130,246,0.05) 50%,
        transparent 100%
    );
}

.hero-banner {
    background: #ffffff;
    border-radius: 22px;
    padding: 30px 25px;
    position: relative;
    overflow: hidden;
}

/* Blue radial glow background */

.hero-banner::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(59,130,246,0.30) 0%, transparent 70%);
    top: -180px;
    right: -100px;
}

/* Layout */

.hero-content {
    position: relative;
}

/* Increase text width for more space */

.hero-text {
    max-width: 75%;
}

/* Character positioning */

.hero-character {
    position: absolute;
    right: -130px; /* pushed further right */
    bottom: -235px;
}

/* Strong glow behind character */

.hero-character::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(59,130,246,0.40) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    filter: blur(8px);
}

/* Character increased 10% */

.hero-character img {
    width: 305px; /* was 170px, +10% */
}

/* Headline forced line breaks */

.hero-text h1 {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px;
}

.hero-text p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.btn-hero {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

/* ================= SECTIONS ================= */

.section {
    padding: 35px 20px;
    background: #F6F8FB;
}

.section h2 {
    text-align: center;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 25px;
}

.card {
    background: #ffffff;
    padding: 16px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
}

.tile-icon {
    width: 55px;
    height: 55px;
}

.card h3 {
    font-size: 15px;
    font-weight: 700;
}

.card p {
    font-size: 13px;
    color: var(--text-muted);
}

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

.cta-strip {
    padding: 35px 20px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
}

.cta-strip h2 {
    font-size: 18px;
    margin-bottom: 15px;
}

.cta-strip a {
    background: #fff;
    color: var(--primary-dark);
    padding: 10px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
}

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

.footer {
    background: #0F172A;
    color: #94A3B8;
    padding: 25px;
    font-size: 12px;
    text-align: center;
}