@import url('https://fonts.googleapis.com/css2?family=Clash+Display:wght@400;500;600;700&family=Bricolage+Grotesque:opsz,wght@12..96,300;12..96,400;12..96,500;12..96,700;12..96,800&family=Lora:ital@1&display=swap');

.bor-home {
    --teal: #0EA5A0;
    --teal-l: #CCFAF8;
    --purple: #7C3AED;
    --purple-l: #EDE9FE;
    --pink: #DB2777;
    --gold: #D97706;
    --green: #059669;
    --green-l: #D1FAE5;
    --g1: linear-gradient(135deg, #0EA5A0 0%, #7C3AED 55%, #DB2777 100%);
    --g1-soft: linear-gradient(135deg, rgba(14, 165, 160, .12) 0%, rgba(124, 58, 237, .1) 55%, rgba(219, 39, 119, .08) 100%);
    --g-teal-purple: linear-gradient(135deg, #0EA5A0 0%, #7C3AED 100%);
    --g-purple-pink: linear-gradient(135deg, #7C3AED 0%, #DB2777 100%);
    --bg: #F8F7FF;
    --bg2: #FFFFFF;
    --bg3: #F3F0FF;
    --surface: #FFFFFF;
    --surface2: #F8F7FF;
    --ink: #0F0A1E;
    --ink2: #2E1F4A;
    --ink3: #6B5B8A;
    --ink4: #A89CC0;
    --border: rgba(124, 58, 237, .1);
    --border2: rgba(124, 58, 237, .18);
    --ff-head: 'Clash Display', sans-serif;
    --ff-body: 'Bricolage Grotesque', sans-serif;
    --ff-italic: 'Lora', Georgia, serif;
    --ease: cubic-bezier(.4, 0, .2, 1);
    --shadow-sm: 0 1px 3px rgba(124, 58, 237, .06), 0 4px 12px rgba(124, 58, 237, .04);
    --shadow-md: 0 4px 20px rgba(124, 58, 237, .1), 0 1px 4px rgba(124, 58, 237, .06);
    --shadow-lg: 0 12px 40px rgba(124, 58, 237, .14), 0 2px 8px rgba(124, 58, 237, .06);
    --shadow-xl: 0 24px 60px rgba(124, 58, 237, .16), 0 4px 12px rgba(0, 0, 0, .06);
    background: var(--bg) !important;
    color: var(--ink) !important;
    font-family: var(--ff-body) !important;
    overflow: hidden;
}

.bor-home *,
.bor-home *::before,
.bor-home *::after {
    box-sizing: border-box;
}

.bor-home a {
    color: inherit !important;
    text-decoration: none;
}

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

.bor-home :not(.mdi):not([class^="mdi-"]):not([class*=" mdi-"]) {
    font-family: var(--ff-body) !important;
}

.bor-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.bor-gt,
.bor-gt-tp,
.bor-gt-pp {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent !important;
    background-clip: text;
    color: transparent !important;
}

.bor-gt {
    background-image: var(--g1) !important;
}

.bor-gt-tp {
    background-image: var(--g-teal-purple) !important;
}

.bor-gt-pp {
    background-image: var(--g-purple-pink) !important;
}

.bor-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-family: var(--ff-head) !important;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .3px;
    padding: .65rem 1.5rem;
    transition: all .22s var(--ease);
    white-space: nowrap;
}

.bor-btn-grad {
    background: var(--g1);
    box-shadow: 0 4px 20px rgba(124, 58, 237, .3);
    color: #fff;
}

.bor-btn-grad:hover {
    box-shadow: 0 8px 30px rgba(124, 58, 237, .45);
    color: #fff;
    transform: translateY(-2px) scale(1.02);
}

.bor-btn-outline {
    background: transparent;
    border: 2px solid var(--border2);
    color: var(--purple);
}

.bor-btn-outline:hover {
    background: var(--purple-l);
    border-color: var(--purple);
    color: var(--purple);
}

.bor-btn-soft {
    background: var(--surface2);
    border: 1.5px solid var(--border);
    color: var(--ink2);
}

.bor-btn-soft:hover {
    background: var(--purple-l);
    border-color: var(--border2);
    color: var(--purple);
}

.bor-btn-lg {
    font-size: .92rem;
    padding: .85rem 2rem;
}

.bor-hero {
    background: var(--bg2);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 82px);
    overflow: hidden;
    position: relative;
}

.bor-hero-shapes,
.bor-hero-dots {
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
}

.bor-hs1,
.bor-hs2,
.bor-hs3 {
    border-radius: 50%;
    position: absolute;
}

.bor-hs1 {
    background: radial-gradient(circle, rgba(14, 165, 160, .12) 0%, transparent 70%);
    height: 600px;
    right: -100px;
    top: -200px;
    width: 600px;
}

.bor-hs2 {
    background: radial-gradient(circle, rgba(124, 58, 237, .1) 0%, transparent 70%);
    bottom: -150px;
    height: 500px;
    left: 30%;
    width: 500px;
}

.bor-hs3 {
    background: radial-gradient(circle, rgba(219, 39, 119, .08) 0%, transparent 70%);
    height: 300px;
    right: 30%;
    top: 30%;
    width: 300px;
}

.bor-hero-dots {
    background-image: radial-gradient(circle, rgba(124, 58, 237, .12) 1px, transparent 1px);
    background-size: 32px 32px;
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 80% 50%, black 0%, transparent 80%);
    mask-image: radial-gradient(ellipse 70% 70% at 80% 50%, black 0%, transparent 80%);
}

.bor-hero-left,
.bor-hero-right {
    position: relative;
    z-index: 1;
}

.bor-hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5.5rem 3rem 5.5rem 5rem;
}

.bor-hero-right {
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 4rem 4rem 4rem 2rem;
}

.bor-hero-over,
.bor-section-over {
    align-items: center;
    color: var(--teal);
    display: inline-flex;
    font-family: var(--ff-head) !important;
    font-size: .67rem;
    font-weight: 600;
    gap: 8px;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.bor-hero-over {
    gap: 10px;
    margin-bottom: 1.75rem;
}

.bor-hero-over-bar,
.bor-section-over::before {
    background: var(--g-teal-purple);
    border-radius: 2px;
    content: '';
    flex-shrink: 0;
    height: 2.5px;
    width: 28px;
}

.bor-section-over::before {
    width: 22px;
}

.bor-hero-title,
.bor-section-title,
.bor-booking-title {
    color: var(--ink) !important;
    font-family: var(--ff-head) !important;
    font-weight: 700;
    letter-spacing: -1px;
}

.bor-hero-title {
    font-size: clamp(3rem, 5.5vw, 5.8rem);
    letter-spacing: -2.5px;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.bor-italic {
    font-family: var(--ff-italic) !important;
    font-style: italic;
    font-weight: 400;
}

.bor-hero-title .bor-italic {
    display: inline;
    letter-spacing: -1px;
    line-height: 1;
}

.bor-hero-sub,
.bor-section-p,
.bor-booking-p,
.bor-trust-p {
    color: var(--ink3) !important;
    font-size: .95rem;
    line-height: 1.8;
}

.bor-hero-sub {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

.bor-hero-sub strong {
    color: var(--teal);
    font-weight: 600;
}

.bor-pills,
.bor-hero-ctas,
.bor-booking-btns,
.bor-trust-btns,
.bor-areas {
    display: flex;
    flex-wrap: wrap;
}

.bor-pills {
    gap: .5rem;
    margin-bottom: 2.5rem;
}

.bor-pill {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--ink3);
    font-family: var(--ff-head) !important;
    font-size: .67rem;
    font-weight: 600;
    letter-spacing: .5px;
    padding: .3rem .9rem;
}

.bor-pill-live {
    background: rgba(14, 165, 160, .1);
    border-color: rgba(14, 165, 160, .3);
    color: var(--teal);
}

.bor-live-dot {
    animation: bor-pulse 1.8s ease-in-out infinite;
    background: var(--teal);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(14, 165, 160, .6);
    display: inline-block;
    height: 6px;
    margin-right: 4px;
    vertical-align: middle;
    width: 6px;
}

@keyframes bor-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(.85); }
}

.bor-hero-ctas {
    gap: .75rem;
    margin-bottom: 3.5rem;
}

.bor-hero-metrics {
    display: flex;
    gap: 2.5rem;
}

.bor-metric-number,
.bor-floating-value,
.bor-stat-number,
.bor-trust-stat-number {
    font-family: var(--ff-head) !important;
    font-weight: 700;
    line-height: 1;
}

.bor-metric-number {
    font-size: 2rem;
}

.bor-metric-label,
.bor-floating-label,
.bor-stat-label,
.bor-trust-stat-label {
    color: var(--ink4);
    font-family: var(--ff-head) !important;
    font-size: .72rem;
    letter-spacing: .5px;
    margin-top: 4px;
    text-transform: uppercase;
}

.bor-metric-divider {
    align-self: stretch;
    background: var(--border);
    flex-shrink: 0;
    width: 1px;
}

.bor-hero-visual {
    max-width: 420px;
    position: relative;
    width: 100%;
}

.bor-hero-img-card {
    aspect-ratio: 3 / 4;
    border-radius: 32px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    position: relative;
    width: 100%;
}

.bor-hero-img-card img,
.bor-booking-img img,
.bor-trust-img img,
.bor-tile-img,
.bor-buddy-img img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.bor-hero-img-card::after {
    background: linear-gradient(to top, rgba(15, 10, 30, .5) 0%, transparent 50%);
    content: '';
    inset: 0;
    position: absolute;
}

.bor-floating-card,
.bor-booking-stat {
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(18px);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    position: absolute;
    z-index: 2;
}

.bor-floating-card {
    animation: bor-floaty 5s ease-in-out infinite;
    padding: .9rem 1.2rem;
}

.bor-floating-1 {
    left: -2.5rem;
    top: 1.5rem;
}

.bor-floating-2 {
    animation-delay: 2.5s;
    bottom: 2rem;
    left: -2rem;
}

.bor-floating-3 {
    animation-delay: 1.2s;
    right: -2.5rem;
    top: 40%;
}

@keyframes bor-floaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}

.bor-floating-live {
    align-items: center;
    display: flex;
    gap: .6rem;
}

.bor-floating-live strong {
    color: var(--ink);
    display: block;
    font-family: var(--ff-head) !important;
    font-size: .88rem;
}

.bor-floating-live span,
.bor-floating-label {
    color: var(--ink3);
    font-size: .7rem;
}

.bor-floating-icon {
    color: var(--teal);
    font-size: 1.25rem;
    margin-bottom: .35rem;
}

.bor-floating-value {
    font-size: 1.3rem;
}

.bor-ticker {
    background: var(--g1);
    overflow: hidden;
    padding: .8rem 0;
}

.bor-ticker-track {
    animation: bor-scroll-left 28s linear infinite;
    display: flex;
    width: max-content;
}

.bor-ticker-track:hover {
    animation-play-state: paused;
}

.bor-ticker-item {
    align-items: center;
    color: rgba(255, 255, 255, .9);
    display: inline-flex;
    font-family: var(--ff-head) !important;
    font-size: .7rem;
    font-weight: 600;
    gap: 7px;
    letter-spacing: 1.5px;
    padding: 0 2rem;
    text-transform: uppercase;
    white-space: nowrap;
}

.bor-ticker-sep {
    background: rgba(255, 255, 255, .4);
    border-radius: 50%;
    flex-shrink: 0;
    height: 5px;
    width: 5px;
}

@keyframes bor-scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.bor-section {
    padding: 5.5rem 0;
}

.bor-section-light {
    background: var(--bg2);
}

.bor-section-soft {
    background: var(--bg3);
}

.bor-energy-grid,
.bor-booking-grid,
.bor-trust-grid {
    align-items: center;
    display: grid;
    gap: 5rem;
    grid-template-columns: 1fr 1fr;
}

.bor-energy-grid {
    grid-template-columns: 1fr 1.4fr;
}

.bor-section-title {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    line-height: 1.05;
}

.bor-section-p {
    margin-top: .75rem;
}

.bor-chip-grid {
    display: grid;
    gap: .85rem;
    grid-template-columns: 1fr 1fr;
}

.bor-chip {
    align-items: flex-start;
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    padding: 1.5rem 1.4rem 1.35rem;
    position: relative;
    transition: all .25s var(--ease);
}

.bor-chip::after {
    background: var(--g1-soft);
    content: '';
    inset: 0;
    opacity: 0;
    position: absolute;
    transition: opacity .25s;
}

.bor-chip:hover {
    border-color: var(--border2);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.bor-chip:hover::after {
    opacity: 1;
}

.bor-chip-icon {
    align-items: center;
    background: var(--surface2);
    border-radius: 16px;
    color: var(--purple);
    display: flex;
    flex-shrink: 0;
    font-size: 2.2rem;
    height: 56px;
    justify-content: center;
    margin-bottom: .9rem;
    position: relative;
    width: 56px;
    z-index: 1;
}

.bor-chip-info {
    position: relative;
    z-index: 1;
}

.bor-chip-title,
.bor-step-title,
.bor-category-name {
    color: var(--ink) !important;
    font-family: var(--ff-head) !important;
    font-weight: 700;
}

.bor-chip-title {
    display: block;
    font-size: .95rem;
}

.bor-chip-sub,
.bor-step-desc {
    color: var(--ink3);
    font-size: .75rem;
    margin-top: .25rem;
}

.bor-section-top {
    align-items: flex-end;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    margin-bottom: 2.5rem;
}

.bor-view-link,
.bor-category-link {
    align-items: center;
    color: var(--purple);
    display: inline-flex;
    font-family: var(--ff-head) !important;
    font-size: .78rem;
    font-weight: 600;
    gap: 5px;
    transition: gap .2s;
}

.bor-view-link:hover,
.bor-category-link:hover {
    color: var(--purple);
    gap: 9px;
}

.bor-tile-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 2.2fr 1fr 1fr;
    grid-template-rows: 340px 240px;
}

.bor-tile {
    background: var(--surface2);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    position: relative;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.bor-tile:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px) scale(1.01);
}

.bor-tile:nth-child(1) {
    grid-row: 1 / 3;
}

.bor-tile:nth-child(4) {
    grid-column: 2 / 4;
}

.bor-tile-img {
    inset: 0;
    position: absolute;
    transition: transform .6s ease;
}

.bor-tile:hover .bor-tile-img {
    transform: scale(1.07);
}

.bor-tile-scrim {
    background: linear-gradient(to top, rgba(15, 10, 30, .82) 0%, rgba(15, 10, 30, .15) 55%, transparent 100%);
    inset: 0;
    position: absolute;
}

.bor-tile-stripe {
    background: var(--g1);
    bottom: 0;
    height: 3px;
    left: 0;
    position: absolute;
    right: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s var(--ease);
}

.bor-tile:hover .bor-tile-stripe {
    transform: scaleX(1);
}

.bor-tile-body {
    bottom: 0;
    left: 0;
    padding: 1.5rem;
    position: absolute;
    right: 0;
}

.bor-tile-kicker {
    color: var(--teal);
    display: block;
    font-family: var(--ff-head) !important;
    font-size: .6rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    margin-bottom: .3rem;
    text-transform: uppercase;
}

.bor-tile-title {
    color: #fff;
    display: block;
    font-family: var(--ff-head) !important;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: .75rem;
}

.bor-tile:nth-child(1) .bor-tile-title {
    font-size: 1.65rem;
}

.bor-tile-pill {
    align-items: center;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-family: var(--ff-head) !important;
    font-size: .7rem;
    font-weight: 600;
    gap: 6px;
    padding: .35rem .9rem;
    transition: all .2s var(--ease);
}

.bor-tile:hover .bor-tile-pill {
    background: var(--g1);
    border-color: transparent;
}

.bor-booking-title {
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    line-height: 1.05;
    margin-bottom: 1rem;
}

.bor-booking-badge {
    align-items: center;
    background: rgba(14, 165, 160, .1);
    border: 1px solid rgba(14, 165, 160, .3);
    border-radius: 999px;
    color: var(--teal);
    display: inline-flex;
    font-family: var(--ff-head) !important;
    font-size: .67rem;
    font-weight: 600;
    gap: 7px;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    padding: .35rem 1rem;
    text-transform: uppercase;
}

.bor-booking-p {
    margin-bottom: 2rem;
}

.bor-steps {
    display: flex;
    flex-direction: column;
    gap: .85rem;
    margin-bottom: 2.25rem;
}

.bor-step {
    align-items: flex-start;
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 1rem;
    padding: 1rem 1.25rem;
    transition: border-color .22s, box-shadow .22s;
}

.bor-step:hover {
    border-color: var(--border2);
    box-shadow: var(--shadow-md);
}

.bor-step-number {
    align-items: center;
    background: var(--g1);
    border-radius: 50%;
    box-shadow: 0 3px 12px rgba(124, 58, 237, .35);
    color: #fff;
    display: flex;
    flex-shrink: 0;
    font-family: var(--ff-head) !important;
    font-size: .75rem;
    font-weight: 700;
    height: 30px;
    justify-content: center;
    margin-top: 1px;
    width: 30px;
}

.bor-step-title {
    font-size: .88rem;
    margin-bottom: .2rem;
}

.bor-step-desc {
    font-size: .8rem;
    line-height: 1.6;
}

.bor-booking-btns,
.bor-trust-btns {
    gap: .75rem;
}

.bor-booking-visual,
.bor-trust-visual {
    position: relative;
}

.bor-booking-img {
    aspect-ratio: 3 / 4;
    border-radius: 32px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.bor-booking-stat {
    padding: .9rem 1.25rem;
}

.bor-booking-stat-1 {
    left: -2rem;
    top: 1.5rem;
}

.bor-booking-stat-2 {
    bottom: 2rem;
    right: -2rem;
}

.bor-stat-number {
    font-size: 1.5rem;
}

.bor-stat-label {
    color: var(--ink3);
    font-size: .67rem;
}

.bor-category-grid {
    display: grid;
    gap: 1.1rem;
}

.bor-category-grid {
    grid-template-columns: repeat(3, 1fr);
}

.bor-category-card,
.bor-buddy-card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    position: relative;
    transition: all .25s var(--ease);
}

.bor-category-card {
    border-radius: 20px;
    padding: 1.75rem;
}

.bor-category-card:hover,
.bor-buddy-card:hover {
    border-color: var(--border2);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.bor-category-card::before {
    background: var(--g1);
    content: '';
    height: 3px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s var(--ease);
}

.bor-category-card:hover::before {
    transform: scaleX(1);
}

.bor-category-icon {
    align-items: center;
    background: var(--surface2);
    border-radius: 12px;
    color: var(--purple);
    display: flex;
    font-size: 1.4rem;
    height: 50px;
    justify-content: center;
    margin-bottom: 1.1rem;
    width: 50px;
}

.bor-category-live {
    background: var(--green-l);
    border-radius: 999px;
    color: var(--green);
    font-family: var(--ff-head) !important;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .5px;
    padding: .2rem .65rem;
    position: absolute;
    right: 1.25rem;
    top: 1.25rem;
}

.bor-category-name {
    font-size: 1rem;
    margin-bottom: .25rem;
}

.bor-category-tagline {
    background: var(--g-teal-purple);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: var(--ff-head) !important;
    font-size: .72rem;
    font-weight: 600;
    margin-bottom: .6rem;
}

.bor-category-desc {
    color: var(--ink3);
    font-size: .82rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.bor-buddy-slider-wrap {
    position: relative;
}

.bor-buddy-slider {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    padding-bottom: 1.5rem;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.bor-buddy-slider::-webkit-scrollbar {
    display: none;
}

.bor-buddy-slider-wrap::before,
.bor-buddy-slider-wrap::after {
    bottom: 1.5rem;
    content: '';
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 80px;
    z-index: 3;
}

.bor-buddy-slider-wrap::before {
    background: linear-gradient(to right, var(--bg2) 0%, transparent 100%);
    left: 0;
}

.bor-buddy-slider-wrap::after {
    background: linear-gradient(to left, var(--bg2) 0%, transparent 100%);
    right: 0;
}

.bor-buddy-arrow {
    align-items: center;
    background: var(--surface);
    border: 1.5px solid var(--border2);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    color: var(--purple);
    cursor: pointer;
    display: flex;
    height: 46px;
    justify-content: center;
    position: absolute;
    top: 38%;
    transform: translateY(-50%);
    transition: all .2s var(--ease);
    width: 46px;
    z-index: 5;
}

.bor-buddy-arrow:hover {
    background: var(--g1);
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(124, 58, 237, .35);
    color: #fff;
    transform: translateY(-50%) scale(1.08);
}

.bor-buddy-arrow-prev {
    left: -22px;
}

.bor-buddy-arrow-next {
    right: -22px;
}

.bor-buddy-dots {
    display: flex;
    gap: .5rem;
    justify-content: center;
    margin-top: .75rem;
}

.bor-buddy-dot {
    background: var(--border2);
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    height: 8px;
    padding: 0;
    transition: all .3s var(--ease);
    width: 8px;
}

.bor-buddy-dot.active {
    background: var(--g1);
    width: 24px;
}

.bor-buddy-card {
    border-radius: 24px;
    flex: 0 0 320px;
    scroll-snap-align: start;
    width: 320px;
}

.bor-buddy-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-6px);
}

.bor-buddy-img {
    aspect-ratio: 3 / 4;
    background: var(--bg);
    overflow: hidden;
    position: relative;
}

.bor-buddy-img img {
    position: relative;
    transition: transform .5s ease;
    z-index: 1;
}

.bor-buddy-img.no-img img,
.bcard-img.no-img img {
    opacity: 0;
    pointer-events: none;
}

.bcard-placeholder {
    align-items: center;
    background: linear-gradient(145deg, #EDE9FE 0%, #CCFAF8 55%, #FCE7F3 100%);
    display: flex;
    flex-direction: column;
    gap: .65rem;
    inset: 0;
    justify-content: center;
    position: absolute;
    z-index: 0;
}

.bp-initials {
    align-items: center;
    background: var(--g1);
    border-radius: 50%;
    box-shadow: 0 8px 28px rgba(124, 58, 237, .35);
    color: #fff;
    display: flex;
    flex-shrink: 0;
    font-family: var(--ff-head) !important;
    font-size: 2rem;
    font-weight: 800;
    height: 88px;
    justify-content: center;
    letter-spacing: -1px;
    width: 88px;
}

.bp-camera {
    align-items: center;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, .8);
    border-radius: 50%;
    box-shadow: 0 4px 14px rgba(124, 58, 237, .12);
    display: flex;
    font-size: 1.35rem;
    height: 52px;
    justify-content: center;
    width: 52px;
}

.bp-text {
    color: var(--ink3);
    font-family: var(--ff-head) !important;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    line-height: 1.5;
    text-align: center;
    text-transform: uppercase;
}

.bp-wave {
    display: flex;
    gap: 5px;
    margin-top: .2rem;
}

.bp-w {
    animation: wave-h .9s ease-in-out infinite;
    background: var(--g1);
    border-radius: 4px;
    width: 7px;
}

.bp-w:nth-child(1) {
    animation-delay: 0s;
    height: 14px;
}

.bp-w:nth-child(2) {
    animation-delay: .15s;
    background: var(--g-teal-purple);
    height: 22px;
}

.bp-w:nth-child(3) {
    animation-delay: .3s;
    background: var(--g-purple-pink);
    height: 14px;
}

.bp-w:nth-child(4) {
    animation-delay: .45s;
    height: 18px;
}

.bp-w:nth-child(5) {
    animation-delay: .6s;
    background: var(--g-teal-purple);
    height: 10px;
}

@keyframes wave-h {
    0%, 100% {
        opacity: .7;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.5);
    }
}

.bor-buddy-card:hover .bor-buddy-img img {
    transform: scale(1.05);
}

.bor-buddy-scrim {
    background: linear-gradient(to top, rgba(15, 10, 30, .75) 0%, rgba(15, 10, 30, .05) 50%, transparent 100%);
    inset: 0;
    position: absolute;
}

.bor-buddy-tags {
    display: flex;
    flex-direction: column;
    gap: .4rem;
    left: .85rem;
    position: absolute;
    top: .85rem;
}

.bor-buddy-tag {
    border-radius: 999px;
    font-family: var(--ff-head) !important;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .3px;
    padding: .25rem .7rem;
}

.bor-buddy-tag-id {
    background: rgba(255, 255, 255, .92);
    color: var(--ink);
}

.bor-buddy-tag-cat {
    background: var(--g1);
    color: #fff;
}

.bor-buddy-name-over {
    bottom: .85rem;
    left: .85rem;
    position: absolute;
    right: .85rem;
}

.bor-buddy-name {
    color: #fff;
    font-family: var(--ff-head) !important;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
}

.bor-buddy-age {
    color: rgba(255, 255, 255, .68);
    font-size: .74rem;
    margin-top: .2rem;
}

.bor-buddy-body {
    padding: 1rem 1.25rem 1.4rem;
}

.bor-buddy-rate {
    font-family: var(--ff-head) !important;
    font-size: 1rem;
    font-weight: 700;
}

.bor-buddy-rating {
    color: var(--ink3);
    font-size: .76rem;
    margin-top: .35rem;
}

.bor-buddy-btn {
    align-items: center;
    background: var(--surface2);
    border: 1.5px solid var(--border);
    border-radius: 999px;
    color: var(--purple);
    display: flex;
    font-family: var(--ff-head) !important;
    font-size: .78rem;
    font-weight: 700;
    gap: 6px;
    justify-content: center;
    margin-top: .85rem;
    padding: .6rem 1rem;
    transition: all .22s var(--ease);
}

.bor-buddy-card:hover .bor-buddy-btn {
    background: var(--g1);
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(124, 58, 237, .3);
    color: #fff;
}

.bor-empty-card {
    background: var(--surface);
    border: 1.5px dashed var(--border2);
    border-radius: 24px;
    color: var(--ink3);
    padding: 2rem;
    text-align: center;
}

.bor-trust-quote {
    color: var(--ink) !important;
    font-family: var(--ff-italic) !important;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-style: italic;
    letter-spacing: -.5px;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.bor-trust-p {
    margin-bottom: 2rem;
}

.bor-areas {
    gap: .5rem;
    margin-top: 2rem;
}

.bor-area-chip {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--ink3);
    font-family: var(--ff-head) !important;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .3px;
    padding: .3rem .9rem;
    transition: all .2s;
}

.bor-area-chip:hover {
    background: rgba(14, 165, 160, .06);
    border-color: var(--teal);
    color: var(--teal);
}

.bor-trust-img {
    aspect-ratio: 4 / 3;
    border-radius: 32px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.bor-trust-strip {
    align-items: center;
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, .96);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    bottom: -1.5rem;
    box-shadow: var(--shadow-md);
    display: flex;
    justify-content: space-around;
    left: 1.5rem;
    padding: 1.1rem 1.75rem;
    position: absolute;
    right: 1.5rem;
}

.bor-trust-stat {
    text-align: center;
}

.bor-trust-stat-number {
    font-size: 1.5rem;
}

.bor-trust-stat-label {
    font-size: .65rem;
}

.bor-trust-stat-divider {
    background: var(--border);
    height: 28px;
    width: 1px;
}

.bor-reveal,
.bor-reveal-left,
.bor-reveal-right,
.bor-reveal-scale {
    opacity: 0;
    transition: opacity .65s var(--ease), transform .65s var(--ease);
}

.bor-reveal {
    transform: translateY(28px);
}

.bor-reveal-left {
    transform: translateX(-28px);
}

.bor-reveal-right {
    transform: translateX(28px);
}

.bor-reveal-scale {
    transform: scale(.96);
}

.bor-reveal.bor-in,
.bor-reveal-left.bor-in,
.bor-reveal-right.bor-in,
.bor-reveal-scale.bor-in {
    opacity: 1;
    transform: none;
}

/* Scoped guard against older global CSS that forces black text/cards with !important. */
.bor-home .bor-hero-title,
.bor-home .bor-section-title,
.bor-home .bor-booking-title,
.bor-home .bor-chip-title,
.bor-home .bor-step-title,
.bor-home .bor-category-name,
.bor-home .bor-trust-quote {
    color: var(--ink) !important;
}

.bor-home .bor-hero-over,
.bor-home .bor-section-over,
.bor-home .bor-booking-badge,
.bor-home .bor-tile-kicker {
    color: var(--teal) !important;
}

.bor-home .bor-hero-sub,
.bor-home .bor-section-p,
.bor-home .bor-booking-p,
.bor-home .bor-trust-p,
.bor-home .bor-chip-sub,
.bor-home .bor-step-desc,
.bor-home .bor-category-desc,
.bor-home .bor-buddy-rating,
.bor-home .bor-area-chip,
.bor-home .bor-stat-label,
.bor-home .bor-trust-stat-label,
.bor-home .bor-floating-label,
.bor-home .bor-floating-live span {
    color: var(--ink3) !important;
}

.bor-home .bor-metric-label,
.bor-home .bor-trust-stat-label {
    color: var(--ink4) !important;
}

.bor-home .bor-btn-grad,
.bor-home .bor-btn-grad:hover,
.bor-home .bor-ticker-item,
.bor-home .bor-tile-title,
.bor-home .bor-tile-pill,
.bor-home .bor-buddy-name,
.bor-home .bor-buddy-tag-cat,
.bor-home .bor-buddy-btn,
.bor-home .bor-buddy-card:hover .bor-buddy-btn {
    color: #fff !important;
}

.bor-home .bor-btn-outline,
.bor-home .bor-btn-outline:hover,
.bor-home .bor-btn-soft:hover,
.bor-home .bor-view-link,
.bor-home .bor-category-link,
.bor-home .bor-chip-icon,
.bor-home .bor-buddy-btn {
    color: var(--purple) !important;
}

.bor-home .bor-buddy-card:hover .bor-buddy-btn {
    color: #fff !important;
}

.bor-home .bor-btn-soft,
.bor-home .bor-buddy-tag-id,
.bor-home .bor-floating-live strong {
    color: var(--ink2) !important;
}

.bor-home .bor-pill {
    background: var(--surface2) !important;
    border-color: var(--border) !important;
    color: var(--ink3) !important;
}

.bor-home .bor-pill-live {
    background: rgba(14, 165, 160, .1) !important;
    border-color: rgba(14, 165, 160, .3) !important;
    color: var(--teal) !important;
}

.bor-home .bor-chip,
.bor-home .bor-step,
.bor-home .bor-category-card,
.bor-home .bor-buddy-card,
.bor-home .bor-floating-card,
.bor-home .bor-booking-stat,
.bor-home .bor-trust-strip,
.bor-home .bor-area-chip,
.bor-home .bor-empty-card {
    background-color: var(--surface) !important;
    border-color: var(--border) !important;
}

.bor-home .bor-btn-outline {
    border-color: var(--border2) !important;
}

.bor-home .bor-btn-outline:hover,
.bor-home .bor-chip:hover,
.bor-home .bor-step:hover,
.bor-home .bor-category-card:hover,
.bor-home .bor-buddy-card:hover {
    border-color: var(--border2) !important;
}

.bor-home .bor-category-live {
    background: var(--green-l) !important;
    color: var(--green) !important;
}

@media (max-width: 1100px) {
    .bor-hero {
        grid-template-columns: 1fr;
    }

    .bor-hero-right {
        display: none;
    }

    .bor-hero-left {
        padding: 6rem 2.5rem 4rem;
    }

    .bor-tile-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .bor-tile:nth-child(1) {
        grid-column: 1 / 3;
        grid-row: auto;
    }

    .bor-tile:nth-child(4) {
        grid-column: auto;
    }

    .bor-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 860px) {
    .bor-energy-grid,
    .bor-booking-grid,
    .bor-trust-grid {
        gap: 3rem;
        grid-template-columns: 1fr;
    }

    .bor-booking-visual {
        order: -1;
    }

    .bor-booking-stat {
        display: none;
    }

    .bor-buddy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .bor-container {
        padding: 0 1.25rem;
    }

    .bor-section {
        padding: 4rem 0;
    }

    .bor-hero-left {
        padding: 5rem 1.25rem 4rem;
    }

    .bor-hero-title {
        font-size: clamp(2.8rem, 17vw, 4rem);
    }

    .bor-hero-metrics {
        flex-direction: column;
        gap: 1.5rem;
    }

    .bor-metric-divider {
        display: none;
    }

    .bor-chip-grid,
    .bor-tile-grid,
    .bor-category-grid,
    .bor-buddy-grid {
        grid-template-columns: 1fr;
    }

    .bor-tile:nth-child(1) {
        grid-column: auto;
    }

    .bor-tile {
        min-height: 280px;
    }

    .bor-section-top {
        align-items: flex-start;
    }

    .bor-trust-strip {
        left: .75rem;
        padding: .9rem;
        right: .75rem;
    }
}
