* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif
}

.no-select {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

:root {
    --bg0: #070b14;
    --bg1: #0c1221;
    --panel: #0f1a2b;
    --glass: rgba(255, 255, 255, .06);
    --stroke: rgba(255, 255, 255, .12);
    --muted: #afc2e9;
    --txt: #e8eef8;
    --pure: #fff;
    --brand-orange: #ff7a00;
    --accent: #8ce7ff;
    --accent2: #a78bfa;
    --accent3: #24e08a;
    --radius: 16px;
    --radius-lg: 22px;
    --shadow: 0 18px 46px rgba(0, 0, 0, .5)
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    color: var(--txt);
    background: radial-gradient(1000px 600px at 80% 5%, rgba(167, 139, 250, .08), transparent 60%), radial-gradient(900px 900px at 15% 30%, rgba(140, 231, 255, .08), transparent 60%), linear-gradient(180deg, var(--bg0), #050811 70%);
    line-height: 1.45;
    overflow-x: hidden
}

a {
    color: inherit;
    text-decoration: none
}

.container {
    width: min(1200px, 92vw);
    margin: 0 auto
}

.mono {
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif
}

.live-monitor {
    position: fixed;
    top: 58px;
    right: 33px;
    background: rgba(15, 26, 43, .95);
    border: 1px solid var(--stroke);
    border-radius: 12px;
    padding: 12px 16px;
    backdrop-filter: blur(10px);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    transition: all .3s ease;
    cursor: pointer
}

.live-monitor:hover {
    transform: translateX(-5px);
    box-shadow: 0 10px 30px rgba(140, 231, 255, .2)
}

.live-monitor .pulse {
    width: 8px;
    height: 8px;
    background: #24e08a;
    border-radius: 50%;
    animation: livePulse 2s ease infinite;
    box-shadow: 0 0 10px #24e08a
}

@keyframes livePulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1
    }

    50% {
        transform: scale(1.3);
        opacity: .6
    }
}

.monitor-stats {
    display: none;
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px solid var(--stroke)
}

.live-monitor:hover .monitor-stats {
    display: flex;
    gap: 15px
}

.monitor-stats div {
    color: var(--muted)
}

header.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center
}

canvas#particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    filter: contrast(118%) saturate(110%)
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding: 101px 0 80px
}

.hero-eyebrow {
    font-weight: 900;
    font-size: clamp(32px, 6.8vw, 72px);
    letter-spacing: -.02em;
    background: linear-gradient(135deg, #ff7a00, #ffb86b);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.hero-lines {
    margin-top: 8px
}

.hero-lines .line {
    display: block;
    font-weight: 700;
    font-size: clamp(18px, 3.2vw, 28px);
    color: var(--pure);
    opacity: 0;
    min-height: 1.2em
}

.hero-sub {
    margin-top: 14px;
    font-size: clamp(14px, 2vw, 18px);
    color: var(--muted);
    max-width: 780px;
    animation: fadeInUp 1.5s ease .5s both
}

.cta-row {
    margin-top: 26px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    animation: fadeInUp 1.5s ease .8s both
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow);
    transition: all .3s ease;
    cursor: pointer
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(255, 107, 53, .6)
}

.btn.primary {
    border-color: rgba(140, 231, 255, .35)
}

@media (max-width:720px) {
    header.hero {
        min-height: 55vh;
        padding: 0;
        display: flex;
        align-items: flex-start
    }

    .hero-inner {
        padding: 96px 16px 40px
    }

    .hero-eyebrow {
        font-size: clamp(24px, 8vw, 48px);
        letter-spacing: -.015em
    }

    .hero-lines .line {
        font-size: clamp(16px, 5vw, 22px)
    }

    .hero-sub {
        font-size: clamp(12px, 3vw, 16px);
        max-width: 90%
    }

    .cta-row {
        gap: 8px;
        margin-top: 20px;
        flex-wrap: wrap
    }

    .btn {
        padding: 13px 20px;
        font-size: 14px;
        border-radius: 10px
    }

    canvas#particles {
        height: 58vh !important;
        width: auto !important
    }

    .live-monitor {
        right: 13px
    }
}

section {
    padding: 72px 0;
    position: relative
}

.section-title {
    font-size: clamp(22px, 3.2vw, 34px);
    margin-bottom: 8px;
    font-weight: 800;
    letter-spacing: -.01em
}

.section-sub {
    color: var(--muted);
    margin-bottom: 28px
}

@media (max-width:768px) {
    section {
        padding: 40px 0
    }

    .cta-section {
        padding: 55px 0 !important
    }

    .timeline {
        padding: 50px 0 !important
    }
}

#demo {
    background: linear-gradient(180deg, transparent, rgba(140, 231, 255, .02), transparent)
}

.demo-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(15, 26, 43, .6);
    border: 1px solid var(--stroke);
    border-radius: 24px;
    backdrop-filter: blur(10px)
}

.demo-controls {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap
}

.demo-tab {
    padding: 8px 16px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--stroke);
    border-radius: 8px;
    color: var(--muted);
    cursor: pointer;
    transition: all .3s ease;
    font-size: 13px
}

.demo-tab.active {
    background: linear-gradient(135deg, rgba(140, 231, 255, .2), rgba(167, 139, 250, .2));
    border-color: var(--accent);
    color: var(--pure)
}

.demo-tab:hover {
    transform: scale(1.05)
}

.demo-terminal {
    background: #0a0e1a;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(140, 231, 255, .2);
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, .5);
    position: relative
}

.demo-input-wrapper {
    display: flex;
    gap: 10px;
    align-items: center
}

.demo-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--accent);
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    padding: 10px;
    outline: none
}

.demo-input::placeholder {
    color: rgba(140, 231, 255, .4)
}

.reset-btn {
    padding: 8px 16px;
    background: rgba(140, 231, 255, .1);
    border: 1px solid rgba(140, 231, 255, .3);
    border-radius: 8px;
    color: var(--accent);
    font-size: 13px;
    cursor: pointer;
    transition: all .3s ease;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif
}

.reset-btn:hover {
    background: rgba(140, 231, 255, .2);
    transform: scale(1.05)
}

.demo-response {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--stroke);
    min-height: 100px;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    color: var(--accent);
    line-height: 1.6;
    white-space: pre-wrap
}

.typing-cursor {
    display: inline-block;
    width: 10px;
    height: 20px;
    background: var(--accent);
    animation: blink 1s infinite;
    margin-left: 2px
}

@keyframes blink {

    0%,
    50% {
        opacity: 1
    }

    51%,
    100% {
        opacity: 0
    }
}

.demo-error {
    color: #ff6b6b
}

.fact-tag {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(140, 231, 255, .2);
    border-radius: 4px;
    font-size: 11px;
    margin-right: 8px;
    color: var(--accent)
}

.insight-tag {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(167, 139, 250, .2);
    border-radius: 4px;
    font-size: 11px;
    margin-right: 8px;
    color: var(--accent2)
}

.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

@media (max-width:980px) {
    .pillars {
        grid-template-columns: 1fr
    }
}

.card3d {
    position: relative;
    border-radius: 22px;
    border: 1px solid var(--stroke);
    overflow: hidden;
    transform-style: preserve-3d;
    box-shadow: var(--shadow);
    transition: all .3s ease;
    width: auto;
    min-height: 400px
}

.card3d:nth-child(1) {
    background: linear-gradient(135deg, rgba(140, 231, 255, .15), rgba(59, 130, 246, .08));
    border-color: rgba(140, 231, 255, .35)
}

.card3d:nth-child(2) {
    background: linear-gradient(135deg, rgba(167, 139, 250, .15), rgba(139, 92, 246, .08));
    border-color: rgba(167, 139, 250, .35)
}

.card3d:nth-child(3) {
    background: linear-gradient(135deg, rgba(36, 224, 138, .15), rgba(16, 185, 129, .08));
    border-color: rgba(36, 224, 138, .35)
}

.card3d::before {
    content: "";
    position: absolute;
    inset: -20%;
    background: radial-gradient(600px 260px at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, .1), transparent 50%);
    filter: blur(10px);
    pointer-events: none;
    opacity: 0;
    transition: opacity .3s ease
}

.card3d:hover::before {
    opacity: 1
}

.card3d:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5)
}

.card3d:nth-child(1):hover {
    box-shadow: 0 20px 60px rgba(140, 231, 255, .3)
}

.card3d:nth-child(2):hover {
    box-shadow: 0 20px 60px rgba(167, 139, 250, .3)
}

.card3d:nth-child(3):hover {
    box-shadow: 0 20px 60px rgba(36, 224, 138, .3)
}

.card3d .border-glow {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none
}

.card3d .card-link {
    position: absolute;
    inset: 0;
    z-index: 1
}

.card-body {
    position: relative;
    padding: 28px;
    backdrop-filter: blur(6px);
    z-index: 2
}

.kicker {
    color: var(--muted);
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px
}

.card-title {
    margin-top: 8px;
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 900;
    letter-spacing: -.01em;
    line-height: 1.1
}

.bullets {
    margin: 16px 0 12px
}

.bullets li {
    margin: 6px 0;
    color: #d8e5ff
}

.exec-hook {
    margin-top: 12px;
    font-weight: 800
}

.card3d:nth-child(1) .exec-hook {
    color: #8ce7ff
}

.card3d:nth-child(2) .exec-hook {
    color: #a78bfa
}

.card3d:nth-child(3) .exec-hook {
    color: #24e08a
}

.caps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

@media (max-width:980px) {
    .caps-grid {
        grid-template-columns: 1fr
    }
}

.cap-item {
    border-radius: 16px;
    padding: 16px 18px;
    border: 1px solid var(--stroke);
    background: rgba(255, 255, 255, .04);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all .3s ease
}

.cap-item:hover {
    background: rgba(255, 255, 255, .08);
    transform: translateX(5px)
}

.cap-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--accent2);
    box-shadow: 0 0 12px var(--accent2)
}

.timeline {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent, rgba(167, 139, 250, .02), transparent)
}

.timeline-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
    flex-wrap: nowrap !important
}

@media (max-width:980px) {
    .timeline-items {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:640px) {
    .timeline-items {
        grid-template-columns: 1fr
    }
}

.timeline-item {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid var(--stroke);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all .3s ease
}

.timeline-item:nth-child(1) {
    background: linear-gradient(135deg, rgba(255, 122, 0, .1), rgba(255, 193, 7, .05));
    border-color: rgba(255, 122, 0, .3)
}

.timeline-item:nth-child(2) {
    background: linear-gradient(135deg, rgba(140, 231, 255, .1), rgba(59, 130, 246, .05));
    border-color: rgba(140, 231, 255, .3)
}

.timeline-item:nth-child(3) {
    background: linear-gradient(135deg, rgba(167, 139, 250, .1), rgba(139, 92, 246, .05));
    border-color: rgba(167, 139, 250, .3)
}

.timeline-item:nth-child(4) {
    background: linear-gradient(135deg, rgba(36, 224, 138, .1), rgba(16, 185, 129, .05));
    border-color: rgba(36, 224, 138, .3)
}

.timeline-item::before {
    content: attr(data-week);
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px
}

.timeline-item:nth-child(1)::before {
    color: #ff7a00
}

.timeline-item:nth-child(2)::before {
    color: #8ce7ff
}

.timeline-item:nth-child(3)::before {
    color: #a78bfa
}

.timeline-item:nth-child(4)::before {
    color: #24e08a
}

.timeline-item:hover {
    transform: translateY(-5px)
}

.timeline-item:nth-child(1):hover {
    box-shadow: 0 20px 40px rgba(255, 122, 0, .2)
}

.timeline-item:nth-child(2):hover {
    box-shadow: 0 20px 40px rgba(140, 231, 255, .2)
}

.timeline-item:nth-child(3):hover {
    box-shadow: 0 20px 40px rgba(167, 139, 250, .2)
}

.timeline-item:nth-child(4):hover {
    box-shadow: 0 20px 40px rgba(36, 224, 138, .2)
}

.timeline-item h4 {
    margin: 20px 0 10px;
    color: var(--pure);
    font-size: 18px
}

.timeline-item p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.4
}

.metrics {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px
}

@media (max-width:1100px) {
    .metrics {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media (max-width:640px) {
    .metrics {
        grid-template-columns: repeat(2, 1fr)
    }
}

.metric-box {
    border-radius: 22px;
    border: 1px solid var(--stroke);
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
    padding: 22px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all .3s ease
}

.metric-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, .7)
}

.metric-val {
    font-size: clamp(18px, 3.2vw, 32px);
    font-weight: 900;
    letter-spacing: -.02em;
    color: #fff
}

.metric-lbl {
    margin-top: 6px;
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .14em
}

.why {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

@media (max-width:980px) {
    .why {
        grid-template-columns: 1fr
    }
}

.why .fact {
    border: 1px solid var(--stroke);
    border-radius: 18px;
    padding: 18px;
    background: rgba(255, 255, 255, .04);
    transition: all .3s ease
}

.why .fact:hover {
    background: rgba(255, 255, 255, .08);
    transform: scale(1.02)
}

.why .fact .big {
    font-weight: 900;
    font-size: 22px;
    color: #fff
}

.why .fact .sub {
    color: var(--muted);
    margin-top: 6px
}

.cta-section {
    padding: 100px 0;
    text-align: center;
    background: radial-gradient(800px 400px at 50% 50%, rgba(255, 122, 0, .08), transparent)
}

.cta-section h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #ff7a00, #ffb86b);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap
}

.btn-executive {
    padding: 13px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 12px;
    transition: all .3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block
}

.btn-primary-exec {
    background: linear-gradient(135deg, #ff7a00, #ff9a40);
    color: #fff;
    border: none
}

.btn-secondary-exec {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent)
}

.btn-executive:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(255, 122, 0, .3)
}

.ticker {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: min(1200px, 94vw);
    pointer-events: none
}

.ticker .bar {
    overflow: hidden;
    white-space: nowrap;
    border-radius: 10px;
    border: 1px solid var(--stroke);
    background: rgba(255, 255, 255, .03);
    backdrop-filter: blur(4px);
    box-shadow: var(--shadow)
}

.ticker .scroll {
    display: inline-block;
    padding: 8px 0;
    animation: ticker 32s linear infinite
}

.ticker .item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    color: var(--muted)
}

.ticker .dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent3);
    box-shadow: 0 0 6px var(--accent3)
}

@keyframes ticker {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

@media (max-width:768px) {
    .demo-container {
        padding: 15px;
        margin: 0 auto;
        width: 100%;
        max-width: 100%
    }

    .demo-terminal {
        width: 100%;
        max-width: 100%
    }

    .demo-input-wrapper {
        flex-direction: column
    }

    .demo-input {
        width: 100%;
        margin-bottom: 10px
    }

    .reset-btn {
        width: 100%;
        max-width: 120px;
        align-self: flex-end
    }

    .timeline-items {
        flex-direction: column;
        gap: 20px
    }

    .timeline-item {
        width: 100%
    }

    .caps-grid {
        grid-template-columns: 1fr;
        gap: 10px
    }
}

@media (min-width:769px) and (max-width:1024px) {
    .demo-container {
        padding: 20px;
        max-width: 90%;
        margin: 0 auto
    }

    .timeline-items {
        gap: 15px
    }

    .caps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px
    }
}

.demo-terminal input,
.demo-terminal button {
    box-sizing: border-box
}

.timeline-items,
.caps-grid {
    display: flex;
    flex-wrap: wrap
}

@media (max-width:768px) {
    .demo-input-wrapper {
        flex-direction: column
    }
}

h1 {
    font-weight: 900;
    font-size: clamp(32px, 6.8vw, 72px);
    letter-spacing: -.02em;
    background: linear-gradient(135deg, #ff7a00, #ffb86b);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease
}



footer {
    padding: 60px 20px 59px 20px !important
}

.hemo {
    display: none
}

.btn13 {
  --black-700: rgb(36, 28, 43);
  --border_radius: 14px;
  --transtion: 0.3s ease-in-out;
  --offset: -2px;

  cursor: pointer;
  position: relative;

  display: flex;
  align-items: center;
  gap: 0.5rem;

  transform-origin: center;

 padding: 10px 18px;
  

  border: none;
  border-radius: var(--border_radius);
  transform: scale(calc(1 + (var(--active, 0) * 0.1)));

  transition: transform var(--transtion);
  
}

.btn13:hover { transform: translateY(-5px); box-shadow: 0 25px 60px rgba(255,107,53,0.6); }

.btn13::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 100%;
  height: 100%;
  background-color: var(--black-700);
  border-radius: var(--border_radius);
  box-shadow: inset 0 0.5px hsl(0, 0%, 100%);

  transition: all var(--transtion);
  z-index: 0;
}

.btn13:is(:hover, :focus-visible) {
  --active: 1;
}

.btn13 .dots_border {
  --size_border: calc(100% + 2px);

  overflow: hidden;

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: var(--size_border);
  height: var(--size_border);
  background-color: transparent;

  border-radius: var(--border_radius);
  z-index: -10;
}

.btn13 .dots_border::before {
  content: "";
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: left;
  transform: rotate(0deg);

  width: 100%;
  height: 2rem;
  background-color: white;

  mask: linear-gradient(transparent 0%, white 120%);
  animation: rotate 2s linear infinite;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

.btn13 .sparkle {
  position: relative;
  z-index: 10;

  width: 1.75rem;
}

.btn13 .sparkle .path {
  fill: currentColor;
  stroke: currentColor;

  transform-origin: center;

  color: hsl(0, 0%, 100%);
}

.btn13:is(:hover, :focus) .sparkle .path {
  animation: path 1.5s linear 0.5s infinite;
}

.btn13 .sparkle .path:nth-child(1) {
  --scale_path_1: 1.2;
}
.btn13 .sparkle .path:nth-child(2) {
  --scale_path_2: 1.2;
}
.btn13 .sparkle .path:nth-child(3) {
  --scale_path_3: 1.2;
}

@keyframes path {
  0%,
  34%,
  71%,
  100% {
    transform: scale(1);
  }
  17% {
    transform: scale(var(--scale_path_1, 1));
  }
  49% {
    transform: scale(var(--scale_path_2, 1));
  }
  83% {
    transform: scale(var(--scale_path_3, 1));
  }
}

.btn13 .text_button {
  position: relative;
  z-index: 10;

  background-image: linear-gradient(
    90deg,
    hsla(0 0% 100% / 1) 0%,
    hsla(0 0% 100% / var(--active, 0)) 120%
  );
  background-clip: text;

  font-size: 1rem;
  color: transparent;
}

/* Video Popup Styles - Fully Responsive */
.video-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }

  .video-popup.active {
    opacity: 1;
    visibility: visible;
  }

  .video-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
  }

  .close-btn {
    position: absolute;
    top: -6px;
    right: 0;
    background: transparent;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
  }

  .close-btn:hover {
    color: #ff0000;
  }

  video {
    width: 100%;
    height: 100%;
    max-height: 80vh;
  }

  .unmute-btn {
    position: absolute;
    bottom: 14px;
    right: 6px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 0px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s;
    animation: pulse 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
  }

  .unmute-btn svg {
    color: #333;
  }

  .unmute-btn:hover {
    background: #333;
    transform: scale(1.1);
  }

  .unmute-btn:hover svg {
    color: white;
  }

  .unmute-btn.hidden {
    display: none;
  }

  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    50% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
  }