*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

body {
    font-family: system-ui, -apple-system, sans-serif;
    background: #FF5722;
    color: #fff;
    line-height: 1.5
}

img {
    display: block;
    max-width: 100%
}

a {
    color: inherit;
    text-decoration: none
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font: inherit;
    color: inherit
}

::-webkit-scrollbar {
    width: 4px
}

::-webkit-scrollbar-track {
    background: transparent
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .15);
    border-radius: 2px
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, .25)
}

.hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    inset: 0
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .6), rgba(0, 0, 0, .4), rgba(0, 0, 0, .7))
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 4rem 4rem;
    max-width: 28rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center
}

.hero-avatar {
    position: relative;
    animation: fadeScaleIn .6s ease-out
}

.hero-avatar-inner {
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #FF5722;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .5)
}

.hero-avatar-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

@media(min-width:768px) {
    .hero-avatar-inner {
        width: 8rem;
        height: 8rem
    }
}

.hero-title {
    margin-top: 1.25rem;
    animation: fadeUpIn .6s ease-out .15s both
}

.hero-title h1:first-child {
    font-size: 2.25rem;
    font-weight: 900;
    letter-spacing: -.02em;
    line-height: 1
}

.hero-title h1:last-child {
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: .05em;
    margin-top: .125rem
}

@media(min-width:768px) {
    .hero-title h1:first-child {
        font-size: 3rem
    }

    .hero-title h1:last-child {
        font-size: 1.5rem
    }
}

.hero-byline {
    margin-top: .5rem;
    color: #FF5722;
    font-size: 1.125rem;
    font-style: italic;
    font-weight: 300;
    font-family: Georgia, serif;
    animation: fadeUpIn .6s ease-out .25s both
}

.hero-tagline {
    margin-top: 1.0rem;
    margin-bottom: 1.0rem;
    color: #ffffff;
    font-size: 1.1rem;
    max-width: 20rem;
    animation: fadeUpIn .6s ease-out .35s both
}

.hero-socials {
    margin-top: 1.25rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeUpIn .5s ease-out .45s both
}

.hero-socials a {
    color: #fff;
    transition: color .15s
}

.hero-socials a:hover {
    color: #fff
}

.hero-socials svg {
    width: 1.25rem;
    height: 1.25rem
}

.panel {
    position: relative;
    background: #FF5722;
    z-index: 20;
    margin-top: -1.5rem;
    border-radius: 2rem 2rem 0 0
}

.panel::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .04;
    pointer-events: none;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
    border-radius: 2rem 2rem 0 0
}

.panel>* {
    position: relative;
    z-index: 1
}

.quick-links {
    padding: 2rem 1.5rem 1rem;
    max-width: 28rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    animation: fadeUpIn .6s ease-out .55s both
}

.quick-link {
    display: flex;
    align-items: center;
    gap: .75rem;
    width: 100%;
    padding: .75rem 1.25rem;
    border-radius: .75rem;
    border: 1px solid rgba(255, 255, 255, 1);
    transition: background .15s
}

.quick-link:hover {
    background: rgba(255, 255, 255, .1)
}

.quick-link svg {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0
}

.quick-link span {
    font-size: .875rem;
    font-weight: 500
}

.quick-link-arrow {
    margin-left: auto;
    color: rgba(255, 255, 255, .6);
    transition: all .15s
}

.quick-link:hover .quick-link-arrow {
    color: #fff;
    transform: translateX(4px)
}

.quote {
    padding: 1.5rem 1.5rem;
    max-width: 28rem;
    margin: 0 auto;
    text-align: center
}

.quote-line {
    width: 4rem;
    height: 1px;
    background: rgba(255, 255, 255, .5);
    margin: 0 auto
}

.quote-text {
    color: rgba(255, 255, 255, .8);
    font-size: .875rem;
    font-style: italic;
    line-height: 1.625;
    margin: .75rem 0
}

.quote-line:last-child {
    margin-top: .75rem;
    margin-bottom: 0
}

.section {
    padding: 2.5rem 1.5rem
}

.section-inner {
    max-width: 28rem;
    margin: 0 auto
}

.section-inner-wide {
    max-width: 56rem;
    margin: 0 auto
}

.section-head {
    margin-bottom: 1.25rem;
    animation: fadeUpScroll .5s ease-out both
}

.section-head-top {
    display: flex;
    align-items: center;
    gap: .625rem
}

.section-head-top svg {
    width: 1.25rem;
    height: 1.25rem
}

.section-head-top h2 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -.01em
}

.section-head-line {
    height: 1px;
    background: rgba(255, 255, 255, .25);
    margin-top: .625rem
}

.section-desc {
    color: rgba(255, 255, 255, .6);
    font-size: .875rem;
    margin-bottom: 1.25rem;
    margin-top: -.75rem;
    line-height: 1.625
}

.carousel-wrap {
    position: relative
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF5722;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .3);
    transition: all .15s
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, .9)
}

.carousel-btn svg {
    width: 1rem;
    height: 1rem
}

.carousel-btn.left {
    left: .25rem
}

.carousel-btn.right {
    right: .25rem
}

.carousel-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: .5rem;
    padding-left: 1px;
    padding-right: 1px;
    margin-left: -1px;
    margin-right: -1px;
    -ms-overflow-style: none;
    scrollbar-width: none
}

.carousel-track::-webkit-scrollbar {
    display: none
}

.podcast-card {
    scroll-snap-align: start;
    flex-shrink: 0;
    width: 82vw
}

@media(min-width:640px) {
    .podcast-card {
        width: 70vw
    }
}

@media(min-width:768px) {
    .podcast-card {
        width: 50vw
    }
}

@media(min-width:1024px) {
    .podcast-card {
        width: 40vw
    }
}

.podcast-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: .5rem
}

.podcast-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s
}

.podcast-thumb:hover img {
    transform: scale(1.02)
}

.podcast-thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s
}

.podcast-thumb:hover .podcast-thumb-overlay {
    background: rgba(0, 0, 0, .2)
}

.play-btn {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: #FF5722;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 25px -5px rgba(255, 87, 34, .4);
    transition: transform .15s
}

.podcast-thumb:hover .play-btn {
    transform: scale(1.1)
}

.play-btn svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #fff;
    margin-left: 2px
}

.podcast-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .8), transparent);
    padding: .75rem
}

.podcast-label p {
    color: #fff;
    font-size: .75rem;
    font-weight: 600;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.podcast-duration {
    position: absolute;
    top: .5rem;
    right: .5rem;
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(4px);
    border-radius: .25rem;
    padding: .125rem .375rem;
    font-size: .625rem;
    font-weight: 500
}

.podcast-ctas {
    margin-top: .75rem;
    display: flex;
    flex-direction: column;
    gap: .375rem
}

.podcast-cta {
    display: flex;
    align-items: center;
    gap: .5rem;
    width: 100%;
    padding: .5rem .75rem;
    border-radius: .5rem;
    background: #fff;
    transition: background .15s;
    text-decoration: none
}

.podcast-cta:hover {
    background: rgba(255, 255, 255, .9)
}

.podcast-cta svg {
    width: 1rem;
    height: 1rem;
    color: #FF5722;
    flex-shrink: 0
}

.podcast-cta span {
    font-size: .75rem;
    font-weight: 700;
    color: #FF5722
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1.25rem;
    border-radius: 9999px;
    background: #fff;
    color: #FF5722;
    font-size: .75rem;
    font-weight: 700;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .2);
    transition: background .15s;
    text-decoration: none
}

.explore-btn:hover {
    background: rgba(255, 255, 255, .9)
}

.explore-btn svg {
    width: .875rem;
    height: .875rem
}

.explore-center {
    margin-top: 1.25rem;
    text-align: center
}

.spotify-card {
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, .3);
    padding: 1.25rem;
    overflow: hidden
}

.spotify-meta {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: 1rem
}

.spotify-meta span:first-child {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase
}

.spotify-meta span:nth-child(2) {
    color: rgba(255, 255, 255, .3)
}

.spotify-meta span:last-child {
    font-size: .75rem;
    color: rgba(255, 255, 255, .6)
}

.spotify-body {
    display: flex;
    align-items: center;
    gap: 1rem
}

.spotify-cover {
    width: 5rem;
    height: 5rem;
    border-radius: .5rem;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .3)
}

.spotify-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.spotify-info h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .25rem
}

.spotify-info p {
    font-size: .75rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.5
}

.gear-card {
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, .3);
    overflow: hidden
}

.gear-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    transition: background .15s;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.gear-item:last-child {
    border-bottom: none
}

.gear-item:hover {
    background: rgba(255, 255, 255, .05)
}

.gear-thumb {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: .5rem;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center
}

.gear-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.gear-thumb svg {
    width: 1.25rem;
    height: 1.25rem;
    color: rgba(255, 255, 255, .3)
}

.gear-info {
    flex: 1;
    min-width: 0
}

.gear-info h3 {
    font-size: .875rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color .15s
}

.gear-item:hover .gear-info h3 {
    color: rgba(255, 255, 255, .9)
}

.gear-info p {
    font-size: .6875rem;
    color: rgba(255, 255, 255, .5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.gear-ext {
    flex-shrink: 0;
    color: rgba(255, 255, 255, .2);
    transition: color .15s
}

.gear-item:hover .gear-ext {
    color: rgba(255, 255, 255, .6)
}

.gear-ext svg {
    width: 1rem;
    height: 1rem
}

.yt-card {
    scroll-snap-align: start;
    flex-shrink: 0;
    width: 85vw
}

@media(min-width:640px) {
    .yt-card {
        width: 70vw
    }
}

@media(min-width:768px) {
    .yt-card {
        width: 45vw
    }
}

@media(min-width:1024px) {
    .yt-card {
        width: 35vw
    }
}

.yt-card a {
    display: block;
    text-decoration: none;
    color: inherit
}

.yt-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: .5rem
}

.yt-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s
}

.yt-card:hover .yt-thumb img {
    transform: scale(1.05)
}

.yt-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s
}

.yt-card:hover .yt-overlay {
    background: rgba(0, 0, 0, .1)
}

.yt-play {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: #FF5722;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(255, 87, 34, .4);
    transition: transform .15s
}

.yt-card:hover .yt-play {
    transform: scale(1.1)
}

.yt-play svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #fff;
    margin-left: 2px
}

.yt-bottom {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    animation: fadeUpScroll .5s ease-out .3s both
}

.yt-bottom-link {
    color: rgba(255, 255, 255, .6);
    font-size: .75rem;
    transition: color .15s
}

.yt-bottom-link:hover {
    color: #fff
}

.footer {
    padding: 2.5rem 1.5rem;
    max-width: 28rem;
    margin: 0 auto;
    text-align: center
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem
}

.footer-socials a {
    color: rgba(255, 255, 255, .7);
    transition: color .15s
}

.footer-socials a:hover {
    color: #fff
}

.footer-socials svg {
    width: 1.25rem;
    height: 1.25rem
}

.footer-copy {
    color: rgba(255, 255, 255, .3);
    font-size: .75rem;
    letter-spacing: .05em
}

.carousel-btn.hidden {
    display: none
}

.scroll-reveal {
    animation: fadeUpScroll .5s ease-out both;
    animation-timeline: view();
    animation-range: entry 0% entry 100%
}

@keyframes fadeScaleIn {
    from {
        transform: scale(.8);
        opacity: 0
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

@keyframes fadeUpIn {
    from {
        transform: translateY(20px);
        opacity: 0
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}

@keyframes fadeUpScroll {
    from {
        transform: translateY(20px);
        opacity: 0
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}

@media(prefers-reduced-motion) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important
    }
}