/* =========================================================
 * Startix (Foundation Package) — Colorful Playful Landing
 * ========================================================= */

.sx-page {
    --sx-brand: #2f5aae;
    --sx-brand-dark: #1e3d7a;
    --sx-green: #27ae60;
    --sx-green-dark: #1e874a;
    --sx-purple: #7c3aed;
    --sx-pink: #ec4899;
    --sx-cyan: #0891b2;
    --sx-amber: #f59e0b;
    --sx-peach: #fb923c;
    --sx-dark: #0c1a2a;
    --sx-text: #334155;
    --sx-muted: #64748b;
    --sx-bg-soft: #f8fafc;
    --sx-bg-cream: #fef3c7;
    --sx-border: #e5e7eb;
    --sx-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --sx-radius-blob: 60% 40% 55% 45% / 50% 60% 40% 50%;
    font-family: 'Tajawal', 'Cairo', sans-serif;
    color: var(--sx-text);
}
.sx-page .container { max-width: 1200px; margin: 0 auto; padding: 0 16px; position: relative; z-index: 2; }

/* Buttons */
.sx-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid transparent;
    transition: transform 0.2s var(--sx-ease), box-shadow 0.2s, background 0.2s;
    text-decoration: none;
    font-family: inherit;
    cursor: pointer;
}
.sx-btn--primary {
    background: linear-gradient(135deg, var(--sx-green), var(--sx-green-dark));
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(39,174,96,0.4);
}
.sx-btn--primary:hover {
    transform: translateY(-3px);
    color: #ffffff;
    box-shadow: 0 14px 32px rgba(39,174,96,0.5);
}
.sx-btn--ghost {
    background: rgba(255,255,255,0.12);
    color: #ffffff;
    border-color: rgba(255,255,255,0.5);
    backdrop-filter: blur(8px);
}
.sx-btn--ghost:hover {
    background: #ffffff;
    color: var(--sx-brand);
}
.sx-btn--white {
    background: #ffffff;
    color: var(--sx-brand-dark);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.sx-btn--white:hover {
    background: var(--sx-dark);
    color: #ffffff;
}
.sx-btn--lg { padding: 18px 48px; font-size: 18px; }

/* Section head */
.sx-section-head { text-align: center; margin-bottom: 48px; }
.sx-section__title {
    font-size: clamp(26px, 3.2vw, 38px);
    font-weight: 900;
    color: var(--sx-dark);
    margin: 14px 0 0;
}

/* Stickers — dashed border + offset shadow + rotate */
.sx-sticker {
    position: relative;
    display: inline-block;
    background: #ffffff;
    color: var(--sx-brand);
    padding: 8px 18px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px;
    border: 2px dashed var(--sx-brand);
    box-shadow: 3px 3px 0 var(--sx-brand);
    transform: rotate(-1.5deg);
    transition: transform 0.25s var(--sx-ease);
}
.sx-sticker:hover { transform: rotate(0); }
.sx-sticker--amber  { color: var(--sx-amber);  border-color: var(--sx-amber);  box-shadow: 3px 3px 0 var(--sx-amber); }
.sx-sticker--purple { color: var(--sx-purple); border-color: var(--sx-purple); box-shadow: 3px 3px 0 var(--sx-purple); }
.sx-sticker--green  { color: var(--sx-green);  border-color: var(--sx-green);  box-shadow: 3px 3px 0 var(--sx-green); }
.sx-sticker--pink   { color: var(--sx-pink);   border-color: var(--sx-pink);   box-shadow: 3px 3px 0 var(--sx-pink); }
.sx-sticker--cyan   { color: var(--sx-cyan);   border-color: var(--sx-cyan);   box-shadow: 3px 3px 0 var(--sx-cyan); }

/* Reveal */
[data-hp-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s var(--sx-ease), transform 0.7s var(--sx-ease);
}
[data-hp-reveal].is-revealed { opacity: 1; transform: none; }

/* ============ Blobs ============ */
.sx-blob {
    position: absolute;
    width: 340px; height: 340px;
    border-radius: var(--sx-radius-blob);
    filter: blur(50px);
    opacity: 0.45;
    pointer-events: none;
    z-index: 0;
    animation: sxBlobMorph 16s ease-in-out infinite, sxBlobFloat 20s ease-in-out infinite;
}
.sx-blob--tl     { top: -80px; right: -100px; background: var(--sx-brand); width: 420px; height: 420px; }
.sx-blob--br     { bottom: -100px; left: -120px; background: var(--sx-green); animation-delay: -4s; }
.sx-blob--mid    { top: 35%; left: 40%; background: var(--sx-amber); width: 260px; height: 260px; opacity: 0.3; animation-delay: -8s; }
.sx-blob--purple { top: -80px; right: -100px; background: var(--sx-purple); width: 360px; height: 360px; animation-delay: -3s; }
.sx-blob--cyan   { bottom: -60px; left: -60px; background: var(--sx-cyan); width: 300px; height: 300px; animation-delay: -6s; }
.sx-blob--amber  { top: -40px; left: -80px; background: var(--sx-amber); width: 300px; height: 300px; }
.sx-blob--amber2 { bottom: -80px; right: -60px; background: var(--sx-amber); width: 300px; height: 300px; animation-delay: -5s; }
.sx-blob--pink   { bottom: -80px; right: -80px; background: var(--sx-pink); width: 340px; height: 340px; animation-delay: -7s; }
.sx-blob--pink2  { top: -40px; left: 20%; background: var(--sx-pink); width: 300px; height: 300px; opacity: 0.3; animation-delay: -4s; }
.sx-blob--green  { top: -40px; right: -40px; background: var(--sx-green); width: 320px; height: 320px; }

@keyframes sxBlobMorph {
    0%, 100% { border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%; }
    25%      { border-radius: 45% 55% 40% 60% / 60% 45% 55% 40%; }
    50%      { border-radius: 55% 45% 60% 40% / 40% 55% 45% 60%; }
    75%      { border-radius: 40% 60% 45% 55% / 55% 40% 60% 45%; }
}
@keyframes sxBlobFloat {
    0%, 100% { transform: translate(0,0) scale(1); }
    50%      { transform: translate(20px,-20px) scale(1.08); }
}

/* Confetti dots */
.sx-confetti { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.sx-dot {
    position: absolute;
    border-radius: 50%;
    animation: sxDot 6s ease-in-out infinite;
}
.sx-dot--1 { top: 15%; left: 10%; width: 16px; height: 16px; background: var(--sx-amber); }
.sx-dot--2 { top: 65%; left: 14%; width: 12px; height: 12px; background: var(--sx-pink); animation-delay: -1s; }
.sx-dot--3 { top: 20%; right: 8%;  width: 20px; height: 20px; background: var(--sx-purple); animation-delay: -2s; }
.sx-dot--4 { top: 75%; right: 12%; width: 14px; height: 14px; background: var(--sx-cyan); animation-delay: -3s; }
.sx-dot--5 { top: 45%; left: 50%; width: 10px; height: 10px; background: var(--sx-green); animation-delay: -4s; }
@keyframes sxDot {
    0%, 100% { transform: translateY(0) scale(1);   opacity: 0.9; }
    50%      { transform: translateY(-18px) scale(1.25); opacity: 0.6; }
}

/* Wave */
.sx-wave {
    position: absolute;
    left: 0; right: 0;
    width: 100%;
    height: 80px;
    z-index: 1;
}
.sx-wave--bottom { bottom: -1px; }

/* ============ 1. HERO ============ */
.sx-hero {
    position: relative;
    padding: 160px 0 140px;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 15%, rgba(236,72,153,0.15), transparent 40%),
        radial-gradient(circle at 85% 85%, rgba(124,58,237,0.12), transparent 45%),
        linear-gradient(180deg, #fef3c7 0%, #fce7f3 35%, #e0f2fe 70%, #ecfdf5 100%);
}
.sx-hero__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.sx-hero__title {
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 900;
    line-height: 1.2;
    color: var(--sx-dark);
    margin: 18px 0 18px;
}
.sx-hero__subtitle {
    font-size: clamp(18px, 2.2vw, 22px);
    color: var(--sx-brand);
    font-weight: 700;
    margin-bottom: 12px;
}
.sx-hero__desc {
    font-size: 17px;
    line-height: 1.8;
    color: var(--sx-text);
    margin-bottom: 26px;
    max-width: 560px;
}
.sx-hero__cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* Price badge — sticker style */
.sx-price-badge {
    display: inline-block;
    margin: 12px 0;
    position: relative;
}
.sx-price-badge::before,
.sx-price-badge::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}
.sx-price-badge::before { width: 22px; height: 22px; top: -11px; right: -11px; background: var(--sx-amber); }
.sx-price-badge::after  { width: 14px; height: 14px; bottom: -6px; left: -6px; background: var(--sx-green); }
.sx-price-badge__inner {
    background: linear-gradient(135deg, #ffffff 0%, #fef3c7 100%);
    color: var(--sx-dark);
    padding: 24px 40px;
    border-radius: 28px;
    box-shadow: 8px 8px 0 rgba(47,90,174,0.2);
    border: 3px dashed var(--sx-purple);
    transform: rotate(-2deg);
    transition: transform 0.3s var(--sx-ease);
}
.sx-price-badge:hover .sx-price-badge__inner { transform: rotate(0) scale(1.03); }
.sx-price-badge__label {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: var(--sx-brand);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.sx-price-badge__amount {
    display: flex;
    align-items: baseline;
    gap: 8px;
    line-height: 1;
}
.sx-price-badge__num {
    font-size: clamp(42px, 6vw, 64px);
    font-weight: 900;
    background: linear-gradient(135deg, var(--sx-brand), var(--sx-green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.sx-price-badge__currency {
    font-size: 20px;
    font-weight: 700;
    color: var(--sx-text);
}
.sx-price-badge__tag {
    display: block;
    font-size: 13px;
    color: var(--sx-muted);
    margin-top: 6px;
}

/* Hero media */
.sx-hero__media {
    position: relative;
    display: flex;
    justify-content: center;
}
.sx-hero__ring {
    position: absolute;
    inset: -40px;
    border: 3px dashed rgba(124,58,237,0.4);
    border-radius: 50%;
    animation: sxOrbit 40s linear infinite;
    z-index: 0;
}
.sx-hero__ring--2 {
    inset: -72px;
    border: 2px dotted rgba(236,72,153,0.4);
    animation: sxOrbit 55s linear infinite reverse;
}
@keyframes sxOrbit { to { transform: rotate(360deg); } }
.sx-hero__blob-wrap {
    position: relative;
    z-index: 1;
    width: min(420px, 100%);
    aspect-ratio: 1;
    border-radius: var(--sx-radius-blob);
    background: linear-gradient(135deg, var(--sx-brand), var(--sx-purple));
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(47,90,174,0.35);
    animation: sxBlobMorph 20s ease-in-out infinite;
}
.sx-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sx-hero__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 120px;
    color: #ffffff;
}
.sx-hero__float {
    position: absolute;
    width: 64px; height: 64px;
    background: #ffffff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
    animation: sxFloat 4s ease-in-out infinite;
    z-index: 2;
}
.sx-hero__float--1 { top: 5%;  right: -10px; background: #fef3c7; }
.sx-hero__float--2 { bottom: 18%; left: -20px; background: #ecfdf5; animation-delay: -1.3s; }
.sx-hero__float--3 { top: 55%; right: 12%; background: #fce7f3; animation-delay: -2.6s; }
.sx-hero__float--4 { top: -14px; left: 15%; background: #e0f2fe; animation-delay: -3.2s; font-size: 26px; }
@keyframes sxFloat {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50%      { transform: translateY(-16px) rotate(4deg); }
}

/* ============ 2. CHANNELS — colorful volumes ============ */
.sx-channels {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #fef3c7 100%);
}
.sx-channels__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}
.sx-channel {
    position: relative;
    background: #ffffff;
    padding: 36px 24px;
    border-radius: 26px;
    text-align: center;
    border: 2px solid var(--sx-border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transition: transform 0.3s var(--sx-ease), border-color 0.3s, box-shadow 0.3s;
    overflow: hidden;
    transform: rotate(calc((var(--ci, 0) % 2 - 0.5) * 1.5deg));
}
.sx-channel:hover {
    transform: translateY(-8px) rotate(0);
    border-color: var(--c);
    box-shadow: 0 20px 44px rgba(0,0,0,0.1);
}
.sx-channel__blob {
    position: absolute;
    top: -40px; right: -40px;
    width: 160px; height: 160px;
    border-radius: var(--sx-radius-blob);
    background: var(--c, var(--sx-brand));
    opacity: 0.12;
    z-index: 0;
    transition: transform 0.4s var(--sx-ease);
}
.sx-channel:hover .sx-channel__blob {
    transform: scale(1.3) rotate(-15deg);
}

/* Staggered heights for visual interest */
.sx-channel:nth-child(2n) { margin-top: 20px; }
.sx-channel:nth-child(3n) { margin-top: -8px; }

.sx-channel--c1 { --c: var(--sx-brand); }
.sx-channel--c2 { --c: var(--sx-green); }
.sx-channel--c3 { --c: var(--sx-purple); }
.sx-channel--c4 { --c: var(--sx-pink); }
.sx-channel--c5 { --c: var(--sx-cyan); }
.sx-channel--c6 { --c: var(--sx-amber); }

.sx-channel__icon {
    position: relative;
    z-index: 1;
    width: 88px; height: 88px;
    margin: 0 auto 18px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--c);
    background: color-mix(in srgb, var(--c) 14%, #ffffff);
    border: 2px dashed var(--c);
}
.sx-channel__icon img {
    width: 52px; height: 52px;
    object-fit: contain;
}
.sx-channel__volume {
    position: relative;
    z-index: 1;
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 900;
    background: linear-gradient(135deg, var(--c), color-mix(in srgb, var(--c) 60%, #000000));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    margin-bottom: 6px;
}
.sx-channel__name {
    position: relative;
    z-index: 1;
    font-size: 19px;
    font-weight: 800;
    color: var(--sx-dark);
    margin-bottom: 8px;
}
.sx-channel__desc {
    position: relative;
    z-index: 1;
    color: var(--sx-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* ============ 3. SERVICES ============ */
.sx-services {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #fef3c7 0%, #ffffff 100%);
}
.sx-services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px;
}
.sx-service {
    position: relative;
    display: flex;
    gap: 16px;
    background: #ffffff;
    padding: 24px;
    border-radius: 20px;
    border: 2px solid var(--sx-border);
    transition: transform 0.3s var(--sx-ease), border-color 0.3s, box-shadow 0.3s;
    transform: rotate(calc((var(--si, 0) % 2 - 0.5) * 1deg));
}
.sx-service:hover {
    transform: translateX(-4px) rotate(0);
    border-color: var(--c);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}
.sx-service--c1 { --c: var(--sx-brand); }
.sx-service--c2 { --c: var(--sx-green); }
.sx-service--c3 { --c: var(--sx-purple); }
.sx-service--c4 { --c: var(--sx-pink); }
.sx-service--c5 { --c: var(--sx-cyan); }
.sx-service--c6 { --c: var(--sx-amber); }

.sx-service__icon {
    flex-shrink: 0;
    width: 64px; height: 64px;
    border-radius: 18px;
    background: color-mix(in srgb, var(--c) 14%, #ffffff);
    color: var(--c);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 900;
    border: 2px solid color-mix(in srgb, var(--c) 30%, #ffffff);
}
.sx-service__icon img {
    width: 40px; height: 40px;
    object-fit: contain;
}
.sx-service__title {
    font-size: 17px;
    font-weight: 800;
    color: var(--sx-dark);
    margin-bottom: 4px;
}
.sx-service__desc {
    color: var(--sx-muted);
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
}

/* ============ 4. TIMELINE ============ */
.sx-timeline {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%);
}
.sx-timeline__list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.sx-tl-item {
    position: relative;
    background: #ffffff;
    padding: 24px 28px;
    border-radius: 20px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    overflow: hidden;
    border: 2px solid var(--sx-border);
    transition: border-color 0.3s, transform 0.3s var(--sx-ease);
}
.sx-tl-item:hover {
    border-color: var(--c);
    transform: translateY(-3px);
}
.sx-tl-item--c1 { --c: var(--sx-brand); }
.sx-tl-item--c2 { --c: var(--sx-purple); }
.sx-tl-item--c3 { --c: var(--sx-pink); }
.sx-tl-item--c4 { --c: var(--sx-amber); }

.sx-tl-item__day {
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--c), color-mix(in srgb, var(--c) 65%, #000000));
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 15px;
    min-width: 120px;
    text-align: center;
    box-shadow: 0 6px 14px color-mix(in srgb, var(--c) 30%, transparent);
}
.sx-tl-item__body { flex: 1; }
.sx-tl-item__title {
    font-size: 18px;
    font-weight: 800;
    color: var(--sx-dark);
    margin-bottom: 6px;
}
.sx-tl-item__tasks {
    color: var(--sx-muted);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}
.sx-tl-item__progress {
    position: absolute;
    bottom: 0; right: 0;
    height: 5px;
    width: var(--p);
    background: linear-gradient(90deg, var(--c), color-mix(in srgb, var(--c) 50%, #ffffff));
}

/* ============ 5. AUDIENCE ============ */
.sx-audience {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #eff6ff 0%, #fce7f3 100%);
}
.sx-audience__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}
.sx-aud {
    position: relative;
    background: #ffffff;
    padding: 28px 24px;
    border-radius: 22px;
    border: 2px solid var(--sx-border);
    text-align: center;
    transition: transform 0.3s var(--sx-ease), border-color 0.3s;
    transform: rotate(calc((var(--ai, 0) % 2 - 0.5) * 1.2deg));
    overflow: hidden;
}
.sx-aud:hover {
    transform: translateY(-6px) rotate(0);
    border-color: var(--c);
    background: linear-gradient(135deg, #ffffff 0%, color-mix(in srgb, var(--c) 8%, #ffffff) 100%);
}
.sx-aud--c1 { --c: var(--sx-brand); }
.sx-aud--c2 { --c: var(--sx-green); }
.sx-aud--c3 { --c: var(--sx-purple); }
.sx-aud--c4 { --c: var(--sx-amber); }

.sx-aud__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c), color-mix(in srgb, var(--c) 65%, #000000));
    color: #ffffff;
    font-weight: 900;
    font-size: 18px;
    margin: 0 auto 14px;
    box-shadow: 0 6px 14px color-mix(in srgb, var(--c) 30%, transparent);
}
.sx-aud__title {
    font-size: 18px;
    font-weight: 800;
    color: var(--sx-dark);
    margin-bottom: 8px;
}
.sx-aud__desc {
    color: var(--sx-muted);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* ============ 7. CTA ============ */
.sx-cta {
    padding: 80px 0;
    background: #ffffff;
}
.sx-cta__inner {
    position: relative;
    background:
        radial-gradient(circle at 10% 10%, rgba(251,191,36,0.25), transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(236,72,153,0.2), transparent 45%),
        linear-gradient(135deg, var(--sx-brand-dark) 0%, var(--sx-dark) 100%);
    padding: 60px 40px;
    border-radius: 32px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 28px 60px rgba(47,90,174,0.35);
    overflow: hidden;
}
.sx-cta__title {
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 900;
    margin-bottom: 12px;
}
.sx-cta__text {
    font-size: 17px;
    opacity: 0.9;
    max-width: 640px;
    margin: 0 auto 32px;
}
.sx-cta__price {
    font-size: clamp(40px, 6vw, 56px);
    font-weight: 900;
    color: #fbbf24;
    margin-bottom: 24px;
    line-height: 1;
    text-shadow: 0 4px 16px rgba(251,191,36,0.4);
}
.sx-cta__price span {
    display: inline-block;
    font-size: 20px;
    color: #ffffff;
    margin-right: 8px;
    font-weight: 700;
    text-shadow: none;
}
.sx-cta__confetti {
    position: absolute;
    border-radius: 50%;
    animation: sxDot 5s ease-in-out infinite;
}
.sx-cta__confetti--1 { top: 20%; left: 8%;  width: 22px; height: 22px; background: var(--sx-amber); }
.sx-cta__confetti--2 { top: 70%; left: 16%; width: 14px; height: 14px; background: var(--sx-pink); animation-delay: -1.5s; }
.sx-cta__confetti--3 { top: 30%; right: 8%; width: 18px; height: 18px; background: var(--sx-green); animation-delay: -3s; }

/* ============ Responsive ============ */
@media (max-width: 900px) {
    .sx-hero__grid { grid-template-columns: 1fr; gap: 40px; }
    .sx-hero__media { order: -1; max-width: 340px; margin: 0 auto; }
    .sx-hero__cta { justify-content: flex-start; }
}
@media (max-width: 640px) {
    .sx-hero { padding: 120px 0 70px; }
    .sx-channels, .sx-services, .sx-timeline, .sx-audience { padding: 60px 0; }
    .sx-channel:nth-child(2n), .sx-channel:nth-child(3n) { margin-top: 0; }
    .sx-price-badge__inner { padding: 20px 28px; }
    .sx-tl-item { flex-direction: column; gap: 14px; }
    .sx-tl-item__day { min-width: auto; }
    .sx-cta__inner { padding: 40px 24px; }
    .sx-blob { width: 240px !important; height: 240px !important; animation: sxBlobMorph 16s ease-in-out infinite; }
    .sx-hero__float { animation: none; }
    .sx-sticker, .sx-channel, .sx-service, .sx-aud { transform: rotate(0) !important; }
}

/* Root-level overflow clamp */
body.page-template-template-startix {
    overflow-x: hidden;
    max-width: 100vw;
}

@media (prefers-reduced-motion: reduce) {
    [data-hp-reveal] { opacity: 1; transform: none; transition: none; }
    .sx-blob, .sx-dot, .sx-hero__float, .sx-hero__ring, .sx-hero__blob-wrap, .sx-cta__confetti { animation: none; }
}
