:root {
    --p-orange: #e86010;
    --p-orange-dk: #c84a08;
    --p-orange-lt: #f07820;
    --p-gold: #faa040;
    --p-pale: #fcebd8;
    --p-dark: #1a0800;
    --p-ink: #6a2808;
    --p-muted: #8a3010;
    --p-border: rgba(176, 24, 32, .25);
    --p-bg: #fff8f2;
    --p-white: #ffffff;
    --p-surface: #fdf3e8;
    --p-shadow: rgba(200, 74, 8, .35);
    --p-radius: 50px;
    --p-grad: linear-gradient(90deg, #f07820, #e86010, #c84a08, #b01820);
    --p-grad-text: linear-gradient(90deg, #f07820, #e86010, #c84a08, #b01820);
    --p-top-line: linear-gradient(90deg, transparent 0%, #f07820 25%, #c84a08 50%, #b01820 75%, transparent 100%);
}

@keyframes grad-shift {

    0%,
    100% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }
}

@keyframes fadein-up {
    from {
        opacity: 0;
        transform: translateY(18px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: .6
    }

    70% {
        transform: scale(1.35);
        opacity: 0
    }

    100% {
        transform: scale(1.35);
        opacity: 0
    }
}

@keyframes pulse-dot {

    0%,
    100% {
        box-shadow: 0 0 6px var(--p-orange-lt)
    }

    50% {
        box-shadow: 0 0 14px var(--p-orange-lt), 0 0 24px rgba(240, 120, 32, .4)
    }
}

@keyframes float-particle {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: .5
    }

    50% {
        transform: translateY(-14px) rotate(180deg);
        opacity: 1
    }
}

@keyframes mandala-spin {
    from {
        transform: translateX(-50%) rotate(0deg)
    }

    to {
        transform: translateX(-50%) rotate(360deg)
    }
}

@keyframes corner-cw {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

@keyframes corner-ccw {
    from {
        transform: rotate(360deg)
    }

    to {
        transform: rotate(0deg)
    }
}

@keyframes nodeFloat {
    0% {
        transform: translateX(-50%) perspective(200px) rotateY(0deg) translateZ(0px) translateY(0px);
        box-shadow: 0 4px 16px rgba(232, 96, 16, .25)
    }

    25% {
        transform: translateX(-50%) perspective(200px) rotateY(10deg) translateZ(6px) translateY(-3px);
        box-shadow: 0 8px 24px rgba(232, 96, 16, .35)
    }

    50% {
        transform: translateX(-50%) perspective(200px) rotateY(0deg) translateZ(0px) translateY(0px);
        box-shadow: 0 4px 16px rgba(232, 96, 16, .25)
    }

    75% {
        transform: translateX(-50%) perspective(200px) rotateY(-10deg) translateZ(6px) translateY(-3px);
        box-shadow: 0 8px 24px rgba(232, 96, 16, .35)
    }

    100% {
        transform: translateX(-50%) perspective(200px) rotateY(0deg) translateZ(0px) translateY(0px);
        box-shadow: 0 4px 16px rgba(232, 96, 16, .25)
    }
}

@keyframes tyohar-spin360 {
    from {
        transform: translateX(-50%) rotate(0deg)
    }

    to {
        transform: translateX(-50%) rotate(360deg)
    }
}

body {
    background: var(--p-bg)
}

.page-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px
}

.hero-wrap {
    position: relative;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0e0200 0%, #2a0a00 25%, #1a0400 50%, #350e00 75%, #0e0200 100%);
}

.hero-top-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 3;
    background: var(--p-top-line)
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    z-index: 1
}

.hero-orb--a {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(240, 120, 32, .18), transparent 70%);
    top: -150px;
    left: -100px
}

.hero-orb--b {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(176, 24, 32, .14), transparent 70%);
    bottom: -120px;
    right: -80px
}

.hero-orb--c {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(250, 160, 64, .1), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image: linear-gradient(rgba(240, 120, 32, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(240, 120, 32, .04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1
}

.hero-particle {
    position: absolute;
    color: var(--p-orange-lt);
    opacity: .5;
    animation: float-particle linear infinite
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding: 80px 0 90px;
    text-align: center;
    width: 100%
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    animation: fadein-up .7s ease both
}

.hero-eyebrow-line {
    width: 36px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(250, 160, 64, .7))
}

.hero-eyebrow-line--r {
    background: linear-gradient(90deg, rgba(250, 160, 64, .7), transparent)
}

.hero-eyebrow-text {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .4em;
    text-transform: uppercase;
    color: rgba(250, 160, 64, .8)
}

.hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 7px 22px;
    border-radius: var(--p-radius);
    background: rgba(240, 120, 32, .12);
    border: 1px solid rgba(240, 120, 32, .35);
    backdrop-filter: blur(10px);
    margin: 0 auto 24px;
    width: fit-content;
    animation: fadein-up .8s .1s ease both;
}

.hero-badge-text {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--p-pale);
    white-space: nowrap
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--p-orange-lt);
    box-shadow: 0 0 8px var(--p-orange-lt);
    flex-shrink: 0;
    position: relative
}

.hero-badge-dot::after {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 1px solid rgba(240, 120, 32, .5);
    animation: pulse-ring 2s ease-out infinite
}

.hero-title {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -.5px;
    line-height: 1.1;
    margin-bottom: 16px;
    animation: fadein-up .9s .2s ease both
}

.hero-title-accent {
    background: linear-gradient(90deg, #f07820, #faa040, #e86010);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: grad-shift 4s ease infinite;
}

.hero-subtitle {
    font-size: clamp(.8rem, 1.5vw, .92rem);
    font-weight: 500;
    color: rgba(252, 235, 216, .65);
    letter-spacing: .22em;
    text-transform: uppercase;
    margin-bottom: 32px;
    animation: fadein-up 1s .3s ease both
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 28px;
    animation: fadein-up 1s .35s ease both
}

.hero-divider-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(240, 120, 32, .6));
    border-radius: 2px
}

.hero-divider-line--r {
    background: linear-gradient(90deg, rgba(240, 120, 32, .6), transparent)
}

.hero-divider-symbol {
    font-size: 14px;
    color: var(--p-orange-lt)
}

.hero-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--p-radius);
    backdrop-filter: blur(8px);
    animation: fadein-up 1s .45s ease both;
}

.hero-breadcrumb a {
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(252, 235, 216, .55);
    text-decoration: none;
    transition: color .2s
}

.hero-breadcrumb a:hover {
    color: var(--p-gold)
}

.hero-breadcrumb-sep {
    font-size: 7px;
    color: rgba(240, 120, 32, .6)
}

.hero-breadcrumb-current {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--p-gold)
}

.hero-bottom-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(240, 120, 32, .3), rgba(176, 24, 32, .3), transparent)
}

.hero-mandala {
    position: absolute;
    bottom: -258px;
    left: 50%;
    width: 480px;
    height: 480px;
    transform-origin: center center;
    animation: mandala-spin 30s linear infinite;
    opacity: .3;
    pointer-events: none;
    z-index: 1;
    object-fit: contain;
    filter: drop-shadow(0 0 22px rgba(240, 120, 32, .28));
}

.datebar-wrap {
    background: radial-gradient(ellipse at 10% 50%, rgba(240, 120, 32, .07) 0%, transparent 55%), radial-gradient(ellipse at 90% 50%, rgba(176, 24, 32, .06) 0%, transparent 55%), var(--p-bg);
    border-bottom: 1px solid var(--p-border);
    padding: 14px 0;
    position: relative;
    overflow: hidden;
}

.datebar-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--p-top-line);
    opacity: .45
}

.datebar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px
}

.datebar-left {
    display: flex;
    align-items: center;
    gap: 14px
}

.datebar-cal-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(240, 120, 32, .1);
    border: 1.5px solid var(--p-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--p-orange);
    flex-shrink: 0;
}

.datebar-field-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--p-muted);
    margin-bottom: 2px
}

.datebar-field-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--p-dark)
}

.datebar-sep {
    width: 1.5px;
    height: 36px;
    background: var(--p-border);
    flex-shrink: 0
}

.datebar-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap
}

.datebar-nav-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: var(--p-radius);
    border: 1.5px solid var(--p-border);
    background: var(--p-surface);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--p-muted);
    cursor: pointer;
    text-decoration: none;
    transition: all .2s;
}

.datebar-nav-btn:hover {
    border-color: var(--p-orange);
    color: var(--p-orange);
    background: rgba(240, 120, 32, .06)
}

.datebar-nav-btn--today {
    background: var(--p-grad);
    color: #fff;
    border-color: transparent
}

.datebar-nav-btn--today:hover {
    color: #fff;
    box-shadow: 0 6px 20px var(--p-shadow)
}

.mosaic-wrap {
    padding: 72px 0;
    position: relative;
    overflow: hidden;
    background: var(--p-white)
}

.mosaic-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--p-top-line);
    opacity: .5
}

.mosaic-corner {
    position: absolute;
    width: 260px;
    height: 260px;
    pointer-events: none;
    z-index: 0;
    opacity: .4
}

.mosaic-corner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block
}

.mosaic-corner--tl {
    top: -30px;
    left: -30px;
    animation: corner-cw 18s linear infinite
}

.mosaic-corner--br {
    bottom: -30px;
    right: -30px;
    animation: corner-ccw 18s linear infinite
}

.mosaic-header {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 1
}

.mosaic-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 18px;
    border-radius: var(--p-radius);
    border: 1px solid rgba(240, 120, 32, .35);
    background: rgba(240, 120, 32, .08);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--p-orange-dk);
    margin-bottom: 16px;
}

.mosaic-badge i {
    color: var(--p-orange-lt);
    font-size: 8px
}

.mosaic-title {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--p-dark);
    letter-spacing: -.5px;
    line-height: 1.2;
    margin-bottom: 10px
}

.mosaic-title span {
    background: var(--p-grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.mosaic-subtitle {
    font-size: .88rem;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--p-muted)
}

.mosaic-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 14px
}

.mosaic-divider-line {
    width: 70px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, #e86010, transparent);
    border-radius: 2px
}

.mosaic-divider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--p-orange);
    box-shadow: 0 0 8px rgba(240, 120, 32, .6)
}

.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
    position: relative;
    z-index: 1
}

.tile {
    background: var(--p-surface);
    border: 1.5px solid var(--p-border);
    border-radius: 18px;
    padding: 22px;
    transition: border-color .25s, transform .25s, box-shadow .25s;
    position: relative;
    overflow: hidden;
}

.tile::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--p-grad);
    opacity: 0;
    transition: opacity .25s
}

.tile:hover {
    border-color: var(--p-orange);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(200, 74, 8, .13)
}

.tile:hover::before {
    opacity: 1
}

.tile--tithi {
    grid-column: span 5;
    grid-row: span 2
}

.tile--vara {
    grid-column: span 4
}

.tile--rahu {
    grid-column: span 3
}

.tile--nakshatra {
    grid-column: span 4
}

.tile--abhijit {
    grid-column: span 3
}

.tile--yoga {
    grid-column: span 4
}

.tile--karana {
    grid-column: span 4
}

.tile--samvat {
    grid-column: span 4
}

.tile-glow {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 120, 32, .12), transparent 70%);
    pointer-events: none
}

.tile-eyebrow {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--p-muted);
    margin-bottom: 8px
}

.tile-icon-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px
}

.tile-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(240, 120, 32, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--p-orange);
    flex-shrink: 0
}

.tile-name {
    font-size: 12px;
    font-weight: 700;
    color: var(--p-dark)
}

.tile-value {
    font-size: 22px;
    font-weight: 800;
    color: var(--p-dark);
    line-height: 1.2;
    letter-spacing: -.4px;
    margin-bottom: 4px
}

.tile-value--xl {
    font-size: 28px
}

.tile-value--sm {
    font-size: 14px
}

.tile-note {
    font-size: 10.5px;
    color: var(--p-muted);
    margin-top: 4px
}

.tile-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--p-radius);
    background: rgba(240, 120, 32, .1);
    border: 1px solid rgba(240, 120, 32, .25);
    color: var(--p-orange-dk);
    margin-top: 8px;
}

.tile--tithi .tile-value {
    font-size: 32px;
    letter-spacing: -.8px;
    margin-bottom: 8px
}

.tile--tithi .tile-icon {
    width: 56px;
    height: 56px;
    font-size: 26px;
    border-radius: 16px
}

.sky-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 14px
}

.sky-card {
    background: var(--p-bg);
    border: 1px solid var(--p-border);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 8px
}

.sky-card-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0
}

.sky-card-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block
}

.sky-card-label {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--p-muted);
    margin-bottom: 1px
}

.sky-card-time {
    font-size: 12px;
    font-weight: 700;
    color: var(--p-dark)
}

.mosaic-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 52px;
    position: relative;
    z-index: 1
}

.mosaic-footer-line {
    flex: 1;
    max-width: 240px;
    height: 1.5px;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, #f07820, #c84a08, #b01820, transparent)
}

.mosaic-footer-text {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    background: var(--p-grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap
}

.rashi-wrap {
    background: radial-gradient(ellipse at 10% 50%, rgba(240, 120, 32, .07) 0%, transparent 55%), radial-gradient(ellipse at 90% 50%, rgba(176, 24, 32, .06) 0%, transparent 55%), var(--p-bg);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}

.rashi-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--p-top-line);
    opacity: .5
}

.rashi-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0
}

.rashi-particle {
    position: absolute;
    animation: float-particle linear infinite
}

.tl-wrap {
    position: relative
}

.tl-spine {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, rgba(232, 96, 16, .35) 5%, rgba(232, 96, 16, .35) 95%, transparent);
    transform: translateX(-50%)
}

.tl-items {
    display: flex;
    flex-direction: column;
    gap: 0
}

.tl-row {
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
    min-height: 90px
}

.tl-row:nth-child(odd) .tl-card {
    margin-left: auto;
    margin-right: calc(50% + 28px)
}

.tl-row:nth-child(even) .tl-card {
    margin-left: calc(50% + 28px)
}

.tl-node {
    position: absolute;
    left: 50%;
    top: 18px;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    border: 2.5px solid var(--p-orange);
    z-index: 2;
    transform-style: preserve-3d;
    animation: nodeFloat 3s ease-in-out infinite;
    box-shadow: 0 4px 16px rgba(232, 96, 16, .25);
}

.tl-node img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.tl-row:nth-child(2n) .tl-node {
    animation-delay: .4s
}

.tl-row:nth-child(3n) .tl-node {
    animation-delay: .8s
}

.tl-row:nth-child(4n) .tl-node {
    animation-delay: 1.2s
}

.tl-row:nth-child(5n) .tl-node {
    animation-delay: 1.6s
}

.tl-row:nth-child(6n) .tl-node {
    animation-delay: 2s
}

.tl-card {
    width: calc(50% - 52px);
    background: #fff;
    border: 1.5px solid var(--p-border);
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 16px;
    transition: border-color .25s, transform .25s;
    position: relative;
}

.tl-row:hover .tl-card {
    border-color: var(--p-orange);
    transform: scale(1.01)
}

.tl-row:nth-child(odd) .tl-card::after {
    content: "";
    position: absolute;
    right: -9px;
    top: 22px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 9px solid var(--p-border)
}

.tl-row:nth-child(even) .tl-card::after {
    content: "";
    position: absolute;
    left: -9px;
    top: 22px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 9px solid var(--p-border)
}

.tc-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px
}

.tc-name {
    font-size: 13px;
    font-weight: 800;
    color: var(--p-dark)
}

.tc-en {
    font-size: 9px;
    font-weight: 600;
    color: var(--p-muted);
    letter-spacing: .1em
}

.tc-ruler {
    font-size: 8.5px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: 2px 7px;
    border-radius: var(--p-radius);
    background: rgba(240, 120, 32, .1);
    border: 1px solid rgba(240, 120, 32, .2);
    color: var(--p-orange-dk);
    margin-left: auto
}

.tc-pred {
    font-size: 11px;
    color: var(--p-ink);
    line-height: 1.6;
    margin-bottom: 8px
}

.tc-bot {
    display: flex;
    align-items: center;
    gap: 8px
}

.tc-track {
    flex: 1;
    height: 3px;
    background: rgba(232, 96, 16, .14);
    border-radius: 3px;
    overflow: hidden
}

.tc-fill {
    height: 100%;
    border-radius: 3px;
    background: var(--p-grad)
}

.tc-score {
    font-size: 10px;
    font-weight: 800;
    color: var(--p-orange-dk)
}

.tyohar-wrap {
    position: relative;
    overflow: hidden;
    background: var(--p-white);
    padding: 55px 0
}

.tyohar-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--p-top-line);
    opacity: .5;
    z-index: 2
}

.tyohar-bg-mandala {
   position: absolute;
    bottom: -312px;
    left: 50%;
    width: 600px;
    height: 600px;
    opacity: .3;
    pointer-events: none;
    z-index: 0;
    animation: tyohar-spin360 45s linear infinite;
    object-fit: contain
}

.tyohar-inner {
    position: relative;
    z-index: 1
}

.tyohar-banner-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    height: 340px;
    border: 1.5px solid var(--p-border);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform .35s, box-shadow .35s, border-color .35s;
    cursor: default;
    background: linear-gradient(135deg, #1a0800, #2a0a00, #1a0400);
}

.tyohar-banner-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 20px 50px rgba(200, 74, 8, .25);
    border-color: var(--p-orange)
}

.tyohar-banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 1
}

.tyohar-banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
    opacity: .35;
    transition: opacity .35s, transform .35s
}

.tyohar-banner-card:hover .tyohar-banner-bg {
    opacity: .5;
    transform: scale(1.05)
}

.tyohar-banner-top {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    z-index: 2
}

.tyohar-banner-num {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(240, 120, 32, .2);
    border: 1.5px solid rgba(240, 120, 32, .45);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    color: var(--p-pale)
}

.tyohar-banner-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(240, 120, 32, .2);
    border: 1.5px solid rgba(240, 120, 32, .4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--p-gold)
}

.tyohar-banner-body {
    position: relative;
    z-index: 2;
    padding: 24px 22px
}

.tyohar-banner-date {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: var(--p-radius);
    background: rgba(240, 120, 32, .22);
    border: 1px solid rgba(240, 120, 32, .45);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--p-pale);
    margin-bottom: 10px
}

.tyohar-banner-name {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 3px;
    letter-spacing: -.3px;
    line-height: 1.2
}

.tyohar-banner-sub {
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(252, 235, 216, .65);
    margin-bottom: 12px
}

.tyohar-banner-rule {
    height: 1px;
    background: linear-gradient(90deg, rgba(240, 120, 32, .5), transparent);
    margin-bottom: 12px
}

.tyohar-banner-desc {
    font-size: 12.5px;
    color: rgba(252, 235, 216, .78);
    line-height: 1.7
}

.tyohar-banner-dot {
    position: absolute;
    top: -2px;
    right: 22px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--p-orange-lt);
    box-shadow: 0 0 10px var(--p-orange-lt);
    z-index: 3
}

.tyohar-banner-dot::after {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 1px solid rgba(240, 120, 32, .5);
    animation: pulse-ring 2s ease-out infinite
}

.panchang-cta-section {
    position: relative;
    overflow: hidden;
    padding: 55px 0
}

.panchang-cta-section .bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    z-index: 0
}

.panchang-cta-section .bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(108deg, rgba(26, 8, 0, 0.82) 0%, rgba(58, 18, 0, 0.75) 18%, rgba(80, 30, 0, 0.65) 36%, rgba(100, 40, 0, 0.45) 54%, rgba(26, 8, 0, 0.3) 72%, rgba(26, 8, 0, 0.18) 86%, rgba(26, 8, 0, 0.12) 100%);
    z-index: 1
}

.panchang-cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #f07820 25%, #c84a08 50%, #b01820 75%, transparent 100%);
    z-index: 3
}

.panchang-cta-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(240, 120, 32, .4), rgba(176, 24, 32, .4), transparent);
    z-index: 3
}

.panchang-cta-section .content-wrap {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 22px;
    border-radius: var(--p-radius);
    background: rgba(240, 120, 32, .15);
    border: 1px solid rgba(240, 120, 32, .45);
    backdrop-filter: blur(10px);
    margin-bottom: 20px;
    max-width: 100%;
    overflow: hidden
}

.cta-badge-dot {
    width: 7px;
    height: 7px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--p-orange-lt);
    box-shadow: 0 0 10px var(--p-orange-lt);
    animation: pulse-dot 2s ease-out infinite
}

.cta-badge-text {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--p-pale);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.cta-title {
    font-size: clamp(1.8rem, 5.5vw, 3.6rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -.5px;
    line-height: 1.15;
    margin-bottom: 14px;
    width: 100%
}

.cta-title-accent {
    background: linear-gradient(90deg, #f07820, #faa040, #e86010);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: grad-shift 4s ease infinite
}

.cta-subtitle {
    font-size: clamp(.82rem, 1.5vw, 1rem);
    font-weight: 500;
    color: rgba(252, 235, 216, .72);
    letter-spacing: .04em;
    width: 100%;
    max-width: 580px;
    margin: 0 auto 10px;
    line-height: 1.75
}

.cta-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 10px;
    width: 100%
}

.cta-divider-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(240, 120, 32, .6));
    border-radius: 2px
}

.cta-divider-line--r {
    background: linear-gradient(90deg, rgba(240, 120, 32, .6), transparent)
}

.cta-divider-sym {
    font-size: 14px;
    color: var(--p-orange-lt)
}

.btn-consult {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 36px;
    border-radius: var(--p-radius);
    background: linear-gradient(90deg, #f07820, #e86010, #c84a08);
    background-size: 200% auto;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(200, 74, 8, .45);
    transition: all .3s;
    animation: grad-shift 4s ease infinite;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-consult::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .15), transparent);
    border-radius: inherit;
    pointer-events: none
}

.btn-consult:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(200, 74, 8, .6);
    color: #fff
}

.btn-consult i {
    font-size: 14px;
    flex-shrink: 0
}

@media (max-width: 991px) {
    .hero-inner {
        padding: 60px 0 80px
    }

    .tile--tithi {
        grid-column: span 12
    }

    .tile--vara,
    .tile--rahu,
    .tile--nakshatra,
    .tile--abhijit,
    .tile--yoga,
    .tile--karana,
    .tile--samvat {
        grid-column: span 6
    }
}

@media (max-width: 767px) {
    .datebar-sep {
        display: none
    }

    .panchang-cta-section {
        padding: 72px 0
    }

    .cta-title {
        font-size: clamp(1.7rem, 5vw, 2.8rem)
    }

    .cta-badge-text {
        letter-spacing: 2px
    }
}

@media (max-width: 700px) {
    .tl-spine {
        left: 20px
    }

    .tl-node {
        left: 20px
    }

    .tl-row:nth-child(odd) .tl-card,
    .tl-row:nth-child(even) .tl-card {
        margin-left: 52px;
        margin-right: 0;
        width: calc(100% - 52px)
    }

    .tl-row:nth-child(odd) .tl-card::after,
    .tl-row:nth-child(even) .tl-card::after {
        display: none
    }
}

@media (max-width: 575px) {

    .tile--vara,
    .tile--rahu,
    .tile--nakshatra,
    .tile--abhijit,
    .tile--yoga,
    .tile--karana,
    .tile--samvat {
        grid-column: span 12
    }

    .datebar-left {
        flex-wrap: wrap
    }

    .panchang-cta-section {
        padding: 60px 0
    }

    .panchang-cta-section .page-container {
        padding: 0 20px
    }

    .cta-badge {
        padding: 6px 16px;
        gap: 8px
    }

    .cta-badge-text {
        font-size: 9px;
        letter-spacing: 1.8px
    }

    .cta-badge-dot {
        width: 6px;
        height: 6px
    }

    .cta-title {
        font-size: clamp(1.55rem, 7vw, 2.2rem);
        line-height: 1.2
    }

    .cta-subtitle {
        font-size: .85rem;
        letter-spacing: .02em;
        padding: 0
    }

    .cta-divider {
        margin-bottom: 28px
    }

    .cta-divider-line {
        width: 40px
    }

    .btn-consult {
        padding: 13px 28px;
        font-size: 12px;
        letter-spacing: .14em;
        width: auto;
        max-width: 100%
    }

    .tyohar-wrap {
        padding: 60px 0 100px
    }
}