/* LigiComms landing — page-specific. Shared tokens/components live in site.css. */
:root {
    --ig: #e1306c; --fb: #1877f2; --x: #e7edf4; --th: #c8d6ff;
    --pin: #e60023; --yt: #ff3d3d; --gm: #ea6a5a; --sms: #8b7bff;
}
.hp-sub { color: var(--ink-dim); font-size: 17px; max-width: 56ch; }

/* ---------- HERO ---------- */
.hp-hero { position: relative; padding: 84px 0 40px; background: radial-gradient(900px 480px at 82% -10%, rgba(44, 79, 124, .55), transparent 62%), radial-gradient(700px 420px at -8% 30%, rgba(30, 58, 95, .6), transparent 60%), var(--navy-950); }
.hp-hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 48px; align-items: center; }
.hp-hero h1 { margin: 18px 0 20px; }
.hp-hero h1 .grad { background: linear-gradient(92deg, #ffb054 0%, #ff7a9c 38%, #8b7bff 72%, #4fc3f7 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hp-hero .hp-sub { margin-bottom: 34px; }
.hp-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hp-note { display: flex; align-items: center; gap: 10px; color: var(--ink-faint); font-size: 13.5px; }
.hp-note .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--wa); box-shadow: 0 0 10px var(--wa); flex: none; }

/* fan-out visual */
.fan { position: relative; min-height: 520px; }
.fan svg.beams { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.beam { fill: none; stroke: url(#beamGrad); stroke-width: 1.6; opacity: .5; }
.beam-pulse { fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-dasharray: 26 340; animation: flow 3.6s linear infinite; }
@keyframes flow { to { stroke-dashoffset: -366; } }
.bp1 { animation-delay: 0s; } .bp2 { animation-delay: .45s; } .bp3 { animation-delay: .9s; } .bp4 { animation-delay: 1.35s; }
.bp5 { animation-delay: 1.8s; } .bp6 { animation-delay: 2.25s; } .bp7 { animation-delay: 2.7s; } .bp8 { animation-delay: 3.15s; }

.compose { position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: min(300px, 56%); background: linear-gradient(160deg, rgba(30, 58, 95, .92), rgba(12, 30, 53, .96)); border: 1px solid rgba(169, 189, 212, .22); border-radius: 20px; padding: 20px; box-shadow: 0 30px 70px rgba(0, 0, 0, .45); backdrop-filter: blur(6px); z-index: 2; }
.compose-head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.compose-avatar { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), #ff7a9c); display: grid; place-items: center; font-weight: 700; color: #25160a; font-size: 14px; }
.compose-head small { color: var(--ink-faint); font-size: 11.5px; display: block; }
.compose-head b { font-size: 13.5px; }
.compose-body { background: rgba(8, 21, 39, .6); border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; font-size: 13px; color: var(--ink-dim); min-height: 74px; }
.compose-body .caret { display: inline-block; width: 1px; height: 14px; background: var(--accent); vertical-align: -2px; animation: blink 1s steps(1) infinite; margin-left: 1px; }
@keyframes blink { 50% { opacity: 0; } }
.compose-media { margin-top: 10px; display: flex; gap: 8px; }
.chip-media { flex: 1; border-radius: 10px; height: 44px; background: linear-gradient(135deg, #2c4f7c, #1e3a5f); border: 1px dashed rgba(169, 189, 212, .3); display: grid; place-items: center; font-size: 11px; color: var(--ink-dim); }
.compose-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; }
.compose-foot .mini { font-size: 11px; color: var(--ink-faint); }
.btn-pub { padding: 9px 18px; border-radius: 999px; border: 0; font-weight: 700; font-size: 12.5px; background: linear-gradient(135deg, var(--accent), var(--accent-deep)); color: #25160a; cursor: pointer; animation: pubGlow 3.6s ease-in-out infinite; }
@keyframes pubGlow { 0%, 100% { box-shadow: 0 0 0 rgba(255, 138, 61, 0); } 50% { box-shadow: 0 0 24px rgba(255, 138, 61, .55); } }

.node { position: absolute; right: 0; display: flex; align-items: center; gap: 10px; background: rgba(12, 30, 53, .9); border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px 8px 9px; font-size: 12.5px; font-weight: 600; color: var(--ink-dim); box-shadow: 0 10px 26px rgba(0, 0, 0, .35); animation: nodeIn .7s ease both; z-index: 2; }
.node .ic { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; flex: none; }
.node .ic svg { width: 14px; height: 14px; }
@keyframes nodeIn { from { opacity: 0; transform: translateX(18px); } to { opacity: 1; transform: none; } }
.node-1 { top: 2%; animation-delay: .1s; } .node-2 { top: 14%; animation-delay: .25s; } .node-3 { top: 26%; animation-delay: .4s; } .node-4 { top: 38%; animation-delay: .55s; }
.node-5 { top: 50%; animation-delay: .7s; } .node-6 { top: 62%; animation-delay: .85s; } .node-7 { top: 74%; animation-delay: 1s; } .node-8 { top: 86%; animation-delay: 1.15s; }

.ic-ig { background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7); }
.ic-fb { background: #1877f2; }
.ic-x { background: #0f1a2b; border: 1px solid rgba(255, 255, 255, .25); }
.ic-th { background: #101d31; border: 1px solid rgba(255, 255, 255, .25); }
.ic-pin { background: #e60023; }
.ic-yt { background: #f00; }
.ic-wa { background: #25d366; }
.ic-mail { background: linear-gradient(135deg, #ea6a5a, #8b7bff); }
.ic-sms { background: #8b7bff; }
.node .ic i, .post-card .ic i, .bc-row .ic i, .compose-avatar i, .ic-x i, .ic-th i { color: #fff; }

/* ---------- CHANNEL STRIP ---------- */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(12, 30, 53, .5); margin-top: 64px; }
.strip-inner { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center; padding: 22px 0; font-size: 13px; color: var(--ink-faint); }
.strip-label { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; margin-right: 8px; }
.strip .tag { display: flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 999px; border: 1px solid var(--line); color: var(--ink-dim); font-weight: 500; }
.strip .tag i { width: 8px; height: 8px; border-radius: 50%; display: block; }
.d-ig { background: var(--ig); } .d-fb { background: var(--fb); } .d-x { background: #fff; } .d-th { background: var(--th); }
.d-pin { background: var(--pin); } .d-yt { background: var(--yt); } .d-wa { background: var(--wa); } .d-gm { background: var(--gm); } .d-sms { background: var(--sms); }

/* ---------- FEATURES ---------- */
.features { padding: 110px 0 30px; }
.features-head { max-width: 700px; margin-bottom: 26px; }
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 64px 0; border-bottom: 1px solid var(--line); }
.feature:last-of-type { border-bottom: 0; }
.feature.rev .f-visual { order: -1; }
.f-copy .lc-eyebrow { display: block; margin-bottom: 14px; }
.f-copy h3 { font-size: clamp(26px, 3.2vw, 36px); font-weight: 700; margin-bottom: 16px; }
.f-copy h3 em { font-style: normal; color: var(--accent); }
.f-copy p { color: var(--ink-dim); font-size: 16px; margin-bottom: 20px; }
.f-list { list-style: none; display: grid; gap: 11px; font-size: 14.5px; color: var(--ink-dim); padding: 0; margin: 0; }
.f-list li { display: flex; gap: 11px; align-items: flex-start; }
.f-list li::before { content: ""; width: 17px; height: 17px; flex: none; margin-top: 3px; border-radius: 50%; background: radial-gradient(circle at 50% 50%, var(--navy-950) 34%, transparent 36%), linear-gradient(135deg, var(--accent), #ff7a9c); }
.f-visual { position: relative; border-radius: 24px; padding: 30px; background: linear-gradient(165deg, rgba(30, 58, 95, .55), rgba(12, 30, 53, .85)); border: 1px solid var(--line); min-height: 330px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.f-visual::before { content: ""; position: absolute; inset: 0; background: radial-gradient(420px 240px at 70% 0%, rgba(255, 176, 84, .09), transparent 60%); }

.phone { width: 150px; border-radius: 26px; padding: 10px; flex: none; position: relative; z-index: 1; background: #0a1526; border: 1px solid rgba(169, 189, 212, .28); box-shadow: 0 24px 50px rgba(0, 0, 0, .5); }
.phone .screen { border-radius: 18px; height: 250px; position: relative; overflow: hidden; display: flex; align-items: flex-end; padding: 12px; }
.phone.reels .screen { background: linear-gradient(200deg, #ff7a9c, #8b3d86 55%, #341b52); }
.phone.shorts .screen { background: linear-gradient(200deg, #ff6b6b, #a12222 55%, #3a0d0d); }
.phone .play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 44px; height: 44px; border-radius: 50%; background: rgba(255, 255, 255, .16); backdrop-filter: blur(3px); display: grid; place-items: center; }
.phone .play svg { width: 16px; height: 16px; fill: #fff; margin-left: 2px; }
.phone .plabel { display: inline-flex; align-items: center; gap: 5px; font-size: 10.5px; font-weight: 700; color: #fff; letter-spacing: .04em; background: rgba(0, 0, 0, .35); padding: 4px 9px; border-radius: 999px; }
.phone .plabel i { font-size: 11px; }
.phone .p-brand { position: absolute; top: 11px; right: 11px; width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; font-size: 14px; color: #fff; background: rgba(0, 0, 0, .28); backdrop-filter: blur(3px); }
.reels-wrap { display: flex; flex-direction: column; align-items: center; gap: 6px; position: relative; z-index: 1; }
.phone-pair { display: flex; gap: 16px; }
.one-file { display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 12px; color: var(--ink-dim); }
.one-file .file { width: 70px; height: 92px; border-radius: 12px; position: relative; background: linear-gradient(160deg, #2c4f7c, #12283f); border: 1px solid rgba(169, 189, 212, .3); display: grid; place-items: center; }
.one-file .file svg { width: 26px; height: 26px; stroke: var(--accent); }
.arrow-split { color: var(--ink-faint); line-height: 0; }
.arrow-split svg { width: 128px; height: 52px; stroke: var(--ink-faint); }

/* long-form video */
.lf-wrap { width: 100%; display: flex; flex-direction: column; gap: 16px; position: relative; z-index: 1; }
.video-player { position: relative; border-radius: 14px; aspect-ratio: 16 / 9; background: linear-gradient(150deg, #2c4f7c, #1e3a5f 58%, #12283f); border: 1px solid rgba(169, 189, 212, .28); overflow: hidden; box-shadow: 0 20px 44px rgba(0, 0, 0, .45); }
.vp-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 54px; height: 54px; border-radius: 50%; background: rgba(255, 255, 255, .16); backdrop-filter: blur(3px); display: grid; place-items: center; }
.vp-play svg { width: 20px; height: 20px; fill: #fff; margin-left: 3px; }
.vp-bar { position: absolute; left: 0; right: 0; bottom: 6px; display: flex; justify-content: space-between; align-items: center; padding: 0 12px; font-size: 11.5px; color: #eaf2fb; }
.vp-name, .vp-dur { background: rgba(0, 0, 0, .42); padding: 3px 8px; border-radius: 6px; }
.vp-progress { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: rgba(255, 255, 255, .15); }
.vp-progress i { display: block; height: 100%; width: 38%; background: var(--accent); }
.lf-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.lf-card { border-radius: 12px; padding: 14px 12px; background: rgba(8, 21, 39, .72); border: 1px solid var(--line); text-align: center; }
.lf-card .ic { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; margin: 0 auto 9px; }
.lf-card .ic i { color: #fff; font-size: 14px; }
.lf-card .lf-name { display: block; font-size: 12.5px; font-weight: 600; color: var(--ink); margin-bottom: 9px; }
.lf-card .stamp { justify-content: center; font-size: 10.5px; color: var(--wa); display: flex; align-items: center; gap: 6px; }
.lf-card .stamp::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--wa); }

.post-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; width: 100%; position: relative; z-index: 1; }
.post-card { border-radius: 14px; padding: 14px; background: rgba(8, 21, 39, .72); border: 1px solid var(--line); }
.post-card .pc-head { display: flex; align-items: center; gap: 9px; margin-bottom: 10px; font-size: 12px; font-weight: 600; }
.post-card .ic { width: 22px; height: 22px; border-radius: 7px; display: grid; place-items: center; }
.post-card .ic svg { width: 12px; height: 12px; }
.post-card .line { height: 7px; border-radius: 4px; background: rgba(169, 189, 212, .18); margin-bottom: 7px; }
.post-card .line.s { width: 62%; }
.post-card .stamp { margin-top: 9px; font-size: 10.5px; color: var(--wa); display: flex; align-items: center; gap: 6px; }
.post-card .stamp::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--wa); }

.bc { position: relative; z-index: 1; width: 100%; max-width: 380px; }
.bc-audience { display: flex; align-items: center; margin-bottom: 18px; justify-content: center; }
.bc-audience .av { width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--navy-900); margin-left: -8px; display: grid; place-items: center; font-size: 12px; font-weight: 700; color: #0a1526; }
.bc-audience .count { margin-left: 12px; font-size: 12.5px; color: var(--ink-dim); }
.bc-row { display: flex; align-items: center; gap: 12px; padding: 13px 16px; border-radius: 14px; background: rgba(8, 21, 39, .72); border: 1px solid var(--line); margin-bottom: 12px; font-size: 13.5px; font-weight: 600; }
.bc-row .ic { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; flex: none; }
.bc-row .ic svg { width: 15px; height: 15px; }
.bc-row .meta { margin-left: auto; font-size: 11px; color: var(--ink-faint); font-weight: 500; text-align: right; }
.bc-bar { height: 5px; border-radius: 3px; background: rgba(169, 189, 212, .14); overflow: hidden; width: 84px; margin-top: 5px; }
.bc-bar i { display: block; height: 100%; border-radius: 3px; animation: fill 3s ease-out infinite; }
@keyframes fill { 0% { width: 8%; } 70% { width: 100%; } 100% { width: 100%; } }
.av-a { background: #ffb054; } .av-r { background: #ff7a9c; } .av-s { background: #4fc3f7; } .av-m { background: #8b7bff; } .av-p { background: #25d366; }
.bar-wa { background: #25d366; } .bar-gm { background: #ea6a5a; animation-delay: .4s; } .bar-sms { background: #8b7bff; animation-delay: .8s; }

/* ---------- HOW ---------- */
.how { padding: 110px 0; background: radial-gradient(760px 380px at 50% 0%, rgba(30, 58, 95, .5), transparent 65%); }
.how-head { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; background: linear-gradient(170deg, rgba(30, 58, 95, .35), rgba(12, 30, 53, .6)); transition: transform .2s var(--ease), border-color .2s var(--ease); }
.step:hover { transform: translateY(-4px); border-color: rgba(255, 176, 84, .4); }
.step .s-ic { width: 46px; height: 46px; border-radius: 13px; margin-bottom: 20px; background: linear-gradient(135deg, rgba(255, 176, 84, .18), rgba(255, 122, 156, .12)); border: 1px solid rgba(255, 176, 84, .3); display: grid; place-items: center; }
.step .s-ic svg { width: 21px; height: 21px; stroke: var(--accent); }
.step h3 { font-size: 19px; margin-bottom: 10px; font-weight: 700; }
.step p { font-size: 14.5px; color: var(--ink-dim); margin: 0; }

/* ---------- CTA ---------- */
.cta-band { padding: 40px 0 120px; }
.cta-orbit { position: absolute; border-radius: 50%; border: 1px dashed rgba(169, 189, 212, .18); pointer-events: none; }
.orbit-1 { width: 520px; height: 520px; left: -160px; top: -260px; }
.orbit-2 { width: 380px; height: 380px; right: -140px; bottom: -190px; }
.cta-band h2 { margin-top: 14px; }

@media (max-width: 980px) { .hp-hero-grid { grid-template-columns: 1fr; } .hp-hero { padding-top: 56px; } .fan { min-height: 470px; margin-top: 12px; } }
@media (max-width: 920px) { .feature { grid-template-columns: 1fr; gap: 34px; padding: 48px 0; } .feature.rev .f-visual { order: 0; } }
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }
@media (max-width: 520px) {
    .node { padding: 6px 10px 6px 7px; font-size: 10.5px; gap: 6px; } .node .ic { width: 20px; height: 20px; } .node .ic svg { width: 11px; height: 11px; }
    .compose { width: 50%; padding: 14px; } .compose-body { font-size: 11.5px; min-height: 60px; } .chip-media { height: 36px; font-size: 10px; } .compose-foot .mini { display: none; }
    .arrow-split { display: none; } .features { padding: 70px 0 10px; }
}
