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

:root {
    --bg: #0b1020;
    --bg2: #11182b;
    --surface: #fff;
    --text: #111827;
    --muted: #667085;
    --primary: #4c9b13;
    --primary2: #ff674d;
    --accent: #ffca3a;
    --green: #25d366;
    --line: #e8eaf0;
    --radius: 22px
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px
}

body {
    font-family: "Roboto", sans-serif;
    color: var(--text);
    background: #f7f8fb;
    line-height: 1.5
}

h1,
h2,
h3,
h4,
.brand,
.nav,
.btn,
.listen-btn,
.day,
.section-kicker {
    font-family: "Montserrat", sans-serif
}

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

img {
    max-width: 100%;
    display: block
}

.container {
    width: min(1160px, calc(100% - 40px));
    margin: auto
}

.topbar {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: rgba(7, 10, 18, .35);
    backdrop-filter: blur(10px);
    transition: background .25s ease, box-shadow .25s ease, border-color .25s ease
}

.topbar.scrolled {
    background: rgba(8, 12, 21, .92);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .22);
    border-bottom-color: rgba(255, 255, 255, .12)
}

.topbar-inner {
    height: 92px;
    display: flex;
    align-items: center;
    gap: 34px
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    min-width: max-content
}

.brand-image img {
    display: block;
    height: 54px;
    width: auto;
    max-width: 100%
}

.footer-logo.brand-image img {
    height: 58px;
    width: auto;
    max-width: 220px
}

.brand-mark {
    width: 39px;
    height: 39px;
    position: relative;
    display: grid;
    place-items: center
}

.brand-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    position: absolute;
    bottom: 3px
}

.signal {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, .8);
    border-left-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-radius: 50%
}

.signal.s1 {
    width: 18px;
    height: 18px;
    bottom: 2px
}

.signal.s2 {
    width: 28px;
    height: 28px;
    bottom: 0
}

.signal.s3 {
    width: 38px;
    height: 38px;
    bottom: -2px
}

.nav {
    margin-left: auto;
    display: flex;
    gap: 27px
}

.nav a {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    opacity: .86;
    transition: .2s
}

.nav a:hover {
    opacity: 1;
    color: #fff
}

.listen-btn {
	transition: transform .30s ease, box-shadow .25s ease;
    display: flex;
    align-items: center;
    gap: 9px;
    background: var(--primary);
    color: #fff;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase
}
.listen-btn:hover{
  transform: translateY(-4px) scale(1.00);
  box-shadow: 0 10px 24px rgba(178, 251, 165);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, .7);
    animation: pulse 1.5s infinite
}

@keyframes pulse {
    70% {
        box-shadow: 0 0 0 8px rgba(255, 255, 255, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0)
    }
}

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    width: 36px
}

.menu-toggle span {
    display: block;
    height: 2px;
    background: #fff;
    margin: 6px 0
}

.hero {
    min-height: 720px;
    position: relative;
    overflow: hidden;
    color: #fff;
    background: #0b1020;
    display: flex;
    align-items: center
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(5, 8, 15, .96) 0%, rgba(5, 8, 15, .88) 28%, rgba(5, 8, 15, .52) 54%, rgba(5, 8, 15, .18) 76%, rgba(5, 8, 15, .35) 100%), radial-gradient(circle at 72% 28%, rgba(240, 58, 71, .12), transparent 30%)
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    padding-top: 90px
}

.hero-copy {
    padding: 110px 0 120px;
    max-width: 620px
}

.eyebrow,
.section-kicker {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 15px
}

.hero h1 {
    font-size: clamp(50px, 6vw, 82px);
    line-height: .98;
    letter-spacing: -3px;
    font-weight: 900
}

.hero h1 em {
    font-style: normal;
    color: var(--primary)
}

.hero p {
    font-size: 19px;
    max-width: 560px;
    color: #d5d9e2;
    margin: 26px 0 34px
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.btn {
    padding: 15px 23px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .4px;
    display: inline-flex;
    align-items: center;
    gap: 9px
}

.btn.primary {
    background: var(--primary);
    color: #fff
}

.btn.secondary {
    border: 1px solid rgba(255, 255, 255, .3);
    color: #fff;
    background: rgba(255, 255, 255, .06)
}

.play-icon {
    font-size: 10px
}

.live-strip {
    position: relative;
    z-index: 5;
    margin-top: -42px
}

.live-inner {
    min-height: 96px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(16, 24, 40, .15);
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    align-items: center;
    gap: 22px;
    padding: 17px 24px
}

.live-status {
    display: flex;
    align-items: center;
    gap: 12px;
    border-right: 1px solid var(--line);
    padding-right: 22px
}

.live-status div {
    display: flex;
    flex-direction: column
}

.live-status small,
.now-playing small {
    color: var(--muted);
    font-size: 11px
}

.live-status strong {
    font-size: 14px
}

.live-label {
    font-family: "Montserrat";
    font-weight: 900;
    background: var(--primary);
    color: #fff;
    border-radius: 6px;
    padding: 5px 8px;
    font-size: 9px;
    letter-spacing: 1px
}

.round-play {
    border: 0;
    background: var(--bg);
    color: #fff;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px
}

.now-playing {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0
}

.now-playing>div:last-child {
    display: flex;
    flex-direction: column;
    min-width: 0
}

.now-playing strong {
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.waves {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 30px
}

.waves span {
    width: 3px;
    height: 8px;
    border-radius: 3px;
    background: var(--primary)
}

.waves.playing span {
    animation: wave .7s infinite alternate
}

.waves span:nth-child(2n) {
    animation-delay: .2s
}

.waves span:nth-child(3n) {
    animation-delay: .4s
}

@keyframes wave {
    to {
        height: 28px
    }
}

.volume-wrap {
    display: flex;
    align-items: center;
    gap: 8px
}

.volume-icon {
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    color: var(--bg)
}

.volume-icon svg {
    width: 20px;
    height: 20px;
    display: block;
    fill: currentColor
}

.volume-wrap input {
    accent-color: var(--primary);
    width: 100px
}

.section {
    padding: 100px 0
}

.intro {
    padding-top: 130px
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center
}

.intro h2,
.section-heading h2,
.app-copy h2,
.request-inner h2 {
    font-size: clamp(36px, 4vw, 54px);
    line-height: 1.05;
    letter-spacing: -2px
}

.intro-grid>p {
    font-size: 17px;
    color: var(--muted);
    max-width: 520px
}

.schedule {
    background: #eef1f6
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
    margin-bottom: 42px
}

.section-heading p {
    color: var(--muted);
    max-width: 420px
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.program-card {
    background: #fff;
    border-radius: 18px;
    padding: 26px;
    min-height: 285px;
    border: 1px solid #e5e7eb;
    transition: .25s;
    position: relative;
    overflow: hidden
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(16, 24, 40, .09)
}

.program-card.featured {
    background: var(--bg);
    color: #fff;
    border-color: var(--bg)
}

.day {
    font-size: 9px;
    letter-spacing: 2px;
    font-weight: 900;
    color: var(--primary)
}

.program-time {
    font-family: "Montserrat";
    font-weight: 900;
    font-size: 34px;
    margin: 20px 0 4px
}

.program-card h3 {
    font-size: 18px
}

.program-card p {
    font-size: 13px;
    color: var(--muted);
    margin: 10px 0 23px
}

.program-card.featured p {
    color: #c7ccd6
}

.host {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 12px
}

.avatar {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f1f3f7;
    color: #111827;
    font-weight: 800;
    font-size: 9px
}

.app-section {
    background: #fff
}

.app-card {
    min-height: 410px;
    border-radius: 28px;
    background: linear-gradient(120deg, #000000, #193d00 100%, #357f01);
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    color: #fff;
    overflow: hidden;
    align-items: center
}

.phone-art {
    height: 100%;
    position: relative;
    display: grid;
    place-items: end center
}

.phone {
    width: 215px;
    height: 360px;
    border: 8px solid #202633;
    border-radius: 34px 34px 0 0;
    background: linear-gradient(1deg, #d1fdb2, #ffffff);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .45);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 70px
}

.speaker {
    position: absolute;
    top: 15px;
    width: 55px;
    height: 5px;
    border-radius: 5px;
    background: #080b12
}

.phone-screen-logo {
    width: 155px;
    height: 80px;
    display: grid;
    place-items: center
}

.phone-screen-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.mini-player {
    margin-top: 48px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary);
    display: grid;
    place-items: center;
    font-size: 24px
}

.app-copy {
    padding: 55px 70px 55px 20px
}

.section-kicker.light {
    color: #60ff00
}

.app-copy p {
    color: #cbd1dc;
    margin: 18px 0 28px;
    max-width: 560px
}

.store-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.store {
	transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 10px;
    background: rgba(255, 255, 255, .06)
}
.store:hover{
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
  background: rgba(255,255,255,.12);
}

.store-icon {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    flex: 0 0 24px
}

.store-icon svg {
    width: 24px;
    height: 24px;
    display: block;
    fill: currentColor
}

.store div {
    display: flex;
    flex-direction: column;
    line-height: 1.05
}

.store small {
    font-size: 7px;
    letter-spacing: 1px
}

.store strong {
    font-family: "Montserrat";
    font-size: 14px
}

.centered {
    display: block;
    text-align: center
}

.centered p {
    margin: 13px auto 0
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.team-card {
	transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 10px 30px rgba(16, 24, 40, .05)
}
.team-card:hover{
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
  background: rgba(255,255,255,.12);
}

.team-photo {
    width: 100%;
    aspect-ratio: 5/6;
    object-fit: cover;
    object-position: center top;
    background: #e5e7eb
}

.team-info {
    padding: 21px
}

.team-info>span {
    color: var(--primary);
    font: 800 8px "Montserrat";
    letter-spacing: 1.5px
}

.team-info h3 {
    font-size: 18px;
    margin: 5px 0
}

.team-info p {
    font-size: 12px;
    color: var(--muted)
}

.request-section {
    background: var(--primary);
    color: #fff;
    padding: 70px 0
}

.request-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px
}

.request-inner p {
    margin-top: 12px;
    color: #ffe6e8
}

.whatsapp-btn {
	transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    background: var(--green);
    color: #fff;
    border-radius: 999px;
    padding: 16px 23px;
    font: 800 13px "Montserrat";
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 10px
}
.whatsapp-btn:hover{
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 10px 24px rgba(0, 0, 0);
  background: rgba(255,255,255,.12);
}

.wa-icon {
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    flex: 0 0 18px
}

.wa-icon svg {
    width: 18px;
    height: 18px;
    display: block;
    fill: currentColor
}

footer {
    background: #090d17;
    color: #fff;
    padding: 70px 0 25px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr .7fr 1fr 1fr;
    gap: 50px
}

.footer-grid>div:not(.footer-brand) {
    display: flex;
    flex-direction: column;
    gap: 9px
}

.footer-brand p,
.footer-grid a,
.footer-grid span {
    color: #aeb5c2;
    font-size: 12px
}

.footer-grid h4 {
    font-size: 13px;
    margin-bottom: 8px
}

.footer-logo {
    margin-bottom: 18px
}

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

.socials a {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #171d2a;
    color: #fff;
    transition: transform .2s ease, background .2s ease
}

.socials a:hover {
    transform: translateY(-2px);
    background: #232b3b
}

.socials svg {
    width: 18px;
    height: 18px;
    display: block
}

.footer-bottom {
    border-top: 1px solid #1d2432;
    margin-top: 50px;
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    gap: 20px
}

.footer-bottom span {
    font-size: 10px;
    color: #737d8f
}

@media(max-width:900px) {
    .topbar {
        position: fixed
    }

    .nav {
        position: absolute;
        display: none;
        top: 78px;
        left: 20px;
        right: 20px;
        background: #111827;
        border: 1px solid rgba(255, 255, 255, .1);
        border-radius: 15px;
        padding: 18px;
        flex-direction: column;
        gap: 0
    }

    .nav.open {
        display: flex
    }

    .nav a {
        padding: 12px
    }

    .menu-toggle {
        display: block;
        margin-left: auto
    }

    .listen-btn {
        display: none
    }

    .topbar-inner {
        height: 78px
    }

    .hero {
        min-height: 680px
    }

    .hero-content {
        grid-template-columns: 1fr;
        padding-top: 70px
    }

    .hero-copy {
        padding: 95px 0 90px;
        text-align: center;
        margin: 0 auto
    }

    .hero p {
        margin: 24px auto 32px
    }

    .hero-actions {
        justify-content: center
    }

    .live-inner {
        grid-template-columns: auto auto 1fr
    }

    .volume-wrap {
        display: none
    }

    .live-status {
        padding-right: 12px
    }

    .live-status small {
        display: none
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 25px
    }

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

    .app-card {
        grid-template-columns: 1fr
    }

    .phone-art {
        display: none
    }

    .app-copy {
        padding: 55px
    }

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

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

@media(max-width:600px) {
    .container {
        width: min(100% - 28px, 1160px)
    }

    .brand-image img {
        height: 46px
    }

    .hero {
        min-height: 630px
    }

    .hero h1 {
        font-size: 47px;
        letter-spacing: -2px
    }

    .hero p {
        font-size: 16px
    }

    .live-strip {
        margin-top: -30px
    }

    .live-inner {
        min-height: 82px;
        grid-template-columns: auto 1fr;
        padding: 13px 15px;
        gap: 12px
    }

    .live-status {
        display: none
    }

    .round-play {
        width: 48px;
        height: 48px
    }

    .waves {
        display: none
    }

    .section {
        padding: 75px 0
    }

    .intro {
        padding-top: 105px
    }

    .intro h2,
    .section-heading h2,
    .app-copy h2,
    .request-inner h2 {
        font-size: 35px
    }

    .section-heading {
        display: block
    }

    .section-heading p {
        margin-top: 12px
    }

    .schedule-grid {
        grid-template-columns: 1fr
    }

    .program-card {
        min-height: auto
    }

    .app-copy {
        padding: 42px 27px
    }

    .store-buttons {
        flex-direction: column
    }

    .store {
        justify-content: center
    }

    .team-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px
    }

    .team-info {
        padding: 14px
    }

    .team-info h3 {
        font-size: 15px
    }

    .team-info p {
        font-size: 10px
    }

    .request-inner {
        display: block;
        text-align: center
    }

    .whatsapp-btn {
        display: inline-flex;
        margin-top: 26px
    }

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

    .footer-bottom {
        flex-direction: column
    }
}