/*
Theme Name: NiteRose
Theme URI: https://niterose.com/
Author: NiteRose
Author URI: https://niterose.com/
Description: Custom WordPress theme developed exclusively for NiteRose.com. Lightweight, responsive, SEO-friendly, and optimized for performance across desktop, tablet, and mobile devices.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 8.0
Text Domain: niterose
License: Proprietary
License URI: https://niterose.com/
*/

/* ==========================================================
   NITER0SE.COM - CUSTOM WORDPRESS THEME
   ==========================================================
   Website:    https://niterose.com/
   Theme:      NiteRose
   Version:    1.0.0
   Text Domain: niterose
   ========================================================== */

:root {
    --rose: #e91e8c;
    --rose-dark: #c2185b;
    --rose-light: #f472b6;
    --rose-glow: rgba(233,30,140,.28);
    --rose-subtle: rgba(233,30,140,.08);
    --violet: #7c3aed;
    --violet-dark: #5b21b6;
    --violet-light: #a78bfa;
    --violet-subtle:rgba(124,58,237,.08);
    --gold: #f59e0b;
    --gold-dark: #d97706;
    --gold-glow: rgba(245,158,11,.28);
    --teal: #0ea5e9;
    --teal-subtle: rgba(14,165,233,.08);
    --orange: var(--rose);
    --orange-dark: var(--rose-dark);
    --orange-light: var(--rose-light);
    --bg: #fdf6fb;
    --bg-2: #ffffff;
    --bg-3: #f5eef9;
    --bg-4: #ede3f4;
    --bg-card: #ffffff;
    --sec-rose: linear-gradient(135deg, #fff0f7 0%, #fdf4ff 100%);
    --sec-violet: linear-gradient(135deg, #f5f0ff 0%, #ede9ff 100%);
    --sec-dark: linear-gradient(135deg, #0f0623 0%, #1a0940 60%, #200830 100%);
    --sec-warm: linear-gradient(135deg, #fffbf0 0%, #fff5e6 100%);
    --sec-teal: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    --border: #ead8f0;
    --border-light: #d8c4e8;
    --border-glow: rgba(233,30,140,.3);
    --text: #1e0b38;
    --text-muted: #4a2870;
    --text-dim: #7a4fa0;
    --heading: #110520;
    --white: #ffffff;
    --green: #10b981;
    --red: #ef4444;
    --purple: var(--violet);
    --ph-gradient: linear-gradient(145deg, #fce4f0 0%, #ede9ff 45%, #e0f2fe 100%);
    --radius: 14px;
    --radius-sm: 9px;
    --radius-lg: 22px;
    --shadow: 0 4px 24px rgba(45,18,72,.1);
    --shadow-rose: 0 8px 32px rgba(233,30,140,.3);
    --shadow-card: 0 2px 14px rgba(45,18,72,.08);
    --shadow-hover: 0 14px 44px rgba(45,18,72,.15);
    --transition: all .22s ease;
    --transition-slow: all .38s ease;
    --nav-bg: rgba(253,246,251,.96);
    --nav-border: #ead8f0;
    --surface: rgba(255,255,255,.88)
}

*,*:before,*:after {
    box-sizing:border-box;
    margin:0;
    padding:0
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
    overflow-y: visible;
}


/* Html + Body Selector Lock */
html,
html:root,
html body {
    overflow-x: clip !important;
    overflow-y: visible !important;
}

/* Ensure no wrapper blocks the scroll context */
#app, 
#page, 
[data-sveltekit-body], 
.site-wrapper {
    overflow: visible !important;
}

/* Sticky Navbar Force */

.navbar.navigate {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 99999 !important;
}

 
.nav-logo img {
    /* Richer, vibrant rose glow with a subtle dark contrast outline */
    filter: drop-shadow(0 0 8px rgba(233, 30, 140, 0.35)) 
            drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
    transition: all 0.3s ease;
}

.nav-logo:hover img {
    filter: drop-shadow(0 0 12px rgba(233, 30, 140, 0.55)) 
            drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

body {
    background:var(--bg)!important;
    color:var(--text);
    font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif;
    font-size:15px;
    line-height:1.6;
    min-height:100vh;
    -webkit-font-smoothing:antialiased;
    overflow-x:clip;
    max-width:100vw
}

/* Custom Fix for Mobile Layout Safety */
@media (max-width: 768px) {
  body {
    overflow-x: hidden !important;
  }
}

#app,[data-sveltekit-body] {
    min-height:100vh
}

a {
    color:var(--rose);
    text-decoration:none;
    transition:var(--transition)
}

a:hover {
    color:var(--rose-dark)
}

img {
    max-width:100%;
    display:block
}

h1,h2,h3,h4,h5,h6 {
    color:var(--heading);
    font-weight:500;
    line-height:1.25;
    letter-spacing:-.02em
}

h1,h2 {
    font-weight:800!important
}

.btn-orange {
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:linear-gradient(135deg,var(--rose) 0%,var(--rose-dark) 100%);
    color:#fff!important;
    border:none;
    padding:13px 28px;
    border-radius:var(--radius-sm);
    font-weight:500;
    font-size:14px;
    cursor:pointer;
    transition:var(--transition);
    letter-spacing:.2px;
    box-shadow:0 4px 18px var(--rose-glow);
    font-family:inherit
}

.btn-orange:hover {
    transform:translateY(-2px);
    box-shadow:var(--shadow-rose);
    color:#fff!important
}

.btn-outline {
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:transparent;
    color:var(--rose)!important;
    border:1.5px solid var(--rose);
    padding:12px 28px;
    border-radius:var(--radius-sm);
    font-weight:500;
    font-size:14px;
    cursor:pointer;
    transition:var(--transition);
    font-family:inherit
}

.btn-outline:hover {
    background:linear-gradient(135deg,var(--rose),var(--rose-dark));
    color:#fff!important;
    box-shadow:var(--shadow-rose);
    transform:translateY(-2px)
}

.btn-dark {
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#ffffff1f;
    color:#fff!important;
    border:1.5px solid rgba(255,255,255,.25);
    padding:12px 28px;
    border-radius:var(--radius-sm);
    font-weight:500;
    font-size:14px;
    cursor:pointer;
    transition:var(--transition);
    font-family:inherit;
    -webkit-backdrop-filter:blur(8px);
    backdrop-filter:blur(8px)
}

.btn-dark:hover {
    background:#ffffff38;
    border-color:#ffffff73
}

.btn-violet {
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:linear-gradient(135deg,var(--violet),var(--violet-dark));
    color:#fff!important;
    border:none;
    padding:13px 28px;
    border-radius:var(--radius-sm);
    font-weight:500;
    font-size:14px;
    cursor:pointer;
    transition:var(--transition);
    box-shadow:0 4px 18px #7c3aed4d;
    font-family:inherit
}

.btn-violet:hover {
    transform:translateY(-2px);
    box-shadow:0 8px 28px #7c3aed66
}

.btn-gold {
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:linear-gradient(135deg,var(--gold),var(--gold-dark));
    color:#fff!important;
    border:none;
    padding:13px 28px;
    border-radius:var(--radius-sm);
    font-weight:600;
    font-size:14px;
    cursor:pointer;
    transition:var(--transition);
    box-shadow:0 4px 16px var(--gold-glow);
    font-family:inherit
}

.btn-gold:hover {
    transform:translateY(-2px);
    box-shadow:0 8px 28px var(--gold-glow)
}

.section-header {
    text-align:center;
    margin-bottom:52px
}

.section-header h2 {
    font-size:2.2rem;
    margin-bottom:14px;
    color:var(--heading)
}

.section-header p {
    color:var(--text-muted);
    max-width:520px;
    margin:0 auto;
    font-size:15px;
    line-height:1.7
}

.on-dark .section-header h2 {
    color:#fff
}

.on-dark .section-header p {
    color:#ffffffa6
}

.on-dark .section-tag {
    background:#ffffff1f;
    color:#ffffffe6;
    border-color:#fff3
}

.on-dark .section-tag:before {
    background:var(--rose-light)
}

.section-tag {
    display:inline-flex;
    align-items:center;
    gap:6px;
    background:var(--rose-subtle);
    color:var(--rose);
    font-size:11px;
    font-weight:600;
    letter-spacing:1.2px;
    text-transform:uppercase;
    padding:5px 14px;
    border-radius:20px;
    margin-bottom:14px;
    border:1px solid rgba(233,30,140,.2)
}

.section-tag:before {
    content: "";
    width:6px;
    height:6px;
    border-radius:50%;
    background:var(--rose);
    flex-shrink:0
}

.page-hero {
    background:linear-gradient(135deg,#fff0f7,#f5f0ff,#fff0f7);
    border-bottom:1px solid var(--border);
    padding:52px 0 36px;
    position:relative;
    overflow:hidden
}

.page-hero:before {
    content: "";
    position:absolute;
    top:-60%;
    right:-10%;
    width:500px;
    height:500px;
    border-radius:50%;
    background:radial-gradient(circle,rgba(233,30,140,.08) 0%,transparent 70%);
    pointer-events:none
}

.page-hero:after {
    content: "";
    position:absolute;
    bottom:-40%;
    left:-5%;
    width:360px;
    height:360px;
    border-radius:50%;
    background:radial-gradient(circle,rgba(124,58,237,.07) 0%,transparent 70%);
    pointer-events:none
}

.page-hero h1 {
    font-size:2.4rem;
    color:var(--heading)
}

.page-hero p {
    color:var(--text-muted)
}

.breadcrumb {
    display:flex;
    gap:8px;
    align-items:center;
    color:var(--text-muted);
    font-size:13px;
    margin-bottom:14px;
    flex-wrap:wrap
}

.breadcrumb a {
    color:var(--text-muted)
}

.breadcrumb a:hover {
    color:var(--rose)
}

.breadcrumb .sep {
    color:var(--text-dim)
}

.breadcrumb .active {
    color:var(--rose);
    font-weight:600
}

.grid-container {
    max-width:1280px;
    margin:0 auto;
    padding:0 24px;
    width:100%
}

.profile-card {
    background:var(--bg-card);
    border:1px solid var(--border);
    border-radius:var(--radius);
    overflow:hidden;
    transition:var(--transition-slow);
    position:relative;
    box-shadow:var(--shadow-card)
}

.profile-card:hover {
    transform:translateY(-8px);
    box-shadow:var(--shadow-hover);
    border-color:var(--rose)
}

.filters-bar {
    background:var(--bg-2);
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:14px 18px;
    margin-bottom:24px;
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    align-items:center;
    box-shadow:var(--shadow-card)
}

.filter-select {
    background:var(--bg-3);
    color:var(--text);
    border:1px solid var(--border);
    border-radius:var(--radius-sm);
    padding:9px 14px;
    font-size:13px;
    font-family:inherit;
    cursor:pointer;
    outline:none;
    transition:var(--transition);
    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none
}

.filter-select:focus {
    border-color:var(--rose)
}

.search-wrap {
    position:relative;
    flex:1;
    min-width:180px
}

.search-wrap svg {
    position:absolute;
    left:12px;
    top:50%;
    transform:translateY(-50%);
    color:var(--text-muted);
    pointer-events:none
}

.search-input {
    width:100%;
    background:var(--bg-3);
    color:var(--text);
    border:1px solid var(--border);
    border-radius:var(--radius-sm);
    padding:9px 14px 9px 38px;
    font-size:13px;
    font-family:inherit;
    outline:none;
    transition:var(--transition)
}

.search-input:focus {
    border-color:var(--rose);
    background:var(--bg-4)
}

.search-input::placeholder {
    color:var(--text-dim)
}

.tag {
    display:inline-flex;
    align-items:center;
    background:var(--bg-3);
    color:var(--text-muted);
    font-size:12px;
    padding:5px 14px;
    border-radius:20px;
    border:1px solid var(--border);
    transition:var(--transition);
    cursor:pointer
}

.tag:hover,.tag.active {
    background:var(--rose-subtle);
    color:var(--rose);
    border-color:#e91e8c4d
}

.text-gradient {
    background:linear-gradient(135deg,var(--rose) 0%,var(--rose-dark) 55%,var(--gold) 100%);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text
}

.card-dark {
    background:var(--bg-card);
    border:1px solid var(--border);
    border-radius:var(--radius);
    overflow:hidden;
    transition:var(--transition-slow);
    box-shadow:var(--shadow-card)
}

.card-dark:hover {
    border-color:var(--rose);
    box-shadow:var(--shadow-rose);
    transform:translateY(-4px)
}

.loading {
    display:flex;
    justify-content:center;
    align-items:center;
    padding:80px 0;
    color:var(--text-muted)
}

.spinner {
    width:32px;
    height:32px;
    border:2px solid var(--border);
    border-top-color:var(--rose);
    border-radius:50%;
    animation:spin .7s linear infinite;
    margin-right:12px
}

@keyframes spin {
    to {
        transform:rotate(360deg)
    }

    
}

 


@supports (scrollbar-width: none) {
    @-moz-document url-prefix() {
        html,body,* {
            scrollbar-width:none!important
        }

        
    }

    
}

.whatsapp-float {
    position:fixed;
    bottom:28px;
    left:28px;
    z-index:999;
    background:linear-gradient(135deg,#25d366,#1aab52);
    color:#fff;
    width:58px;
    height:58px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 4px 24px #25d36673;
    transition:var(--transition)
}

.whatsapp-float:hover {
    transform:scale(1.1);
    box-shadow:0 8px 32px #25d3668c;
    color:#fff
}

@media(max-width:768px) {
    .whatsapp-float {
        display:none
    }

    
}

.section-pad {
    padding:88px 0
}

.section-pad-sm {
    padding:52px 0
}

@media(max-width:768px) {
    .grid-container {
        padding:0 16px
    }

    .section-pad {
        padding:60px 0
    }

    .section-pad-sm {
        padding:40px 0
    }

    .page-hero {
        padding:36px 0 28px
    }

    .page-hero h1 {
        font-size:1.8rem
    }

    .section-header {
        margin-bottom:36px
    }

    .section-header h2 {
        font-size:1.7rem
    }

    .filters-bar {
        gap:8px
    }

    .filter-select,.search-wrap {
        width:100%
    }

    
}

@media(max-width:480px) {
    .grid-container {
        padding:0 10px
    }

    .page-hero h1 {
        font-size:1.5rem
    }

    .section-header h2 {
        font-size:1.4rem
    }

    .btn-orange,.btn-outline,.btn-dark {
        padding:12px 20px;
        font-size:13px
    }

    
}

.prose-link,a.prose-link:link,a.prose-link:visited {
    color:var(--rose-dark, #c2185b);
    text-decoration:underline;
    text-decoration-thickness:1.5px;
    text-underline-offset:2px;
    text-decoration-color:#c2185b73;
    font-weight:500;
    transition:color .18s ease,text-decoration-color .18s ease
}

a.prose-link:hover,a.prose-link:focus-visible {
    color:var(--rose, #e91e8c);
    text-decoration-color:var(--rose, #e91e8c);
    text-decoration-thickness:2px
}

a.prose-link:focus-visible {
    outline:2px solid rgba(233,30,140,.35);
    outline-offset:2px;
    border-radius:2px
}

a.prose-link[target=_blank]:after {
    content: "";
    font-size:.75em;
    opacity:.7;
    margin-left:1px
}

.on-dark a.prose-link,.on-dark a.prose-link:link,.on-dark a.prose-link:visited {
    color:#ff7fb5;
    text-decoration-color:#ff7fb58c
}

.on-dark a.prose-link:hover {
    color:#ffa7cc
}

.tg-swap {
    background:#229ed9!important;
    background-image:none!important;
    border-color:#229ed9!important;
    color:#fff!important
}

.tg-swap:hover {
    background:#1b87ba!important;
    border-color:#1b87ba!important;
    color:#fff!important
}

.tg-swap svg {
    fill:currentColor
}

.whatsapp-float.tg-swap {
    bottom:96px;
    box-shadow:0 4px 24px #229ed973!important
}

.whatsapp-float.tg-swap:hover {
    box-shadow:0 8px 32px #229ed98c!important
}



.auth-overlay.svelte-o861tn {
    position:fixed;
    top:0;
    right:0;
    bottom:0;
    left:0;
    z-index:10001;
    background:radial-gradient(1200px 600px at 80% -10%,rgba(244,63,94,.18),transparent 60%),radial-gradient(1000px 500px at -10% 100%,rgba(124,58,237,.12),transparent 60%),#fff0f7bf;
    backdrop-filter:blur(24px) saturate(140%);
    -webkit-backdrop-filter:blur(24px) saturate(140%);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:clamp(14px,3vw,40px);
    animation:svelte-o861tn-authFade .25s ease;
    overflow-y:auto
}

@keyframes svelte-o861tn-authFade {
    0% {
        opacity:0
    }

    to {
        opacity:1
    }

    
}

.auth-card.svelte-o861tn {
    position:relative;
    width:min(440px,100%);
    border-radius:26px;
    background:linear-gradient(180deg,#fff,#fffafc);
    box-shadow:0 40px 100px -30px #2d124859,0 0 0 1px #fff9,inset 0 1px #ffffffe6;
    overflow:hidden;
    animation:svelte-o861tn-authPop .4s cubic-bezier(.34,1.56,.64,1)
}

@keyframes svelte-o861tn-authPop {
    0% {
        opacity:0;
        transform:scale(.92) translateY(14px)
    }

    to {
        opacity:1;
        transform:scale(1) translateY(0)
    }

    
}

.auth-glow.svelte-o861tn {
    position:absolute;
    top:-2px;
    right:-2px;
    bottom:-2px;
    left:-2px;
    z-index:-1;
    border-radius:28px;
    background:conic-gradient(from 0deg,#e91e8c,#f43f5e,#f59e0b,#e91e8c);
    opacity:.35;
    filter:blur(24px);
    animation:svelte-o861tn-authGlow 6s linear infinite;
    pointer-events:none
}

@keyframes svelte-o861tn-authGlow {
    to {
        transform:rotate(360deg)
    }

    
}

.auth-hero.svelte-o861tn {
    position:relative;
    padding:28px 28px 0;
    background:linear-gradient(135deg,#e91e8c1a,#f43f5e14,#f59e0b1a);
    border-bottom:1px solid rgba(233,30,140,.08);
    overflow:hidden
}

.auth-hero__orb.svelte-o861tn {
    position:absolute;
    border-radius:50%;
    filter:blur(40px);
    pointer-events:none
}

.auth-hero__orb--1.svelte-o861tn {
    top:-40px;
    right:-30px;
    width:160px;
    height:160px;
    background:radial-gradient(circle,rgba(244,63,94,.4),transparent 70%)
}

.auth-hero__orb--2.svelte-o861tn {
    bottom:-20px;
    left:-20px;
    width:120px;
    height:120px;
    background:radial-gradient(circle,rgba(245,158,11,.3),transparent 70%)
}

.auth-close.svelte-o861tn {
    position:absolute;
    top:16px;
    right:16px;
    width:32px;
    height:32px;
    border-radius:50%;
    background:#fffffff2;
    color:var(--heading);
    border:1px solid rgba(233,30,140,.15);
    cursor:pointer;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 4px 12px #2d12481f;
    z-index:2;
    transition:transform .2s,background .2s,color .2s
}

.auth-close.svelte-o861tn:hover {
    background:linear-gradient(135deg,#e91e8c,#f43f5e);
    color:#fff;
    border-color:transparent;
    transform:rotate(90deg)
}

.auth-close.svelte-o861tn:focus-visible {
    outline:2px solid #e91e8c;
    outline-offset:2px
}

.auth-hero__brand.svelte-o861tn {
    position:relative;
    width:50px;
    height:50px;
    border-radius:16px;
    background:#fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-bottom:14px;
    box-shadow:0 12px 24px -8px #e91e8c66,0 0 0 4px #ffffffe6
}

.auth-title.svelte-o861tn {
    position:relative;
    margin:0 0 6px;
    font-size:22px;
    font-weight:700;
    color:var(--heading);
    letter-spacing:-.02em
}

.auth-sub.svelte-o861tn {
    position:relative;
    margin:0 0 18px;
    font-size:12.5px;
    line-height:1.55;
    color:var(--text-muted)
}

.auth-tabs.svelte-o861tn {
    position:relative;
    display:grid;
    grid-template-columns:1fr 1fr;
    background:#ffffffbf;
    border:1px solid rgba(233,30,140,.12);
    border-radius:14px 14px 0 0;
    padding:4px;
    margin:0 -28px;
    transform:translateY(1px)
}

.auth-tab.svelte-o861tn {
    position:relative;
    background:transparent;
    border:none;
    padding:10px 0;
    font-family:inherit;
    font-size:13px;
    font-weight:600;
    color:var(--text-dim);
    cursor:pointer;
    transition:color .25s ease;
    z-index:1
}

.auth-tab.active.svelte-o861tn {
    color:#fff
}

.auth-tabs__pill.svelte-o861tn {
    position:absolute;
    top:4px;
    left:4px;
    width:calc(50% - 4px);
    bottom:4px;
    background:linear-gradient(135deg,#e91e8c,#f43f5e);
    border-radius:10px;
    box-shadow:0 6px 14px -4px #e91e8c73;
    transition:transform .28s cubic-bezier(.22,1,.36,1);
    z-index:0
}

.auth-tabs__pill.is-right.svelte-o861tn {
    transform:translate(100%)
}

.auth-form.svelte-o861tn {
    display:flex;
    flex-direction:column;
    gap:14px;
    padding:22px 28px 24px
}

.auth-field.svelte-o861tn {
    display:flex;
    flex-direction:column;
    gap:6px
}

.auth-label.svelte-o861tn {
    font-size:10.5px;
    font-weight:600;
    letter-spacing:.12em;
    text-transform:uppercase;
    color:var(--heading)
}

.auth-label.svelte-o861tn em:where(.svelte-o861tn) {
    font-style:normal;
    font-weight:500;
    color:var(--text-dim);
    text-transform:none;
    letter-spacing:0;
    margin-left:4px
}

.auth-label-row.svelte-o861tn {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px
}

.auth-forgot-link.svelte-o861tn {
    background:none;
    border:none;
    padding:0;
    font-family:inherit;
    font-size:11.5px;
    font-weight:500;
    color:#e91e8c;
    cursor:pointer;
    text-decoration:none;
    transition:color .15s
}

.auth-forgot-link.svelte-o861tn:hover {
    color:#c4186e;
    text-decoration:underline;
    text-underline-offset:2px
}

.auth-forgot-link.svelte-o861tn:focus-visible {
    outline:2px solid #e91e8c;
    outline-offset:2px;
    border-radius:4px
}

.auth-hint.svelte-o861tn {
    font-size:11.5px;
    font-weight:500;
    margin-top:2px
}

.auth-hint--ok.svelte-o861tn {
    color:#059669
}

.auth-hint--err.svelte-o861tn {
    color:#dc2626
}

.auth-sent.svelte-o861tn {
    padding:22px 28px 24px;
    text-align:center
}

.auth-sent__ic.svelte-o861tn {
    width:64px;
    height:64px;
    margin:0 auto 14px;
    border-radius:20px;
    background:linear-gradient(135deg,#10b981,#059669);
    color:#fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 14px 32px -8px #10b98180,inset 0 2px #ffffff4d;
    animation:svelte-o861tn-authSentIn .5s cubic-bezier(.34,1.56,.64,1)
}

@keyframes svelte-o861tn-authSentIn {
    0% {
        opacity:0;
        transform:scale(.6)
    }

    to {
        opacity:1;
        transform:scale(1)
    }

    
}

.auth-sent.svelte-o861tn h4:where(.svelte-o861tn) {
    margin:0 0 8px;
    font-size:18px;
    font-weight:700;
    color:var(--heading);
    letter-spacing:-.02em
}

.auth-sent.svelte-o861tn p:where(.svelte-o861tn) {
    margin:0 0 10px;
    font-size:13px;
    line-height:1.55;
    color:var(--text-muted)
}

.auth-sent.svelte-o861tn p:where(.svelte-o861tn) strong:where(.svelte-o861tn) {
    color:var(--heading)
}

.auth-sent__hint.svelte-o861tn {
    padding:10px 14px;
    background:#fff8e1;
    border:1px dashed rgba(245,158,11,.3);
    border-radius:10px;
    font-size:11.5px!important;
    color:#92400e!important;
    margin:12px 0 16px!important
}

.auth-sent__alt.svelte-o861tn {
    margin-top:10px;
    background:transparent;
    border:none;
    color:#6b5876;
    font-size:12.5px;
    font-weight:600;
    cursor:pointer;
    text-decoration:underline
}

.auth-sent__alt.svelte-o861tn:hover {
    color:#e91e8c
}

.auth-input-wrap.svelte-o861tn {
    position:relative;
    display:flex;
    align-items:center
}

.auth-input-ic.svelte-o861tn {
    position:absolute;
    left:13px;
    color:var(--text-dim);
    pointer-events:none;
    transition:color .2s ease
}

.auth-input-wrap.svelte-o861tn input:where(.svelte-o861tn) {
    width:100%;
    padding:12px 40px 12px 36px;
    font-size:14px;
    font-family:inherit;
    color:var(--heading);
    background:#faf6fa;
    border:1.5px solid rgba(233,30,140,.1);
    border-radius:12px;
    transition:border-color .2s ease,background .2s ease,box-shadow .2s ease
}

.auth-input-wrap.svelte-o861tn input:where(.svelte-o861tn)::placeholder {
    color:var(--text-dim)
}

.auth-input-wrap.svelte-o861tn input:where(.svelte-o861tn):focus {
    outline:none;
    background:#fff;
    border-color:#e91e8c;
    box-shadow:0 0 0 4px #e91e8c1a
}

.auth-input-wrap.svelte-o861tn:focus-within .auth-input-ic:where(.svelte-o861tn) {
    color:#e91e8c
}

.auth-eye.svelte-o861tn {
    position:absolute;
    right:8px;
    width:28px;
    height:28px;
    border-radius:50%;
    background:transparent;
    color:var(--text-dim);
    border:none;
    cursor:pointer;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    transition:background .2s,color .2s
}

.auth-eye.svelte-o861tn:hover {
    background:#e91e8c14;
    color:#e91e8c
}

.auth-error.svelte-o861tn {
    display:flex;
    align-items:center;
    gap:8px;
    padding:10px 14px;
    background:linear-gradient(135deg,#fef2f2,#fee2e2);
    border:1px solid rgba(239,68,68,.3);
    border-radius:11px;
    color:#991b1b;
    font-size:12.5px;
    font-weight:500
}

.auth-error.svelte-o861tn svg:where(.svelte-o861tn) {
    flex-shrink:0;
    color:#dc2626
}

.auth-submit.svelte-o861tn {
    position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:7px;
    padding:13px 22px;
    font-family:inherit;
    font-size:14px;
    font-weight:600;
    color:#fff;
    background:linear-gradient(135deg,#e91e8c,#f43f5e 60%,#f59e0b);
    background-size:200% 100%;
    border:none;
    border-radius:12px;
    cursor:pointer;
    box-shadow:0 10px 24px -8px #e91e8c80,inset 0 1px #ffffff40;
    overflow:hidden;
    transition:transform .2s ease,box-shadow .2s ease,background-position .4s ease;
    margin-top:4px
}

.auth-submit.svelte-o861tn:hover:not(:disabled) {
    transform:translateY(-2px);
    background-position:100% 0;
    box-shadow:0 14px 32px -8px #e91e8c99
}

.auth-submit.svelte-o861tn:disabled {
    opacity:.65;
    cursor:not-allowed
}

.auth-submit__shine.svelte-o861tn {
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    background:linear-gradient(110deg,transparent 30%,rgba(255,255,255,.4) 50%,transparent 70%);
    transform:translate(-120%);
    pointer-events:none
}

.auth-submit.svelte-o861tn:hover:not(:disabled) .auth-submit__shine:where(.svelte-o861tn) {
    animation:svelte-o861tn-authShine .9s ease
}

@keyframes svelte-o861tn-authShine {
    0% {
        transform:translate(-120%)
    }

    to {
        transform:translate(120%)
    }

    
}

.auth-spin.svelte-o861tn {
    animation:svelte-o861tn-authSpin .9s linear infinite
}

@keyframes svelte-o861tn-authSpin {
    to {
        transform:rotate(360deg)
    }

    
}

.auth-switch.svelte-o861tn {
    margin:6px 0 0;
    text-align:center;
    font-size:12.5px;
    color:var(--text-muted)
}

.auth-switch.svelte-o861tn button:where(.svelte-o861tn) {
    background:none;
    border:none;
    color:#e91e8c;
    font-weight:600;
    cursor:pointer;
    font-family:inherit;
    font-size:inherit;
    padding:0 0 0 4px;
    text-decoration:underline;
    text-underline-offset:2px
}

.auth-switch.svelte-o861tn button:where(.svelte-o861tn):hover {
    color:#c4186e
}

.auth-signup-banner.svelte-o861tn {
    display:flex;
    align-items:center;
    gap:10px;
    padding:11px 14px;
    background:linear-gradient(135deg,#ecfdf5,#d1fae5);
    border:1px solid rgba(16,185,129,.28);
    border-radius:12px;
    animation:svelte-o861tn-authBannerIn .35s cubic-bezier(.34,1.56,.64,1)
}

@keyframes svelte-o861tn-authBannerIn {
    0% {
        opacity:0;
        transform:translateY(-6px)
    }

    to {
        opacity:1;
        transform:translateY(0)
    }

    
}

.auth-signup-banner__ic.svelte-o861tn {
    flex-shrink:0;
    width:30px;
    height:30px;
    border-radius:9px;
    background:linear-gradient(135deg,#10b981,#059669);
    color:#fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 6px 14px -4px #10b98180
}

.auth-signup-banner__txt.svelte-o861tn {
    display:flex;
    flex-direction:column;
    gap:1px;
    font-size:12.5px;
    line-height:1.4;
    color:#065f46
}

.auth-signup-banner__txt.svelte-o861tn strong:where(.svelte-o861tn) {
    font-weight:600;
    font-size:13px
}

.auth-signup-banner__txt.svelte-o861tn span:where(.svelte-o861tn) {
    font-weight:600;
    color:#047857
}

.auth-existing-banner.svelte-o861tn {
    display:flex;
    align-items:center;
    gap:10px;
    padding:11px 14px;
    background:linear-gradient(135deg,#fdf2f8,#fce7f3);
    border:1px solid rgba(233,30,140,.22);
    border-radius:12px;
    animation:svelte-o861tn-authBannerIn .35s cubic-bezier(.34,1.56,.64,1)
}

.auth-existing-banner__ic.svelte-o861tn {
    flex-shrink:0;
    width:30px;
    height:30px;
    border-radius:9px;
    background:linear-gradient(135deg,#e91e8c,#f43f5e);
    color:#fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 6px 14px -4px #e91e8c73
}

.auth-existing-banner__txt.svelte-o861tn {
    display:flex;
    flex-direction:column;
    gap:1px;
    font-size:12.5px;
    line-height:1.4;
    color:#831843
}

.auth-existing-banner__txt.svelte-o861tn strong:where(.svelte-o861tn) {
    font-weight:600;
    font-size:13px
}

.auth-existing-banner__txt.svelte-o861tn span:where(.svelte-o861tn) {
    font-weight:600;
    color:#a21963
}

.auth-login-success.svelte-o861tn {
    position:relative;
    padding:34px 28px 30px;
    text-align:center;
    animation:svelte-o861tn-authLoginIn .38s cubic-bezier(.34,1.56,.64,1)
}

@keyframes svelte-o861tn-authLoginIn {
    0% {
        opacity:0;
        transform:scale(.95)
    }

    to {
        opacity:1;
        transform:scale(1)
    }

    
}

.auth-login-success__ic.svelte-o861tn {
    width:72px;
    height:72px;
    margin:0 auto 14px;
    border-radius:22px;
    background:linear-gradient(135deg,#10b981,#059669);
    color:#fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 18px 38px -10px #10b9818c,inset 0 2px #ffffff4d;
    animation:svelte-o861tn-authLoginPop .55s cubic-bezier(.34,1.56,.64,1)
}

@keyframes svelte-o861tn-authLoginPop {
    0% {
        opacity:0;
        transform:scale(.4) rotate(-12deg)
    }

    60% {
        opacity:1;
        transform:scale(1.12) rotate(4deg)
    }

    to {
        opacity:1;
        transform:scale(1) rotate(0)
    }

    
}

.auth-login-success.svelte-o861tn h4:where(.svelte-o861tn) {
    margin:0 0 6px;
    font-size:19px;
    font-weight:700;
    color:var(--heading);
    letter-spacing:-.02em
}

.auth-login-success.svelte-o861tn p:where(.svelte-o861tn) {
    margin:0;
    font-size:13px;
    line-height:1.55;
    color:var(--text-muted)
}

.auth-login-success.svelte-o861tn p:where(.svelte-o861tn) strong:where(.svelte-o861tn) {
    color:var(--heading);
    font-weight:600
}

.auth-login-success__bar.svelte-o861tn {
    display:block;
    height:3px;
    margin:18px auto 0;
    width:70%;
    background:linear-gradient(90deg,#10b981,#34d399);
    border-radius:3px;
    transform-origin:left center;
    animation:svelte-o861tn-authLoginBar 1.5s linear forwards
}

@keyframes svelte-o861tn-authLoginBar {
    0% {
        transform:scaleX(0)
    }

    to {
        transform:scaleX(1)
    }

    
}

@media(max-width:480px) {
    .auth-hero.svelte-o861tn {
        padding:22px 20px 0
    }

    .auth-tabs.svelte-o861tn {
        margin:0 -20px
    }

    .auth-form.svelte-o861tn {
        padding:18px 20px 20px
    }

    .auth-title.svelte-o861tn {
        font-size:19px
    }

    .auth-login-success.svelte-o861tn {
        padding:28px 20px 24px
    }

    
}



.logout-overlay.navigate {
    position:fixed;
    top:0;
    right:0;
    bottom:0;
    left:0;
    z-index:10002;
    background:radial-gradient(1100px 500px at 80% -10%,rgba(244,63,94,.18),transparent 60%),radial-gradient(900px 450px at -10% 100%,rgba(124,58,237,.12),transparent 60%),#fff0f7c7;
    backdrop-filter:blur(22px) saturate(140%);
    -webkit-backdrop-filter:blur(22px) saturate(140%);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:clamp(14px,3vw,40px);
    animation:svelte-rfuq4y-logoutFade .22s ease
}



@keyframes svelte-rfuq4y-logoutFade {
    0% {
        opacity:0
    }

    to {
        opacity:1
    }

    
}


.logout-card.navigate {
    position:relative;
    width:min(400px,100%);
    padding:30px 26px 24px;
    border-radius:24px;
    background:linear-gradient(180deg,#fff,#fffafc);
    text-align:center;
    box-shadow:0 40px 90px -28px #2d124857,0 0 0 1px #fff9,inset 0 1px #ffffffe6;
    animation:svelte-rfuq4y-logoutPop .38s cubic-bezier(.34,1.56,.64,1)
}

@keyframes svelte-rfuq4y-logoutPop {
    0% {
        opacity:0;
        transform:scale(.92) translateY(12px)
    }

    to {
        opacity:1;
        transform:scale(1) translateY(0)
    }

    
}

.logout-glow.navigate {
    position:absolute;
    top:-2px;
    right:-2px;
    bottom:-2px;
    left:-2px;
    z-index:-1;
    border-radius:26px;
    background:conic-gradient(from 0deg,#e91e8c,#f43f5e,#f59e0b,#e91e8c);
    opacity:.28;
    filter:blur(22px);
    animation:svelte-rfuq4y-logoutGlow 6s linear infinite;
    pointer-events:none
}

@keyframes svelte-rfuq4y-logoutGlow {
    to {
        transform:rotate(360deg)
    }

    
}

.logout-close.navigate {
    position:absolute;
    top:14px;
    right:14px;
    width:30px;
    height:30px;
    border-radius:50%;
    background:#fffffff2;
    color:var(--heading, #1e0b38);
    border:1px solid rgba(233,30,140,.15);
    cursor:pointer;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 4px 12px #2d12481f;
    transition:transform .2s,background .2s,color .2s
}

.logout-close.navigate:hover:not(:disabled) {
    background:linear-gradient(135deg,#e91e8c,#f43f5e);
    color:#fff;
    border-color:transparent;
    transform:rotate(90deg)
}

.logout-close.navigate:disabled {
    opacity:.5;
    cursor:not-allowed
}

.logout-ic.navigate {
    width:64px;
    height:64px;
    margin:0 auto 14px;
    border-radius:20px;
    background:linear-gradient(135deg,#fdf2f8,#fce7f3);
    color:#e91e8c;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 12px 28px -10px #e91e8c59,inset 0 2px #fff9;
    animation:svelte-rfuq4y-logoutIcIn .5s cubic-bezier(.34,1.56,.64,1)
}

@keyframes svelte-rfuq4y-logoutIcIn {
    0% {
        opacity:0;
        transform:scale(.5) rotate(-10deg)
    }

    to {
        opacity:1;
        transform:scale(1) rotate(0)
    }

    
}

.logout-title.navigate {
    margin:0 0 8px;
    font-size:19px;
    font-weight:700;
    color:var(--heading, #1e0b38);
    letter-spacing:-.01em
}

.logout-sub.navigate {
    margin:0 0 22px;
    font-size:13px;
    line-height:1.55;
    color:var(--text-muted, #6b5876)
}

.logout-sub.navigate strong:where(.navigate) {
    color:var(--heading, #1e0b38);
    font-weight:600
}

.logout-actions.navigate {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px
}

.logout-btn.navigate {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    padding:12px 18px;
    font-family:inherit;
    font-size:13.5px;
    font-weight:600;
    border-radius:12px;
    cursor:pointer;
    border:1.5px solid transparent;
    transition:transform .2s ease,box-shadow .2s ease,background .25s ease,color .2s
}

.logout-btn.navigate:disabled {
    opacity:.7;
    cursor:not-allowed
}

.logout-btn--cancel.navigate {
    background:#faf6fa;
    color:var(--heading, #1e0b38);
    border-color:#e91e8c26
}

.logout-btn--cancel.navigate:hover:not(:disabled) {
    background:#fff;
    border-color:#e91e8c59;
    transform:translateY(-1px)
}

.logout-btn--confirm.navigate {
    color:#fff;
    background:linear-gradient(135deg,#e91e8c,#f43f5e 60%,#f59e0b);
    background-size:200% 100%;
    box-shadow:0 10px 22px -8px #e91e8c80,inset 0 1px #ffffff40
}

.logout-btn--confirm.navigate:hover:not(:disabled) {
    transform:translateY(-2px);
    background-position:100% 0;
    box-shadow:0 14px 28px -8px #e91e8c99
}

.logout-spin.navigate {
    animation:svelte-rfuq4y-logoutSpin .9s linear infinite
}

@keyframes svelte-rfuq4y-logoutSpin {
    to {
        transform:rotate(360deg)
    }

    
}

@media(max-width:420px) {
    .logout-card.navigate {
        padding:26px 20px 20px
    }

    .logout-title.navigate {
        font-size:17px
    }

    
}

.navbar.navigate {
    position:sticky;
    top:0;
    z-index:200
}

.top-strip.navigate {
    position:relative;
    background:linear-gradient(90deg,#fce7f3f2,#fef3c7d9,#fce7f3f2),#fff;
    border-bottom:1px solid rgba(233,30,140,.1);
    padding:7px 0;
    font-size:11.5px;
    color:#6b4e63;
    overflow:hidden
}

.top-strip.navigate:before {
    content: "";
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:1px;
    background:linear-gradient(90deg,transparent,rgba(233,30,140,.4),rgba(245,158,11,.4),rgba(233,30,140,.4),transparent)
}

.strip-inner.navigate {
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:14px;
    min-height:22px
}

.strip-group.navigate {
    display:inline-flex;
    align-items:center;
    gap:8px;
    min-width:0
}

.strip-group--right.navigate {
    flex-shrink:0
}

.strip-pill.navigate {
    display:inline-flex;
    align-items:center;
    gap:7px;
    padding:4px 10px;
    background:#ffffffbf;
    border:1px solid rgba(16,185,129,.22);
    border-radius:999px;
    font-weight:600;
    color:#065f46;
    backdrop-filter:blur(6px);
    -webkit-backdrop-filter:blur(6px);
    white-space:nowrap
}

.strip-pill.navigate strong:where(.navigate) {
    font-weight:600;
    color:#047857
}

.strip-live-dot.navigate {
    position:relative;
    display:inline-block;
    width:7px;
    height:7px;
    border-radius:50%;
    background:#10b981;
    box-shadow:0 0 #10b98199;
    animation:svelte-rfuq4y-stripPulse 1.8s ease-out infinite
}

@keyframes svelte-rfuq4y-stripPulse {
    0% {
        box-shadow:0 0 #10b98199
    }

    70% {
        box-shadow:0 0 0 6px #10b98100
    }

    to {
        box-shadow:0 0 #10b98100
    }

    
}

.strip-chip.navigate {
    display:inline-flex;
    align-items:center;
    gap:5px;
    padding:3px 9px;
    border-radius:999px;
    font-weight:500;
    font-size:11px;
    background:#ffffffb3;
    border:1px solid rgba(233,30,140,.1);
    white-space:nowrap
}

.strip-chip.navigate svg:where(.navigate) {
    flex-shrink:0
}

.strip-chip--verified.navigate {
    color:#6d28d9;
    border-color:#7c3aed38
}

.strip-chip--verified.navigate svg:where(.navigate) {
    color:#7c3aed
}

.strip-chip--discreet.navigate {
    color:#b45309;
    border-color:#d9770638
}

.strip-chip--discreet.navigate svg:where(.navigate) {
    color:#d97706
}

.strip-ticker.navigate {
    display:inline-flex;
    align-items:center;
    gap:6px;
    max-width:320px
}

.strip-ticker__label.navigate {
    color:#f59e0b;
    font-size:12px;
    flex-shrink:0
}

.strip-ticker__viewport.navigate {
    width:280px;
    overflow:hidden;
    mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
    -webkit-mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent)
}

.strip-ticker__track.navigate {
    display:inline-flex;
    gap:28px;
    animation:svelte-rfuq4y-stripTicker 28s linear infinite;
    white-space:nowrap;
    will-change:transform
}

.strip-ticker__item.navigate {
    font-size:11.5px;
    color:#6b4e63;
    font-weight:600
}

@keyframes svelte-rfuq4y-stripTicker {
    0% {
        transform:translate(0)
    }

    to {
        transform:translate(-50%)
    }

    
}

.strip-ticker.navigate:hover .strip-ticker__track:where(.navigate) {
    animation-play-state:paused
}

.strip-quick.navigate {
    display:inline-flex;
    align-items:center;
    gap:5px;
    padding:4px 11px;
    border-radius:999px;
    font-size:11.5px;
    font-weight:600;
    text-decoration:none;
    letter-spacing:0;
    transition:transform .18s ease,box-shadow .18s ease;
    white-space:nowrap
}

.strip-quick--call.navigate {
    background:linear-gradient(135deg,#e91e8c,#f43f5e);
    color:#fff;
    box-shadow:0 3px 10px -2px #e91e8c66
}

.strip-quick--call.navigate:hover {
    transform:translateY(-1px);
    box-shadow:0 6px 14px -2px #e91e8c8c
}

@media(max-width:1180px) {
    .strip-chip--discreet.navigate,.strip-ticker.navigate {
        display:none
    }

    
}

@media(max-width:960px) {
    .strip-chip--verified.navigate {
        display:none
    }

    
}

.nav-body.navigate {
    position:relative;
    background:#ffffffd9;
    border-bottom:1px solid rgba(233,30,140,.1);
    backdrop-filter:blur(20px) saturate(180%);
    -webkit-backdrop-filter:blur(20px) saturate(180%);
    box-shadow:0 4px 20px #2d12480a
}

.nav-body.navigate:before {
    content: "";
    position:absolute;
    bottom:-1px;
    left:0;
    right:0;
    height:1px;
    background:linear-gradient(90deg,transparent,rgba(233,30,140,.25),rgba(245,158,11,.25),transparent);
    pointer-events:none
}

.nav-inner.navigate {
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:70px;
    gap:20px
}

.nav-logo.navigate {
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
    flex-shrink:0
}

.logo-icon.navigate {
    flex-shrink:0;
    transition:transform .35s cubic-bezier(.22,1,.36,1),filter .35s;
    filter:drop-shadow(0 8px 18px rgba(233,30,140,.35))
}

.nav-logo.navigate:hover .logo-icon:where(.navigate) {
    transform:scale(1.08) rotate(-4deg);
    filter:drop-shadow(0 10px 22px rgba(233,30,140,.5))
}

.logo-words.navigate {
    display:flex;
    flex-direction:column
}

.logo-main.navigate {
    display:block;
    font-size:18px;
    font-weight:700;
    color:#1a0611;
    letter-spacing:-.02em;
    line-height:1.1
}

.logo-tagline.navigate {
    display:inline-flex;
    align-items:center;
    gap:5px;
    font-size:9px;
    font-weight:600;
    color:var(--text-dim, #7b6a90);
    text-transform:uppercase;
    letter-spacing:.18em;
    margin-top:3px
}

.logo-dot.navigate {
    color:var(--rose);
    font-size:7px;
    line-height:1
}

.nav-links.navigate {
    display:flex;
    gap:2px;
    list-style:none;
    margin:0;
    padding:4px;
    background:#fff9;
    border:1px solid rgba(233,30,140,.1);
    border-radius:50px;
    -webkit-backdrop-filter:blur(8px);
    backdrop-filter:blur(8px);
    box-shadow:inset 0 1px #fffc
}

.nav-links.navigate a:where(.navigate) {
    position:relative;
    color:#4a2d5e;
    font-size:13px;
    font-weight:500;
    padding:8px 16px;
    border-radius:50px;
    transition:all .3s cubic-bezier(.22,1,.36,1);
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    gap:6px;
    letter-spacing:-.01em;
    white-space:nowrap
}

.nav-links.navigate a:where(.navigate):hover {
    color:var(--rose);
    background:#e91e8c14
}

.nav-links.navigate a.active:where(.navigate) {
    color:#fff;
    background:linear-gradient(135deg,var(--rose),var(--rose-dark));
    box-shadow:0 6px 14px #e91e8c59
}

.active-dot.navigate {
    width:5px;
    height:5px;
    border-radius:50%;
    background:#fff;
    box-shadow:0 0 0 2px #ffffff59;
    display:inline-block;
    animation:svelte-rfuq4y-navPulse 2s ease-in-out infinite
}

@keyframes svelte-rfuq4y-navPulse {
    0%,to {
        opacity:1
    }

    50% {
        opacity:.5
    }

    
}

.nav-actions.navigate {
    display:flex;
    align-items:center;
    gap:10px
}

.nav-fav.navigate {
    position:relative;
    width:42px;
    height:42px;
    border-radius:50%;
    background:#fff;
    border:1.5px solid rgba(233,30,140,.2);
    color:var(--rose);
    display:flex;
    align-items:center;
    justify-content:center;
    transition:all .3s cubic-bezier(.22,1,.36,1);
    text-decoration:none;
    box-shadow:0 4px 10px #2d12480f
}

.nav-fav.navigate:hover {
    background:linear-gradient(135deg,var(--rose),var(--rose-dark));
    border-color:transparent;
    color:#fff;
    transform:translateY(-2px);
    box-shadow:0 10px 22px #e91e8c66
}

.nav-fav.navigate:hover svg:where(.navigate) {
    fill:#fff;
    stroke:#fff
}

.fav-badge.navigate {
    position:absolute;
    top:-4px;
    right:-4px;
    background:var(--rose);
    color:#fff;
    font-size:10px;
    font-weight:700;
    min-width:18px;
    height:18px;
    border-radius:20px;
    padding:0 5px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:2px solid #fff;
    line-height:1;
    box-shadow:0 2px 6px #e91e8c59
}

.nav-fav.navigate:hover .fav-badge:where(.navigate) {
    background:#fff;
    color:var(--rose);
    border-color:var(--rose)
}

.fav-pop.navigate {
    animation:svelte-rfuq4y-favBounce .6s cubic-bezier(.36,.07,.19,.97)
}

@keyframes svelte-rfuq4y-favBounce {
    0% {
        transform:scale(1)
    }

    20% {
        transform:scale(1.35) rotate(-8deg)
    }

    40% {
        transform:scale(.9) rotate(5deg)
    }

    60% {
        transform:scale(1.15) rotate(-3deg)
    }

    80% {
        transform:scale(.97)
    }

    to {
        transform:scale(1)
    }

    
}

.nav-wa.navigate {
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#fff;
    font-size:13px;
    font-weight:600;
    padding:10px 18px;
    border-radius:50px;
    border:none;
    background:linear-gradient(135deg,#25d366,#128c7e);
    text-decoration:none;
    box-shadow:0 8px 18px #25d36659,inset 0 1px #ffffff40;
    transition:all .3s cubic-bezier(.22,1,.36,1);
    letter-spacing:0
}

.nav-wa.navigate:hover {
    transform:translateY(-2px);
    box-shadow:0 12px 24px #25d36680,inset 0 1px #ffffff4d;
    color:#fff
}

.nav-user-wrap.navigate {
    position:relative
}

.nav-user.navigate {
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:6px 12px 6px 6px;
    background:#fff;
    border:1px solid rgba(233,30,140,.15);
    border-radius:999px;
    cursor:pointer;
    font-family:inherit;
    transition:border-color .2s,box-shadow .2s
}

.nav-user.navigate:hover {
    border-color:#e91e8c;
    box-shadow:0 6px 14px -4px #e91e8c33
}

.nav-user__avatar.navigate {
    flex:0 0 28px;
    width:28px;
    height:28px;
    border-radius:50%;
    background:linear-gradient(135deg,#e91e8c,#f43f5e);
    color:#fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-weight:600;
    font-size:12px
}

.nav-user__avatar--big.navigate {
    width:40px;
    height:40px;
    font-size:16px;
    flex-basis:40px
}

.nav-user__name.navigate {
    font-size:13px;
    font-weight:500;
    color:var(--heading, #2a1218)
}

.nav-user__chev.navigate {
    color:var(--text-dim, #6b5876);
    transition:transform .2s ease
}

.nav-user__chev.up.navigate {
    transform:rotate(180deg)
}

.nav-user-menu.navigate {
    position:absolute;
    right:0;
    top:calc(100% + 8px);
    width:240px;
    background:#fff;
    border:1px solid rgba(233,30,140,.12);
    border-radius:14px;
    box-shadow:0 20px 40px -10px #2d124833;
    overflow:hidden;
    z-index:50;
    animation:svelte-rfuq4y-navMenuIn .2s ease
}

@keyframes svelte-rfuq4y-navMenuIn {
    0% {
        opacity:0;
        transform:translateY(-6px)
    }

    to {
        opacity:1;
        transform:translateY(0)
    }

    
}

.nav-user-menu__head.navigate {
    display:flex;
    align-items:center;
    gap:10px;
    padding:14px;
    background:linear-gradient(135deg,#fff0f6,#fff8fa);
    border-bottom:1px solid rgba(233,30,140,.08)
}

.nav-user-menu__info.navigate {
    display:flex;
    flex-direction:column;
    gap:1px;
    min-width:0;
    flex:1
}

.nav-user-menu__info.navigate strong:where(.navigate) {
    font-size:13.5px;
    color:var(--heading, #2a1218);
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis
}

.nav-user-menu__info.navigate span:where(.navigate) {
    font-size:11.5px;
    color:var(--text-dim, #6b5876);
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis
}

.nav-user-menu__item.navigate {
    display:flex;
    align-items:center;
    gap:10px;
    width:100%;
    padding:12px 14px;
    background:#fff;
    border:none;
    cursor:pointer;
    font-family:inherit;
    font-size:13px;
    font-weight:500;
    color:var(--heading, #2a1218);
    transition:background .15s
}

.nav-user-menu__logout.navigate:hover {
    background:#fef2f2;
    color:#dc2626
}

.nav-user-menu__logout.navigate:hover svg:where(.navigate) {
    color:#dc2626
}

.nav-user-menu__logout.navigate svg:where(.navigate) {
    color:var(--text-dim, #6b5876)
}

.mob-auth.navigate {
    display:flex;
    gap:10px;
    padding:14px 16px 12px;
    margin:8px 0 4px;
    border-top:1px dashed rgba(233,30,140,.15);
    border-bottom:1px dashed rgba(233,30,140,.15)
}

.mob-btn.navigate {
    flex:1;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:7px;
    padding:11px 14px;
    font-family:inherit;
    font-size:13px;
    font-weight:500;
    border-radius:12px;
    cursor:pointer;
    transition:transform .2s ease,box-shadow .2s ease,background .2s
}

.mob-btn--login.navigate {
    background:#fff;
    color:#2a1218;
    border:1.5px solid rgba(233,30,140,.25)
}

.mob-btn--login.navigate:hover {
    border-color:#e91e8c;
    color:#e91e8c;
    background:#e91e8c0a
}

.mob-btn--signup.navigate {
    background:linear-gradient(135deg,#e91e8c,#f43f5e);
    color:#fff;
    border:none;
    box-shadow:0 8px 18px -4px #e91e8c73
}

.mob-btn--signup.navigate:hover {
    transform:translateY(-2px);
    box-shadow:0 12px 22px -4px #e91e8c8c
}

.mob-user.navigate {
    display:flex;
    align-items:center;
    gap:10px;
    padding:12px 14px;
    width:100%;
    background:linear-gradient(135deg,#fff0f6,#fff8fa);
    border-radius:12px
}

.mob-user.navigate > div:where(.navigate) {
    flex: 1;
    min-width: 0;
}

.mob-user.navigate strong:where(.navigate) {
    display:block;
    font-size:13.5px;
    color:var(--heading, #2a1218);
    font-weight:500
}

.mob-user.navigate small:where(.navigate) {
    font-size:11.5px;
    color:var(--text-dim, #6b5876)
}

.mob-user.navigate button:where(.navigate) {
    padding:7px 12px;
    font-size:12px;
    font-weight:500;
    color:#dc2626;
    background:#fff;
    border:1px solid rgba(220,38,38,.25);
    border-radius:8px;
    cursor:pointer;
    font-family:inherit
}

.mob-user.navigate button:where(.navigate):hover {
    background:#fef2f2
}

@media(max-width:900px) {
    .nav-user-wrap.navigate {
        display:none
    }

    .mob-auth.navigate {
        display:flex
    }

    
}

@media(min-width:901px) {
    .mob-auth.navigate {
        display:none
    }

    
}

.hamburger.navigate {
    display:none;
    cursor:pointer;
    width:42px;
    height:42px;
    background:#fff;
    border:1.5px solid rgba(233,30,140,.2);
    color:var(--rose);
    padding:0;
    border-radius:12px;
    transition:all .3s cubic-bezier(.22,1,.36,1);
    align-items:center;
    justify-content:center;
    box-shadow:0 4px 10px #2d12480f
}

.hamburger.navigate:hover {
    background:linear-gradient(135deg,var(--rose),var(--rose-dark));
    border-color:transparent;
    color:#fff;
    transform:translateY(-2px);
    box-shadow:0 10px 20px #e91e8c66
}

.mob-overlay.navigate {
    position:fixed;
    top:0;
    right:0;
    bottom:0;
    left:0;
    background:#00000073;
    -webkit-backdrop-filter:blur(6px);
    backdrop-filter:blur(6px);
    z-index:299;
    animation:svelte-rfuq4y-fadeIn .2s ease
}

@keyframes svelte-rfuq4y-fadeIn {
    0% {
        opacity:0
    }

    to {
        opacity:1
    }

    
}

.mob-drawer.navigate {
    position:fixed;
    top:0;
    right:0;
    bottom:0;
    width:min(340px,90vw);
    background:radial-gradient(800px 400px at 100% 0%,rgba(233,30,140,.08),transparent 60%),radial-gradient(600px 400px at 0% 100%,rgba(245,158,11,.08),transparent 60%),linear-gradient(180deg,#fff,#fff7fb);
    box-shadow:-20px 0 60px #e91e8c2e,-2px 0 16px #00000014;
    z-index:99999;
    display:flex;
    flex-direction:column;
    animation:svelte-rfuq4y-slideIn .35s cubic-bezier(.22,1,.36,1);
    overflow-y:auto;
    border-left:1px solid rgba(233,30,140,.12)
}

@keyframes svelte-rfuq4y-slideIn {
    0% {
        transform:translate(100%);
        opacity:0
    }

    to {
        transform:translate(0);
        opacity:1
    }

    
}

.mob-header.navigate {
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:20px 20px 18px;
    border-bottom:1px solid rgba(233,30,140,.12);
    background:linear-gradient(135deg,#e91e8c0f,#f59e0b0a);
    position:sticky;
    top:0;
    z-index:2;
    -webkit-backdrop-filter:blur(10px);
    backdrop-filter:blur(10px)
}

.mob-logo.navigate {
    display:flex;
    align-items:center;
    gap:10px;
    font-size:17px;
    font-weight:700;
    color:#1a0611;
    text-decoration:none;
    letter-spacing:-.02em
}

.mob-logo.navigate svg:where(.navigate) {
    filter:drop-shadow(0 6px 14px rgba(233,30,140,.35))
}

.mob-close.navigate {
    width:38px;
    height:38px;
    border-radius:12px;
    background:#fff;
    border:1.5px solid rgba(233,30,140,.15);
    color:var(--text-muted);
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:all .3s cubic-bezier(.22,1,.36,1);
    box-shadow:0 4px 10px #2d12480d
}

.mob-close.navigate:hover {
    background:linear-gradient(135deg,var(--rose),var(--rose-dark));
    border-color:transparent;
    color:#fff;
    transform:rotate(90deg);
    box-shadow:0 8px 18px #e91e8c59
}

.mob-nav.navigate {
    display:flex;
    flex-direction:column;
    padding:14px 12px;
    flex:1;
    gap:4px
}

.mob-link.navigate {
    display:flex;
    align-items:center;
    gap:12px;
    padding:12px 14px;
    background:#fff;
    border:1px solid rgba(233,30,140,.08);
    border-radius:14px;
    text-decoration:none;
    color:#1a0611;
    font-size:14px;
    font-weight:600;
    letter-spacing:0;
    transition:all .3s cubic-bezier(.22,1,.36,1);
    box-shadow:0 2px 6px #2d12480a
}

.mob-link.mob-active.navigate .mob-link-text:where(.navigate) {
    font-weight:500
}

.mob-link-ic.navigate {
    width:34px;
    height:34px;
    flex-shrink:0;
    border-radius:10px;
    background:linear-gradient(135deg,#ffe4ef,#fff0db);
    color:var(--rose);
    display:flex;
    align-items:center;
    justify-content:center;
    transition:all .3s
}

.mob-link-text.navigate {
    flex:1;
    min-width:0
}

.mob-link-arr.navigate {
    color:var(--text-dim, #c9b8d8);
    flex-shrink:0;
    transition:all .3s
}

.mob-link.navigate:hover {
    border-color:#e91e8c4d;
    transform:translate(4px);
    box-shadow:0 8px 18px #e91e8c24
}

.mob-link.navigate:hover .mob-link-ic:where(.navigate) {
    background:linear-gradient(135deg,var(--rose),var(--rose-dark));
    color:#fff;
    transform:scale(1.05)
}

.mob-link.navigate:hover .mob-link-arr:where(.navigate) {
    color:var(--rose);
    transform:translate(3px)
}

.mob-link.mob-active.navigate {
    background:linear-gradient(135deg,var(--rose),var(--rose-dark));
    border-color:transparent;
    color:#fff;
    box-shadow:0 12px 26px #e91e8c66
}

.mob-link.mob-active.navigate .mob-link-ic:where(.navigate) {
    background:#ffffff38;
    border:1px solid rgba(255,255,255,.3);
    color:#fff
}

.mob-active-pill.navigate {
    display:inline-flex;
    align-items:center;
    gap:5px;
    font-size:10px;
    font-weight:700;
    letter-spacing:.06em;
    background:#ffffff38;
    border:1px solid rgba(255,255,255,.3);
    color:#fff;
    padding:3px 10px 3px 8px;
    border-radius:50px
}

.mob-active-pill-dot.navigate {
    width:6px;
    height:6px;
    border-radius:50%;
    background:#a7f3d0;
    box-shadow:0 0 0 2px #a7f3d059,0 0 6px #a7f3d0;
    animation:svelte-rfuq4y-navPulse 2s ease-in-out infinite
}

.mob-ctas.navigate {
    display:flex;
    flex-direction:column;
    gap:10px;
    padding:18px 16px 10px;
    border-top:1px solid rgba(233,30,140,.12)
}

.mob-cta-wa.navigate {
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    background:linear-gradient(135deg,#25d366,#128c7e);
    color:#fff;
    border:none;
    padding:14px 18px;
    border-radius:14px;
    font-size:14px;
    font-weight:700;
    text-decoration:none;
    box-shadow:0 14px 28px #25d36659,inset 0 1px #ffffff40;
    transition:all .3s cubic-bezier(.22,1,.36,1)
}

.mob-cta-wa.navigate:hover {
    transform:translateY(-2px);
    box-shadow:0 18px 36px #25d36680;
    color:#fff
}

.mob-footer.navigate {
    padding:12px 20px 22px;
    text-align:center
}

.mob-avail.navigate {
    display:inline-flex;
    align-items:center;
    gap:7px;
    padding:8px 14px 8px 10px;
    background:#10b9811a;
    border:1px dashed rgba(16,185,129,.3);
    border-radius:50px;
    font-size:11.5px;
    font-weight:600;
    color:#059669;
    letter-spacing:-.01em
}

.mob-dot.navigate {
    width:8px;
    height:8px;
    border-radius:50%;
    background:#10b981;
    box-shadow:0 0 0 3px #10b98140;
    flex-shrink:0;
    animation:svelte-rfuq4y-navPulse 2s ease-in-out infinite
}

@media(max-width:1100px) {
    .nav-links.navigate a:where(.navigate) {
        padding:8px 12px;
        font-size:12.5px
    }

    .nav-wa.navigate {
        padding:9px 14px;
        font-size:12px
    }

    
}

@media(max-width:1024px) {
    .top-strip.navigate,.nav-links.navigate {
        display:none
    }

    .hamburger.navigate {
        display:flex
    }

    
}

@media(max-width:768px) {
    .nav-inner.navigate {
        height:64px;
        gap:10px
    }

    .nav-wa.navigate {
        display:none
    }

    .nav-fav.navigate,.hamburger.navigate {
        width:40px;
        height:40px
    }

    
}

@media(max-width:600px) {
    .logo-main.navigate {
        font-size:15px;
        line-height:1.1
    }

    .logo-tagline.navigate {
        display:inline-flex;
        font-size:8px;
        letter-spacing:.14em;
        margin-top:2px
    }

    .logo-dot.navigate {
        font-size:6px
    }

    
}



    /* Scroll-to-Top Floating Container */
.scroll-top-wrap {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(17, 24, 39, 0.85); /* Matches theme backdrop */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
  cursor: pointer;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px) scale(0.9);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

/* Active class when page is scrolled down */
.scroll-top-wrap.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* SVG Circular Progress Track */
.scroll-progress-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  pointer-events: none;
}

.scroll-progress-circle path {
  fill: none;
  stroke: url(#scrollGrad);
  stroke-width: 4;
  box-sizing: border-box;
  transition: stroke-dashoffset 10ms linear;
}

/* Inner Arrow Icon */
.scroll-top-icon {
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Modern Hover Effects */
.scroll-top-wrap:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 28px rgba(247, 32, 122, 0.35), 0 0 0 1px rgba(247, 32, 122, 0.4);
}

.scroll-top-wrap:hover .scroll-top-icon {
  transform: translateY(-3px);
  color: #f7207a;
}

/* Click / Tap feedback */
.scroll-top-wrap:active {
  transform: translateY(-1px) scale(0.98);
}

.ft.footer-1 {
    position:relative;
    overflow:hidden;
    background:linear-gradient(180deg,#fff7fb,#fffaf2,#fff);
    border-top:1px solid rgba(233,30,140,.12);
    padding-top:56px
}

.ft-orb.footer-1 {
    position:absolute;
    border-radius:50%;
    filter:blur(90px);
    pointer-events:none;
    opacity:.4;
    z-index:0
}

.ft-orb-1.footer-1 {
    top:-100px;
    left:-80px;
    width:360px;
    height:360px;
    background:radial-gradient(circle,rgba(233,30,140,.3),transparent 70%)
}

.ft-orb-2.footer-1 {
    bottom:-100px;
    right:-80px;
    width:380px;
    height:380px;
    background:radial-gradient(circle,rgba(245,158,11,.25),transparent 70%)
}

.ft-line.footer-1 {
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:2px;
    background:linear-gradient(90deg,transparent,rgba(233,30,140,.5),rgba(245,158,11,.5),transparent)
}

.ft.footer-1&gt;
.grid-container:where(.footer-1) {
    position:relative;
    z-index:1
}

.ft-grad.footer-1 {
    background:linear-gradient(135deg,var(--rose),#f59e0b);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text
}

.ft-cta.footer-1 {
    position:relative;
    overflow:hidden;
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    justify-content:space-between;
    gap:28px;
    padding:36px 40px;
    border-radius:26px;
    background:radial-gradient(600px 400px at 0% 100%,rgba(245,158,11,.18),transparent 60%),radial-gradient(600px 400px at 100% 0%,rgba(233,30,140,.18),transparent 60%),linear-gradient(135deg,#fff,#fff6fb);
    border:1px solid rgba(233,30,140,.16);
    box-shadow:0 24px 60px #2d12481a;
    margin-bottom:56px
}

.ft-cta-bg.footer-1 {
    pointer-events:none;
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0
}

.ft-cta-text.footer-1 {
    position:relative;
    z-index:1;
    max-width:560px
}

.ft-cta-pill.footer-1 {
    display:inline-flex;
    align-items:center;
    gap:7px;
    padding:5px 12px 5px 9px;
    background:#fff;
    border:1px solid rgba(233,30,140,.2);
    border-radius:50px;
    font-size:11px;
    font-weight:700;
    letter-spacing:.08em;
    color:var(--rose-dark, #c2185b);
    margin-bottom:12px
}

.ft-cta-pill-dot.footer-1 {
    width:6px;
    height:6px;
    border-radius:50%;
    background:#10b981;
    box-shadow:0 0 0 3px #10b98138;
    animation:svelte-jz8lnl-ftPulse 2s ease-in-out infinite
}

@keyframes svelte-jz8lnl-ftPulse {
    0%,to {
        box-shadow:0 0 0 3px #10b98138
    }

    50% {
        box-shadow:0 0 0 5px #10b98114,0 0 10px #10b98199
    }

    
}

.ft-cta.footer-1 h3:where(.footer-1) {
    font-size:clamp(1.35rem,2.4vw,1.9rem);
    font-weight:700;
    letter-spacing:-.025em;
    line-height:1.15;
    color:#1a0611;
    margin:0 0 8px
}

.ft-cta.footer-1 p:where(.footer-1) {
    font-size:13.5px;
    line-height:1.6;
    color:var(--text-muted);
    margin:0
}

.ft-cta-actions.footer-1 {
    position:relative;
    z-index:1;
    display:flex;
    flex-wrap:wrap;
    gap:10px
}

.ft-cta-btn.footer-1 {
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:12px 22px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    text-decoration:none;
    transition:all .3s cubic-bezier(.22,1,.36,1);
    white-space:nowrap
}

.ft-cta-btn-wa.footer-1 {
    background:linear-gradient(135deg,#25d366,#128c7e);
    color:#fff;
    box-shadow:0 12px 28px #25d36659
}

.ft-cta-btn-wa.footer-1:hover {
    transform:translateY(-2px);
    box-shadow:0 18px 38px #25d36680;
    color:#fff
}

.ft-cta-btn-ghost.footer-1 {
    background:#fff;
    border:1.5px solid rgba(233,30,140,.2);
    color:var(--rose)
}

.ft-cta-btn-ghost.footer-1:hover {
    background:linear-gradient(135deg,var(--rose),var(--rose-dark));
    color:#fff;
    border-color:transparent;
    transform:translateY(-2px);
    box-shadow:0 14px 30px #e91e8c66
}

.ft-grid.footer-1 {
    display:grid;
    grid-template-columns:1.8fr 1fr 1fr 1.4fr;
    gap:40px;
    padding-bottom:48px
}

.ft-logo.footer-1 {
    display:inline-flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
    margin-bottom:16px
}

.ft-logo-mark.footer-1 {
    width:44px;
    height:44px;
    border-radius:13px;
    background:linear-gradient(135deg,var(--rose),var(--rose-dark));
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 24px #e91e8c59
}

.ft-logo-t.footer-1 {
    font-size:18px;
    font-weight:700;
    color:#1a0611;
    letter-spacing:-.02em;
    line-height:1.1
}

.ft-logo-accent.footer-1 {
    background:linear-gradient(135deg,var(--rose),#f59e0b);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text
}

.ft-logo-s.footer-1 {
    font-size:9.5px;
    letter-spacing:.18em;
    color:var(--text-dim, #7b6a90);
    margin-top:4px;
    font-weight:500
}

.ft-desc.footer-1 {
    font-size:13px;
    line-height:1.75;
    color:var(--text-muted);
    margin:0 0 16px;
    max-width:380px
}

.ft-trust.footer-1 {
    display:flex;
    flex-wrap:wrap;
    gap:6px;
    margin-bottom:18px
}

.ft-trust-i.footer-1 {
    display:inline-flex;
    align-items:center;
    gap:5px;
    padding:5px 10px 5px 8px;
    background:#fff;
    border:1px solid rgba(233,30,140,.15);
    border-radius:50px;
    font-size:11px;
    font-weight:600;
    color:#1a0611;
    box-shadow:0 3px 8px #2d12480d
}

.ft-trust-i.footer-1 svg:where(.footer-1) {
    color:var(--rose)
}

.ft-social.footer-1 {
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    max-width:340px
}

.ft-social-btn.footer-1 {
    width:38px;
    height:38px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:all .3s cubic-bezier(.22,1,.36,1);
    border:1px solid transparent
}

.ft-sb-wa.footer-1 {
    background:#25d3661a;
    color:#22c55e;
    border-color:#25d36633
}

.ft-sb-wa.footer-1:hover {
    background:linear-gradient(135deg,#25d366,#128c7e);
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 10px 20px #25d36666
}

.ft-sb-tg.footer-1 {
    background:#29b6f61a;
    color:#0284c7;
    border-color:#29b6f633
}

.ft-sb-tg.footer-1:hover {
    background:linear-gradient(135deg,#29b6f6,#0284c7);
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 10px 20px #29b6f666
}

.ft-sb-ig.footer-1 {
    background:#e91e8c1a;
    color:var(--rose);
    border-color:#e91e8c33
}

.ft-sb-ig.footer-1:hover {
    background:linear-gradient(135deg,#fb923c,#ec4899,#a855f7);
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 10px 20px #e91e8c66
}

.ft-sb-fb.footer-1 {
    background:#4267b21a;
    color:#4267b2;
    border-color:#4267b238
}

.ft-sb-fb.footer-1:hover {
    background:linear-gradient(135deg,#4267b2,#355896);
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 10px 20px #4267b266
}

.ft-sb-tw.footer-1 {
    background:#0f172a14;
    color:#0f172a;
    border-color:#0f172a33
}

.ft-sb-tw.footer-1:hover {
    background:linear-gradient(135deg,#0f172a,#1e293b);
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 10px 20px #0f172a59
}

.ft-sb-yt.footer-1 {
    background:#ef44441a;
    color:#dc2626;
    border-color:#ef444438
}

.ft-sb-yt.footer-1:hover {
    background:linear-gradient(135deg,#ef4444,#b91c1c);
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 10px 20px #ef444466
}

.ft-sb-in.footer-1 {
    background:#0a66c21a;
    color:#0a66c2;
    border-color:#0a66c238
}

.ft-sb-in.footer-1:hover {
    background:linear-gradient(135deg,#0a66c2,#004182);
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 10px 20px #0a66c266
}

.ft-sb-gr.footer-1 {
    background:#78522f1a;
    color:#78522f;
    border-color:#78522f38
}

.ft-sb-gr.footer-1:hover {
    background:linear-gradient(135deg,#78522f,#4d3a26);
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 10px 20px #78522f66
}

.ft-sb-pi.footer-1 {
    background:#e600231a;
    color:#e60023;
    border-color:#e6002338
}

.ft-sb-pi.footer-1:hover {
    background:linear-gradient(135deg,#e60023,#ad001a);
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 10px 20px #e6002366
}

.ft-sb-rd.footer-1 {
    background:#ff45001a;
    color:#ff4500;
    border-color:#ff450040
}

.ft-sb-rd.footer-1:hover {
    background:linear-gradient(135deg,#ff4500,#cc3700);
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 10px 20px #ff450066
}

.ft-sb-qu.footer-1 {
    background:#b92b271a;
    color:#b92b27;
    border-color:#b92b2738
}

.ft-sb-qu.footer-1:hover {
    background:linear-gradient(135deg,#b92b27,#7d1c19);
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 10px 20px #b92b2766
}

.ft-sb-vi.footer-1 {
    background:#1ab7ea1a;
    color:#1ab7ea;
    border-color:#1ab7ea38
}

.ft-sb-vi.footer-1:hover {
    background:linear-gradient(135deg,#1ab7ea,#0b87b0);
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 10px 20px #1ab7ea66
}

.ft-sb-tl.footer-1 {
    background:#354a611a;
    color:#36465d;
    border-color:#354a6138
}

.ft-sb-tl.footer-1:hover {
    background:linear-gradient(135deg,#36465d,#202b3a);
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 10px 20px #354a6166
}

.ft-sb-lb.footer-1 {
    background:#00c3601a;
    color:#00c360;
    border-color:#00c36038
}

.ft-sb-lb.footer-1:hover {
    background:linear-gradient(135deg,#00c360,#008f47);
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 10px 20px #00c36066
}

.ft-sb-ma.footer-1 {
    background:#6364ff1a;
    color:#6364ff;
    border-color:#6364ff38
}

.ft-sb-ma.footer-1:hover {
    background:linear-gradient(135deg,#6364ff,#4143d6);
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 10px 20px #6364ff66
}

.ft-sb-mx.footer-1 {
    background:#ff81001a;
    color:#ff8100;
    border-color:#ff810038
}

.ft-sb-mx.footer-1:hover {
    background:linear-gradient(135deg,#ff8100,#cc6700);
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 10px 20px #ff810066
}

.ft-sb-me.footer-1 {
    background:#12121214;
    color:#121212;
    border-color:#12121233
}

.ft-sb-me.footer-1:hover {
    background:linear-gradient(135deg,#121212,#2d2d2d);
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 10px 20px #12121259
}

.ft-sb-vk.footer-1 {
    background:#4c75a31a;
    color:#4c75a3;
    border-color:#4c75a338
}

.ft-sb-vk.footer-1:hover {
    background:linear-gradient(135deg,#4c75a3,#365579);
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 10px 20px #4c75a366
}

.ft-sb-dm.footer-1 {
    background:#00bafc1a;
    color:#00bafc;
    border-color:#00bafc38
}

.ft-sb-dm.footer-1:hover {
    background:linear-gradient(135deg,#00bafc,#008dc2);
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 10px 20px #00bafc66
}

.ft-sb-bh.footer-1 {
    background:#0534ff1a;
    color:#0057ff;
    border-color:#0534ff38
}

.ft-sb-bh.footer-1:hover {
    background:linear-gradient(135deg,#0057ff,#04c);
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 10px 20px #0534ff66
}

.ft-sb-dr.footer-1 {
    background:#ea4c891a;
    color:#ea4c89;
    border-color:#ea4c8938
}

.ft-sb-dr.footer-1:hover {
    background:linear-gradient(135deg,#ea4c89,#c23469);
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 10px 20px #ea4c8966
}

.ft-sb-ss.footer-1 {
    background:#0077b51a;
    color:#0077b5;
    border-color:#0077b538
}

.ft-sb-ss.footer-1:hover {
    background:linear-gradient(135deg,#0077b5,#005582);
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 10px 20px #0077b566
}

.ft-sb-fl.footer-1 {
    background:#ff00841a;
    color:#ff0084;
    border-color:#ff008438
}

.ft-sb-fl.footer-1:hover {
    background:linear-gradient(135deg,#ff0084,#0063dc);
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 10px 20px #ff008466
}

.ft-sb-sc.footer-1 {
    background:#ff55001a;
    color:#f50;
    border-color:#ff550038
}

.ft-sb-sc.footer-1:hover {
    background:linear-gradient(135deg,#f50,#c40);
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 10px 20px #f506
}

.ft-sb-my.footer-1 {
    background:#0033661a;
    color:#036;
    border-color:#00336638
}

.ft-sb-my.footer-1:hover {
    background:linear-gradient(135deg,#036,#024);
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 10px 20px #0366
}

.ft-sb-pa.footer-1 {
    background:#ff424d1a;
    color:#ff424d;
    border-color:#ff424d38
}

.ft-sb-pa.footer-1:hover {
    background:linear-gradient(135deg,#ff424d,#d6333c);
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 10px 20px #ff424d66
}

.ft-fine.footer-1 {
    position:relative;
    z-index:1;
    margin-top:16px;
    padding-top:14px;
    border-top:1px dashed rgba(233,30,140,.18)
}

.ft-fine.footer-1 p:where(.footer-1) {
    margin:0 0 6px;
    font-size:11.5px;
    color:#6b5876;
    line-height:1.6
}

.ft-fine__note.footer-1 {
    color:#9a7fb8;
    font-style:italic
}

.ft-col.footer-1 h4:where(.footer-1) {
    display:flex;
    align-items:center;
    gap:10px;
    font-size:12px;
    font-weight:700;
    letter-spacing:.14em;
    color:#1a0611;
    text-transform:uppercase;
    margin:4px 0 18px
}

.ft-col-dash.footer-1 {
    width:22px;
    height:2px;
    background:linear-gradient(90deg,var(--rose),#f59e0b);
    border-radius:2px
}

.ft-col.footer-1 ul:where(.footer-1) {
    list-style:none;
    padding:0;
    margin:0;
    display:flex;
    flex-direction:column;
    gap:9px
}

.ft-col.footer-1 ul:where(.footer-1) a:where(.footer-1) {
    display:inline-flex;
    align-items:center;
    gap:7px;
    font-size:13px;
    font-weight:600;
    color:var(--text-muted);
    text-decoration:none;
    transition:all .25s cubic-bezier(.22,1,.36,1);
    width:fit-content
}

.ft-col.footer-1 ul:where(.footer-1) a:where(.footer-1):before {
    content: "";
    width:5px;
    height:5px;
    border-radius:50%;
    background:#e91e8c4d;
    transition:all .25s
}

.ft-col.footer-1 ul:where(.footer-1) a:where(.footer-1):hover {
    color:var(--rose);
    transform:translate(4px)
}

.ft-col.footer-1 ul:where(.footer-1) a:where(.footer-1):hover:before {
    background:var(--rose);
    box-shadow:0 0 0 3px #e91e8c33
}

.ft-col-contact.footer-1 {
    display:flex;
    flex-direction:column;
    gap:10px
}

.ft-col-contact.footer-1 h4:where(.footer-1) {
    margin-bottom:8px
}

.ft-contact.footer-1 {
    position:relative;
    display:flex;
    align-items:center;
    gap:12px;
    padding:12px 14px 12px 12px;
    border-radius:14px;
    text-decoration:none;
    transition:all .3s cubic-bezier(.22,1,.36,1)
}

.ft-contact-wa.footer-1 {
    background:linear-gradient(120deg,#25d36614,#25d3660a);
    border:1px solid rgba(37,211,102,.22);
    color:inherit
}

.ft-contact-wa.footer-1:hover {
    background:linear-gradient(135deg,#25d366,#128c7e);
    border-color:transparent;
    transform:translateY(-2px);
    box-shadow:0 14px 28px #25d36659;
    color:#fff
}

.ft-contact-wa.footer-1:hover .ft-contact-l:where(.footer-1),.ft-contact-wa.footer-1:hover .ft-contact-v:where(.footer-1) {
    color:#fff
}

.ft-contact-wa.footer-1:hover .ft-contact-ic:where(.footer-1) {
    background:#fff3;
    color:#fff;
    border-color:#ffffff4d
}

.ft-contact-wa.footer-1:hover .ft-contact-arr:where(.footer-1) {
    color:#fff
}

.ft-contact-ph.footer-1 {
    background:linear-gradient(120deg,#e91e8c0f,#f59e0b0a);
    border:1px solid rgba(233,30,140,.18);
    color:inherit
}

.ft-contact-ph.footer-1:hover {
    background:linear-gradient(135deg,var(--rose),var(--rose-dark));
    border-color:transparent;
    transform:translateY(-2px);
    box-shadow:0 14px 28px #e91e8c59;
    color:#fff
}

.ft-contact-ph.footer-1:hover .ft-contact-l:where(.footer-1),.ft-contact-ph.footer-1:hover .ft-contact-v:where(.footer-1) {
    color:#fff
}

.ft-contact-ph.footer-1:hover .ft-contact-ic:where(.footer-1) {
    background:#fff3;
    color:#fff;
    border-color:#ffffff4d
}

.ft-contact-ph.footer-1:hover .ft-contact-arr:where(.footer-1) {
    color:#fff
}

.ft-contact-ic.footer-1 {
    width:38px;
    height:38px;
    border-radius:11px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    transition:all .3s
}

.ft-contact-wa.footer-1 .ft-contact-ic:where(.footer-1) {
    background:#25d36629;
    color:#22c55e;
    border:1px solid rgba(37,211,102,.25)
}

.ft-contact-ph.footer-1 .ft-contact-ic:where(.footer-1) {
    background:#e91e8c24;
    color:var(--rose);
    border:1px solid rgba(233,30,140,.22)
}

.ft-contact-body.footer-1 {
    flex:1;
    min-width:0
}

.ft-contact-l.footer-1 {
    display:block;
    font-size:10px;
    font-weight:700;
    letter-spacing:.12em;
    color:var(--text-dim, #7b6a90);
    text-transform:uppercase;
    transition:color .3s
}

.ft-contact-v.footer-1 {
    display:block;
    font-size:13px;
    font-weight:700;
    letter-spacing:-.01em;
    color:#1a0611;
    margin-top:2px;
    transition:color .3s
}

.ft-contact-arr.footer-1 {
    color:var(--text-dim, #c9b8d8);
    flex-shrink:0;
    transition:transform .3s,color .3s
}

.ft-contact.footer-1:hover .ft-contact-arr:where(.footer-1) {
    transform:translate(4px)
}

.ft-avail.footer-1 {
    display:flex;
    align-items:center;
    gap:10px;
    padding:10px 14px;
    background:#10b98114;
    border:1px dashed rgba(16,185,129,.3);
    border-radius:12px
}

.ft-avail-dot.footer-1 {
    width:10px;
    height:10px;
    border-radius:50%;
    background:#10b981;
    box-shadow:0 0 0 3px #10b98140;
    animation:svelte-jz8lnl-ftPulse 2s ease-in-out infinite;
    flex-shrink:0
}

.ft-avail.footer-1 strong:where(.footer-1) {
    display:block;
    font-size:12.5px;
    font-weight:700;
    letter-spacing:-.01em;
    color:#059669
}

.ft-avail.footer-1 span:where(.footer-1) {
    display:block;
    font-size:10.5px;
    font-weight:600;
    color:var(--text-muted);
    margin-top:1px
}

.ft-bottom.footer-1 {
    background:#ffffffb3;
    -webkit-backdrop-filter:blur(8px);
    backdrop-filter:blur(8px);
    border-top:1px solid rgba(233,30,140,.08);
    padding:18px 0;
    position:relative;
    z-index:1
}

.ft-bottom-inner.footer-1 {
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:12px
}

.ft-bottom-inner.footer-1 p:where(.footer-1) {
    font-size:12px;
    font-weight:600;
    color:var(--text-muted);
    margin:0
}

.ft-sep.footer-1 {
    color:var(--text-dim, #c9b8d8)
}

.ft-bottom-links.footer-1 {
    display:flex;
    flex-wrap:wrap;
    gap:8px
}

.ft-bottom-links.footer-1 a:where(.footer-1) {
    font-size:11.5px;
    font-weight:600;
    padding:8px 16px;
    border-radius:50px;
    color:var(--rose-dark, #c2185b);
    background:#fff;
    border:1px solid rgba(233,30,140,.2);
    text-decoration:none;
    box-shadow:0 3px 8px #2d12480f;
    transition:all .25s cubic-bezier(.22,1,.36,1)
}

.ft-bottom-links.footer-1 a:where(.footer-1):hover {
    background:linear-gradient(135deg,var(--rose),var(--rose-dark));
    color:#fff;
    border-color:transparent;
    transform:translateY(-2px);
    box-shadow:0 8px 18px #e91e8c59
}

@media(max-width:1024px) {
    .ft-grid.footer-1 {
        grid-template-columns:1.2fr 1fr;
        gap:36px 40px
    }

    .ft-brand.footer-1 {
        grid-column:1;
        grid-row:1
    }

    .ft-col-contact.footer-1 {
        grid-column:2;
        grid-row:1
    }

    .ft-col.footer-1:nth-of-type(2) {
        grid-column:1;
        grid-row:2
    }

    .ft-col.footer-1:nth-of-type(3) {
        grid-column:2;
        grid-row:2
    }

    .ft-cta.footer-1 {
        padding:28px
    }

    .ft-contact.footer-1 {
        padding:10px 12px
    }

    .ft-contact-ic.footer-1 {
        width:34px;
        height:34px;
        border-radius:10px
    }

    .ft-desc.footer-1 {
        max-width:100%
    }

    
}

@media(max-width:768px) {
    .ft.footer-1 {
        padding-top:40px
    }

    .ft-cta.footer-1 {
        padding:24px 22px;
        gap:20px;
        margin-bottom:40px
    }

    .ft-cta.footer-1 h3:where(.footer-1) {
        font-size:1.3rem
    }

    .ft-cta.footer-1 p:where(.footer-1) {
        font-size:12.5px
    }

    .ft-cta-actions.footer-1 {
        flex:0 0 auto
    }

    .ft-cta-btn.footer-1 {
        padding:10px 16px;
        font-size:12.5px
    }

    .ft-grid.footer-1 {
        grid-template-columns:1fr 1fr;
        gap:28px 24px
    }

    .ft-brand.footer-1 {
        grid-column:1;
        grid-row:1;
        text-align:left
    }

    .ft-col-contact.footer-1 {
        grid-column:2;
        grid-row:1
    }

    .ft-col.footer-1:nth-of-type(2) {
        grid-column:1;
        grid-row:2
    }

    .ft-col.footer-1:nth-of-type(3) {
        grid-column:2;
        grid-row:2
    }

    .ft-logo.footer-1 {
        margin-left:0;
        margin-right:auto
    }

    .ft-desc.footer-1 {
        margin-left:0;
        margin-right:0;
        max-width:100%;
        font-size:12.5px
    }

    .ft-trust.footer-1,.ft-social.footer-1 {
        justify-content:flex-start
    }

    .ft-logo-t.footer-1 {
        font-size:16px
    }

    .ft-logo-s.footer-1 {
        font-size:9px
    }

    .ft-bottom-inner.footer-1 {
        flex-direction:column;
        text-align:center;
        gap:14px
    }

    .ft-bottom-inner.footer-1 p:where(.footer-1) {
        font-size:11.5px;
        padding:10px 16px;
        background:#ffffffd9;
        border:1px solid rgba(233,30,140,.1);
        border-radius:14px;
        box-shadow:0 4px 12px #2d12480a
    }

    .ft-bottom-links.footer-1 {
        justify-content:center;
        width:100%;
        gap:8px
    }

    .ft-bottom-links.footer-1 a:where(.footer-1) {
        flex:1 1 auto;
        min-width:0;
        text-align:center;
        padding:9px 10px;
        font-size:11.5px;
        white-space:nowrap
    }

    
}

@media(max-width:600px) {
    .ft-cta.footer-1 {
        flex-direction:column;
        align-items:stretch;
        padding:22px 18px
    }

    .ft-cta-text.footer-1 {
        text-align:center
    }

    .ft-cta-pill.footer-1 {
        margin-left:auto;
        margin-right:auto
    }

    .ft-cta-actions.footer-1 {
        flex-direction:column;
        width:100%
    }

    .ft-cta-btn.footer-1 {
        width:100%;
        justify-content:center;
        padding:12px 16px
    }

    .ft-grid.footer-1 {
        grid-template-columns:1fr;
        gap:28px
    }

    .ft-brand.footer-1 {
        grid-column:1;
        grid-row:auto;
        text-align:center
    }

    .ft-col-contact.footer-1 {
        grid-column:1;
        grid-row:auto
    }

    .ft-col.footer-1:nth-of-type(2),.ft-col.footer-1:nth-of-type(3) {
        grid-column:1;
        grid-row:auto
    }

    .ft-logo.footer-1 {
        margin-left:auto;
        margin-right:auto
    }

    .ft-desc.footer-1 {
        margin-left:auto;
        margin-right:auto;
        max-width:420px
    }

    .ft-trust.footer-1,.ft-social.footer-1 {
        justify-content:center
    }

    
}

@media(max-width:480px) {
    .ft-grid.footer-1 {
        grid-template-columns:1fr;
        gap:28px
    }

    .ft-cta.footer-1 h3:where(.footer-1) {
        font-size:1.4rem
    }

    
}

.toast.svelte-1cpok13 {
    position:fixed;
    bottom:28px;
    left:50%;
    transform:translate(-50%);
    z-index:9000;
    display:flex;
    align-items:center;
    gap:12px;
    padding:14px 18px;
    border-radius:16px;
    min-width:300px;
    max-width:480px;
    box-shadow:0 8px 40px #0000002e,0 2px 8px #00000014;
    white-space:nowrap
}

.toast-add.svelte-1cpok13 {
    background:linear-gradient(135deg,#e91e8c,#c2185b);
    color:#fff
}

.toast-remove.svelte-1cpok13 {
    background:#fff;
    color:#333;
    border:1.5px solid #e8d8e4
}

.toast-icon.svelte-1cpok13 {
    width:36px;
    height:36px;
    border-radius:10px;
    background:#fff3;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0
}

.toast-remove.svelte-1cpok13 .toast-icon:where(.svelte-1cpok13) {
    background:#e91e8c14;
    color:var(--rose)
}

.toast-body.svelte-1cpok13 {
    flex:1;
    min-width:0
}

.toast-title.svelte-1cpok13 {
    font-size:13px;
    font-weight:500
}

.toast-sub.svelte-1cpok13 {
    font-size:11px;
    opacity:.8;
    margin-top:1px
}

.toast-remove.svelte-1cpok13 .toast-sub:where(.svelte-1cpok13) {
    color:#888
}

.toast-action.svelte-1cpok13 {
    font-size:12px;
    font-weight:600;
    background:#ffffff38;
    color:#fff;
    text-decoration:none;
    padding:6px 14px;
    border-radius:20px;
    white-space:nowrap;
    transition:background .2s
}

.toast-action.svelte-1cpok13:hover {
    background:#ffffff59;
    color:#fff
}

.toast-close.svelte-1cpok13 {
    width:28px;
    height:28px;
    border-radius:8px;
    background:#ffffff26;
    border:none;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    flex-shrink:0;
    transition:background .2s
}

.toast-remove.svelte-1cpok13 .toast-close:where(.svelte-1cpok13) {
    color:#666;
    background:#0000000f
}

.toast-close.svelte-1cpok13:hover {
    background:#ffffff4d
}

@media(max-width:480px) {
    .toast.svelte-1cpok13 {
        min-width:calc(100vw - 32px);
        max-width:calc(100vw - 32px);
        bottom:20px
    }

    
}

.maint-banner.age-verify {
    position:sticky;
    top:0;
    z-index:9998;
    display:flex;
    align-items:center;
    gap:8px;
    padding:8px 14px;
    background:linear-gradient(135deg,#fef3c7,#fde68a);
    color:#854d0e;
    border-bottom:1px solid rgba(217,119,6,.35);
    font-size:12.5px;
    font-weight:600
}

.maint-banner.age-verify strong:where(.age-verify) {
    font-weight:600
}

.maint-banner.age-verify em:where(.age-verify) {
    font-style:normal;
    opacity:.85
}

.maint-banner.age-verify svg:where(.age-verify) {
    color:#d97706;
    flex-shrink:0
}

.age-overlay.age-verify {
    position:fixed;
    top:0;
    right:0;
    bottom:0;
    left:0;
    background:#fff0f7c7;
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    z-index:9999;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
    overflow-y:auto
}

.age-box.age-verify {
    background:#fff;
    border:1px solid var(--border);
    border-radius:24px;
    padding:48px 40px;
    max-width:460px;
    width:100%;
    text-align:center;
    box-shadow:0 20px 60px #e91e8c2e;
    animation:svelte-1l0quee-ageIn .35s ease
}

@keyframes svelte-1l0quee-ageIn {
    0% {
        opacity:0;
        transform:scale(.94) translateY(16px)
    }

    to {
        opacity:1;
        transform:none
    }

    
}

.age-logo.age-verify {
    display:flex;
    align-items:center;
    justify-content:center;
    gap:13px;
    margin-bottom:24px;
    filter:drop-shadow(0 4px 12px rgba(233,30,140,.3))
}

.age-icon-wrap.age-verify {
    width:68px;
    height:68px;
    border-radius:18px;
    background:var(--rose-subtle);
    border:1px solid rgba(233,30,140,.2);
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px
}

.age-box.age-verify h2:where(.age-verify) {
    font-size:1.7rem;
    color:var(--heading);
    margin-bottom:12px;
    letter-spacing:-.02em
}

.age-box.age-verify&gt;
p:where(.age-verify) {
    color:var(--text-muted);
    margin-bottom:28px;
    font-size:14px;
    line-height:1.7
}

.age-btns.age-verify {
    display:flex;
    flex-direction:column;
    gap:10px;
    margin-bottom:16px
}

.age-enter.age-verify {
    justify-content:center;
    padding:15px 36px;
    font-size:15px
}

.age-exit.age-verify {
    background:transparent;
    border:1.5px solid var(--border);
    color:var(--text-muted);
    padding:13px 36px;
    border-radius:var(--radius-sm);
    font-size:14px;
    font-weight:600;
    cursor:pointer;
    transition:var(--transition);
    font-family:inherit
}

.age-exit.age-verify:hover {
    border-color:var(--rose);
    color:var(--rose)
}

.age-disclaimer.age-verify {
    font-size:11px;
    color:var(--text-dim)
}

.age-disclaimer.age-verify a:where(.age-verify) {
    color:var(--text-muted);
    text-decoration:underline
}

.scroll-top-float.age-verify {
    position:fixed;
    bottom:28px;
    right:28px;
    z-index:999;
    width:48px;
    height:48px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--rose),var(--rose-dark));
    color:#fff;
    border:none;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 4px 20px #e91e8c66;
    transition:transform .2s ease,box-shadow .2s ease;
    animation:svelte-1l0quee-fadeInUp .25s ease
}

.scroll-top-float.age-verify:hover {
    transform:translateY(-3px);
    box-shadow:0 8px 28px #e91e8c80
}

@keyframes svelte-1l0quee-fadeInUp {
    0% {
        opacity:0;
        transform:translateY(12px)
    }

    to {
        opacity:1;
        transform:translateY(0)
    }

    
}



.pcard.profile-card-1 {
    display:flex;
    flex-direction:column;
    background:var(--bg-card);
    border:1px solid var(--border);
    border-radius:var(--radius);
    overflow:hidden;
    text-decoration:none;
    transition:all .28s ease;
    box-shadow:var(--shadow-card);
    position:relative
}

.pcard.profile-card-1:hover {
    transform:translateY(-5px);
    border-color:#e91e8c38;
    box-shadow:0 14px 36px #e91e8c1f
}

.pcard-media.profile-card-1 {
    position:relative;
    height:260px;
    overflow:hidden;
    flex-shrink:0;
    order:-1;
    background:var(--ph-gradient)
}

.pcard-photo.profile-card-1 {
    position:relative;
    width:100%;
    height:100%
}

.pcard-img.profile-card-1 {
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center top;
    transition:opacity .5s ease,transform .6s cubic-bezier(.22,1,.36,1)
}

.pcard-img-primary.profile-card-1 {
    opacity:1;
    z-index:1
}

.pcard-img-hover.profile-card-1 {
    opacity:0;
    z-index:2;
    pointer-events:none
}

.pcard.profile-card-1:hover .pcard-img-primary:where(.profile-card-1) {
    opacity:0;
    transform:scale(1.04)
}

.pcard.profile-card-1:hover .pcard-img-hover:where(.profile-card-1) {
    opacity:1;
    transform:scale(1.04)
}

.pbadge.profile-card-1 {
    position:absolute;
    top:10px;
    z-index:5;
    display:inline-flex;
    align-items:center;
    gap:5px;
    font-size:10px;
    font-weight:500;
    letter-spacing:.3px;
    padding:5px 11px 5px 8px;
    border-radius:30px;
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
    box-shadow:0 2px 12px #00000024,inset 0 1px #ffffff40
}

.pbadge-gold.profile-card-1 {
    left:10px;
    background:linear-gradient(135deg,#f59e0beb,#b46400e0);
    color:#fff;
    border:1px solid rgba(255,210,90,.35)
}

.badge-dot.profile-card-1 {
    display:none
}

.pbadge-teal.profile-card-1 {
    right:10px;
    background:linear-gradient(135deg,#10b981e0,#059669d6);
    color:#fff;
    border:1px solid rgba(110,231,183,.3)
}

.rating-chip.profile-card-1 {
    position:absolute;
    bottom:10px;
    right:10px;
    z-index:5;
    display:inline-flex;
    align-items:center;
    gap:5px;
    background:#ffffffe0;
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.6);
    color:#92400e;
    font-size:12px;
    font-weight:600;
    padding:5px 11px;
    border-radius:30px;
    box-shadow:0 2px 12px #0000001a,inset 0 1px #fffc
}

.pcard-body.profile-card-1 {
    padding:16px 16px 18px;
    display:flex;
    flex-direction:column;
    flex:1
}

.pcard-name.profile-card-1 {
    font-size:16px;
    font-weight:600;
    color:var(--heading);
    margin-bottom:8px;
    display:flex;
    align-items:center;
    gap:6px;
    letter-spacing:-.02em
}

.pcard-meta.profile-card-1 {
    display:flex;
    flex-wrap:wrap;
    gap:5px;
    margin-bottom:14px
}

.meta-pill.profile-card-1 {
    display:inline-flex;
    align-items:center;
    gap:3px;
    background:var(--bg-3);
    color:var(--text-muted);
    font-size:11px;
    font-weight:600;
    padding:3px 9px;
    border-radius:20px;
    border:1px solid var(--border)
}

.meta-loc.profile-card-1 {
    color:var(--rose);
    background:var(--rose-subtle);
    border-color:#e91e8c26
}

.meta-cat.profile-card-1 {
    color:var(--purple);
    background:#7c3aed0f;
    border-color:#7c3aed26
}

.pcard-stats.profile-card-1 {
    display:flex;
    align-items:center;
    border-top:1px solid var(--border);
    padding-top:12px;
    margin-bottom:14px
}

.pstat.profile-card-1 {
    flex:1;
    text-align:center;
    padding:2px 0
}

.pstat-divider.profile-card-1 {
    width:1px;
    height:28px;
    background:var(--border);
    flex-shrink:0
}

.pstat-val.profile-card-1 {
    font-size:13px;
    font-weight:600;
    color:var(--heading);
    margin-bottom:2px
}

.pstat-val.price.profile-card-1 {
    color:var(--rose);
    font-size:14px
}

.pstat-lbl.profile-card-1 {
    font-size:10px;
    color:var(--text-dim);
    text-transform:uppercase;
    letter-spacing:.3px
}

.fav-btn.profile-card-1 {
    width:36px;
    height:36px;
    border-radius:50%;
    border:1.5px solid var(--border);
    background:var(--bg-3);
    color:var(--text-muted);
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:all .22s ease;
    margin:0 auto 2px
}

.fav-btn.profile-card-1:hover {
    border-color:var(--rose);
    background:var(--rose-subtle);
    color:var(--rose);
    transform:scale(1.12)
}

.fav-btn.fav-active.profile-card-1 {
    border-color:var(--rose);
    background:var(--rose-subtle);
    color:var(--rose)
}

.fav-btn.fav-anim.profile-card-1 {
    animation:svelte-1j7scqf-heartPop .5s cubic-bezier(.36,.07,.19,.97)
}

@keyframes svelte-1j7scqf-heartPop {
    0% {
        transform:scale(1)
    }

    30% {
        transform:scale(1.4)
    }

    60% {
        transform:scale(.9)
    }

    to {
        transform:scale(1)
    }

    
}

.pcard-cta.profile-card-1 {
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    background:var(--rose-subtle);
    color:var(--rose);
    border:1px solid rgba(233,30,140,.2);
    border-radius:var(--radius-sm);
    padding:11px;
    font-size:13px;
    font-weight:500;
    transition:all .35s cubic-bezier(.22,1,.36,1);
    margin-top:auto;
    overflow:hidden;
    isolation:isolate
}

.pcard-cta.profile-card-1:before {
    content: "";
    position:absolute;
    top:0;
    left:-100%;
    width:60%;
    height:100%;
    background:linear-gradient(120deg,transparent,rgba(255,255,255,.45),transparent);
    transform:skew(-20deg);
    transition:left .7s ease;
    z-index:1
}

.pcard-cta.profile-card-1 svg:where(.profile-card-1) {
    transition:transform .3s ease
}

.pcard.profile-card-1:hover .pcard-cta:where(.profile-card-1) {
    background:linear-gradient(135deg,#ff5ba8 0%,var(--rose) 50%,var(--rose-dark) 100%);
    color:#fff;
    border-color:transparent;
    box-shadow:0 8px 22px #e91e8c59,inset 0 1px #ffffff40
}

.pcard.profile-card-1:hover .pcard-cta:where(.profile-card-1):before {
    left:130%
}

.pcard.profile-card-1:hover .pcard-cta:where(.profile-card-1) svg:where(.profile-card-1) {
    transform:translate(4px)
}

@media(max-width:480px) {
    .pcard-media.profile-card-1 {
        height:150px
    }

    .pbadge.profile-card-1 {
        font-size:0;
        gap:0;
        padding:5px;
        border-radius:50%;
        width:22px;
        height:22px;
        justify-content:center
    }

    .pbadge.profile-card-1 svg:where(.profile-card-1) {
        width:11px;
        height:11px;
        flex-shrink:0
    }

    .badge-dot.profile-card-1 {
        display:none
    }

    .rating-chip.profile-card-1 {
        font-size:10px;
        padding:4px 8px;
        gap:3px;
        bottom:7px;
        right:7px
    }

    .rating-chip.profile-card-1 svg:where(.profile-card-1) {
        width:9px;
        height:9px
    }

    .pcard-body.profile-card-1 {
        padding:9px 9px 10px
    }

    .pcard-name.profile-card-1 {
        font-size:12px;
        font-weight:600;
        margin-bottom:5px;
        white-space:nowrap;
        overflow:hidden;
        text-overflow:ellipsis;
        display:block
    }

    .pcard-name.profile-card-1 svg:where(.profile-card-1) {
        display:none
    }

    .pcard-meta.profile-card-1 {
        gap:3px;
        margin-bottom:7px;
        flex-wrap:nowrap;
        overflow:hidden
    }

    .meta-pill.profile-card-1 {
        font-size:9px;
        padding:2px 6px;
        white-space:nowrap
    }

    .meta-pill.profile-card-1 svg:where(.profile-card-1) {
        width:8px;
        height:8px
    }

    .meta-cat.profile-card-1 {
        display:none
    }

    .pcard-stats.profile-card-1 {
        padding-top:7px;
        margin-bottom:7px
    }

    .pstat-views.profile-card-1 {
        display:none
    }

    .pstat-divider.profile-card-1:last-of-type {
        display:none!important
    }

    .pstat-val.profile-card-1 {
        font-size:11px
    }

    .pstat-val.price.profile-card-1 {
        font-size:12px
    }

    .pstat-lbl.profile-card-1 {
        font-size:8px;
        letter-spacing:0
    }

    .fav-btn.profile-card-1 {
        width:28px;
        height:28px
    }

    .fav-btn.profile-card-1 svg:where(.profile-card-1) {
        width:14px;
        height:14px
    }

    .pcard-cta.profile-card-1 {
        padding:7px 6px;
        font-size:11px;
        font-weight:500;
        border-radius:7px
    }

    .pcard-cta.profile-card-1 svg:where(.profile-card-1) {
        display:none
    }

    .pcard.profile-card-1:hover {
        transform:none
    }

    
}



.qv-overlay.hero-pro {
    position:fixed;
    top:0;
    right:0;
    bottom:0;
    left:0;
    z-index:200;
    background:#0f172a8c;
    -webkit-backdrop-filter:blur(12px) saturate(140%);
    backdrop-filter:blur(12px) saturate(140%);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
    animation:svelte-13wmnd-qvFade .2s
}



@keyframes svelte-13wmnd-qvFade {
    0% {
        opacity:0
    }

    to {
        opacity:1
    }

    
}



.qv-card.hero-pro {
    position:relative;
    width:100%;
    max-width:720px;
    max-height:92vh;
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    display:grid;
    grid-template-columns:300px 1fr;
    box-shadow:0 0 0 1px #0f172a0a,0 40px 80px -20px #0f172a59;
    animation:svelte-13wmnd-qvPop .32s cubic-bezier(.16,1,.3,1)
}

@keyframes svelte-13wmnd-qvPop {
    0% {
        opacity:0;
        transform:translateY(16px) scale(.96)
    }

    to {
        opacity:1;
        transform:translateY(0) scale(1)
    }

    
}

.qv-close.hero-pro {
    position:absolute;
    top:14px;
    right:14px;
    z-index:5;
    background:#ffffffeb;
    -webkit-backdrop-filter:blur(8px);
    backdrop-filter:blur(8px);
    border:1px solid rgba(15,23,42,.06);
    color:#0f172a;
    width:34px;
    height:34px;
    border-radius:10px;
    cursor:pointer;
    display:grid;
    place-items:center;
    transition:all .15s;
    box-shadow:0 4px 10px -2px #0003
}

.qv-close.hero-pro:hover {
    background:#0f172a;
    color:#fff;
    transform:rotate(90deg)
}

.qv-photo.hero-pro {
    position:relative;
    background:#0f172a;
    overflow:hidden
}

.qv-photo.hero-pro img:where(.hero-pro) {
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center top;
    display:block
}

.qv-photo-overlay.hero-pro {
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    background:linear-gradient(180deg,rgba(0,0,0,.15) 0%,transparent 25%,transparent 70%,rgba(0,0,0,.4) 100%);
    pointer-events:none
}

.qv-badges.hero-pro {
    position:absolute;
    top:14px;
    left:14px;
    display:flex;
    flex-direction:column;
    gap:6px
}

.qv-badge.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:4px;
    padding:4px 9px;
    border-radius:999px;
    font-size:10.5px;
    font-weight:600;
    letter-spacing:.3px;
    -webkit-backdrop-filter:blur(8px);
    backdrop-filter:blur(8px)
}

.qv-badge-verified.hero-pro {
    background:#10b981eb;
    color:#fff
}

.qv-badge-rating.hero-pro {
    background:#fffffff2;
    color:#0f172a
}

.qv-live.hero-pro {
    position:absolute;
    bottom:14px;
    left:14px;
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:5px 11px 5px 9px;
    border-radius:999px;
    background:#fffffff2;
    -webkit-backdrop-filter:blur(8px);
    backdrop-filter:blur(8px);
    color:#047857;
    font-size:11px;
    font-weight:500;
    box-shadow:0 4px 10px -2px #00000040
}

.qv-live-dot.hero-pro {
    width:7px;
    height:7px;
    border-radius:50%;
    background:#10b981;
    box-shadow:0 0 8px #10b981;
    animation:svelte-13wmnd-qvPulse 2s ease-in-out infinite
}

@keyframes svelte-13wmnd-qvPulse {
    0%,to {
        opacity:1
    }

    50% {
        opacity:.6
    }

    
}

.qv-body.hero-pro {
    padding:26px 28px 24px;
    display:flex;
    flex-direction:column;
    gap:16px;
    overflow-y:auto
}

.qv-top.hero-pro h2:where(.hero-pro) {
    margin:0 0 10px;
    font-size:24px;
    font-weight:600;
    color:#0f172a;
    letter-spacing:-.4px;
    line-height:1.2
}

.qv-meta-row.hero-pro {
    display:flex;
    flex-wrap:wrap;
    gap:6px
}

.qv-chip.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:4px;
    padding:4px 10px;
    border-radius:999px;
    background:#fff1f7;
    color:#be185d;
    font-size:11.5px;
    font-weight:500;
    border:1px solid #fce7f3
}

.qv-chip.hero-pro svg:where(.hero-pro) {
    color:#e91e8c
}

.qv-bio-wrap.hero-pro {
    padding:12px 14px;
    border-radius:10px;
    background:#f8fafc;
    border:1px solid #f1f5f9
}

.qv-bio.hero-pro {
    margin:0;
    font-size:13px;
    color:#64748b;
    line-height:1.55;
    white-space:pre-wrap
}

.qv-bio--clamped.hero-pro {
    display:-webkit-box;
    -webkit-line-clamp:4;
    -webkit-box-orient:vertical;
    overflow:hidden
}

.qv-bio-toggle.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:4px;
    margin-top:8px;
    padding:4px 10px;
    background:transparent;
    border:none;
    cursor:pointer;
    font-size:12px;
    font-weight:600;
    color:#e91e8c;
    border-radius:6px;
    transition:background .2s ease,color .2s ease
}

.qv-bio-toggle.hero-pro:hover {
    background:#e91e8c14;
    color:#be185d
}

.qv-rates.hero-pro {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:8px
}

.qv-rate.hero-pro {
    padding:12px;
    border-radius:11px;
    background:linear-gradient(135deg,#fff5fa,#fff);
    border:1px solid #fce7f3;
    text-align:center
}

.qv-rate.hero-pro small:where(.hero-pro) {
    display:block;
    font-size:9.5px;
    color:#94a3b8;
    font-weight:500;
    text-transform:uppercase;
    letter-spacing:.6px;
    margin-bottom:3px
}

.qv-rate.hero-pro strong:where(.hero-pro) {
    display:block;
    font-size:15px;
    font-weight:600;
    color:#0f172a;
    letter-spacing:-.3px
}

.qv-section.hero-pro {
    display:flex;
    flex-direction:column;
    gap:8px
}

.qv-section-title.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:6px;
    font-size:10.5px;
    font-weight:600;
    color:#64748b;
    text-transform:uppercase;
    letter-spacing:.8px
}

.qv-section-title.hero-pro svg:where(.hero-pro) {
    color:#ec4899
}

.qv-attrs.hero-pro {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:6px
}

.qv-attr.hero-pro {
    padding:8px 10px;
    border-radius:9px;
    background:#f8fafc;
    border:1px solid #f1f5f9;
    display:flex;
    flex-direction:column;
    gap:2px
}

.qv-attr.hero-pro small:where(.hero-pro) {
    font-size:9.5px;
    color:#94a3b8;
    font-weight:500;
    text-transform:uppercase;
    letter-spacing:.5px
}

.qv-attr.hero-pro strong:where(.hero-pro) {
    font-size:13px;
    color:#0f172a;
    font-weight:500;
    letter-spacing:-.2px
}

.qv-gallery.hero-pro {
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:6px
}

.qv-thumb.hero-pro {
    aspect-ratio:1;
    border-radius:8px;
    background-size:cover;
    background-position:center;
    background-color:#f1f5f9;
    border:1px solid #f1f5f9;
    transition:transform .2s,border-color .2s
}

.qv-thumb.hero-pro:hover {
    transform:scale(1.05);
    border-color:#e91e8c
}

.qv-thumb-more.hero-pro {
    display:grid;
    place-items:center;
    background:linear-gradient(135deg,#fdf2f8,#fce7f3);
    color:#be185d;
    font-size:12px;
    font-weight:600;
    border-color:#fce7f3
}

.qv-hint.hero-pro {
    font-size:11px;
    color:#94a3b8;
    text-align:center;
    margin-top:auto;
    padding-top:8px
}

.qv-hint.hero-pro kbd:where(.hero-pro) {
    display:inline-flex;
    padding:2px 7px;
    border-radius:5px;
    background:#f1f5f9;
    border:1px solid #e2e8f0;
    font-family:ui-monospace,SF Mono,Menlo,monospace;
    font-size:10.5px;
    font-weight:600;
    color:#475569
}

@media(max-width:720px) {
    .qv-card.hero-pro {
        grid-template-columns:1fr;
        max-width:420px;
        max-height:92vh;
        overflow-y:auto
    }

    .qv-photo.hero-pro {
        aspect-ratio:4/3
    }

    .qv-attrs.hero-pro {
        grid-template-columns:repeat(2,1fr)
    }

    .qv-gallery.hero-pro {
        grid-template-columns:repeat(4,1fr)
    }

    
}

.feat-section.hero-pro {
    position:relative;
    overflow:hidden;
    background:radial-gradient(1100px 700px at 12% 10%,rgba(233,30,140,.12) 0%,transparent 55%),radial-gradient(1000px 650px at 88% 90%,rgba(124,58,237,.12) 0%,transparent 55%),radial-gradient(700px 500px at 50% 50%,rgba(245,196,107,.08) 0%,transparent 65%),linear-gradient(180deg,#fff9fc,#fdf4fa,#fff5fb)
}

.feat-section.hero-pro&gt;
.grid-container:where(.hero-pro) {
    position:relative;
    z-index:1
}

.feat-bg-orb.hero-pro {
    position:absolute;
    border-radius:50%;
    filter:blur(90px);
    opacity:.5;
    pointer-events:none;
    z-index:0
}

.feat-bg-orb-1.hero-pro {
    top:-120px;
    left:-100px;
    width:380px;
    height:380px;
    background:radial-gradient(circle,rgba(233,30,140,.35),transparent 70%)
}

.feat-bg-orb-2.hero-pro {
    bottom:-140px;
    right:-100px;
    width:420px;
    height:420px;
    background:radial-gradient(circle,rgba(124,58,237,.28),transparent 70%)
}

.feat-bg-orb-3.hero-pro {
    top:35%;
    left:45%;
    width:280px;
    height:280px;
    background:radial-gradient(circle,rgba(245,196,107,.35),transparent 70%);
    opacity:.35
}

.feat-bg-grid.hero-pro {
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    z-index:0;
    pointer-events:none;
    background-image:linear-gradient(to right,rgba(233,30,140,.05) 1px,transparent 1px),linear-gradient(to bottom,rgba(233,30,140,.05) 1px,transparent 1px);
    background-size:44px 44px;
    -webkit-mask-image:radial-gradient(ellipse 70% 70% at 50% 40%,#000 40%,transparent 90%);
    mask-image:radial-gradient(ellipse 70% 70% at 50% 40%,#000 40%,transparent 90%)
}

.feat-header.hero-pro {
    text-align:center;
    max-width:720px;
    margin:0 auto 48px
}

.feat-chip.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:7px 16px 7px 12px;
    margin-bottom:18px;
    background:#ffffffd9;
    border:1px solid rgba(245,196,107,.4);
    border-radius:50px;
    font-size:11px;
    font-weight:600;
    letter-spacing:.16em;
    color:#b45309;
    -webkit-backdrop-filter:blur(10px);
    backdrop-filter:blur(10px);
    box-shadow:0 6px 18px #f59e0b26
}

.feat-chip-dot.hero-pro {
    width:7px;
    height:7px;
    border-radius:50%;
    background:#10b981;
    box-shadow:0 0 0 3px #10b98133;
    animation:svelte-13wmnd-livePulse 1.6s ease-in-out infinite
}

.feat-heading.hero-pro {
    font-size:3rem;
    font-weight:600;
    letter-spacing:-.035em;
    line-height:1.1;
    color:var(--heading);
    margin:0 0 16px
}

.feat-accent.hero-pro {
    background:linear-gradient(135deg,var(--rose) 0%,#c026d3 50%,#f59e0b 100%);
    background-size:200% auto;
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
    animation:svelte-13wmnd-gradShift 7s linear infinite
}

.feat-sub.hero-pro {
    font-size:15.5px;
    color:var(--text-muted);
    line-height:1.75;
    max-width:560px;
    margin:0 auto 24px
}

.feat-meta-row.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:8px;
    flex-wrap:wrap;
    justify-content:center
}

.feat-meta-pill.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:7px 14px;
    background:#fffc;
    border:1px solid rgba(45,18,72,.08);
    border-radius:50px;
    font-size:12px;
    font-weight:500;
    color:var(--heading);
    -webkit-backdrop-filter:blur(8px);
    backdrop-filter:blur(8px);
    box-shadow:0 4px 12px #2d12480d
}

.feat-meta-pill.hero-pro svg:where(.hero-pro) {
    color:var(--rose)
}

.feat-meta-live.hero-pro {
    width:7px;
    height:7px;
    background:#10b981;
    border-radius:50%;
    box-shadow:0 0 0 3px #10b98133;
    animation:svelte-13wmnd-livePulse 1.5s ease-in-out infinite
}

.feat-view-all.hero-pro {
    position:relative;
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 30px;
    background:linear-gradient(135deg,#ec4899,#e91e8c,#db2777);
    color:#fff;
    font-size:14px;
    font-weight:600;
    letter-spacing:.02em;
    border-radius:50px;
    text-decoration:none;
    box-shadow:0 12px 32px #e91e8c59,inset 0 1px #ffffff59;
    transition:transform .3s ease,box-shadow .3s ease;
    overflow:hidden;
    margin-top:8px
}

.feat-view-all.hero-pro:before {
   content: "";
    position:absolute;
    top:0;
    left:-100%;
    width:50%;
    height:100%;
    background:linear-gradient(120deg,transparent,rgba(255,255,255,.4),transparent);
    transform:skew(-20deg);
    animation:svelte-13wmnd-btnShine 3s ease-in-out infinite
}

.feat-view-all.hero-pro:hover {
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 18px 44px #e91e8c80,inset 0 1px #fff6
}

.feat-view-all.hero-pro svg:where(.hero-pro) {
    transition:transform .3s ease
}

.feat-view-all.hero-pro:hover svg:where(.hero-pro) {
    transform:translate(4px)
}

.feat-section.hero-pro .view-all-wrap:where(.hero-pro) {
    text-align:center;
    margin-top:44px
}

@media(max-width:1024px) {
    .feat-heading.hero-pro {
        font-size:2.4rem
    }

    
}

@media(max-width:768px) {
    .feat-header.hero-pro {
        margin-bottom:32px
    }

    .feat-heading.hero-pro {
        font-size:2rem
    }

    .feat-sub.hero-pro {
        font-size:14px
    }

    .feat-meta-pill.hero-pro {
        font-size:11px;
        padding:6px 12px
    }

    
}

@media(max-width:480px) {
    .feat-heading.hero-pro {
        font-size:1.7rem
    }

    .feat-bg-orb-3.hero-pro {
        display:none
    }

    .feat-view-all.hero-pro {
        padding:13px 24px;
        font-size:13px
    }

    
}

.mfaq.hero-pro {
    position:relative;
    overflow:hidden;
    padding:110px 0 120px;
    background:radial-gradient(900px 500px at 85% 0%,rgba(233,30,140,.09),transparent 60%),radial-gradient(800px 500px at 15% 100%,rgba(124,58,237,.09),transparent 60%),linear-gradient(180deg,#fff8fc,#fdf1f8,#fff5ec)
}

.mfaq__orb.hero-pro {
    position:absolute;
    border-radius:50%;
    filter:blur(90px);
    pointer-events:none;
    z-index:0
}

.mfaq__orb--1.hero-pro {
    top:-120px;
    right:-60px;
    width:360px;
    height:360px;
    background:radial-gradient(circle,rgba(233,30,140,.26),transparent 70%)
}

.mfaq__orb--2.hero-pro {
    top:50%;
    left:-100px;
    width:320px;
    height:320px;
    background:radial-gradient(circle,rgba(124,58,237,.22),transparent 70%)
}

.mfaq__orb--3.hero-pro {
    bottom:-120px;
    right:30%;
    width:300px;
    height:300px;
    background:radial-gradient(circle,rgba(245,158,11,.16),transparent 70%)
}

.mfaq__grid-bg.hero-pro {
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    pointer-events:none;
    background-image:linear-gradient(to right,rgba(233,30,140,.05) 1px,transparent 1px),linear-gradient(to bottom,rgba(233,30,140,.05) 1px,transparent 1px);
    background-size:48px 48px;
    mask-image:radial-gradient(ellipse 60% 55% at 50% 50%,#000 30%,transparent 85%);
    -webkit-mask-image:radial-gradient(ellipse 60% 55% at 50% 50%,#000 30%,transparent 85%)
}

.mfaq__container.hero-pro {
    position:relative;
    z-index:1;
    max-width:960px
}

.mfaq__head.hero-pro {
    text-align:center;
    margin-bottom:40px
}

.mfaq__tag.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:7px;
    padding:5px 14px;
    background:linear-gradient(135deg,#e91e8c1f,#f59e0b1a);
    color:#c2185b;
    font-size:11px;
    font-weight:600;
    letter-spacing:.14em;
    text-transform:uppercase;
    border-radius:999px;
    border:1px solid rgba(233,30,140,.22);
    margin-bottom:16px
}

.mfaq__tag-dot.hero-pro {
    width:6px;
    height:6px;
    border-radius:50%;
    background:#e91e8c;
    box-shadow:0 0 0 3px #e91e8c38;
    animation:svelte-13wmnd-mfaqDot 1.8s ease-in-out infinite
}

@keyframes svelte-13wmnd-mfaqDot {
    0%,to {
        opacity:1
    }

    50% {
        opacity:.4
    }

    
}

.mfaq__title.hero-pro {
    margin:0 0 10px;
    font-size:clamp(1.9rem,3.3vw,2.6rem);
    font-weight:700;
    letter-spacing:-.02em;
    line-height:1.14;
    color:#110520
}

.mfaq__title-grad.hero-pro {
    background:linear-gradient(135deg,#e91e8c,#f43f5e 55%,#f59e0b);
    -webkit-background-clip:text;
    background-clip:text;
    -webkit-text-fill-color:transparent
}

.mfaq__sub.hero-pro {
    margin:0 auto 26px;
    max-width:540px;
    font-size:clamp(14px,1.15vw,16px);
    color:#4a2870;
    line-height:1.6
}

.mfaq__search.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:8px;
    width:100%;
    max-width:480px;
    padding:12px 16px;
    background:#ffffffeb;
    border:1.5px solid rgba(233,30,140,.18);
    border-radius:14px;
    -webkit-backdrop-filter:blur(8px);
    backdrop-filter:blur(8px);
    box-shadow:0 10px 24px -12px #2d12481f;
    transition:border-color .2s,box-shadow .2s
}

.mfaq__search.hero-pro:focus-within {
    border-color:#e91e8c;
    box-shadow:0 0 0 4px #e91e8c1f
}

.mfaq__search.hero-pro svg:where(.hero-pro) {
    color:#9a7fb8;
    flex-shrink:0
}

.mfaq__search-x.hero-pro {
    width:20px;
    height:20px;
    border-radius:50%;
    display:inline-grid;
    place-items:center;
    background:#e91e8c14;
    color:#6b5876;
    border:none;
    cursor:pointer
}

.mfaq__search-x.hero-pro:hover {
    background:#e91e8c;
    color:#fff
}

.mfaq__list.hero-pro {
    display:flex;
    flex-direction:column;
    gap:14px;
    position:relative;
    z-index:1
}

.mfaq__empty.hero-pro {
    padding:40px 24px;
    text-align:center;
    background:#fff;
    border:1.5px dashed rgba(233,30,140,.22);
    border-radius:18px;
    color:#6b5876
}

.mfaq__empty.hero-pro svg:where(.hero-pro) {
    color:#b59ec8;
    margin-bottom:6px
}

.mfaq__empty.hero-pro span:where(.hero-pro) {
    font-size:13px
}

.mfaq__item.hero-pro {
    position:relative;
    background:linear-gradient(180deg,#fff,#fffafc);
    border:1px solid rgba(233,30,140,.12);
    border-radius:20px;
    box-shadow:0 8px 22px -14px #2d124826;
    overflow:hidden;
    opacity:0;
    transform:translateY(10px);
    animation:svelte-13wmnd-mfaqIn .45s cubic-bezier(.22,1,.36,1) forwards;
    animation-delay:var(--delay, 0ms);
    transition:box-shadow .3s,border-color .3s,transform .3s
}

@keyframes svelte-13wmnd-mfaqIn {
    to {
        opacity:1;
        transform:translateY(0)
    }

    
}

.mfaq__item.hero-pro:hover {
    transform:translateY(-2px);
    border-color:#e91e8c4d;
    box-shadow:0 18px 38px -20px #e91e8c4d
}

.mfaq__item.is-open.hero-pro {
    border-color:#e91e8c73;
    box-shadow:0 28px 58px -20px #e91e8c59,0 0 0 1px #e91e8c33
}

.mfaq__item-accent.hero-pro {
    position:absolute;
    top:0;
    bottom:0;
    left:0;
    width:4px;
    background:linear-gradient(180deg,#e91e8c,#f43f5e,#f59e0b);
    opacity:0;
    transform:scaleY(.3);
    transform-origin:top;
    transition:opacity .3s,transform .4s cubic-bezier(.22,1,.36,1)
}

.mfaq__q.hero-pro {
    display:flex;
    align-items:center;
    gap:16px;
    width:100%;
    padding:22px 24px;
    background:transparent;
    border:none;
    font:inherit;
    cursor:pointer;
    text-align:left;
    color:#110520
}

.mfaq__q-ic.hero-pro {
    flex-shrink:0;
    width:44px;
    height:44px;
    border-radius:14px;
    display:inline-grid;
    place-items:center;
    color:#fff;
    background:linear-gradient(135deg,#e91e8c38,#c2185b47);
    color:#c2185b;
    border:1px solid rgba(233,30,140,.24);
    transition:transform .3s cubic-bezier(.22,1,.36,1),background .3s,color .3s,border-color .3s,box-shadow .3s
}

.mfaq__q-body.hero-pro {
    flex:1;
    min-width:0;
    display:flex;
    flex-direction:column;
    gap:4px
}

.mfaq__q-tag.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size:10.5px;
    font-weight:600;
    letter-spacing:.12em;
    text-transform:uppercase;
    color:#9a7fb8
}

.mfaq__q-tag.hero-pro span:where(.hero-pro) {
    padding:2px 8px;
    background:#e91e8c14;
    color:#c2185b;
    border:1px solid rgba(233,30,140,.15);
    border-radius:999px;
    letter-spacing:.08em
}

.mfaq__q-text.hero-pro {
    font-size:clamp(15px,1.25vw,17px);
    font-weight:600;
    line-height:1.35;
    letter-spacing:-.01em
}

.mfaq__q-toggle.hero-pro {
    flex-shrink:0;
    width:36px;
    height:36px;
    border-radius:50%;
    display:inline-grid;
    place-items:center;
    background:#fdf2f8;
    color:#c2185b;
    border:1px solid rgba(233,30,140,.15);
    transition:transform .35s cubic-bezier(.22,1,.36,1),background .3s,color .3s,border-color .3s
}

.mfaq__a.hero-pro {
    overflow:hidden;
    animation:svelte-13wmnd-mfaqOpen .35s cubic-bezier(.22,1,.36,1)
}

@keyframes svelte-13wmnd-mfaqOpen {
    0% {
        opacity:0;
        max-height:0
    }

    to {
        opacity:1;
        max-height:800px
    }

    
}

.mfaq__a-inner.hero-pro {
    padding:0 24px 22px 84px
}

.mfaq__a-inner.hero-pro p:where(.hero-pro) {
    margin:0 0 14px;
    font-size:14.5px;
    line-height:1.75;
    color:#3f1f5e
}

.mfaq__a-inner.hero-pro strong {
    color:#c2185b;
    font-weight:600;
    background:linear-gradient(120deg,transparent 0%,rgba(233,30,140,.14) 40%,rgba(233,30,140,.14) 60%,transparent 100%);
    padding:1px 4px;
    border-radius:3px
}

.mfaq__a-foot.hero-pro {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    flex-wrap:wrap;
    margin-top:14px;
    padding-top:14px;
    border-top:1px dashed rgba(233,30,140,.18)
}

.mfaq__helpful.hero-pro {
    font-size:12px;
    font-weight:500;
    color:#6b5876
}

.mfaq__helpful-btns.hero-pro {
    display:inline-flex;
    gap:8px
}

.mfaq__helpful-btn.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:5px;
    padding:6px 14px;
    background:#fff;
    border:1px solid rgba(233,30,140,.2);
    border-radius:999px;
    font:inherit;
    font-size:12px;
    font-weight:500;
    color:#4a2870;
    cursor:pointer;
    transition:background .2s,color .2s,border-color .2s,transform .2s
}

.mfaq__helpful-btn.hero-pro:hover {
    background:#fdf2f8;
    color:#e91e8c;
    border-color:#e91e8c66;
    transform:translateY(-1px)
}

.mfaq__foot.hero-pro {
    margin-top:40px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    flex-wrap:wrap;
    padding:22px 28px;
    background:linear-gradient(135deg,#ffffffe6,#fdf6fbd9);
    border:1px solid rgba(233,30,140,.18);
    border-radius:22px;
    -webkit-backdrop-filter:blur(10px);
    backdrop-filter:blur(10px);
    box-shadow:0 14px 34px -14px #2d124826
}

.mfaq__foot-text.hero-pro span:where(.hero-pro) {
    font-size:12.5px;
    color:#6b5876
}

.mfaq__foot-cta.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:7px;
    padding:12px 22px;
    background:linear-gradient(135deg,#e91e8c,#f43f5e 55%,#f59e0b);
    background-size:200% 100%;
    color:#fff;
    border-radius:50px;
    font-size:13.5px;
    font-weight:600;
    text-decoration:none;
    box-shadow:0 14px 28px -8px #e91e8c8c,inset 0 1px #ffffff4d;
    transition:transform .25s,background-position .5s,box-shadow .25s
}

.mfaq__foot-cta.hero-pro:hover {
    transform:translateY(-2px);
    background-position:100% 0;
    box-shadow:0 20px 36px -8px #e91e8ca6;
    color:#fff
}

.mfaq__foot-cta.hero-pro svg:where(.hero-pro) {
    transition:transform .25s
}

.mfaq__foot-cta.hero-pro:hover svg:where(.hero-pro) {
    transform:translate(4px)
}

@media(max-width:720px) {
    .mfaq.hero-pro {
        padding:72px 0 84px
    }

    .mfaq__q.hero-pro {
        padding:18px 20px;
        gap:12px
    }

    .mfaq__q-ic.hero-pro {
        width:40px;
        height:40px
    }

    .mfaq__a-inner.hero-pro {
        padding:0 20px 20px
    }

    .mfaq__foot.hero-pro {
        flex-direction:column;
        align-items:stretch;
        text-align:center
    }

    .mfaq__foot-cta.hero-pro {
        justify-content:center
    }

    
}

.faq-section.hero-pro {
    position:relative;
    padding:100px 0;
    overflow:hidden;
    background:radial-gradient(1000px 600px at 15% 0%,rgba(233,30,140,.1) 0%,transparent 55%),radial-gradient(900px 600px at 85% 100%,rgba(124,58,237,.1) 0%,transparent 55%),linear-gradient(180deg,#fff9fc,#fdf4fa,#fff7fc)
}

.faq-bg-orb.hero-pro {
    position:absolute;
    border-radius:50%;
    filter:blur(90px);
    opacity:.45;
    pointer-events:none;
    z-index:0
}

.faq-bg-orb-1.hero-pro {
    top:-120px;
    right:-90px;
    width:380px;
    height:380px;
    background:radial-gradient(circle,rgba(233,30,140,.28),transparent 70%)
}

.faq-bg-orb-2.hero-pro {
    bottom:-140px;
    left:-100px;
    width:420px;
    height:420px;
    background:radial-gradient(circle,rgba(192,38,211,.22),transparent 70%)
}

.faq-section.hero-pro&gt;
.grid-container:where(.hero-pro) {
    position:relative;
    z-index:1
}

.faq-topbar.hero-pro {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    padding:20px 28px;
    background:#ffffffd9;
    border:1px solid rgba(255,255,255,.95);
    border-radius:20px;
    box-shadow:0 14px 40px #e91e8c14;
    -webkit-backdrop-filter:blur(14px);
    backdrop-filter:blur(14px);
    margin-bottom:32px;
    flex-wrap:wrap
}

.faq-brand.hero-pro {
    display:flex;
    align-items:center;
    gap:14px
}

.faq-brand-icon.hero-pro {
    width:42px;
    height:42px;
    border-radius:12px;
    background:linear-gradient(135deg,var(--rose),#c026d3);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 8px 20px #e91e8c59;
    flex-shrink:0
}

.faq-brand-title.hero-pro {
    font-size:20px;
    font-weight:600;
    letter-spacing:-.02em;
    color:var(--heading)
}

.faq-brand-sub.hero-pro {
    font-size:12px;
    color:var(--text-muted);
    margin-top:2px
}

.faq-search.hero-pro {
    position:relative;
    display:flex;
    align-items:center;
    gap:10px;
    padding:10px 16px;
    background:#fff;
    border:1px solid rgba(45,18,72,.08);
    border-radius:50px;
    min-width:300px;
    color:var(--text-muted);
    transition:all .3s ease
}

.faq-search.hero-pro:focus-within {
    border-color:#e91e8c59;
    box-shadow:0 0 0 4px #e91e8c14
}

.faq-search.hero-pro input:where(.hero-pro) {
    flex:1;
    border:none;
    outline:none;
    background:transparent;
    font-size:13.5px;
    color:var(--heading)
}

.faq-body.hero-pro {
    display:grid;
    grid-template-columns:320px 1fr;
    gap:22px;
    align-items:start
}

.faq-sidebar.hero-pro {
    position:sticky;
    top:20px;
    padding:22px 18px;
    background:#ffffffd9;
    border:1px solid rgba(255,255,255,.95);
    border-radius:20px;
    box-shadow:0 14px 40px #2d124814;
    -webkit-backdrop-filter:blur(14px);
    backdrop-filter:blur(14px)
}

.faq-sidebar-head.hero-pro {
    display:flex;
    align-items:center;
    gap:10px;
    padding:0 8px 14px;
    font-size:10.5px;
    font-weight:600;
    letter-spacing:.18em;
    color:var(--rose);
    border-bottom:1px dashed rgba(45,18,72,.12);
    margin-bottom:10px
}

.faq-sidebar-line.hero-pro {
    width:22px;
    height:2px;
    background:linear-gradient(90deg,var(--rose),#c026d3);
    border-radius:2px
}

.faq-list.hero-pro {
    list-style:none;
    margin:0;
    padding:0;
    display:flex;
    flex-direction:column;
    gap:4px
}

.faq-list-btn.hero-pro {
    width:100%;
    display:flex;
    align-items:center;
    gap:12px;
    padding:12px 14px;
    background:transparent;
    border:1px solid transparent;
    border-radius:14px;
    font-size:13.5px;
    font-weight:500;
    color:var(--heading);
    text-align:left;
    cursor:pointer;
    transition:background .25s ease,border-color .25s ease,color .25s ease,transform .25s ease
}

.faq-list-btn.hero-pro:hover {
    background:#e91e8c0d;
    color:var(--rose)
}

.faq-list-btn.is-active.hero-pro {
    background:linear-gradient(135deg,#e91e8c1f,#c026d314);
    border-color:#e91e8c38;
    color:var(--rose);
    box-shadow:0 6px 18px #e91e8c14
}

.faq-list-num.hero-pro {
    width:26px;
    height:26px;
    border-radius:8px;
    background:#e91e8c1a;
    color:var(--rose);
    font-size:10.5px;
    font-weight:700;
    letter-spacing:.05em;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    transition:all .25s ease
}

.faq-list-btn.is-active.hero-pro .faq-list-num:where(.hero-pro) {
    background:linear-gradient(135deg,var(--rose),#c026d3);
    color:#fff;
    box-shadow:0 4px 10px #e91e8c59
}

.faq-list-q.hero-pro {
    flex:1;
    line-height:1.35
}

.faq-list-arrow.hero-pro {
    opacity:0;
    transform:translate(-4px);
    transition:all .25s ease;
    flex-shrink:0
}

.faq-list-btn.is-active.hero-pro .faq-list-arrow:where(.hero-pro),.faq-list-btn.hero-pro:hover .faq-list-arrow:where(.hero-pro) {
    opacity:1;
    transform:translate(0)
}

.faq-still-help.hero-pro {
    display:flex;
    align-items:center;
    gap:12px;
    padding:14px;
    margin-top:16px;
    background:linear-gradient(135deg,#25d366,#128c7e);
    color:#fff;
    border-radius:14px;
    text-decoration:none;
    box-shadow:0 10px 24px #25d36640;
    transition:transform .25s ease,box-shadow .25s ease
}

.faq-still-help.hero-pro:hover {
    color:#fff;
    transform:translateY(-2px);
    box-shadow:0 14px 32px #25d36666
}

.faq-still-help.hero-pro svg:where(.hero-pro) {
    flex-shrink:0;
    padding:8px;
    width:30px;
    height:30px;
    background:#fff3;
    border-radius:50%
}

.faq-still-help-t.hero-pro {
    font-size:13.5px;
    font-weight:600;
    line-height:1.1
}

.faq-still-help-s.hero-pro {
    font-size:11px;
    font-weight:600;
    opacity:.9;
    margin-top:2px
}

.faq-panel.hero-pro {
    padding:34px 36px;
    background:#fff;
    border:1px solid rgba(255,255,255,.95);
    border-radius:22px;
    box-shadow:0 18px 50px #2d124817;
    animation:svelte-13wmnd-faqFadeIn .4s ease
}

@keyframes svelte-13wmnd-faqFadeIn {
    0% {
        opacity:0;
        transform:translateY(8px)
    }

    to {
        opacity:1;
        transform:translateY(0)
    }

    
}

.faq-panel-head.hero-pro {
    margin-bottom:16px
}

.faq-panel-crumb.hero-pro {
    display:inline-block;
    font-size:11px;
    font-weight:500;
    letter-spacing:.08em;
    color:var(--text-muted);
    text-transform:uppercase;
    margin-bottom:8px
}

.faq-panel-title.hero-pro {
    font-size:1.8rem;
    font-weight:600;
    letter-spacing:-.025em;
    line-height:1.2;
    color:var(--heading);
    margin:0
}

.faq-panel-lead.hero-pro {
    font-size:15px;
    color:var(--text-muted);
    line-height:1.75;
    margin:0 0 22px
}

.faq-steps.hero-pro {
    list-style:none;
    margin:0 0 22px;
    padding:0;
    display:flex;
    flex-direction:column;
    gap:10px
}

.faq-steps.hero-pro li:where(.hero-pro) {
    display:flex;
    align-items:flex-start;
    gap:12px;
    padding:12px 14px;
    background:#e91e8c0a;
    border:1px solid rgba(233,30,140,.08);
    border-radius:12px;
    transition:border-color .25s ease,background .25s ease
}

.faq-steps.hero-pro li:where(.hero-pro):hover {
    background:#e91e8c12;
    border-color:#e91e8c2e
}

.faq-step-num.hero-pro {
    width:22px;
    height:22px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--rose),#c026d3);
    color:#fff;
    font-size:11px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    margin-top:1px;
    box-shadow:0 4px 10px #e91e8c4d
}

.faq-step-text.hero-pro {
    font-size:13.5px;
    color:var(--heading);
    line-height:1.6
}

.faq-note.hero-pro {
    display:flex;
    align-items:flex-start;
    gap:12px;
    padding:14px 18px;
    background:linear-gradient(135deg,#f5c46b26,#f59e0b14);
    border:1px solid rgba(245,158,11,.3);
    border-radius:14px;
    margin-bottom:26px
}

.faq-note-ic.hero-pro {
    width:24px;
    height:24px;
    border-radius:50%;
    background:linear-gradient(135deg,#f59e0b,#d97706);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    margin-top:1px;
    box-shadow:0 4px 10px #f59e0b59
}

.faq-note.hero-pro strong:where(.hero-pro) {
    display:block;
    font-size:12px;
    font-weight:600;
    letter-spacing:.12em;
    text-transform:uppercase;
    color:#b45309;
    margin-bottom:3px
}

.faq-note.hero-pro p:where(.hero-pro) {
    font-size:13.5px;
    color:var(--heading);
    line-height:1.65;
    margin:0
}

.faq-highlights.hero-pro {
    margin:22px 0 20px;
    padding:18px 20px;
    background:linear-gradient(135deg,#e91e8c0d,#f59e0b0a);
    border:1px dashed rgba(233,30,140,.22);
    border-radius:16px
}

.faq-highlights-head.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:7px;
    font-size:10.5px;
    font-weight:600;
    letter-spacing:.14em;
    color:#c2185b;
    margin-bottom:12px
}

.faq-highlights-dot.hero-pro {
    width:6px;
    height:6px;
    border-radius:50%;
    background:#e91e8c;
    box-shadow:0 0 0 3px #e91e8c38;
    animation:svelte-13wmnd-faqDot 1.8s ease-in-out infinite
}

@keyframes svelte-13wmnd-faqDot {
    0%,to {
        opacity:1
    }

    50% {
        opacity:.4
    }

    
}

.faq-highlights-grid.hero-pro {
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:10px
}

.faq-hl.hero-pro {
    --a1: #e91e8c;
    --a2: #c2185b;
    padding:11px 13px;
    background:#fff;
    border:1px solid rgba(233,30,140,.12);
    border-radius:12px;
    display:flex;
    flex-direction:column;
    gap:2px;
    transition:transform .25s,box-shadow .25s,border-color .25s
}

.faq-hl.hero-pro:hover {
    transform:translateY(-2px);
    border-color:color-mix(in srgb,var(--a1) 40%,transparent);
    box-shadow:0 10px 20px -10px color-mix(in srgb,var(--a1) 40%,transparent)
}

.faq-hl--0.hero-pro {
    --a1: #e91e8c;
    --a2: #c2185b
}

.faq-hl--1.hero-pro {
    --a1: #7c3aed;
    --a2: #5b21b6
}

.faq-hl--2.hero-pro {
    --a1: #f59e0b;
    --a2: #d97706
}

.faq-hl--3.hero-pro {
    --a1: #10b981;
    --a2: #059669
}

.faq-hl__v.hero-pro {
    font-size:14px;
    font-weight:700;
    letter-spacing:-.01em;
    color:transparent;
    background:linear-gradient(135deg,var(--a1),var(--a2));
    -webkit-background-clip:text;
    background-clip:text;
    line-height:1.2
}

.faq-hl__l.hero-pro {
    font-size:10.5px;
    font-weight:500;
    color:#9a7fb8;
    letter-spacing:.02em
}

.faq-related.hero-pro {
    margin-bottom:20px;
    padding:18px 20px;
    background:#fff;
    border:1px solid rgba(233,30,140,.1);
    border-radius:16px
}

.faq-related-head.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:7px;
    margin-bottom:12px
}

.faq-related-head.hero-pro svg:where(.hero-pro) {
    color:#c2185b
}

.faq-related-list.hero-pro {
    display:flex;
    flex-direction:column;
    gap:6px
}

.faq-related-btn.hero-pro {
    display:flex;
    align-items:center;
    gap:10px;
    width:100%;
    padding:9px 12px;
    background:#fdf6fb;
    border:1px solid rgba(233,30,140,.08);
    border-radius:10px;
    font:inherit;
    color:#4a2870;
    cursor:pointer;
    text-align:left;
    transition:background .2s,border-color .2s,transform .2s,color .2s
}

.faq-related-btn.hero-pro:hover {
    background:linear-gradient(135deg,#fff,#fff0f7);
    border-color:#e91e8c52;
    color:#c2185b;
    transform:translate(3px)
}

.faq-related-n.hero-pro {
    font-family:ui-monospace,Consolas,monospace;
    font-size:11px;
    font-weight:600;
    color:transparent;
    background:linear-gradient(135deg,#e91e8c,#f59e0b);
    -webkit-background-clip:text;
    background-clip:text;
    flex-shrink:0
}

.faq-related-q.hero-pro {
    flex:1;
    font-size:13px;
    font-weight:500;
    color:inherit;
    line-height:1.35
}

.faq-related-btn.hero-pro svg:where(.hero-pro) {
    color:#9a7fb8;
    flex-shrink:0;
    transition:transform .2s,color .2s
}

.faq-related-btn.hero-pro:hover svg:where(.hero-pro) {
    color:#e91e8c;
    transform:translate(3px)
}

.faq-cta.hero-pro {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    padding:18px 20px;
    margin-bottom:20px;
    background:radial-gradient(600px 220px at 0% 0%,rgba(233,30,140,.12),transparent 60%),linear-gradient(135deg,#fff,#fff7fb);
    border:1px solid rgba(233,30,140,.18);
    border-radius:16px;
    flex-wrap:wrap
}

.faq-cta-text.hero-pro span:where(.hero-pro) {
    font-size:12px;
    color:#6b5876
}

.faq-cta-actions.hero-pro {
    display:inline-flex;
    gap:8px;
    flex-wrap:wrap
}

.faq-cta-btn.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:9px 16px;
    border-radius:999px;
    font-size:12.5px;
    font-weight:600;
    text-decoration:none;
    transition:transform .2s,box-shadow .2s
}

.faq-cta-btn--wa.hero-pro {
    background:linear-gradient(135deg,#25d366,#128c7e);
    color:#fff;
    box-shadow:0 10px 20px -8px #25d36680
}

.faq-cta-btn--wa.hero-pro:hover {
    transform:translateY(-2px);
    box-shadow:0 14px 26px -8px #25d36699;
    color:#fff
}

.faq-cta-btn--browse.hero-pro {
    background:linear-gradient(135deg,#e91e8c,#c2185b);
    color:#fff;
    box-shadow:0 10px 20px -8px #e91e8c80
}

.faq-cta-btn--browse.hero-pro:hover {
    transform:translateY(-2px);
    box-shadow:0 14px 26px -8px #e91e8c99;
    color:#fff
}

@media(max-width:900px) {
    .faq-highlights-grid.hero-pro {
        grid-template-columns:repeat(2,minmax(0,1fr))
    }

    
}

@media(max-width:540px) {
    .faq-cta.hero-pro {
        flex-direction:column;
        align-items:stretch
    }

    .faq-cta-actions.hero-pro {
        justify-content:stretch
    }

    .faq-cta-btn.hero-pro {
        justify-content:center;
        flex:1
    }

    
}

.faq-panel-foot.hero-pro {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    padding-top:20px;
    border-top:1px dashed rgba(45,18,72,.14)
}

.faq-helpful-q.hero-pro {
    font-size:13px;
    color:var(--text-muted);
    font-weight:600
}

.faq-helpful-actions.hero-pro {
    display:flex;
    gap:8px
}

.faq-helpful-btn.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:8px 16px;
    background:#fff;
    border:1px solid rgba(45,18,72,.12);
    border-radius:50px;
    font-size:12px;
    font-weight:600;
    color:var(--heading);
    cursor:pointer;
    transition:all .25s ease
}

.faq-helpful-btn.hero-pro:hover {
    border-color:var(--rose);
    color:var(--rose);
    transform:translateY(-2px);
    box-shadow:0 6px 14px #e91e8c1f
}

@media(max-width:1024px) {
    .faq-body.hero-pro {
        grid-template-columns:1fr;
        gap:18px
    }

    .faq-sidebar.hero-pro {
        position:static
    }

    .faq-panel-title.hero-pro {
        font-size:1.6rem
    }

    
}

@media(max-width:768px) {
    .faq-section.hero-pro {
        padding:70px 0
    }

    .faq-topbar.hero-pro {
        padding:16px 18px;
        gap:14px
    }

    .faq-search.hero-pro {
        min-width:auto;
        width:100%
    }

    .faq-panel.hero-pro {
        padding:26px 22px
    }

    .faq-panel-title.hero-pro {
        font-size:1.4rem
    }

    .faq-panel-foot.hero-pro {
        flex-direction:column;
        align-items:flex-start;
        gap:12px
    }

    
}

@media(max-width:480px) {
    .faq-section.hero-pro {
        padding:56px 0
    }

    .faq-brand-title.hero-pro {
        font-size:17px
    }

    .faq-brand-sub.hero-pro {
        font-size:11px
    }

    .faq-panel.hero-pro {
        padding:22px 18px;
        border-radius:18px
    }

    .faq-panel-title.hero-pro {
        font-size:1.25rem
    }

    .faq-panel-lead.hero-pro {
        font-size:14px
    }

    .faq-sidebar.hero-pro {
        padding:18px 14px
    }

    .faq-list-btn.hero-pro {
        padding:10px 12px;
        font-size:13px
    }

    .faq-step-text.hero-pro {
        font-size:13px
    }

    .faq-note.hero-pro p:where(.hero-pro) {
        font-size:13px
    }

    .faq-bg-orb.hero-pro {
        display:none
    }

    
}

.hero.hero-pro,.trust-strip.hero-pro,.section-pad.hero-pro,.about-section.hero-pro,.cats-section.hero-pro,.locs-section.hero-pro,.why-section.hero-pro,.promo-section.hero-pro,.cta-section.hero-pro,.blog-section.hero-pro,.stack-section.hero-pro,.faq-section.hero-pro {
    border-bottom:1px solid rgba(233,30,140,.12)
}

.stack-section.hero-pro {
    position:relative;
    overflow:hidden;
    padding:110px 0;
    background:radial-gradient(800px 500px at 10% 0%,rgba(233,30,140,.1) 0%,transparent 55%),radial-gradient(800px 500px at 90% 100%,rgba(245,158,11,.12) 0%,transparent 55%),linear-gradient(180deg,#fff7fb,#fffaf2)
}

.stack-orb.hero-pro {
    position:absolute;
    border-radius:50%;
    filter:blur(90px);
    opacity:.45;
    pointer-events:none;
    z-index:0
}

.stack-orb-1.hero-pro {
    top:-120px;
    left:-80px;
    width:360px;
    height:360px;
    background:radial-gradient(circle,rgba(233,30,140,.25),transparent 70%)
}

.stack-orb-2.hero-pro {
    bottom:-120px;
    right:-80px;
    width:380px;
    height:380px;
    background:radial-gradient(circle,rgba(245,158,11,.22),transparent 70%)
}

.stack-section.hero-pro&gt;
.grid-container:where(.hero-pro) {
    position:relative;
    z-index:1
}

.stack-head.hero-pro {
    text-align:center;
    max-width:780px;
    margin:0 auto 56px
}

.stack-eyebrow.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:14px;
    font-size:11px;
    font-weight:700;
    letter-spacing:.26em;
    color:var(--rose, #e91e8c);
    margin-bottom:18px
}

.stack-eyebrow-line.hero-pro {
    width:36px;
    height:1.5px;
    background:linear-gradient(90deg,transparent,var(--rose))
}

.stack-eyebrow-line.hero-pro:last-child {
    background:linear-gradient(90deg,var(--rose),transparent)
}

.stack-grad.hero-pro {
    background:linear-gradient(135deg,var(--rose),var(--gold, #f59e0b));
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text
}

.stack-h2.hero-pro {
    font-size:clamp(1.9rem,3.6vw,2.8rem);
    font-weight:700;
    letter-spacing:-.03em;
    line-height:1.12;
    color:var(--heading, #1a0611);
    margin:0 0 16px
}

.stack-sub.hero-pro {
    font-size:1rem;
    line-height:1.7;
    color:var(--text-muted);
    margin:0 auto;
    max-width:620px
}

.stack-wrap.hero-pro {
    position:relative;
    max-width:1100px;
    margin:0 auto
}

.stack-lines.hero-pro {
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    width:100%;
    height:100%;
    pointer-events:none;
    z-index:0
}

.stack-grid.hero-pro {
    position:relative;
    z-index:1;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:32px
}

.stack-card.hero-pro {
    position:relative;
    padding:52px 26px 28px;
    background:#fff;
    border:1px solid var(--border, #ead8f0);
    border-radius:24px;
    box-shadow:0 18px 44px #2d124814;
    transition:transform .4s cubic-bezier(.22,1,.36,1),box-shadow .4s,border-color .4s
}

.stack-card.hero-pro:hover {
    transform:translateY(-6px);
    box-shadow:0 28px 60px #e91e8c29
}

.stack-card-rose.hero-pro {
    background:linear-gradient(135deg,#fff,#fff6fb);
    border-color:#e91e8c2e
}

.stack-card-gold.hero-pro {
    background:linear-gradient(135deg,#fff,#fffaf0);
    border-color:#f59e0b38
}

.stack-card-peach.hero-pro {
    background:linear-gradient(135deg,#fff,#fff5ee);
    border-color:#fb923c38
}

.stack-card-green.hero-pro {
    background:linear-gradient(135deg,#fff,#f1fbf4);
    border-color:#10b98138
}

.stack-tab.hero-pro {
    position:absolute;
    top:-18px;
    left:50%;
    transform:translate(-50%);
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 16px 8px 12px;
    background:#fff;
    border:1px solid var(--border, #ead8f0);
    border-radius:50px;
    font-size:12.5px;
    font-weight:700;
    letter-spacing:-.01em;
    color:var(--heading, #1a0611);
    box-shadow:0 10px 24px #2d12481a;
    white-space:nowrap;
    z-index:3
}

.stack-card-rose.hero-pro .stack-tab:where(.hero-pro) {
    color:var(--rose-dark, #c2185b)
}

.stack-card-gold.hero-pro .stack-tab:where(.hero-pro) {
    color:#b45309
}

.stack-card-peach.hero-pro .stack-tab:where(.hero-pro) {
    color:#ea580c
}

.stack-card-green.hero-pro .stack-tab:where(.hero-pro) {
    color:#059669
}

.stack-tab-dot.hero-pro {
    width:7px;
    height:7px;
    border-radius:50%;
    background:currentColor;
    box-shadow:0 0 0 3px #e91e8c24
}

.stack-items.hero-pro {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px
}

.stack-item.hero-pro {
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:8px;
    padding:10px 6px;
    text-decoration:none;
    border-radius:14px;
    transition:all .3s cubic-bezier(.22,1,.36,1)
}

.stack-item.hero-pro:hover {
    transform:translateY(-4px);
    background:#ffffffb3;
    box-shadow:0 10px 24px #e91e8c1f
}

.stack-item-ic.hero-pro {
    width:52px;
    height:52px;
    border-radius:15px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 8px 18px #2d124824;
    transition:transform .3s
}

.stack-item.hero-pro:hover .stack-item-ic:where(.hero-pro) {
    transform:scale(1.08) rotate(-6deg)
}

.stack-item-l.hero-pro {
    font-size:12px;
    font-weight:600;
    letter-spacing:-.005em;
    color:var(--heading, #1a0611);
    text-align:center
}

.stack-item.hero-pro:hover .stack-item-l:where(.hero-pro) {
    color:var(--rose)
}

.stack-center.hero-pro {
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    z-index:4;
    width:200px;
    height:200px;
    border-radius:50%;
    background:#fff;
    border:2px dashed rgba(233,30,140,.25);
    box-shadow:0 0 0 8px #ffffffb3,0 24px 60px #e91e8c38;
    display:flex;
    align-items:center;
    justify-content:center
}

.stack-center.hero-pro:before {
   content: "";
    position:absolute;
    top:-20px;
    right:-20px;
    bottom:-20px;
    left:-20px;
    border-radius:50%;
    border:1.5px dashed rgba(245,158,11,.22);
    animation:svelte-13wmnd-stackSpin 40s linear infinite;
    pointer-events:none
}

@keyframes svelte-13wmnd-stackSpin {
    to {
        transform:rotate(360deg)
    }

    
}

.stack-center-inner.hero-pro {
    text-align:center;
    padding:0 12px
}

.stack-center-logo.hero-pro {
    width:44px;
    height:44px;
    margin:0 auto 10px;
    border-radius:14px;
    background:linear-gradient(135deg,var(--rose),var(--gold, #f59e0b));
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 22px #e91e8c59
}

.stack-center-title.hero-pro {
    font-size:11px;
    font-weight:600;
    letter-spacing:.1em;
    color:var(--text-dim, #7b6a90);
    text-transform:uppercase;
    margin-bottom:4px
}

.stack-center-brand.hero-pro {
    font-size:1.05rem;
    font-weight:700;
    letter-spacing:-.02em;
    line-height:1.15;
    background:linear-gradient(135deg,var(--rose),var(--gold, #f59e0b));
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
    margin-bottom:8px
}

.stack-center-meta.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:5px;
    padding:4px 10px 4px 8px;
    background:#10b9811a;
    border-radius:50px;
    font-size:10px;
    font-weight:600;
    letter-spacing:.04em;
    color:#059669
}

.stack-center-dot.hero-pro {
    width:6px;
    height:6px;
    border-radius:50%;
    background:#10b981;
    box-shadow:0 0 0 2px #10b98138;
    animation:svelte-13wmnd-faqDotPulse 2s ease-in-out infinite
}

@keyframes svelte-13wmnd-faqDotPulse {
    0%,to {
        box-shadow:0 0 0 2px #10b98138
    }

    50% {
        box-shadow:0 0 0 5px #10b98114,0 0 10px #10b98199
    }

    
}

@media(max-width:1024px) {
    .stack-grid.hero-pro {
        gap:24px
    }

    .stack-card.hero-pro {
        padding:46px 20px 22px
    }

    .stack-items.hero-pro {
        gap:12px
    }

    .stack-item-ic.hero-pro {
        width:46px;
        height:46px;
        border-radius:13px
    }

    .stack-item-l.hero-pro {
        font-size:11.5px
    }

    .stack-center.hero-pro {
        width:170px;
        height:170px
    }

    .stack-center-logo.hero-pro {
        width:40px;
        height:40px
    }

    .stack-center-title.hero-pro {
        font-size:10px
    }

    .stack-center-brand.hero-pro {
        font-size:.95rem
    }

    .stack-center-meta.hero-pro {
        font-size:9.5px;
        padding:3px 9px 3px 7px
    }

    
}

@media(max-width:768px) {
    .stack-section.hero-pro {
        padding:70px 0
    }

    .stack-lines.hero-pro,.stack-center.hero-pro:before {
        display:none
    }

    .stack-center.hero-pro {
        position:relative;
        top:auto;
        left:auto;
        transform:none;
        width:100%;
        height:auto;
        border-radius:20px;
        padding:20px 18px;
        grid-column:1 / -1;
        order:-1;
        border:1px solid var(--border, #ead8f0);
        border-style:solid
    }

    .stack-center-inner.hero-pro {
        display:flex;
        flex-wrap:wrap;
        align-items:center;
        gap:14px;
        text-align:left
    }

    .stack-center-logo.hero-pro {
        margin:0;
        flex-shrink:0;
        width:38px;
        height:38px
    }

    .stack-grid.hero-pro {
        gap:36px
    }

    .stack-card.hero-pro {
        padding:42px 18px 22px
    }

    .stack-items.hero-pro {
        gap:10px
    }

    .stack-item.hero-pro {
        padding:8px 4px
    }

    .stack-item-ic.hero-pro {
        width:44px;
        height:44px;
        border-radius:13px
    }

    .stack-item-l.hero-pro {
        font-size:11px
    }

    
}

@media(max-width:600px) {
    .stack-section.hero-pro {
        padding:56px 0
    }

    .stack-grid.hero-pro {
        grid-template-columns:1fr;
        gap:28px
    }

    .stack-items.hero-pro {
        grid-template-columns:repeat(3,1fr);
        gap:12px
    }

    .stack-card.hero-pro {
        padding:40px 18px 20px
    }

    .stack-tab.hero-pro {
        font-size:11.5px;
        padding:6px 14px 6px 10px
    }

    .stack-center.hero-pro {
        padding:20px 16px;
        border-radius:18px
    }

    .stack-center-inner.hero-pro {
        flex-direction:column;
        align-items:center;
        text-align:center;
        gap:8px
    }

    .stack-center-title.hero-pro {
        letter-spacing:.08em
    }

    .stack-center-brand.hero-pro {
        font-size:1.05rem
    }

    .stack-center-meta.hero-pro {
        margin-top:2px
    }

    
}

@media(max-width:420px) {
    .stack-items.hero-pro {
        grid-template-columns:repeat(2,1fr)
    }

    
}

.blog-section.hero-pro {
    position:relative;
    padding:110px 0;
    overflow:hidden;
    background:radial-gradient(1000px 600px at 85% 0%,rgba(233,30,140,.09) 0%,transparent 55%),radial-gradient(900px 600px at 0% 100%,rgba(245,158,11,.08) 0%,transparent 55%),linear-gradient(180deg,#fff9fc,#fff4f9,#fdf6ff);
    border-top:1px solid rgba(233,30,140,.06)
}

.blog-bg-orb.hero-pro {
    position:absolute;
    border-radius:50%;
    filter:blur(90px);
    opacity:.5;
    pointer-events:none;
    z-index:0
}

.blog-bg-orb-1.hero-pro {
    top:-100px;
    right:-80px;
    width:360px;
    height:360px;
    background:radial-gradient(circle,rgba(233,30,140,.35),transparent 70%)
}

.blog-bg-orb-2.hero-pro {
    bottom:-120px;
    left:-100px;
    width:420px;
    height:420px;
    background:radial-gradient(circle,rgba(245,158,11,.25),transparent 70%)
}

.blog-section.hero-pro&gt;
.grid-container:where(.hero-pro) {
    position:relative;
    z-index:1
}

.blog-head.hero-pro {
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:32px;
    margin-bottom:48px;
    flex-wrap:wrap
}

.blog-head-left.hero-pro {
    max-width:680px
}

.blog-eyebrow.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-size:11.5px;
    font-weight:600;
    letter-spacing:.22em;
    color:var(--rose);
    margin-bottom:14px
}

.blog-eyebrow-line.hero-pro {
    width:36px;
    height:2px;
    background:linear-gradient(90deg,var(--rose),transparent);
    border-radius:2px
}

.blog-title.hero-pro {
    font-size:2.8rem;
    font-weight:600;
    letter-spacing:-.035em;
    line-height:1.1;
    color:var(--heading);
    margin:0
}

.blog-accent.hero-pro {
    background:linear-gradient(135deg,var(--rose) 0%,#f472b6 40%,#f59e0b 100%);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text
}

.blog-view-all.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:12px 22px;
    background:#fff;
    border:1.5px solid rgba(233,30,140,.25);
    border-radius:50px;
    font-size:13px;
    font-weight:600;
    color:var(--rose);
    text-decoration:none;
    box-shadow:0 6px 18px #e91e8c14;
    transition:all .3s ease
}

.blog-view-all.hero-pro:hover {
    color:#fff;
    background:linear-gradient(135deg,var(--rose),#c026d3);
    border-color:transparent;
    transform:translateY(-2px);
    box-shadow:0 12px 28px #e91e8c4d
}

.blog-grid.hero-pro {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px
}

.blog-card.hero-pro {
    position:relative;
    display:flex;
    flex-direction:column;
    background:#fff;
    border:1.5px solid var(--bc-ring);
    border-radius:22px;
    overflow:hidden;
    text-decoration:none;
    box-shadow:0 6px 24px #2d12480f,0 0 0 1px #fffc inset;
    transition:transform .45s cubic-bezier(.22,1,.36,1),box-shadow .45s ease,border-color .45s ease
}

.blog-card.hero-pro:before {
    content: "";
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:3px;
    background:var(--bc-grad);
    z-index:4;
    opacity:.9
}

.blog-card.hero-pro:hover {
    transform:translateY(-8px);
    border-color:var(--bc-accent);
    box-shadow:0 28px 60px var(--bc-shadow)
}

.blog-theme-rose.hero-pro {
    --bc-grad: linear-gradient(135deg, #ff6b9d 0%, #e91e8c 60%, #c21e6e 100%);
    --bc-accent: #e91e8c;
    --bc-soft: rgba(233,30,140,.1);
    --bc-ring: rgba(233,30,140,.25);
    --bc-shadow: rgba(233,30,140,.22)
}

.blog-theme-gold.hero-pro {
    --bc-grad: linear-gradient(135deg, #fcd34d 0%, #f59e0b 60%, #d97706 100%);
    --bc-accent: #d97706;
    --bc-soft: rgba(245,158,11,.12);
    --bc-ring: rgba(245,158,11,.3);
    --bc-shadow: rgba(245,158,11,.22)
}

.blog-theme-peach.hero-pro {
    --bc-grad: linear-gradient(135deg, #fdba74 0%, #f97316 60%, #ea580c 100%);
    --bc-accent: #ea580c;
    --bc-soft: rgba(249,115,22,.1);
    --bc-ring: rgba(249,115,22,.25);
    --bc-shadow: rgba(249,115,22,.22)
}

.blog-thumb.hero-pro {
    position:relative;
    aspect-ratio:16 / 10;
    overflow:hidden;
    background:var(--bc-grad)
}

.blog-thumb-img.hero-pro {
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .8s cubic-bezier(.22,1,.36,1),filter .6s;
    filter:saturate(1.05)
}

.blog-card.hero-pro:hover .blog-thumb-img:where(.hero-pro) {
    transform:scale(1.08);
    filter:saturate(1.2)
}

.blog-thumb-overlay.hero-pro {
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    background:linear-gradient(180deg,rgba(0,0,0,.1) 0%,transparent 30%,transparent 55%,rgba(0,0,0,.55) 100%);
    pointer-events:none
}

.blog-cat-pill.hero-pro {
    position:absolute;
    top:14px;
    left:14px;
    padding:6px 13px 6px 11px;
    background:#fffffff2;
    color:var(--bc-accent);
    font-size:11px;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
    border-radius:50px;
    box-shadow:0 6px 16px #0003,inset 0 1px #fffc;
    -webkit-backdrop-filter:blur(10px);
    backdrop-filter:blur(10px);
    display:inline-flex;
    align-items:center;
    gap:5px;
    z-index:2
}

.blog-cat-pill.hero-pro:before {
   content: "";
    width:6px;
    height:6px;
    border-radius:50%;
    background:var(--bc-accent);
    box-shadow:0 0 0 3px #e91e8c2e
}

.blog-thumb-reads.hero-pro {
    position:absolute;
    bottom:14px;
    left:14px;
    display:inline-flex;
    align-items:center;
    gap:5px;
    padding:5px 11px 5px 9px;
    background:#00000073;
    color:#fff;
    font-size:11px;
    font-weight:600;
    letter-spacing:-.01em;
    border-radius:50px;
    -webkit-backdrop-filter:blur(10px);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,.18);
    z-index:2
}

.blog-thumb-views.hero-pro {
    position:absolute;
    bottom:14px;
    right:14px;
    display:inline-flex;
    align-items:center;
    gap:5px;
    padding:5px 11px 5px 9px;
    background:#fffffff2;
    color:var(--bc-accent);
    font-size:11px;
    font-weight:700;
    letter-spacing:-.01em;
    border-radius:50px;
    -webkit-backdrop-filter:blur(10px);
    backdrop-filter:blur(10px);
    box-shadow:0 4px 12px #00000026;
    z-index:2
}

.blog-body.hero-pro {
    display:flex;
    flex-direction:column;
    padding:22px 22px 20px;
    flex:1
}

.blog-meta.hero-pro {
    display:flex;
    align-items:center;
    gap:10px;
    font-size:11.5px;
    font-weight:500;
    color:var(--text-muted);
    margin-bottom:12px
}

.blog-meta-item.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:4px
}

.blog-meta-sep.hero-pro {
    width:3px;
    height:3px;
    background:#2d124840;
    border-radius:50%
}

.blog-card-title.hero-pro {
    font-size:17px;
    font-weight:600;
    color:var(--heading);
    line-height:1.3;
    letter-spacing:-.02em;
    margin:0 0 10px;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
    transition:color .3s ease
}

.blog-card.hero-pro:hover .blog-card-title:where(.hero-pro) {
    color:var(--bc-accent)
}

.blog-excerpt.hero-pro {
    font-size:13.5px;
    color:var(--text-muted);
    line-height:1.65;
    margin:0 0 18px;
    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden
}

.blog-foot.hero-pro {
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding-top:14px;
    border-top:1px dashed rgba(45,18,72,.12);
    margin-top:auto;
    transition:border-color .3s ease
}

.blog-card.hero-pro:hover .blog-foot:where(.hero-pro) {
    border-top-color:var(--bc-ring)
}

.blog-author.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:6px;
    font-size:12px;
    font-weight:500;
    color:var(--heading)
}

.blog-author-dot.hero-pro {
    width:6px;
    height:6px;
    border-radius:50%;
    background:var(--bc-accent);
    box-shadow:0 0 0 3px var(--bc-soft)
}

.blog-read.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:5px;
    font-size:11.5px;
    font-weight:600;
    letter-spacing:.06em;
    text-transform:uppercase;
    color:var(--bc-accent);
    transition:gap .3s ease
}

.blog-card.hero-pro:hover .blog-read:where(.hero-pro) {
    gap:9px
}

@media(max-width:1024px) {
    .blog-grid.hero-pro {
        grid-template-columns:repeat(2,1fr)
    }

    .blog-card.hero-pro:nth-child(3) {
        grid-column:span 2;
        max-width:520px;
        justify-self:center;
        width:100%
    }

    .blog-title.hero-pro {
        font-size:2.2rem
    }

    
}

@media(max-width:768px) {
    .blog-section.hero-pro {
        padding:70px 0
    }

    .blog-head.hero-pro {
        flex-direction:column;
        align-items:center;
        text-align:center;
        gap:18px;
        margin-bottom:36px
    }

    .blog-head-left.hero-pro {
        max-width:100%
    }

    .blog-grid.hero-pro {
        grid-template-columns:repeat(2,1fr);
        gap:16px
    }

    .blog-card.hero-pro:nth-child(3) {
        grid-column:span 2;
        max-width:480px;
        justify-self:center;
        width:100%
    }

    .blog-title.hero-pro {
        font-size:1.9rem
    }

    
}

@media(max-width:600px) {
    .blog-grid.hero-pro {
        grid-template-columns:1fr;
        gap:18px
    }

    .blog-card.hero-pro:nth-child(3) {
        grid-column:auto;
        max-width:none
    }

    
}

@media(max-width:480px) {
    .blog-section.hero-pro {
        padding:56px 0
    }

    .blog-title.hero-pro {
        font-size:1.65rem
    }

    .blog-view-all.hero-pro {
        padding:10px 18px;
        font-size:12.5px
    }

    .blog-body.hero-pro {
        padding:18px 18px 16px
    }

    .blog-card-title.hero-pro {
        font-size:16px
    }

    .blog-excerpt.hero-pro {
        font-size:13px;
        -webkit-line-clamp:2
    }

    .blog-cat-pill.hero-pro {
        font-size:10px;
        padding:5px 10px 5px 8px
    }

    .blog-thumb-reads.hero-pro {
        font-size:10px;
        padding:4px 9px 4px 7px
    }

    
}

.hero.hero-pro {
    position:relative;
    padding:110px 0 90px;
    overflow:hidden;
    min-height:640px;
    display:flex;
    align-items:center;
    background:radial-gradient(1100px 700px at 85% 15%,rgba(233,30,140,.18) 0%,transparent 55%),radial-gradient(900px 600px at 10% 80%,rgba(124,58,237,.14) 0%,transparent 55%),radial-gradient(700px 500px at 70% 90%,rgba(245,196,107,.14) 0%,transparent 55%),linear-gradient(135deg,#fff5fa,#f9e8f5 22%,#efe2ff 48%,#f6ecff 68%,#fff3e6);
    border-bottom:1px solid rgba(233,30,140,.12)
}

.hero-overlay.hero-pro {
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    z-index:0;
    pointer-events:none;
    background:radial-gradient(ellipse 55% 60% at 78% 22%,rgba(233,30,140,.18) 0%,transparent 62%),radial-gradient(ellipse 50% 50% at 18% 82%,rgba(245,158,11,.12) 0%,transparent 62%),radial-gradient(ellipse 45% 50% at 50% 50%,rgba(192,38,211,.09) 0%,transparent 65%);
    animation:svelte-13wmnd-heroGlow 16s ease-in-out infinite alternate
}

@keyframes svelte-13wmnd-heroGlow {
    0% {
        transform:translateZ(0) scale(1)
    }

    to {
        transform:translate3d(-20px,10px,0) scale(1.08)
    }

    
}

.hero.hero-pro:before {
    content: "";
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    z-index:0;
    pointer-events:none;
    background-image:radial-gradient(rgba(233,30,140,.08) 1px,transparent 1px),linear-gradient(to right,rgba(124,58,237,.04) 1px,transparent 1px),linear-gradient(to bottom,rgba(124,58,237,.04) 1px,transparent 1px);
    background-size:32px 32px,64px 64px,64px 64px;
    -webkit-mask-image:radial-gradient(ellipse 80% 80% at 50% 50%,#000 40%,transparent 85%);
    mask-image:radial-gradient(ellipse 80% 80% at 50% 50%,#000 40%,transparent 85%)
}

.hero.hero-pro:after {
   content: "";
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    z-index:0;
    pointer-events:none;
    background:linear-gradient(115deg,transparent 0%,transparent 45%,rgba(255,255,255,.35) 50%,transparent 55%,transparent 100%);
    background-size:300% 100%;
    animation:svelte-13wmnd-heroSheen 10s ease-in-out infinite;
    mix-blend-mode:overlay;
    opacity:.6
}

@keyframes svelte-13wmnd-heroSheen {
    0% {
        background-position:200% 0
    }

    to {
        background-position:-100% 0
    }

    
}

.hero.hero-pro .grid-container:where(.hero-pro) {
    position:relative;
    z-index:1
}

.hero-inner.hero-pro {
    display:grid;
    grid-template-columns:minmax(0,1.15fr) minmax(0,.85fr);
    gap:60px;
    align-items:center
}

.hero-content.hero-pro {
    max-width:700px
}

.hero-visual.hero-pro {
    position:relative;
    min-height:520px;
    display:flex;
    align-items:center;
    justify-content:center
}

.hv-orbit.hero-pro {
    position:absolute;
    border-radius:50%;
    animation:svelte-13wmnd-hvSpin 30s linear infinite;
    pointer-events:none
}

.hv-orbit-lg.hero-pro {
    width:460px;
    height:460px;
    border:1.5px dashed rgba(233,30,140,.35);
    box-shadow:inset 0 0 60px #e91e8c0f,0 0 60px #e91e8c1a
}

.hv-orbit-md.hero-pro {
    width:340px;
    height:340px;
    border:1.5px dashed rgba(124,58,237,.32);
    animation-duration:22s;
    animation-direction:reverse;
    box-shadow:inset 0 0 50px #7c3aed0f
}

.hv-visual-glow.hero-pro {
    position:absolute;
    width:380px;
    height:380px;
    border-radius:50%;
    background:radial-gradient(circle,rgba(233,30,140,.18) 0%,rgba(124,58,237,.1) 45%,transparent 70%);
    filter:blur(40px);
    z-index:0;
    pointer-events:none;
    animation:svelte-13wmnd-hvGlowPulse 5s ease-in-out infinite
}

@keyframes svelte-13wmnd-hvGlowPulse {
    0%,to {
        opacity:.7;
        transform:scale(1)
    }

    50% {
        opacity:1;
        transform:scale(1.1)
    }

    
}

@keyframes svelte-13wmnd-hvSpin {
    to {
        transform:rotate(360deg)
    }

    
}

.hv-sparkle.hero-pro {
    position:absolute;
    color:var(--rose);
    font-size:18px;
    opacity:.7;
    animation:svelte-13wmnd-hvTwinkle 3s ease-in-out infinite;
    pointer-events:none
}

.hv-sp-1.hero-pro {
    top:6%;
    right:18%;
    color:#f5c46b;
    font-size:22px
}

.hv-sp-2.hero-pro {
    bottom:10%;
    left:10%;
    color:#c026d3;
    animation-delay:-1s
}

.hv-sp-3.hero-pro {
    top:42%;
    right:4%;
    color:var(--rose);
    font-size:14px;
    animation-delay:-2s
}

@keyframes svelte-13wmnd-hvTwinkle {
    0%,to {
        opacity:.25;
        transform:scale(.7) rotate(0)
    }

    50% {
        opacity:1;
        transform:scale(1.2) rotate(180deg)
    }

    
}

.hv-orbit-avatars.hero-pro {
    position:absolute;
    width:440px;
    height:440px;
    animation:svelte-13wmnd-hvSpin 36s linear infinite;
    pointer-events:none
}

.hv-orbit-av.hero-pro {
    position:absolute;
    width:46px;
    height:46px;
    border-radius:50%;
    overflow:visible;
    box-shadow:0 8px 24px #2d124833,0 0 0 3px #fff,0 0 0 4px #e91e8c59;
    animation:svelte-13wmnd-hvSpin 36s linear infinite reverse
}

.hv-orbit-av.hero-pro img:where(.hero-pro) {
    width:100%;
    height:100%;
    border-radius:50%;
    object-fit:cover
}

.hv-orbit-check.hero-pro {
    position:absolute;
    right:-3px;
    bottom:-3px;
    width:16px;
    height:16px;
    background:linear-gradient(135deg,#10b981,#059669);
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    border:2px solid #fff
}

.hv-orbit-av-0.hero-pro {
    top:-2%;
    left:50%;
    transform:translate(-50%)
}

.hv-orbit-av-1.hero-pro {
    top:50%;
    right:-2%;
    transform:translateY(-50%)
}

.hv-orbit-av-2.hero-pro {
    bottom:-2%;
    left:50%;
    transform:translate(-50%)
}

.hv-orbit-av-3.hero-pro {
    top:50%;
    left:-2%;
    transform:translateY(-50%)
}

.hv-panel.hero-pro {
    position:relative;
    width:330px;
    padding:28px 20px 20px;
    border-radius:28px;
    background:radial-gradient(130% 80% at 20% 0%,rgba(255,220,235,.85) 0%,transparent 55%),radial-gradient(120% 90% at 100% 100%,rgba(230,210,255,.7) 0%,transparent 55%),linear-gradient(160deg,#fffffff5,#fff8fdeb);
    border:1px solid rgba(255,255,255,.9);
    box-shadow:0 40px 100px #4b146447,0 20px 40px #e91e8c26,0 0 0 1px #e91e8c14,inset 0 1px #fffffff2,inset 0 -20px 40px #e91e8c0a;
    -webkit-backdrop-filter:blur(20px);
    backdrop-filter:blur(20px);
    z-index:2;
    animation:svelte-13wmnd-panelFloat 6s ease-in-out infinite
}

@keyframes svelte-13wmnd-panelFloat {
    0%,to {
        transform:translateY(0) rotate(-.4deg)
    }

    50% {
        transform:translateY(-8px) rotate(.4deg)
    }

    
}

.hv-ribbon.hero-pro {
    position:absolute;
    top:-14px;
    left:50%;
    transform:translate(-50%);
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:7px 16px;
    background:linear-gradient(135deg,#f5c46b,#e0a040,#c08028);
    color:#3a2500;
    font-size:10.5px;
    font-weight:600;
    letter-spacing:.15em;
    border-radius:30px;
    border:2px solid #fff;
    box-shadow:0 10px 24px #e0a04073,inset 0 1px #fff9;
    white-space:nowrap;
    z-index:3
}

.hero-visual.hero-pro {
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center
}

.hvx-ambient.hero-pro {
    position:absolute;
    top:-60px;
    right:-60px;
    bottom:-60px;
    left:-60px;
    border-radius:50%;
    background:radial-gradient(circle at 30% 30%,rgba(233,30,140,.28) 0%,transparent 55%),radial-gradient(circle at 70% 70%,rgba(245,158,11,.24) 0%,transparent 55%);
    filter:blur(60px);
    pointer-events:none;
    animation:svelte-13wmnd-hvxBreathe 8s ease-in-out infinite
}

@keyframes svelte-13wmnd-hvxBreathe {
    0%,to {
        opacity:.85;
        transform:scale(1)
    }

    50% {
        opacity:1;
        transform:scale(1.05)
    }

    
}

/* ==========================================
   DESKTOP ONLY: CUSTOM SCROLLBAR (min-width: 1025px)
   ========================================== */
@media screen and (min-width: 1025px) {
  html, body {
    overflow-y: auto !important;
    scroll-behavior: smooth;
  }

  /* Scrollbar Track & Base Width */
  ::-webkit-scrollbar {
    width: 10px;
    background-color: #0f172a;
  }

  ::-webkit-scrollbar-track {
    background: #0f172a;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
  }

  /* Pink/Magenta Gradient Thumb */
  ::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #f7207a 0%, #b5175a 100%);
    border-radius: 20px;
    border: 2px solid #0f172a;
    transition: background 0.3s ease;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff3d8b 0%, #d81b6c 100%);
  }

  /* Firefox Support for Desktop */
  * {
    scrollbar-width: thin;
    scrollbar-color: #f7207a #0f172a;
  }
}

/* ==========================================
   MOBILE & TABLET: HIDE CUSTOM SCROLLBAR (max-width: 1024px)
   ========================================== */
@media screen and (max-width: 1024px) {
  /* Hide scrollbar for Chrome, Safari and Opera */
  ::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
  }

  /* Hide scrollbar for Firefox and IE/Edge */
  html, body, * {
    scrollbar-width: none !important; /* Firefox */
    -ms-overflow-style: none !important; /* IE and Edge */
  }
}

.hvx-grid.hero-pro {
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    background-image:radial-gradient(circle,rgba(233,30,140,.18) 1px,transparent 1.5px);
    background-size:28px 28px;
    -webkit-mask-image:radial-gradient(ellipse at center,#000 40%,transparent 78%);
    mask-image:radial-gradient(ellipse at center,#000 40%,transparent 78%);
    pointer-events:none;
    opacity:.7
}

.hvx-card.hero-pro {
    position:relative;
    z-index:2;
    width:100%;
    max-width:340px;
    padding:12px 12px 14px;
    background:#ffffffe6;
    border:1px solid rgba(255,255,255,1);
    border-radius:28px;
    -webkit-backdrop-filter:blur(14px);
    backdrop-filter:blur(14px);
    box-shadow:0 40px 80px #2d12482e,0 0 0 1px #e91e8c1f,inset 0 1px #fffc
}

.hvx-img.hero-pro {
    position:relative;
    aspect-ratio:4/5;
    border-radius:20px;
    overflow:hidden;
    margin-bottom:12px
}

.hvx-img.hero-pro img:where(.hero-pro) {
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .8s cubic-bezier(.22,1,.36,1)
}

.hvx-img-cycle.hero-pro {
    animation:svelte-13wmnd-hvxFadeIn .8s cubic-bezier(.22,1,.36,1)
}

.hvx-info-cycle.hero-pro {
    animation:svelte-13wmnd-hvxSlideIn .7s cubic-bezier(.22,1,.36,1)
}

@keyframes svelte-13wmnd-hvxFadeIn {
    0% {
        opacity:0;
        transform:scale(1.08)
    }

    to {
        opacity:1;
        transform:scale(1)
    }

    
}

@keyframes svelte-13wmnd-hvxSlideIn {
    0% {
        opacity:0;
        transform:translateY(10px)
    }

    to {
        opacity:1;
        transform:translateY(0)
    }

    
}

.hvx-card.hero-pro:hover .hvx-img:where(.hero-pro) img:where(.hero-pro) {
    transform:scale(1.04)
}

.hvx-img-grad.hero-pro {
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    background:linear-gradient(180deg,rgba(0,0,0,.25) 0%,transparent 30%,transparent 55%,rgba(0,0,0,.65) 100%);
    pointer-events:none
}

.hvx-top.hero-pro {
    position:absolute;
    top:12px;
    left:12px;
    right:12px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    z-index:2
}

.hvx-verify.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:5px;
    padding:5px 10px 5px 7px;
    background:linear-gradient(135deg,var(--rose),var(--rose-dark));
    color:#fff;
    border-radius:50px;
    font-size:10.5px;
    font-weight:700;
    letter-spacing:.04em;
    box-shadow:0 6px 14px #e91e8c66
}

.hvx-rate.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:4px;
    padding:5px 10px;
    background:#ffffffeb;
    color:#1a0611;
    border-radius:50px;
    font-size:11px;
    font-weight:700;
    -webkit-backdrop-filter:blur(8px);
    backdrop-filter:blur(8px);
    box-shadow:0 4px 10px #00000026
}

.hvx-live-ring.hero-pro {
    position:absolute;
    bottom:68px;
    right:12px;
    z-index:2;
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:5px 12px 5px 8px;
    background:#10b981f2;
    color:#fff;
    border-radius:50px;
    font-size:10.5px;
    font-weight:700;
    letter-spacing:.04em;
    box-shadow:0 6px 16px #10b98173
}

.hvx-live-dot.hero-pro {
    width:7px;
    height:7px;
    border-radius:50%;
    background:#fff;
    box-shadow:0 0 0 3px #ffffff59;
    animation:svelte-13wmnd-hvxLive 1.8s ease-in-out infinite
}

@keyframes svelte-13wmnd-hvxLive {
    0%,to {
        opacity:1
    }

    50% {
        opacity:.45
    }

    
}

.hvx-info.hero-pro {
    position:absolute;
    bottom:14px;
    left:14px;
    right:14px;
    z-index:2;
    color:#fff
}

.hvx-name.hero-pro {
    font-size:1.35rem;
    font-weight:700;
    letter-spacing:-.02em;
    line-height:1.1;
    text-shadow:0 2px 12px rgba(0,0,0,.5)
}

.hvx-meta.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:6px;
    flex-wrap:wrap;
    margin-top:4px;
    font-size:11.5px;
    font-weight:600;
    color:#ffffffeb
}

.hvx-pin.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:4px
}

.hvx-dot.hero-pro {
    opacity:.55
}

.hvx-price.hero-pro {
    padding:2px 8px;
    background:#ffffff38;
    border:1px solid rgba(255,255,255,.25);
    border-radius:50px;
    font-weight:700;
    -webkit-backdrop-filter:blur(4px);
    backdrop-filter:blur(4px)
}

.hvx-actions.hero-pro {
    display:flex;
    gap:8px;
    padding:0 4px;
    margin-bottom:12px
}

.hvx-wa.hero-pro {
    flex:1;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:7px;
    padding:12px 16px;
    background:linear-gradient(135deg,#25d366,#128c7e);
    color:#fff;
    border-radius:14px;
    font-size:13px;
    font-weight:700;
    letter-spacing:-.01em;
    text-decoration:none;
    box-shadow:0 10px 22px #25d36659;
    transition:transform .3s,box-shadow .3s
}

.hvx-wa.hero-pro:hover {
    transform:translateY(-2px);
    box-shadow:0 14px 30px #25d36680;
    color:#fff
}

.hvx-view.hero-pro {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    padding:12px 16px;
    background:#fff;
    border:1.5px solid rgba(233,30,140,.2);
    color:var(--rose);
    border-radius:14px;
    font-size:12.5px;
    font-weight:700;
    text-decoration:none;
    transition:all .3s
}

.hvx-view.hero-pro:hover {
    background:linear-gradient(135deg,var(--rose),var(--rose-dark));
    color:#fff;
    border-color:transparent
}

.hvx-next.hero-pro {
    display:flex;
    align-items:center;
    gap:12px;
    padding:10px 12px;
    background:linear-gradient(135deg,#fff7fb,#fff5ec);
    border-radius:14px;
    border:1px solid rgba(233,30,140,.1)
}

.hvx-next-avs.hero-pro {
    display:flex;
    flex-shrink:0
}

.hvx-next-av.hero-pro {
    position:relative;
    width:28px;
    height:28px;
    border-radius:50%;
    border:2px solid #fff;
    overflow:hidden;
    box-shadow:0 3px 6px #2d12481a
}

.hvx-next-av.hero-pro+.hvx-next-av:where(.hero-pro) {
    margin-left:-10px
}

.hvx-next-av.hero-pro img:where(.hero-pro) {
    width:100%;
    height:100%;
    object-fit:cover
}

.hvx-next-live.hero-pro {
    position:absolute;
    bottom:0;
    right:0;
    width:8px;
    height:8px;
    border-radius:50%;
    background:#10b981;
    border:1.5px solid #fff
}

.hvx-next-body.hero-pro {
    flex:1;
    min-width:0
}

.hvx-next-body.hero-pro strong:where(.hero-pro) {
    display:block;
    font-size:12px;
    font-weight:700;
    letter-spacing:-.01em;
    color:#1a0611
}

.hvx-next-body.hero-pro span:where(.hero-pro) {
    display:block;
    font-size:10.5px;
    font-weight:600;
    color:var(--text-muted);
    margin-top:1px
}

.hvx-float.hero-pro {
    position:absolute;
    z-index:3;
    background:#fff;
    border:1px solid rgba(45,18,72,.06);
    border-radius:16px;
    box-shadow:0 18px 40px #2d124824,0 4px 10px #2d124814;
    padding:10px 12px;
    animation:svelte-13wmnd-hvxFloat 6s ease-in-out infinite
}

@keyframes svelte-13wmnd-hvxFloat {
    0%,to {
        translate:0 0
    }

    50% {
        translate:0 -8px
    }

    
}

.hvx-float-chat.hero-pro {
    top:6%;
    left:-8%;
    display:flex;
    align-items:center;
    gap:10px;
    min-width:180px;
    animation-delay:-1s;
    border-radius:50px;
    padding:8px 14px 8px 8px
}

.hvx-float-av.hero-pro {
    width:32px;
    height:32px;
    border-radius:50%;
    overflow:hidden;
    border:2px solid #fff;
    box-shadow:0 3px 8px #2d124824;
    flex-shrink:0
}

.hvx-float-av.hero-pro img:where(.hero-pro) {
    width:100%;
    height:100%;
    object-fit:cover
}

.hvx-float-t.hero-pro {
    font-size:12px;
    font-weight:700;
    letter-spacing:-.01em;
    color:#1a0611;
    display:inline-flex;
    align-items:center;
    gap:6px
}

.hvx-float-t-xs.hero-pro {
    font-size:11px
}

.hvx-float-time.hero-pro {
    font-size:9.5px;
    font-weight:500;
    color:var(--text-dim, #9b8aaf)
}

.hvx-float-msg.hero-pro {
    font-size:10.5px;
    font-weight:600;
    color:var(--text-muted);
    margin-top:1px;
    max-width:180px
}

.hvx-float-s.hero-pro {
    font-size:10px;
    font-weight:600;
    color:var(--text-muted);
    margin-top:1px
}

.hvx-float-rating.hero-pro {
    top:18%;
    right:-10%;
    text-align:center;
    animation-delay:-3s
}

.hvx-float-stars.hero-pro {
    display:inline-flex;
    gap:1px;
    margin-bottom:3px
}

.hvx-float-reply.hero-pro {
    bottom:12%;
    left:-12%;
    display:flex;
    align-items:center;
    gap:10px;
    animation-delay:-4.5s
}

.hvx-float-reply-ic.hero-pro {
    width:28px;
    height:28px;
    border-radius:50%;
    background:#f59e0b26;
    color:#d97706;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0
}

.hv-spot-img.hero-pro {
    position:relative;
    width:100%;
    aspect-ratio:4 / 5;
    border-radius:20px;
    overflow:hidden;
    margin:8px 0 14px;
    box-shadow:0 12px 30px #2d124833
}

.hv-spot-img.hero-pro img:where(.hero-pro) {
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .6s ease
}

.hv-spot-grad.hero-pro {
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    background:linear-gradient(180deg,transparent 45%,rgba(26,18,46,.85) 100%)
}

.hv-spot-verified.hero-pro {
    position:absolute;
    top:10px;
    left:10px;
    display:inline-flex;
    align-items:center;
    gap:3px;
    padding:4px 9px;
    background:linear-gradient(135deg,#e91e8c,#c026d3);
    color:#fff;
    font-size:10px;
    font-weight:600;
    border-radius:12px;
    box-shadow:0 4px 12px #e91e8c66
}

.hv-spot-live.hero-pro {
    position:absolute;
    top:10px;
    right:10px;
    display:inline-flex;
    align-items:center;
    gap:5px;
    padding:4px 10px;
    background:#fffffff2;
    color:#059669;
    font-size:10px;
    font-weight:600;
    border-radius:12px;
    -webkit-backdrop-filter:blur(8px);
    backdrop-filter:blur(8px)
}

.hv-spot-live-dot.hero-pro {
    width:6px;
    height:6px;
    background:#10b981;
    border-radius:50%;
    box-shadow:0 0 0 3px #10b98133;
    animation:svelte-13wmnd-livePulse 1.4s ease-in-out infinite
}

.hv-spot-overlay.hero-pro {
    position:absolute;
    left:14px;
    right:14px;
    bottom:12px;
    color:#fff
}

.hv-spot-name.hero-pro {
    font-size:20px;
    font-weight:600;
    letter-spacing:-.02em;
    text-shadow:0 2px 10px rgba(0,0,0,.35)
}

.hv-spot-loc.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:4px;
    font-size:11.5px;
    font-weight:600;
    color:#ffffffe6;
    margin-top:3px
}

.hv-spot-row.hero-pro {
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:12px
}

.hv-spot-rating.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:5px;
    font-size:12px;
    color:var(--text-muted)
}

.hv-spot-price.hero-pro {
    font-size:20px;
    font-weight:600;
    background:linear-gradient(135deg,var(--rose),#c026d3);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
    letter-spacing:-.02em
}

.hv-spot-price.hero-pro span:where(.hero-pro) {
    font-size:11px;
    font-weight:600;
    color:var(--text-muted);
    -webkit-text-fill-color:var(--text-muted);
    margin-left:2px
}

.hv-perks.hero-pro {
    display:flex;
    gap:6px;
    margin-bottom:14px
}

.hv-perk.hero-pro {
    flex:1;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:4px;
    padding:7px 6px;
    background:#e91e8c12;
    border:1px solid rgba(233,30,140,.15);
    color:var(--rose);
    font-size:10.5px;
    font-weight:500;
    border-radius:10px;
    white-space:nowrap
}

.hv-cta.hero-pro {
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    width:100%;
    padding:13px;
    background:linear-gradient(135deg,#25d366,#128c7e);
    color:#fff;
    font-size:13px;
    font-weight:600;
    border-radius:14px;
    text-decoration:none;
    box-shadow:0 10px 24px #25d36659;
    transition:transform .25s ease,box-shadow .25s ease;
    margin-bottom:14px
}

.hv-cta.hero-pro:hover {
    color:#fff;
    transform:translateY(-2px);
    box-shadow:0 14px 32px #25d36680
}

.hv-more.hero-pro {
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding-top:12px;
    border-top:1px dashed rgba(45,18,72,.12)
}

.hv-more-label.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:6px;
    font-size:11px;
    font-weight:500;
    color:var(--text-muted)
}

.hv-more-dot.hero-pro {
    width:6px;
    height:6px;
    background:#10b981;
    border-radius:50%;
    box-shadow:0 0 0 3px #10b9812e;
    animation:svelte-13wmnd-livePulse 1.5s ease-in-out infinite
}

.hv-more-thumbs.hero-pro {
    display:flex
}

.hv-more-thumb.hero-pro {
    width:26px;
    height:26px;
    border-radius:50%;
    overflow:hidden;
    border:2px solid #fff;
    margin-left:-8px;
    box-shadow:0 2px 8px #2d124826
}

.hv-more-thumb.hero-pro:first-child {
    margin-left:0
}

.hv-more-thumb.hero-pro img:where(.hero-pro) {
    width:100%;
    height:100%;
    object-fit:cover
}

.hv-medal.hero-pro {
    position:absolute;
    top:-34px;
    left:50%;
    transform:translate(-50%);
    display:none;
    flex-direction:column;
    align-items:center;
    z-index:3
}

.hv-medal-ring.hero-pro {
    position:absolute;
    top:-12px;
    right:-12px;
    bottom:-12px;
    left:-12px;
    border-radius:50%;
    background:conic-gradient(from 0deg,#f5c46b,#e91e8c,#c026d3,#7c3aed,#f5c46b);
    animation:svelte-13wmnd-hvSpin 4s linear infinite;
    filter:blur(10px);
    opacity:.85
}

.hv-medal-ring.hero-pro:after {
    content: "";
    position:absolute;
    top:8px;
    right:8px;
    bottom:8px;
    left:8px;
    border-radius:50%;
    background:conic-gradient(from 180deg,#fff,#f5c46b,#fff);
    animation:svelte-13wmnd-hvSpin 3s linear infinite reverse;
    opacity:.4
}

.hv-medal-core.hero-pro {
    position:relative;
    width:62px;
    height:62px;
    border-radius:50%;
    background:radial-gradient(circle at 30% 25%,#fff9e0,#f5c46b 25%,#e0a040 55%,#a86d1a);
    color:#4a2a00;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 30px #e0a0408c,0 0 20px #f5c46b99,inset 0 3px #ffffffb3,inset 0 -3px 6px #78460a59;
    border:2.5px solid #fff
}

.hv-medal-core.hero-pro:before {
   content: "";
    position:absolute;
    top:6px;
    left:10px;
    width:18px;
    height:10px;
    border-radius:50%;
    background:#ffffff8c;
    filter:blur(3px)
}

.hv-medal-label.hero-pro {
    margin-top:8px;
    font-size:10px;
    font-weight:600;
    letter-spacing:.14em;
    color:#b45309;
    padding:3px 10px;
    background:#f5c46b38;
    border:1px solid rgba(245,196,107,.5);
    border-radius:10px;
    -webkit-backdrop-filter:blur(6px);
    backdrop-filter:blur(6px)
}

.hv-panel-title.hero-pro {
    text-align:center;
    font-size:11px;
    font-weight:500;
    letter-spacing:.18em;
    color:var(--text-muted);
    text-transform:uppercase;
    margin-bottom:14px
}

.hv-trio.hero-pro {
    display:flex;
    justify-content:center;
    margin-bottom:12px;
    height:120px;
    position:relative
}

.hv-trio-card.hero-pro {
    position:relative;
    width:86px;
    height:112px;
    border-radius:16px;
    overflow:hidden;
    border:2.5px solid #fff;
    box-shadow:0 14px 30px #2d124838,0 0 0 1px #e91e8c1f;
    background:#eee;
    margin-left:-20px;
    transform:rotate(calc((var(--i) - 1) * 7deg)) translateY(calc(abs(var(--i) - 1)*4px));
    transition:transform .4s cubic-bezier(.22,1,.36,1),box-shadow .4s ease;
    z-index:calc(3 - var(--i))
}

.hv-trio-card.hero-pro:before {
    content: "";
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    background:linear-gradient(180deg,transparent 50%,rgba(26,18,46,.5) 100%);
    z-index:1
}

.hv-trio-card.hero-pro:first-child {
    margin-left:0
}

.hv-trio-card.hero-pro:nth-child(2) {
    z-index:4;
    transform:translateY(-10px) scale(1.08);
    box-shadow:0 20px 40px #e91e8c59,0 0 0 2px #f5c46b80,0 0 30px #e91e8c40;
    border-color:#fff
}

.hv-trio-card.hero-pro:nth-child(2):after {
    content: "";
    position:absolute;
    top:6px;
    left:6px;
    width:14px;
    height:14px;
    background:linear-gradient(135deg,#f5c46b,#d97706);
    border:2px solid #fff;
    border-radius:50%;
    z-index:2;
    box-shadow:0 2px 6px #d9770680
}

.hv-trio-card.hero-pro img:where(.hero-pro) {
    width:100%;
    height:100%;
    object-fit:cover
}

.hv-trio-card.hero-pro:hover {
    transform:translateY(-10px) scale(1.08) rotate(0);
    box-shadow:0 16px 36px #e91e8c40;
    z-index:5
}

.hv-trio-tag.hero-pro {
    position:absolute;
    bottom:6px;
    left:50%;
    transform:translate(-50%);
    font-size:10px;
    font-weight:600;
    color:#fff;
    background:#1a122eb3;
    padding:2px 8px;
    border-radius:8px;
    -webkit-backdrop-filter:blur(6px);
    backdrop-filter:blur(6px)
}

.hv-trio-meta.hero-pro {
    text-align:center;
    margin-bottom:14px
}

.hv-stars.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:2px;
    margin-bottom:4px
}

.hv-stars.hero-pro span:where(.hero-pro) {
    margin-left:6px;
    font-size:12px;
    font-weight:600;
    color:var(--heading)
}

.hv-trio-caption.hero-pro {
    font-size:11px;
    color:var(--text-muted);
    font-weight:600
}

.hv-divider.hero-pro {
    height:1px;
    background:linear-gradient(90deg,transparent,rgba(45,18,72,.12),transparent);
    margin:12px 0 14px
}

.hv-feed-head.hero-pro {
    display:flex;
    align-items:center;
    gap:6px;
    font-size:10px;
    font-weight:600;
    letter-spacing:.15em;
    color:#059669;
    margin-bottom:10px
}

.hv-feed-dot.hero-pro {
    width:6px;
    height:6px;
    background:#10b981;
    border-radius:50%;
    box-shadow:0 0 0 3px #10b98133;
    animation:svelte-13wmnd-livePulse 1.4s ease-in-out infinite
}

.hv-feed-track.hero-pro {
    display:flex;
    flex-direction:column;
    gap:9px
}

.hv-feed-item.hero-pro {
    display:flex;
    align-items:center;
    gap:10px;
    padding:8px 10px;
    background:#ffffff8c;
    border:1px solid rgba(45,18,72,.06);
    border-radius:12px;
    animation:svelte-13wmnd-hvFeedIn .6s ease both
}

.hv-feed-item.hero-pro:nth-child(1) {
    animation-delay:.1s
}

.hv-feed-item.hero-pro:nth-child(2) {
    animation-delay:.3s
}

.hv-feed-item.hero-pro:nth-child(3) {
    animation-delay:.5s
}

@keyframes svelte-13wmnd-hvFeedIn {
    0% {
        opacity:0;
        transform:translate(10px)
    }

    to {
        opacity:1;
        transform:translate(0)
    }

    
}

.hv-feed-ic.hero-pro {
    width:24px;
    height:24px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0
}

.hv-ic-rose.hero-pro {
    background:#e91e8c24;
    color:#e91e8c
}

.hv-ic-green.hero-pro {
    background:#10b98124;
    color:#10b981
}

.hv-ic-gold.hero-pro {
    background:#f5c46b38;
    color:#d97706
}

.hv-feed-t.hero-pro {
    font-size:11.5px;
    font-weight:500;
    color:var(--heading);
    line-height:1.2
}

.hv-feed-s.hero-pro {
    font-size:10px;
    color:var(--text-muted);
    margin-top:2px
}

.hv-float.hero-pro {
    position:absolute;
    display:inline-flex;
    align-items:center;
    gap:7px;
    padding:10px 16px;
    background:linear-gradient(135deg,#fff,#fff9fc);
    border:1px solid rgba(255,255,255,.9);
    border-radius:50px;
    font-size:12px;
    font-weight:600;
    color:var(--heading);
    box-shadow:0 14px 40px #2d124838,0 0 0 1px #e91e8c1a,inset 0 1px #fff;
    animation:svelte-13wmnd-hvFloat 4s ease-in-out infinite;
    z-index:4;
    -webkit-backdrop-filter:blur(12px);
    backdrop-filter:blur(12px)
}

.hv-float.hero-pro:before {
   content: "";
    position:absolute;
    top:-1px;
    right:-1px;
    bottom:-1px;
    left:-1px;
    border-radius:50px;
    padding:1px;
    background:linear-gradient(135deg,rgba(245,196,107,.6),transparent 50%,rgba(233,30,140,.4));
    -webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
    -webkit-mask-composite:xor;
    mask-composite:exclude;
    pointer-events:none
}

.hv-float-top.hero-pro {
    top:8%;
    left:-6%;
    color:#10b981;
    animation-delay:-1s
}

.hv-float-top.hero-pro svg:where(.hero-pro) {
    color:#10b981
}

.hv-float-bottom.hero-pro {
    bottom:8%;
    right:-6%;
    color:#25d366
}

.hv-float-bottom.hero-pro svg:where(.hero-pro) {
    color:#25d366
}

@keyframes svelte-13wmnd-hvFloat {
    0%,to {
        transform:translateY(0)
    }

    50% {
        transform:translateY(-8px)
    }

    
}

.hero-badge-row.hero-pro {
    display:flex;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
    margin-bottom:28px
}

.hero-badge.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:7px;
    background:#f59e0b1f;
    border:1px solid rgba(245,158,11,.3);
    color:#b45309;
    font-size:12px;
    font-weight:500;
    letter-spacing:.4px;
    padding:6px 14px;
    border-radius:20px
}

.hero-live-pill.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:7px;
    background:#10b9811a;
    border:1px solid rgba(16,185,129,.25);
    color:#059669;
    font-size:12px;
    font-weight:500;
    padding:6px 14px;
    border-radius:20px
}

.live-dot.hero-pro {
    width:7px;
    height:7px;
    border-radius:50%;
    background:#10b981;
    box-shadow:0 0 6px #10b98199;
    flex-shrink:0;
    animation:svelte-13wmnd-livePulse 1.5s ease-in-out infinite
}

@keyframes svelte-13wmnd-livePulse {
    0%,to {
        opacity:1;
        transform:scale(1)
    }

    50% {
        opacity:.5;
        transform:scale(.7)
    }

    
}

.hero-h1.hero-pro {
    font-size:clamp(2rem,3.2vw,2.9rem);
    line-height:1.15;
    font-weight:600;
    letter-spacing:-.02em;
    color:var(--heading);
    margin-bottom:18px
}

.h1-gradient.hero-pro {
    background:linear-gradient(135deg,var(--rose) 0%,var(--rose-dark) 45%,#b5007a 75%,var(--gold) 100%);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
    display:block
}

.hero-desc.hero-pro {
    color:var(--text-muted);
    font-size:16px;
    line-height:1.78;
    margin-bottom:26px;
    max-width:520px
}

.hero-desc.hero-pro a:where(.hero-pro) {
    color:#e91e8c;
    font-weight:600;
    text-decoration:underline;
    text-underline-offset:3px;
    text-decoration-color:#e91e8c59;
    transition:text-decoration-color .2s
}

.hero-desc.hero-pro a:where(.hero-pro):hover {
    text-decoration-color:#e91e8c
}

.hero-tags.hero-pro {
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-bottom:36px
}

.htag.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:5px;
    background:#ffffffbf;
    border:1px solid var(--border);
    color:var(--text-muted);
    font-size:12px;
    font-weight:600;
    padding:6px 13px;
    border-radius:20px;
    box-shadow:0 1px 4px #2d12480f;
    transition:all .22s ease
}

.htag.hero-pro:hover {
    background:var(--rose-subtle);
    border-color:#e91e8c40;
    color:var(--rose);
    transform:translateY(-1px)
}

.hero-actions.hero-pro {
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    margin-bottom:44px
}

.hero-cta-primary.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:9px;
    background:linear-gradient(135deg,var(--rose),var(--rose-dark));
    color:#fff;
    font-size:15px;
    font-weight:500;
    padding:15px 34px;
    border-radius:var(--radius-sm);
    text-decoration:none;
    transition:all .25s ease;
    box-shadow:0 6px 24px #e91e8c59;
    letter-spacing:.1px
}

.hero-cta-primary.hero-pro:hover {
    color:#fff;
    transform:translateY(-2px);
    box-shadow:0 10px 36px #e91e8c80
}

.hero-cta-ghost.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:9px;
    background:#fffc;
    border:1.5px solid var(--border);
    color:var(--heading);
    font-size:15px;
    font-weight:600;
    padding:14px 28px;
    border-radius:var(--radius-sm);
    text-decoration:none;
    transition:all .25s ease;
    box-shadow:0 2px 10px #2d124814
}

.hero-cta-ghost.hero-pro:hover {
    color:var(--rose);
    border-color:#e91e8c59;
    background:#fff;
    transform:translateY(-2px);
    box-shadow:0 6px 20px #e91e8c1f
}

.hero-stats-strip.hero-pro {
    display:inline-flex;
    align-items:center;
    background:#ffffffd1;
    border:1px solid var(--border);
    border-radius:16px;
    padding:18px 28px;
    box-shadow:0 4px 24px #2d12481a;
    gap:0;
    flex-wrap:wrap
}

.hss-item.hero-pro {
    text-align:center;
    padding:0 24px
}

.hss-item.hero-pro:first-child {
    padding-left:0
}

.hss-item.hero-pro:last-child {
    padding-right:0
}

.hss-num.hero-pro {
    font-size:1.8rem;
    font-weight:600;
    letter-spacing:-.04em;
    line-height:1;
    background:linear-gradient(135deg,var(--rose),var(--rose-dark));
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text
}

.hss-lbl.hero-pro {
    font-size:11px;
    color:var(--text-dim);
    margin-top:4px;
    text-transform:uppercase;
    letter-spacing:.5px
}

.hss-div.hero-pro {
    width:1px;
    height:36px;
    background:var(--border);
    flex-shrink:0
}

.trust-strip.hero-pro {
    background:linear-gradient(135deg,#fce4f0,#f5f0ff,#fff5e6);
    border-top:1px solid rgba(233,30,140,.12);
    border-bottom:1px solid rgba(233,30,140,.1);
    padding:18px 0;
    overflow:hidden
}

.trust-inner.hero-pro {
    display:flex;
    align-items:center;
    gap:0;
    flex-wrap:wrap;
    justify-content:center;
    row-gap:10px
}

.trust-item.hero-pro {
    display:flex;
    align-items:center;
    gap:8px;
    padding:8px 22px;
    color:var(--text-muted);
    font-size:13px;
    font-weight:600
}

@media(max-width:1100px)and (min-width:769px) {
    .trust-strip.hero-pro {
        padding:14px 0
    }

    .trust-inner.hero-pro {
        gap:0;
        flex-wrap:nowrap;
        overflow-x:auto;
        justify-content:flex-start;
        -webkit-overflow-scrolling:touch;
        scrollbar-width:none
    }

    .trust-inner.hero-pro::-webkit-scrollbar {
        display:none
    }

    .trust-item.hero-pro {
        padding:6px 14px;
        font-size:12px;
        white-space:nowrap;
        flex-shrink:0
    }

    .trust-icon.hero-pro {
        width:26px;
        height:26px;
        border-radius:7px
    }

    .trust-sep.hero-pro {
        height:18px
    }

    
}

.trust-icon.hero-pro {
    width:30px;
    height:30px;
    border-radius:8px;
    background:var(--rose-subtle);
    border:1px solid rgba(233,30,140,.18);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0
}

.trust-sep.hero-pro {
    width:1px;
    height:22px;
    background:var(--border);
    flex-shrink:0
}

.trust-sep.hero-pro:last-child {
    display:none
}

.profiles-grid.hero-pro {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px
}

.view-all-wrap.hero-pro {
    text-align:center;
    margin-top:44px
}

.view-all-btn.hero-pro {
    padding:14px 40px;
    font-size:15px
}

.cats-section.hero-pro {
    padding:88px 0;
    background:linear-gradient(135deg,#f5f0ff,#ede9ff,#fdf0ff);
    border-top:1px solid rgba(124,58,237,.12);
    border-bottom:1px solid rgba(124,58,237,.12);
    position:relative;
    overflow:hidden
}

.cats-section.hero-pro:before {
    content: "";
    position:absolute;
    top:-100px;
    right:-100px;
    width:400px;
    height:400px;
    border-radius:50%;
    background:radial-gradient(circle,rgba(124,58,237,.12) 0%,transparent 70%);
    pointer-events:none
}

.cats-section.hero-pro:after {
   content: "";
    position:absolute;
    bottom:-80px;
    left:-80px;
    width:320px;
    height:320px;
    border-radius:50%;
    background:radial-gradient(circle,rgba(233,30,140,.08) 0%,transparent 70%);
    pointer-events:none
}

.cats-grid.hero-pro {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px
}

@media(min-width:1025px) {
    .cats-grid.hero-pro&gt;
    .cat-card:where(.hero-pro):nth-child(n+7) {
        display:none
    }

    
}

.cat-card.hero-pro {
    position:relative;
    display:flex;
    flex-direction:column;
    padding:22px 22px 18px;
    min-height:200px;
    background:#fff;
    border:1px solid rgba(45,18,72,.06);
    border-radius:22px;
    text-decoration:none;
    overflow:hidden;
    transition:transform .35s cubic-bezier(.22,1,.36,1),box-shadow .35s ease,border-color .35s ease;
    box-shadow:0 4px 14px #2d12480a;
    isolation:isolate
}

.cat-card.hero-pro:before {
   content: "";
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    background:var(--cat-grad);
    opacity:0;
    transition:opacity .4s ease;
    z-index:-1
}

.cat-card.hero-pro:hover {
    transform:translateY(-6px);
    border-color:transparent;
    box-shadow:0 24px 50px #2d12482e,0 0 0 1px var(--cat-ring)
}

.cat-card.hero-pro:hover:before {
    opacity:1
}

.cat-blob.hero-pro {
    position:absolute;
    top:-50px;
    right:-50px;
    width:160px;
    height:160px;
    border-radius:50%;
    background:var(--cat-grad);
    opacity:.08;
    filter:blur(10px);
    transition:all .6s ease;
    pointer-events:none;
    z-index:0
}

.cat-card.hero-pro:hover .cat-blob:where(.hero-pro) {
    transform:scale(1.4);
    opacity:.15
}

.cat-shine.hero-pro {
    position:absolute;
    top:0;
    left:-120%;
    width:60%;
    height:100%;
    background:linear-gradient(115deg,transparent 40%,rgba(255,255,255,.35) 50%,transparent 60%);
    transform:skew(-20deg);
    transition:left .8s ease;
    pointer-events:none;
    z-index:1
}

.cat-card.hero-pro:hover .cat-shine:where(.hero-pro) {
    left:140%
}

.cat-head.hero-pro {
    position:relative;
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-bottom:18px;
    z-index:2
}

.cat-icon-wrap.hero-pro {
    position:relative;
    width:54px;
    height:54px;
    border-radius:16px;
    background:var(--cat-soft);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    color:var(--cat-text);
    transition:all .4s cubic-bezier(.22,1,.36,1);
    overflow:hidden
}

.cat-icon-bg.hero-pro {
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    background:var(--cat-grad);
    opacity:0;
    transition:opacity .4s ease
}

.cat-card.hero-pro:hover .cat-icon-wrap:where(.hero-pro) {
    transform:rotate(-6deg) scale(1.08);
    color:#fff;
    box-shadow:0 10px 24px var(--cat-ring)
}

.cat-card.hero-pro:hover .cat-icon-bg:where(.hero-pro) {
    opacity:1
}

.cat-icon.hero-pro {
    position:relative;
    z-index:1
}

.cat-count-pill.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:5px 10px;
    background:#ffffffd9;
    border:1px solid rgba(45,18,72,.08);
    border-radius:50px;
    font-size:11px;
    font-weight:500;
    color:var(--cat-text);
    -webkit-backdrop-filter:blur(8px);
    backdrop-filter:blur(8px);
    transition:all .4s ease
}

.cat-dot.hero-pro {
    width:5px;
    height:5px;
    border-radius:50%;
    background:#10b981;
    box-shadow:0 0 0 3px #10b9812e;
    animation:svelte-13wmnd-livePulse 1.6s ease-in-out infinite
}

.cat-card.hero-pro:hover .cat-count-pill:where(.hero-pro) {
    background:#fffffff2;
    color:var(--cat-text);
    border-color:#ffffffe6
}

.cat-body.hero-pro {
    position:relative;
    flex:1;
    z-index:2
}

.cat-name.hero-pro {
    font-size:20px;
    font-weight:600;
    color:var(--heading);
    letter-spacing:-.025em;
    margin-bottom:6px;
    line-height:1.2;
    transition:color .4s ease
}

.cat-card.hero-pro:hover .cat-name:where(.hero-pro) {
    color:#fff
}

.cat-desc.hero-pro {
    font-size:12.5px;
    color:var(--text-muted);
    line-height:1.5;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
    transition:color .4s ease
}

.cat-card.hero-pro:hover .cat-desc:where(.hero-pro) {
    color:#ffffffe6
}

.cat-foot.hero-pro {
    position:relative;
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-top:16px;
    padding-top:14px;
    border-top:1px dashed rgba(45,18,72,.1);
    z-index:2;
    transition:border-color .4s ease
}

.cat-card.hero-pro:hover .cat-foot:where(.hero-pro) {
    border-top-color:#ffffff40
}

.cat-cta.hero-pro {
    font-size:12px;
    font-weight:600;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:var(--cat-text);
    transition:color .4s ease
}

.cat-card.hero-pro:hover .cat-cta:where(.hero-pro) {
    color:#fff
}

.cat-arrow.hero-pro {
    width:32px;
    height:32px;
    border-radius:50%;
    background:var(--cat-soft);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--cat-text);
    transition:all .4s cubic-bezier(.22,1,.36,1)
}

.cat-card.hero-pro:hover .cat-arrow:where(.hero-pro) {
    background:#fff;
    color:var(--cat-text);
    transform:translate(4px) rotate(-8deg);
    box-shadow:0 6px 16px #00000026
}

.cats-section.hero-pro .view-all-wrap:where(.hero-pro) {
    text-align:center;
    margin-top:40px
}

.cats-section.hero-pro .view-all-wrap:where(.hero-pro) .btn-outline:where(.hero-pro) {
    padding:13px 32px;
    font-size:14px
}

.locs-section.hero-pro {
    position:relative;
    overflow:hidden;
    background:radial-gradient(1200px 800px at 90% 0%,rgba(233,30,140,.1) 0%,transparent 55%),radial-gradient(1000px 700px at 0% 100%,rgba(124,58,237,.1) 0%,transparent 55%),radial-gradient(800px 500px at 50% 50%,rgba(14,165,233,.06) 0%,transparent 60%),linear-gradient(180deg,#fff5fa,#f5edff 45%,#eef5ff);
    border-top:1px solid rgba(233,30,140,.08);
    border-bottom:1px solid rgba(124,58,237,.08);
    isolation:isolate
}

.locs-section.hero-pro&gt;
.grid-container:where(.hero-pro) {
    position:relative;
    z-index:1
}

.locs-bg.hero-pro {
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    z-index:0;
    pointer-events:none;
    overflow:hidden
}

.locs-bg-map.hero-pro {
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    width:100%;
    height:100%;
    opacity:.7
}

.locs-bg-orb.hero-pro {
    position:absolute;
    border-radius:50%;
    filter:blur(80px);
    opacity:.55;
    animation:svelte-13wmnd-locsBgFloat 16s ease-in-out infinite
}

.locs-bg-orb-1.hero-pro {
    top:-120px;
    right:-100px;
    width:400px;
    height:400px;
    background:radial-gradient(circle,rgba(233,30,140,.5),transparent 70%)
}

.locs-bg-orb-2.hero-pro {
    bottom:-140px;
    left:-120px;
    width:460px;
    height:460px;
    background:radial-gradient(circle,rgba(124,58,237,.45),transparent 70%);
    animation-delay:-6s
}

.locs-bg-orb-3.hero-pro {
    top:40%;
    left:55%;
    width:300px;
    height:300px;
    background:radial-gradient(circle,rgba(14,165,233,.35),transparent 70%);
    animation-delay:-10s
}

@keyframes svelte-13wmnd-locsBgFloat {
    0%,to {
        transform:translate(0) scale(1)
    }

    50% {
        transform:translate(30px,-20px) scale(1.1)
    }

    
}

.locs-grid.hero-pro {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px
}

@media(max-width:1024px) {
    .locs-grid.hero-pro&gt;
    .loc-card:where(.hero-pro):nth-child(n+7) {
        display:none
    }

    
}

.loc-card.hero-pro {
    position:relative;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:80px 18px 16px;
    border-radius:20px;
    background:#ffffffd1;
    border:1px solid rgba(255,255,255,.7);
    text-decoration:none;
    overflow:hidden;
    isolation:isolate;
    transition:transform .4s cubic-bezier(.22,1,.36,1),box-shadow .4s ease,border-color .4s ease;
    box-shadow:0 6px 20px #2d124814;
    -webkit-backdrop-filter:blur(12px);
    backdrop-filter:blur(12px);
    min-height:200px
}

.loc-card.hero-pro:nth-child(4n+1) {
    --loc-c: 233,30,140;
    --loc-c2: 192,38,211
}

.loc-card.hero-pro:nth-child(4n+2) {
    --loc-c: 124,58,237;
    --loc-c2: 192,38,211
}

.loc-card.hero-pro:nth-child(4n+3) {
    --loc-c: 245,158,11;
    --loc-c2: 244,63,94
}

.loc-card.hero-pro:nth-child(4n+4) {
    --loc-c: 14,165,233;
    --loc-c2: 124,58,237
}

.loc-card.hero-pro:hover {
    transform:translateY(-6px);
    border-color:rgba(var(--loc-c),.35);
    box-shadow:0 22px 48px rgba(var(--loc-c),.22)
}

.loc-map.hero-pro {
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    z-index:-1;
    overflow:hidden;
    color:rgb(var(--loc-c))
}

.loc-map-svg.hero-pro {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:65%;
    opacity:.55;
    transition:transform .6s ease,opacity .4s ease
}

.loc-card.hero-pro:hover .loc-map-svg:where(.hero-pro) {
    transform:scale(1.08) translateY(-4px);
    opacity:.85
}

.loc-gradient.hero-pro {
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    background:radial-gradient(90% 60% at 50% 0%,rgba(var(--loc-c),.18) 0%,rgba(var(--loc-c2),.08) 40%,transparent 70%),linear-gradient(180deg,transparent 40%,#fff 80%)
}

.loc-pin-wrap.hero-pro {
    position:absolute;
    top:22px;
    left:18px;
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center
}

.loc-pin-pulse.hero-pro {
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    border-radius:50%;
    background:rgba(var(--loc-c),.22);
    animation:svelte-13wmnd-locPulse 2s ease-out infinite
}

.loc-pin-pulse-2.hero-pro {
    animation-delay:-1s
}

@keyframes svelte-13wmnd-locPulse {
    0% {
        transform:scale(.6);
        opacity:.9
    }

    to {
        transform:scale(1.8);
        opacity:0
    }

    
}

.loc-pin.hero-pro {
    position:relative;
    width:30px;
    height:30px;
    border-radius:50%;
    background:linear-gradient(135deg,rgb(var(--loc-c)),rgb(var(--loc-c2)));
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 6px 18px rgba(var(--loc-c),.45),inset 0 1px #fff6;
    transition:transform .35s cubic-bezier(.22,1,.36,1);
    z-index:2
}

.loc-card.hero-pro:hover .loc-pin:where(.hero-pro) {
    transform:translateY(-4px) scale(1.1)
}

.loc-count-badge.hero-pro {
    position:absolute;
    top:22px;
    right:18px;
    display:inline-flex;
    align-items:center;
    gap:5px;
    padding:5px 10px;
    background:#fffffff2;
    border:1px solid rgba(var(--loc-c),.25);
    border-radius:50px;
    font-size:11.5px;
    font-weight:600;
    color:rgb(var(--loc-c));
    -webkit-backdrop-filter:blur(8px);
    backdrop-filter:blur(8px);
    box-shadow:0 4px 12px rgba(var(--loc-c),.1)
}

.loc-dot.hero-pro {
    width:5px;
    height:5px;
    background:#10b981;
    border-radius:50%;
    box-shadow:0 0 0 3px #10b98133;
    animation:svelte-13wmnd-livePulse 1.6s ease-in-out infinite
}

.loc-info.hero-pro {
    margin-bottom:10px
}

.loc-name.hero-pro {
    font-size:18px;
    font-weight:600;
    color:var(--heading);
    letter-spacing:-.02em;
    line-height:1.15;
    margin-bottom:3px
}

.loc-sub.hero-pro {
    font-size:11.5px;
    color:var(--text-muted);
    font-weight:600
}

.loc-foot.hero-pro {
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding-top:10px;
    border-top:1px dashed rgba(45,18,72,.1)
}

.loc-avail.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:5px;
    font-size:10.5px;
    font-weight:500;
    color:#059669;
    letter-spacing:.02em
}

.loc-live-dot.hero-pro {
    width:5px;
    height:5px;
    background:#10b981;
    border-radius:50%;
    box-shadow:0 0 0 3px #10b9812e;
    animation:svelte-13wmnd-livePulse 1.5s ease-in-out infinite
}

.loc-go.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:4px;
    font-size:11px;
    font-weight:600;
    color:rgb(var(--loc-c));
    letter-spacing:.05em;
    text-transform:uppercase;
    transition:transform .3s ease
}

.loc-card.hero-pro:hover .loc-go:where(.hero-pro) {
    transform:translate(4px)
}

.loc-badge.hero-pro {
    margin-left:auto;
    flex-shrink:0;
    background:#ff3c8e1a;
    color:var(--rose);
    font-size:11px;
    font-weight:600;
    padding:3px 9px;
    border-radius:20px;
    border:1px solid rgba(255,60,142,.2)
}

.why-section.hero-pro {
    padding:100px 0;
    position:relative;
    overflow:hidden;
    background:radial-gradient(1000px 600px at 10% 10%,rgba(233,30,140,.1) 0%,transparent 55%),radial-gradient(900px 600px at 90% 90%,rgba(124,58,237,.12) 0%,transparent 55%),radial-gradient(700px 500px at 70% 20%,rgba(245,196,107,.1) 0%,transparent 60%),linear-gradient(180deg,#fff7fb,#f9f0ff,#fff5ed);
    border-top:1px solid rgba(233,30,140,.1)
}

.why-section.hero-pro:before {
   content: "";
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    pointer-events:none;
    background-image:radial-gradient(rgba(233,30,140,.08) 1px,transparent 1px);
    background-size:28px 28px;
    -webkit-mask-image:radial-gradient(ellipse 80% 80% at 50% 50%,#000 30%,transparent 85%);
    mask-image:radial-gradient(ellipse 80% 80% at 50% 50%,#000 30%,transparent 85%)
}

.why-new-header.hero-pro {
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:60px;
    align-items:center;
    margin-bottom:60px;
    position:relative;
    z-index:1
}

.why-eyebrow.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-size:12px;
    font-weight:600;
    letter-spacing:.2em;
    color:var(--rose);
    margin-bottom:22px
}

.why-eyebrow-line.hero-pro {
    width:40px;
    height:2px;
    background:linear-gradient(90deg,var(--rose),transparent);
    border-radius:2px
}

.why-title.hero-pro {
    font-size:3rem;
    font-weight:600;
    letter-spacing:-.035em;
    line-height:1.12;
    color:var(--heading);
    margin:0 0 18px
}

.why-brand.hero-pro {
    background:linear-gradient(135deg,var(--rose),#c026d3,var(--violet));
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text
}

.why-accent.hero-pro {
    position:relative;
    background:linear-gradient(135deg,#f59e0b,#e91e8c);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text
}

.why-sub.hero-pro {
    color:var(--text-muted);
    font-size:15.5px;
    line-height:1.75;
    max-width:540px;
    margin:0 0 28px
}

.why-feat-list.hero-pro {
    display:flex;
    flex-direction:column;
    gap:14px
}

.why-feat.hero-pro {
    display:flex;
    align-items:flex-start;
    gap:14px;
    padding:12px 16px;
    background:#ffffffb3;
    border:1px solid rgba(255,255,255,.9);
    border-radius:14px;
    -webkit-backdrop-filter:blur(10px);
    backdrop-filter:blur(10px);
    box-shadow:0 6px 18px #2d12480f;
    transition:transform .3s ease,box-shadow .3s ease
}

.why-feat.hero-pro:hover {
    transform:translate(4px);
    box-shadow:0 10px 26px #e91e8c1f
}

.why-feat-bullet.hero-pro {
    width:10px;
    height:10px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--rose),#c026d3);
    flex-shrink:0;
    margin-top:5px;
    box-shadow:0 0 0 4px #e91e8c1f
}

.why-feat.hero-pro h3:where(.hero-pro) {
    display:block;
    font-size:14.5px;
    font-weight:600;
    color:var(--heading);
    margin:0 0 2px
}

.why-feat.hero-pro span:where(.hero-pro) {
    font-size:12.5px;
    color:var(--text-muted);
    line-height:1.5
}

.why-sub.hero-pro a:where(.hero-pro) {
    color:#e91e8c;
    font-weight:600;
    text-decoration:underline;
    text-underline-offset:3px;
    text-decoration-color:#e91e8c59;
    transition:text-decoration-color .2s
}

.why-sub.hero-pro a:where(.hero-pro):hover {
    text-decoration-color:#e91e8c
}

.why-new-right.hero-pro {
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:420px
}

.why-award.hero-pro {
    position:relative;
    width:320px;
    height:320px;
    display:flex;
    align-items:center;
    justify-content:center
}

.why-award-ring.hero-pro {
    position:absolute;
    border-radius:50%;
    pointer-events:none
}

.why-award-ring-1.hero-pro {
    top:0;
    right:0;
    bottom:0;
    left:0;
    background:conic-gradient(from 0deg,#f5c46b99,#e91e8c99,#7c3aed99,#f5c46b99);
    filter:blur(30px);
    opacity:.55;
    animation:svelte-13wmnd-hvSpin 12s linear infinite
}

.why-award-ring-2.hero-pro {
    top:10px;
    right:10px;
    bottom:10px;
    left:10px;
    border:2px dashed rgba(245,196,107,.55);
    animation:svelte-13wmnd-hvSpin 18s linear infinite reverse
}

.why-award-ring-3.hero-pro {
    top:32px;
    right:32px;
    bottom:32px;
    left:32px;
    border:1px solid rgba(233,30,140,.22);
    animation:svelte-13wmnd-awardPulse 3s ease-in-out infinite
}

@keyframes svelte-13wmnd-awardPulse {
    0%,to {
        transform:scale(1);
        opacity:.6
    }

    50% {
        transform:scale(1.05);
        opacity:1
    }

    
}

.why-award-core.hero-pro {
    position:relative;
    width:230px;
    height:230px;
    border-radius:50%;
    background:radial-gradient(circle at 30% 25%,#fffefc,#fff6e6,#fde8d2);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding:20px;
    box-shadow:0 30px 60px #e0a0404d,0 0 0 1px #f5c46b73,inset 0 4px #ffffffe6,inset 0 -4px 10px #e0a04026;
    z-index:2
}

.why-award-top.hero-pro {
    text-align:center
}

.why-award-stars.hero-pro {
    display:inline-flex;
    gap:2px;
    margin-bottom:6px
}

.why-award-number.hero-pro {
    font-size:3.8rem;
    font-weight:700;
    line-height:1;
    letter-spacing:-.04em;
    background:linear-gradient(135deg,#c08028,#e0a040 40%,#f5c46b);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text
}

.why-award-label.hero-pro {
    font-size:10.5px;
    font-weight:500;
    letter-spacing:.16em;
    text-transform:uppercase;
    color:#b45309;
    margin-top:2px
}

.why-award-div.hero-pro {
    width:70%;
    height:1px;
    background:linear-gradient(90deg,transparent,rgba(180,83,9,.25),transparent);
    margin:10px 0 8px
}

.why-award-bottom.hero-pro {
    text-align:center
}

.why-award-count.hero-pro {
    font-size:1.2rem;
    font-weight:600;
    color:var(--heading);
    letter-spacing:-.02em
}

.why-award-count-lbl.hero-pro {
    font-size:10px;
    font-weight:500;
    letter-spacing:.1em;
    text-transform:uppercase;
    color:var(--text-muted);
    margin-top:1px
}

.why-mini-badge.hero-pro {
    position:absolute;
    display:inline-flex;
    align-items:center;
    gap:5px;
    padding:7px 13px;
    background:#fff;
    border-radius:50px;
    font-size:11.5px;
    font-weight:600;
    box-shadow:0 10px 26px #2d124824,0 0 0 1px #2d12480d;
    animation:svelte-13wmnd-hvFloat 4s ease-in-out infinite;
    z-index:3
}

.why-mini-1.hero-pro {
    top:4%;
    right:-12%;
    color:#10b981
}

.why-mini-1.hero-pro svg:where(.hero-pro) {
    color:#10b981
}

.why-mini-2.hero-pro {
    bottom:16%;
    left:-14%;
    color:var(--rose);
    animation-delay:-1.5s
}

.why-mini-2.hero-pro svg:where(.hero-pro) {
    color:var(--rose)
}

.why-mini-3.hero-pro {
    bottom:0%;
    right:-6%;
    background:linear-gradient(135deg,#f5c46b,#e0a040);
    color:#4a2a00;
    animation-delay:-2.5s
}

.why-ticker.hero-pro {
    position:relative;
    z-index:1;
    display:grid;
    grid-template-columns:1fr auto 1fr auto 1fr auto 1fr;
    align-items:center;
    gap:0;
    padding:26px 30px;
    background:#ffffffd9;
    border:1px solid rgba(255,255,255,.9);
    border-radius:24px;
    -webkit-backdrop-filter:blur(20px);
    backdrop-filter:blur(20px);
    box-shadow:0 20px 50px #2d12481a,0 0 0 1px #e91e8c0d;
    margin-bottom:60px
}

.why-ticker-item.hero-pro {
    display:flex;
    align-items:center;
    gap:14px;
    padding:0 20px
}

.why-ticker-sep.hero-pro {
    width:1px;
    height:48px;
    background:linear-gradient(180deg,transparent,rgba(45,18,72,.14),transparent)
}

.why-ticker-icon.hero-pro {
    width:44px;
    height:44px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0
}

.why-ti-rose.hero-pro {
    background:#e91e8c1f;
    color:#e91e8c
}

.why-ti-violet.hero-pro {
    background:#7c3aed1f;
    color:#7c3aed
}

.why-ti-gold.hero-pro {
    background:#f59e0b24;
    color:#d97706
}

.why-ti-green.hero-pro {
    background:#10b9811f;
    color:#10b981
}

.why-ticker-body.hero-pro {
    min-width:0
}

.why-ticker-num.hero-pro {
    font-size:1.7rem;
    font-weight:700;
    letter-spacing:-.04em;
    line-height:1;
    margin-bottom:3px;
    display:inline-flex;
    align-items:baseline
}

.why-ticker-num.hero-pro span:where(.hero-pro) {
    font-size:.7em;
    margin-left:2px
}

.why-tn-rose.hero-pro {
    background:linear-gradient(135deg,#e91e8c,#c4186e);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text
}

.why-tn-violet.hero-pro {
    background:linear-gradient(135deg,#7c3aed,#5b21b6);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text
}

.why-tn-gold.hero-pro {
    background:linear-gradient(135deg,#f59e0b,#d97706);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text
}

.why-tn-green.hero-pro {
    background:linear-gradient(135deg,#10b981,#059669);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text
}

.why-ticker-lbl.hero-pro {
    font-size:10.5px;
    font-weight:500;
    letter-spacing:.1em;
    text-transform:uppercase;
    color:var(--text-muted)
}

.why-stats-row.hero-pro {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px
}

.wsr-card.hero-pro {
    position:relative;
    overflow:hidden;
    border-radius:18px;
    padding:24px 22px;
    display:flex;
    align-items:center;
    gap:16px;
    border:1.5px solid transparent;
    transition:transform .28s ease,box-shadow .28s ease
}

.wsr-card.hero-pro:hover {
    transform:translateY(-4px)
}

.wsr-rose.hero-pro {
    background:linear-gradient(135deg,#e91e8c14,#e91e8c0a);
    border-color:#e91e8c33
}

.wsr-violet.hero-pro {
    background:linear-gradient(135deg,#7c3aed14,#7c3aed0a);
    border-color:#7c3aed33
}

.wsr-gold.hero-pro {
    background:linear-gradient(135deg,#f59e0b1a,#f59e0b0a);
    border-color:#f59e0b38
}

.wsr-green.hero-pro {
    background:linear-gradient(135deg,#10b98114,#10b9810a);
    border-color:#10b98133
}

.wsr-rose.hero-pro:hover {
    box-shadow:0 12px 36px #e91e8c26
}

.wsr-violet.hero-pro:hover {
    box-shadow:0 12px 36px #7c3aed26
}

.wsr-gold.hero-pro:hover {
    box-shadow:0 12px 36px #f59e0b26
}

.wsr-green.hero-pro:hover {
    box-shadow:0 12px 36px #10b98126
}

.wsr-icon.hero-pro {
    width:52px;
    height:52px;
    border-radius:14px;
    flex-shrink:0;
    display:flex;
    align-items:center;
    justify-content:center
}

.wsr-body.hero-pro {
    flex:1
}

.wsr-num.hero-pro {
    font-size:1.85rem;
    font-weight:700;
    letter-spacing:-.04em;
    line-height:1;
    margin-bottom:4px
}

.wsr-lbl.hero-pro {
    font-size:11px;
    font-weight:500;
    color:var(--text-dim);
    text-transform:uppercase;
    letter-spacing:.5px
}

.wsr-glow.hero-pro {
    position:absolute;
    right:-20px;
    bottom:-20px;
    width:80px;
    height:80px;
    border-radius:50%;
    opacity:.12;
    pointer-events:none
}

.why-grid.hero-pro {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
    align-items:start;
    grid-auto-rows:auto
}

.why-card.hero-pro {
    position:relative;
    display:flex;
    flex-direction:column;
    padding:26px 24px 22px;
    background:#ffffffd9;
    border:1px solid rgba(255,255,255,.9);
    border-radius:22px;
    overflow:hidden;
    -webkit-backdrop-filter:blur(12px);
    backdrop-filter:blur(12px);
    box-shadow:0 8px 26px #2d12480f;
    transition:transform .4s cubic-bezier(.22,1,.36,1),box-shadow .4s ease,border-color .4s ease;
    isolation:isolate
}

.why-card.hero-pro:before {
   content: "";
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    background:linear-gradient(135deg,var(--wc-bg) 0%,transparent 60%);
    opacity:0;
    transition:opacity .4s ease;
    z-index:-1
}

.why-card.hero-pro:hover:before {
    opacity:1
}

.wc-bg-blob.hero-pro {
    position:absolute;
    top:-40px;
    right:-40px;
    width:140px;
    height:140px;
    border-radius:50%;
    background:var(--wc);
    opacity:.08;
    filter:blur(20px);
    transition:all .6s ease;
    z-index:-1
}

.why-card.hero-pro:hover {
    transform:translateY(-8px);
    box-shadow:0 24px 50px #2d124826,0 0 0 1px var(--wc-border);
    border-color:transparent
}

.wc-rose.hero-pro {
    --wc: #e91e8c;
    --wc-bg: rgba(233,30,140,.12);
    --wc-border: rgba(233,30,140,.3);
    --wc-grad: linear-gradient(135deg,#ff6b9d,#e91e8c)
}

.wc-violet.hero-pro {
    --wc: #7c3aed;
    --wc-bg: rgba(124,58,237,.12);
    --wc-border: rgba(124,58,237,.3);
    --wc-grad: linear-gradient(135deg,#a78bfa,#7c3aed)
}

.wc-teal.hero-pro {
    --wc: #0ea5e9;
    --wc-bg: rgba(14,165,233,.12);
    --wc-border: rgba(14,165,233,.3);
    --wc-grad: linear-gradient(135deg,#38bdf8,#0284c7)
}

.wc-gold.hero-pro {
    --wc: #d97706;
    --wc-bg: rgba(245,158,11,.14);
    --wc-border: rgba(245,158,11,.32);
    --wc-grad: linear-gradient(135deg,#fbbf24,#d97706)
}

.wc-green.hero-pro {
    --wc: #059669;
    --wc-bg: rgba(16,185,129,.12);
    --wc-border: rgba(16,185,129,.3);
    --wc-grad: linear-gradient(135deg,#34d399,#059669)
}

.wc-header.hero-pro {
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:22px
}

.wc-icon.hero-pro {
    position:relative;
    width:56px;
    height:56px;
    border-radius:16px;
    background:var(--wc-bg);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--wc);
    flex-shrink:0;
    transition:all .5s cubic-bezier(.22,1,.36,1);
    z-index:2
}

.wc-icon-pulse.hero-pro {
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    border-radius:16px;
    background:var(--wc);
    opacity:0;
    z-index:-1;
    transition:all .6s ease
}

.wc-num.hero-pro {
    font-family:Courier New,monospace;
    font-size:14px;
    font-weight:700;
    letter-spacing:.1em;
    color:var(--wc);
    padding:4px 12px;
    background:var(--wc-bg);
    border-radius:50px;
    transition:all .4s ease
}

.wc-body.hero-pro {
    flex:1 0 auto;
    margin-bottom:18px
}

.wc-title.hero-pro {
    font-size:18px;
    font-weight:600;
    color:var(--heading);
    margin:0 0 8px;
    letter-spacing:-.025em;
    line-height:1.2;
    position:relative;
    display:inline-block
}

.wc-title.hero-pro:after {
   content: "";
    position:absolute;
    left:0;
    bottom:-4px;
    width:0;
    height:2px;
    border-radius:2px;
    background:var(--wc-grad);
    transition:width .45s cubic-bezier(.22,1,.36,1)
}

.wc-desc.hero-pro {
    font-size:13.5px;
    color:var(--text-muted);
    line-height:1.7;
    margin:0
}

.wc-foot.hero-pro {
    padding-top:14px;
    border-top:1px dashed rgba(45,18,72,.12);
    transition:border-color .4s ease
}

.wc-learn.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:6px;
    font-size:12px;
    font-weight:600;
    letter-spacing:.06em;
    text-transform:uppercase;
    color:var(--wc);
    transition:gap .3s ease
}

.cta-section.hero-pro {
    padding:100px 0;
    position:relative;
    overflow:hidden;
    background:radial-gradient(1200px 700px at 20% 30%,rgba(233,30,140,.14) 0%,transparent 55%),radial-gradient(1000px 600px at 80% 70%,rgba(245,158,11,.16) 0%,transparent 55%),linear-gradient(135deg,#fff8f4,#fff0f2 35%,#fff5e8 65%,#fff8f4);
    border-top:1px solid rgba(245,196,107,.25);
    color:var(--heading)
}

.cta-bg-grid.hero-pro {
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    pointer-events:none;
    background-image:linear-gradient(to right,rgba(233,30,140,.06) 1px,transparent 1px),linear-gradient(to bottom,rgba(233,30,140,.06) 1px,transparent 1px);
    background-size:56px 56px;
    -webkit-mask-image:radial-gradient(ellipse 80% 80% at 50% 50%,#000 30%,transparent 90%);
    mask-image:radial-gradient(ellipse 80% 80% at 50% 50%,#000 30%,transparent 90%)
}

.cta-bg-orb.hero-pro {
    position:absolute;
    border-radius:50%;
    filter:blur(90px);
    pointer-events:none;
    animation:svelte-13wmnd-ctaOrb 14s ease-in-out infinite
}

.cta-bg-orb-1.hero-pro {
    top:-100px;
    left:-60px;
    width:420px;
    height:420px;
    background:radial-gradient(circle,rgba(233,30,140,.55),transparent 70%)
}

.cta-bg-orb-2.hero-pro {
    bottom:-120px;
    right:-80px;
    width:480px;
    height:480px;
    background:radial-gradient(circle,rgba(245,158,11,.55),transparent 70%);
    animation-delay:-6s
}

.cta-bg-orb-3.hero-pro {
    top:40%;
    left:50%;
    width:300px;
    height:300px;
    background:radial-gradient(circle,rgba(225,29,72,.35),transparent 70%);
    animation-delay:-10s
}

@keyframes svelte-13wmnd-ctaOrb {
    0%,to {
        transform:translate(0) scale(1)
    }

    50% {
        transform:translate(40px,-25px) scale(1.1)
    }

    
}

.cta-card.hero-pro {
    position:relative;
    border-radius:32px;
    padding:64px 60px;
    background:linear-gradient(160deg,#ffffffeb,#fff8f4d9);
    border:1px solid rgba(255,255,255,.9);
    -webkit-backdrop-filter:blur(24px);
    backdrop-filter:blur(24px);
    box-shadow:0 30px 80px #e91e8c26,0 0 0 1px #e91e8c0f,inset 0 1px #fff;
    overflow:hidden;
    isolation:isolate
}

.cta-shine.hero-pro {
    position:absolute;
    top:-50%;
    left:-30%;
    width:50%;
    height:200%;
    background:linear-gradient(120deg,transparent 30%,rgba(255,255,255,.55) 50%,transparent 70%);
    transform:skew(-20deg);
    animation:svelte-13wmnd-ctaShine 8s ease-in-out infinite;
    pointer-events:none
}

@keyframes svelte-13wmnd-ctaShine {
    0% {
        left:-30%
    }

    60% {
        left:130%
    }

    to {
        left:130%
    }

    
}

.cta-sparkle.hero-pro {
    position:absolute;
    color:#f5c46b;
    font-size:18px;
    opacity:.7;
    pointer-events:none;
    animation:svelte-13wmnd-hvTwinkle 3s ease-in-out infinite
}

.cta-sp-1.hero-pro {
    top:24px;
    right:8%;
    font-size:22px
}

.cta-sp-2.hero-pro {
    bottom:18px;
    left:6%;
    color:#e91e8c;
    animation-delay:-1s
}

.cta-sp-3.hero-pro {
    top:45%;
    right:3%;
    color:#f5c46b;
    animation-delay:-2s;
    font-size:14px
}

.cta-grid.hero-pro {
    position:relative;
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:60px;
    align-items:center
}

.cta-chip.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:7px 14px;
    font-size:11.5px;
    font-weight:600;
    letter-spacing:.14em;
    color:#b45309;
    background:#f5c46b2e;
    border:1px solid rgba(245,196,107,.45);
    border-radius:50px;
    margin-bottom:22px
}

.cta-chip-dot.hero-pro {
    width:7px;
    height:7px;
    border-radius:50%;
    background:#10b981;
    box-shadow:0 0 0 3px #10b98140;
    animation:svelte-13wmnd-livePulse 1.6s ease-in-out infinite
}

.cta-headline.hero-pro {
    font-size:3.2rem;
    font-weight:600;
    line-height:1.1;
    letter-spacing:-.035em;
    color:var(--heading);
    margin:0 0 18px
}

.cta-grad.hero-pro {
    background:linear-gradient(120deg,#ff6b9d,#e91e8c 50%,#f43f5e);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text
}

.cta-grad-alt.hero-pro {
    background:linear-gradient(120deg,#f5c46b,#f59e0b);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text
}

.cta-text.hero-pro {
    color:var(--text-muted);
    font-size:15.5px;
    line-height:1.7;
    max-width:520px;
    margin:0 0 22px
}

.cta-trust-row.hero-pro {
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-bottom:28px
}

.cta-trust.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:7px 13px;
    font-size:12px;
    font-weight:500;
    color:var(--heading);
    background:#ffffffd9;
    border:1px solid rgba(45,18,72,.08);
    border-radius:50px;
    box-shadow:0 2px 8px #2d12480a
}

.cta-trust.hero-pro svg:where(.hero-pro) {
    color:#10b981
}

.cta-actions.hero-pro {
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-bottom:28px
}

.cta-wa-btn.hero-pro {
    position:relative;
    display:inline-flex;
    align-items:center;
    gap:14px;
    padding:14px 22px 14px 14px;
    background:linear-gradient(135deg,#25d366,#128c7e);
    color:#fff;
    border-radius:16px;
    text-decoration:none;
    box-shadow:0 14px 40px #25d36673,inset 0 1px #ffffff4d;
    transition:transform .3s ease,box-shadow .3s ease;
    overflow:hidden
}

.cta-wa-btn.hero-pro:before {
   content: "";
    position:absolute;
    top:0;
    left:-100%;
    width:50%;
    height:100%;
    background:linear-gradient(120deg,transparent,rgba(255,255,255,.35),transparent);
    transform:skew(-20deg);
    animation:svelte-13wmnd-btnShine 3.5s ease-in-out infinite
}

.cta-wa-btn.hero-pro:hover {
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 20px 50px #25d36699
}

.cta-wa-icon.hero-pro {
    width:42px;
    height:42px;
    border-radius:50%;
    background:#ffffff2e;
    display:flex;
    align-items:center;
    justify-content:center
}

.cta-wa-text.hero-pro {
    display:flex;
    flex-direction:column;
    line-height:1.1
}

.cta-wa-top.hero-pro {
    font-size:15px;
    font-weight:600
}

.cta-wa-sub.hero-pro {
    font-size:11px;
    font-weight:600;
    opacity:.85;
    margin-top:2px
}

.cta-wa-arrow.hero-pro {
    transition:transform .3s ease
}

.cta-wa-btn.hero-pro:hover .cta-wa-arrow:where(.hero-pro) {
    transform:translate(4px)
}

.cta-browse-btn.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:15px 24px;
    background:#fff;
    color:var(--heading);
    border:1.5px solid rgba(233,30,140,.2);
    border-radius:16px;
    font-size:14px;
    font-weight:500;
    text-decoration:none;
    box-shadow:0 6px 18px #2d124814;
    transition:all .3s ease
}

.cta-browse-btn.hero-pro:hover {
    color:var(--rose);
    border-color:var(--rose);
    transform:translateY(-3px);
    box-shadow:0 12px 28px #e91e8c26
}

.cta-proof.hero-pro {
    display:flex;
    align-items:center;
    gap:16px;
    padding-top:24px;
    border-top:1px dashed rgba(45,18,72,.14)
}

.cta-proof-avs.hero-pro {
    display:flex;
    align-items:center
}

.cta-proof-av.hero-pro {
    width:36px;
    height:36px;
    border-radius:50%;
    overflow:hidden;
    border:2px solid #fff;
    margin-left:-10px;
    box-shadow:0 4px 12px #2d124826
}

.cta-proof-av.hero-pro:first-child {
    margin-left:0
}

.cta-proof-av.hero-pro img:where(.hero-pro) {
    width:100%;
    height:100%;
    object-fit:cover
}

.cta-proof-more.hero-pro {
    width:36px;
    height:36px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:11px;
    font-weight:600;
    color:#fff;
    background:linear-gradient(135deg,#e91e8c,#f43f5e);
    border:2px solid #fff;
    margin-left:-10px
}

.cta-proof-stars.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:2px
}

.cta-proof-stars.hero-pro strong:where(.hero-pro) {
    margin-left:6px;
    color:var(--heading);
    font-size:13px;
    font-weight:600
}

.cta-proof-sub.hero-pro {
    font-size:12.5px;
    color:var(--text-muted);
    margin-top:2px
}

.cta-proof-sub.hero-pro strong:where(.hero-pro) {
    color:var(--heading)
}

.cta-right.hero-pro {
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:440px
}

.cta-phone.hero-pro {
    position:relative;
    width:260px;
    padding:12px;
    background:linear-gradient(160deg,#1a0f12,#0f0708);
    border:1.5px solid rgba(245,196,107,.3);
    border-radius:36px;
    box-shadow:0 30px 60px #e91e8c40,0 0 0 1px #f5c46b33,inset 0 2px #ffffff26;
    animation:svelte-13wmnd-ctaPhoneFloat 5s ease-in-out infinite
}

@keyframes svelte-13wmnd-ctaPhoneFloat {
    0%,to {
        transform:translateY(0) rotate(-1.5deg)
    }

    50% {
        transform:translateY(-10px) rotate(1.5deg)
    }

    
}

.cta-phone-notch.hero-pro {
    position:absolute;
    top:10px;
    left:50%;
    transform:translate(-50%);
    width:80px;
    height:18px;
    background:#0a0508;
    border-radius:12px;
    z-index:2
}

.cta-phone-screen.hero-pro {
    background:#faf6f4;
    border-radius:28px;
    padding:38px 14px 16px;
    min-height:400px;
    color:#2a1218
}

.cta-phone-head.hero-pro {
    display:flex;
    align-items:center;
    gap:10px;
    padding-bottom:12px;
    border-bottom:1px solid rgba(42,18,24,.1);
    margin-bottom:14px
}

.cta-phone-avatar.hero-pro {
    position:relative;
    width:36px;
    height:36px;
    border-radius:50%;
    overflow:visible
}

.cta-phone-avatar.hero-pro img:where(.hero-pro) {
    width:100%;
    height:100%;
    border-radius:50%;
    object-fit:cover
}

.cta-phone-online.hero-pro {
    position:absolute;
    bottom:0;
    right:0;
    width:10px;
    height:10px;
    background:#10b981;
    border:2px solid #faf6f4;
    border-radius:50%
}

.cta-phone-name.hero-pro {
    font-size:13px;
    font-weight:600;
    color:#2a1218
}

.cta-phone-status.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:4px;
    font-size:10.5px;
    color:#10b981;
    font-weight:500;
    margin-top:1px
}

.cta-phone-dot.hero-pro {
    width:5px;
    height:5px;
    background:#10b981;
    border-radius:50%;
    animation:svelte-13wmnd-livePulse 1.5s ease-in-out infinite
}

.cta-phone-lang.hero-pro {
    flex-shrink:0;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:30px;
    height:20px;
    padding:0 7px;
    background:linear-gradient(135deg,#fce7f3,#fbcfe8);
    border:1px solid rgba(233,30,140,.3);
    color:#c4186e;
    font-size:10px;
    font-weight:600;
    letter-spacing:.5px;
    border-radius:10px;
    animation:svelte-13wmnd-ctaMsgIn .35s ease both
}

.cta-phone-lang-hi.hero-pro {
    background:linear-gradient(135deg,#fef3c7,#fde68a);
    border-color:#f59e0b66;
    color:#92400e
}

.cta-phone-msgs.hero-pro {
    display:flex;
    flex-direction:column;
    gap:6px;
    max-height:290px;
    overflow-y:auto;
    scroll-behavior:smooth;
    padding-right:2px;
    scrollbar-width:none
}

.cta-phone-msgs.hero-pro::-webkit-scrollbar {
    display:none
}

.cta-msg.hero-pro {
    max-width:85%;
    padding:8px 12px;
    font-size:12px;
    line-height:1.4;
    border-radius:14px;
    animation:svelte-13wmnd-ctaMsgIn .35s ease both
}

.cta-msg-in.hero-pro {
    background:#fff;
    color:#2a1218;
    border-bottom-left-radius:4px;
    align-self:flex-start;
    box-shadow:0 2px 6px #2a121814
}

.cta-msg-out.hero-pro {
    background:linear-gradient(135deg,#e91e8c,#f43f5e);
    color:#fff;
    border-bottom-right-radius:4px;
    align-self:flex-end;
    font-weight:600
}

@keyframes svelte-13wmnd-ctaMsgIn {
    0% {
        opacity:0;
        transform:translateY(8px) scale(.96)
    }

    to {
        opacity:1;
        transform:translateY(0) scale(1)
    }

    
}

.cta-typing.hero-pro {
    align-self:flex-start;
    display:inline-flex;
    gap:4px;
    padding:10px 14px;
    background:#fff;
    border-radius:14px 14px 14px 4px;
    margin-top:2px;
    animation:svelte-13wmnd-ctaMsgIn .35s ease both;
    box-shadow:0 2px 6px #2a121814
}

.cta-typing-out.hero-pro {
    align-self:flex-end;
    background:linear-gradient(135deg,#fce7f3,#fbcfe8);
    border-bottom-left-radius:14px;
    border-bottom-right-radius:4px;
    box-shadow:0 2px 6px #e91e8c2e
}

.cta-confirm.hero-pro {
    align-self:stretch;
    display:flex;
    align-items:center;
    gap:10px;
    margin-top:6px;
    padding:10px 12px;
    background:linear-gradient(135deg,#d1fae5,#a7f3d0);
    border:1px solid rgba(16,185,129,.4);
    border-radius:14px;
    box-shadow:0 4px 12px #10b98133;
    animation:svelte-13wmnd-ctaMsgIn .45s ease both
}

.cta-confirm-icon.hero-pro {
    flex:0 0 26px;
    width:26px;
    height:26px;
    background:#10b981;
    color:#fff;
    border-radius:50%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 2px 6px #10b98166
}

.cta-confirm-title.hero-pro {
    font-size:12px;
    font-weight:600;
    color:#065f46;
    line-height:1.2
}

.cta-confirm-sub.hero-pro {
    font-size:11px;
    color:#047857;
    font-weight:600;
    margin-top:2px
}

.cta-msg-img.hero-pro {
    position:relative;
    align-self:flex-start;
    width:140px;
    border-radius:14px 14px 14px 4px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 3px 10px #2a12181f;
    animation:svelte-13wmnd-ctaMsgIn .4s ease both
}

.cta-msg-img.hero-pro img:where(.hero-pro) {
    width:100%;
    height:160px;
    object-fit:cover;
    display:block
}

.cta-msg-img-badge.hero-pro {
    position:absolute;
    bottom:6px;
    right:6px;
    width:18px;
    height:18px;
    border-radius:50%;
    background:#10b981f2;
    color:#fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 2px 4px #00000040
}

.cta-trust-card.hero-pro {
    align-self:stretch;
    display:flex;
    gap:10px;
    padding:10px 12px;
    margin-top:4px;
    background:linear-gradient(135deg,#eff6ff,#dbeafe);
    border:1px solid rgba(59,130,246,.35);
    border-radius:14px;
    box-shadow:0 4px 12px #3b82f626;
    animation:svelte-13wmnd-ctaMsgIn .45s ease both
}

.cta-trust-icon.hero-pro {
    flex:0 0 28px;
    width:28px;
    height:28px;
    border-radius:50%;
    background:linear-gradient(135deg,#3b82f6,#2563eb);
    color:#fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 2px 6px #3b82f666
}

.cta-trust-body.hero-pro {
    flex:1;
    min-width:0
}

.cta-trust-title.hero-pro {
    font-size:11.5px;
    font-weight:600;
    color:#1e3a8a;
    line-height:1.2;
    margin-bottom:5px
}

.cta-trust-items.hero-pro {
    display:flex;
    flex-wrap:wrap;
    gap:4px
}

.cta-trust-chip.hero-pro {
    font-size:10px;
    font-weight:500;
    color:#1e40af;
    background:#ffffffb3;
    border:1px solid rgba(59,130,246,.25);
    padding:2px 7px;
    border-radius:10px;
    white-space:nowrap
}

.cta-typing.hero-pro span:where(.hero-pro) {
    width:6px;
    height:6px;
    background:#e91e8c;
    border-radius:50%;
    animation:svelte-13wmnd-ctaDotBounce 1.2s ease-in-out infinite
}

.cta-typing.hero-pro span:where(.hero-pro):nth-child(2) {
    animation-delay:.15s
}

.cta-typing.hero-pro span:where(.hero-pro):nth-child(3) {
    animation-delay:.3s
}

@keyframes svelte-13wmnd-ctaDotBounce {
    0%,60%,to {
        transform:translateY(0);
        opacity:.5
    }

    30% {
        transform:translateY(-4px);
        opacity:1
    }

    
}

.cta-pill.hero-pro {
    position:absolute;
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:8px 14px;
    background:#fff;
    color:var(--heading);
    border-radius:50px;
    font-size:11.5px;
    font-weight:600;
    box-shadow:0 10px 28px #2d124826,0 0 0 1px #2d12480d;
    animation:svelte-13wmnd-hvFloat 4s ease-in-out infinite;
    z-index:3
}

.cta-pill-top.hero-pro {
    top:8%;
    left:-8%;
    color:#10b981
}

.cta-pill-top.hero-pro svg:where(.hero-pro) {
    color:#10b981
}

.cta-pill-bot.hero-pro {
    bottom:12%;
    right:-10%;
    background:linear-gradient(135deg,#f5c46b,#e0a040);
    color:#3a2500;
    animation-delay:-1.5s
}

.about-section.hero-pro {
    position:relative;
    padding:110px 0;
    overflow:hidden;
    background:radial-gradient(1100px 700px at 90% 10%,rgba(233,30,140,.12) 0%,transparent 55%),radial-gradient(900px 600px at 10% 90%,rgba(245,158,11,.1) 0%,transparent 55%),linear-gradient(135deg,#fff9fc,#fff0f5 45%,#fff5ec);
    border-top:1px solid rgba(233,30,140,.08)
}

.about-bg-anim.hero-pro {
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    pointer-events:none;
    z-index:0;
    overflow:hidden
}

.anim-circle.hero-pro {
    position:absolute;
    border-radius:50%;
    opacity:.5
}

.anim-circle-1.hero-pro {
    width:400px;
    height:400px;
    background:radial-gradient(circle,rgba(233,30,140,.08) 0%,transparent 70%);
    top:-100px;
    left:-100px;
    animation:svelte-13wmnd-float1 8s ease-in-out infinite
}

.anim-circle-2.hero-pro {
    width:300px;
    height:300px;
    background:radial-gradient(circle,rgba(124,58,237,.06) 0%,transparent 70%);
    bottom:-50px;
    right:-50px;
    animation:svelte-13wmnd-float2 10s ease-in-out infinite
}

.anim-circle-3.hero-pro {
    width:200px;
    height:200px;
    background:radial-gradient(circle,rgba(233,30,140,.1) 0%,transparent 70%);
    top:50%;
    right:20%;
    animation:svelte-13wmnd-float3 12s ease-in-out infinite
}

.anim-circle-4.hero-pro {
    width:150px;
    height:150px;
    background:radial-gradient(circle,rgba(245,158,11,.08) 0%,transparent 70%);
    bottom:30%;
    left:10%;
    animation:svelte-13wmnd-float4 9s ease-in-out infinite
}

.anim-dots.hero-pro {
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    background-image:radial-gradient(rgba(233,30,140,.06) 1px,transparent 1px);
    background-size:40px 40px;
    animation:svelte-13wmnd-pulse 4s ease-in-out infinite
}

@keyframes svelte-13wmnd-float1 {
    0%,to {
        transform:translate(0) scale(1)
    }

    50% {
        transform:translate(30px,20px) scale(1.05)
    }

    
}

@keyframes svelte-13wmnd-float2 {
    0%,to {
        transform:translate(0) scale(1)
    }

    50% {
        transform:translate(-20px,-30px) scale(1.1)
    }

    
}

@keyframes svelte-13wmnd-float3 {
    0%,to {
        transform:translate(0)
    }

    50% {
        transform:translate(-30px,20px)
    }

    
}

@keyframes svelte-13wmnd-float4 {
    0%,to {
        transform:translate(0) scale(1)
    }

    50% {
        transform:translate(20px,-25px) scale(1.08)
    }

    
}

@keyframes svelte-13wmnd-pulse {
    0%,to {
        opacity:.5
    }

    50% {
        opacity:.8
    }

    
}

.about-top-head.hero-pro {
    position:relative;
    z-index:1;
    text-align:center;
    max-width:820px;
    margin:0 auto 48px
}

.about-top-head.hero-pro .about-chip:where(.hero-pro) {
    margin:0 auto 18px
}

.about-top-head.hero-pro .about-heading:where(.hero-pro) {
    margin:0
}

.about-grid.hero-pro {
    position:relative;
    z-index:1;
    display:grid;
    grid-template-columns:.95fr 1.05fr;
    gap:70px;
    align-items:center
}

.about-visual.hero-pro {
    position:relative;
    min-height:560px
}

.abv-frame-bg.hero-pro {
    position:absolute;
    top:40px;
    left:40px;
    right:0;
    bottom:40px;
    border-radius:30px;
    background:linear-gradient(135deg,#e91e8c2e,#f59e0b1f);
    filter:blur(2px);
    z-index:0
}

.abv-main.hero-pro {
    position:relative;
    width:82%;
    aspect-ratio:4/5;
    border-radius:26px;
    overflow:hidden;
    box-shadow:0 40px 80px #2d124833,0 0 0 6px #fff,0 0 0 7px #e91e8c26;
    transform:rotate(-2deg);
    z-index:2;
    transition:transform .5s ease
}

.about-visual.hero-pro:hover .abv-main:where(.hero-pro) {
    transform:rotate(-1deg) scale(1.02)
}

.abv-main.hero-pro img:where(.hero-pro) {
    width:100%;
    height:100%;
    object-fit:cover
}

.abv-main-grad.hero-pro {
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    background:linear-gradient(180deg,transparent 50%,rgba(26,18,46,.65) 100%)
}

.abv-main-caption.hero-pro {
    position:absolute;
    bottom:18px;
    left:18px;
    right:18px;
    color:#fff
}

.abv-caption-name.hero-pro {
    font-size:20px;
    font-weight:600;
    letter-spacing:-.02em;
    text-shadow:0 2px 10px rgba(0,0,0,.35)
}

.abv-caption-loc.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:4px;
    font-size:11.5px;
    font-weight:600;
    color:#ffffffe6;
    margin-top:2px
}

.abv-verified-badge.hero-pro {
    position:absolute;
    top:14px;
    right:14px;
    display:inline-flex;
    align-items:center;
    gap:4px;
    padding:6px 12px;
    background:linear-gradient(135deg,#10b981,#059669);
    color:#fff;
    font-size:11px;
    font-weight:600;
    border-radius:30px;
    box-shadow:0 6px 18px #10b98166
}

.abv-card.hero-pro {
    position:absolute;
    width:140px;
    aspect-ratio:3/4;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 24px 50px #2d124840,0 0 0 5px #fff;
    z-index:3;
    transition:transform .5s ease
}

.abv-card.hero-pro img:where(.hero-pro) {
    width:100%;
    height:100%;
    object-fit:cover
}

.abv-card-top.hero-pro {
    top:4%;
    right:-4%;
    transform:rotate(6deg)
}

.abv-card-bot.hero-pro {
    bottom:12%;
    right:4%;
    transform:rotate(-5deg)
}

.about-visual.hero-pro:hover .abv-card-top:where(.hero-pro) {
    transform:rotate(3deg) translateY(-6px)
}

.about-visual.hero-pro:hover .abv-card-bot:where(.hero-pro) {
    transform:rotate(-3deg) translateY(6px)
}

.abv-rating-card.hero-pro {
    position:absolute;
    bottom:8%;
    left:-6%;
    padding:14px 18px;
    background:#fff;
    border-radius:18px;
    box-shadow:0 20px 44px #2d12482e,0 0 0 1px #e91e8c14;
    z-index:4;
    animation:svelte-13wmnd-hvFloat 4s ease-in-out infinite
}

.abv-rating-top.hero-pro {
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:4px
}

.abv-rating-num.hero-pro {
    font-size:1.8rem;
    font-weight:700;
    letter-spacing:-.04em;
    background:linear-gradient(135deg,#e0a040,#c08028);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text
}

.abv-rating-stars.hero-pro {
    display:inline-flex;
    gap:1px
}

.abv-rating-lbl.hero-pro {
    font-size:11px;
    color:var(--text-muted);
    font-weight:600
}

.abv-rating-lbl.hero-pro strong:where(.hero-pro) {
    color:var(--heading);
    font-weight:600
}

.abv-mini-stat.hero-pro {
    position:absolute;
    top:22%;
    left:-4%;
    display:flex;
    align-items:center;
    gap:10px;
    padding:10px 16px;
    background:#fff;
    border-radius:50px;
    box-shadow:0 16px 36px #2d124824,0 0 0 1px #2d12480a;
    z-index:4;
    animation:svelte-13wmnd-hvFloat 5s ease-in-out infinite;
    animation-delay:-1.5s
}

.abv-mini-dot.hero-pro {
    width:8px;
    height:8px;
    background:#10b981;
    border-radius:50%;
    box-shadow:0 0 0 3px #10b98133;
    animation:svelte-13wmnd-livePulse 1.5s ease-in-out infinite
}

.abv-mini-num.hero-pro {
    font-size:14px;
    font-weight:700;
    color:var(--heading);
    line-height:1;
    letter-spacing:-.02em
}

.abv-mini-lbl.hero-pro {
    font-size:9.5px;
    font-weight:500;
    letter-spacing:.1em;
    text-transform:uppercase;
    color:var(--text-muted);
    margin-top:2px
}

.about-content.hero-pro {
    padding-left:10px
}

.about-chip.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:7px 14px 7px 12px;
    background:#fffc;
    border:1px solid rgba(233,30,140,.2);
    border-radius:50px;
    font-size:11px;
    font-weight:600;
    letter-spacing:.14em;
    color:var(--rose);
    margin-bottom:22px;
    -webkit-backdrop-filter:blur(10px);
    backdrop-filter:blur(10px);
    box-shadow:0 4px 14px #e91e8c14
}

.about-chip-dot.hero-pro {
    width:7px;
    height:7px;
    border-radius:50%;
    background:#10b981;
    box-shadow:0 0 0 3px #10b9812e;
    animation:svelte-13wmnd-livePulse 1.5s ease-in-out infinite
}

.about-heading.hero-pro {
    font-size:3.1rem;
    font-weight:600;
    color:var(--heading);
    line-height:1.12;
    letter-spacing:-.035em;
    margin-bottom:22px
}

.about-accent.hero-pro {
    background:linear-gradient(135deg,var(--rose) 0%,#c026d3 50%,#e91e8c 100%);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text
}

.about-accent-2.hero-pro {
    background:linear-gradient(135deg,#f59e0b,#e91e8c);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text
}

.about-subheading.hero-pro {
    font-size:clamp(20px,2vw,26px);
    font-weight:600;
    color:#c2185b;
    margin:0 0 18px;
    letter-spacing:-.02em;
    line-height:1.25
}

.about-text.hero-pro {
    font-size:15.5px;
    color:var(--text-muted);
    line-height:1.75;
    margin-bottom:14px;
    max-width:540px
}

.about-text.hero-pro strong:where(.hero-pro) {
    color:#110520;
    font-weight:600
}

.about-text.hero-pro a:where(.hero-pro) {
    color:#e91e8c;
    font-weight:600;
    text-decoration:underline;
    text-underline-offset:3px;
    text-decoration-color:#e91e8c59;
    transition:text-decoration-color .2s
}

.about-text.hero-pro a:where(.hero-pro):hover {
    text-decoration-color:#e91e8c
}

.about-text--extra.hero-pro {
    padding:14px 18px;
    background:linear-gradient(135deg,#e91e8c0f,#f59e0b0a);
    border:1px solid rgba(233,30,140,.12);
    border-radius:14px;
    margin-bottom:14px;
    animation:svelte-13wmnd-aboutExpand .28s ease
}

@keyframes svelte-13wmnd-aboutExpand {
    0% {
        opacity:0;
        transform:translateY(-4px)
    }

    to {
        opacity:1;
        transform:translateY(0)
    }

    
}

.about-more.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:7px 14px;
    background:#e91e8c0f;
    color:#c2185b;
    border:1px solid rgba(233,30,140,.22);
    border-radius:999px;
    font:inherit;
    font-size:12.5px;
    font-weight:600;
    letter-spacing:.02em;
    cursor:pointer;
    margin-bottom:28px;
    transition:background .2s,border-color .2s,color .2s,transform .2s
}

.about-more.hero-pro:hover {
    background:linear-gradient(135deg,#e91e8c,#c2185b);
    color:#fff;
    border-color:transparent;
    transform:translateY(-1px);
    box-shadow:0 8px 16px -4px #e91e8c73
}

.abt-timeline.hero-pro {
    position:relative;
    display:flex;
    flex-direction:column;
    gap:18px;
    margin-bottom:36px
}

.abt-timeline.hero-pro:before {
    content: "";
    position:absolute;
    top:18px;
    bottom:18px;
    left:22px;
    width:2px;
    background:linear-gradient(180deg,var(--rose),#c026d3,rgba(124,58,237,.4));
    opacity:.35
}

.abt-tl-item.hero-pro {
    position:relative;
    display:flex;
    align-items:flex-start;
    gap:18px;
    padding:14px 18px 14px 14px;
    background:#ffffffb3;
    border:1px solid rgba(255,255,255,.85);
    border-radius:16px;
    -webkit-backdrop-filter:blur(8px);
    backdrop-filter:blur(8px);
    box-shadow:0 6px 18px #2d12480f;
    transition:transform .35s ease,box-shadow .35s ease;
    z-index:1
}

.abt-tl-item.hero-pro:hover {
    transform:translate(6px);
    box-shadow:0 14px 32px #e91e8c24
}

.abt-tl-dot.hero-pro {
    position:relative;
    width:44px;
    height:44px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--rose) 0%,#c026d3 100%);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    font-size:13px;
    font-weight:700;
    letter-spacing:.05em;
    box-shadow:0 8px 20px #e91e8c59,inset 0 1px #ffffff4d;
    z-index:2
}

.abt-tl-item.hero-pro:nth-child(2) .abt-tl-dot:where(.hero-pro) {
    background:linear-gradient(135deg,#c026d3,#7c3aed);
    box-shadow:0 8px 20px #7c3aed59,inset 0 1px #ffffff4d
}

.abt-tl-item.hero-pro:nth-child(3) .abt-tl-dot:where(.hero-pro) {
    background:linear-gradient(135deg,#f59e0b,#e91e8c);
    box-shadow:0 8px 20px #f59e0b59,inset 0 1px #ffffff4d
}

.abt-tl-body.hero-pro h3:where(.hero-pro) {
    font-size:15px;
    font-weight:600;
    color:var(--heading);
    margin:0 0 3px;
    letter-spacing:-.01em
}

.abt-tl-body.hero-pro p:where(.hero-pro) {
    font-size:12.5px;
    color:var(--text-muted);
    line-height:1.55;
    margin:0
}

.about-stats.hero-pro {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:8px;
    padding:20px 22px;
    background:#ffffffbf;
    border:1px solid rgba(255,255,255,.9);
    border-radius:18px;
    -webkit-backdrop-filter:blur(12px);
    backdrop-filter:blur(12px);
    box-shadow:0 10px 28px #2d124814
}

.stat-item.hero-pro {
    text-align:left;
    position:relative
}

.stat-item.hero-pro:not(:last-child):after {
    content: "";
    position:absolute;
    right:-4px;
    top:10%;
    bottom:10%;
    width:1px;
    background:linear-gradient(180deg,transparent,rgba(45,18,72,.12),transparent)
}

.stat-num.hero-pro {
    font-size:1.8rem;
    font-weight:700;
    letter-spacing:-.04em;
    line-height:1;
    margin-bottom:4px;
    background:linear-gradient(135deg,var(--rose),#c026d3);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text
}

.stat-item.hero-pro:nth-child(2) .stat-num:where(.hero-pro) {
    background:linear-gradient(135deg,#c026d3,#7c3aed);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text
}

.stat-item.hero-pro:nth-child(3) .stat-num:where(.hero-pro) {
    background:linear-gradient(135deg,#f59e0b,#e91e8c);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text
}

.stat-label.hero-pro {
    font-size:12px;
    color:var(--text-muted);
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.5px
}

.promo-section.hero-pro {
    padding:110px 0;
    background:radial-gradient(1200px 600px at -10% 10%,rgba(233,30,140,.08),transparent 60%),radial-gradient(900px 500px at 110% 90%,rgba(123,44,191,.1),transparent 60%),linear-gradient(135deg,#fff9fc,#fbf2ff,#fff5f0);
    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);
    position:relative;
    overflow:hidden;
    isolation:isolate
}

.promo-orb.hero-pro {
    position:absolute;
    border-radius:50%;
    filter:blur(70px);
    opacity:.55;
    pointer-events:none;
    z-index:0;
    animation:svelte-13wmnd-promoFloat 14s ease-in-out infinite
}

.promo-orb-1.hero-pro {
    width:380px;
    height:380px;
    top:-120px;
    left:-120px;
    background:radial-gradient(circle,rgba(233,30,140,.55),transparent 70%)
}

.promo-orb-2.hero-pro {
    width:460px;
    height:460px;
    bottom:-160px;
    right:-140px;
    background:radial-gradient(circle,rgba(123,44,191,.5),transparent 70%);
    animation-delay:-7s
}

@keyframes svelte-13wmnd-promoFloat {
    0%,to {
        transform:translate(0) scale(1)
    }

    50% {
        transform:translate(20px,-30px) scale(1.08)
    }

    
}

.promo-grain.hero-pro {
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    pointer-events:none;
    z-index:0;
    opacity:.35;
    background-image:radial-gradient(rgba(45,18,72,.06) 1px,transparent 1px);
    background-size:3px 3px;
    mix-blend-mode:multiply
}

.promo-section.hero-pro&gt;
.grid-container:where(.hero-pro) {
    position:relative;
    z-index:1
}

.promo-grid.hero-pro {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center
}

.promo-content.hero-pro {
    padding-right:40px
}

.promo-chip.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:7px 14px 7px 10px;
    margin-bottom:22px;
    background:#ffffffb3;
    border:1px solid rgba(233,30,140,.2);
    border-radius:50px;
    font-size:12px;
    font-weight:500;
    color:var(--heading);
    letter-spacing:.05em;
    text-transform:uppercase;
    -webkit-backdrop-filter:blur(12px);
    backdrop-filter:blur(12px);
    box-shadow:0 6px 20px #e91e8c14
}

.promo-chip-dot.hero-pro {
    width:7px;
    height:7px;
    border-radius:50%;
    background:#10b981;
    box-shadow:0 0 0 3px #10b9812e;
    animation:svelte-13wmnd-pulseDot 1.6s ease-in-out infinite
}

@keyframes svelte-13wmnd-pulseDot {
    0%,to {
        box-shadow:0 0 0 3px #10b9812e
    }

    50% {
        box-shadow:0 0 0 6px #10b9810f
    }

    
}

.promo-heading.hero-pro {
    font-size:3.4rem;
    font-weight:600;
    color:var(--heading);
    line-height:1.12;
    letter-spacing:-.035em;
    margin-bottom:22px
}

.promo-gradient.hero-pro {
    background:linear-gradient(120deg,var(--rose) 0%,#f472b6 45%,#f59e0b 100%);
    background-size:200% auto;
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
    animation:svelte-13wmnd-gradShift 6s linear infinite
}

.promo-step-list.hero-pro {
    list-style:none;
    padding:0;
    margin:20px 0 24px;
    display:flex;
    flex-direction:column;
    gap:10px
}

.promo-step-list.hero-pro li:where(.hero-pro) {
    display:flex;
    align-items:flex-start;
    gap:12px;
    padding:10px 14px;
    background:#fff9;
    border:1px solid rgba(233,30,140,.1);
    border-radius:14px;
    -webkit-backdrop-filter:blur(10px);
    backdrop-filter:blur(10px);
    transition:all .3s cubic-bezier(.22,1,.36,1)
}

.promo-step-list.hero-pro li:where(.hero-pro):hover {
    border-color:#e91e8c4d;
    transform:translate(4px);
    box-shadow:0 10px 22px #e91e8c1f;
    background:#ffffffd9
}

.promo-step-n.hero-pro {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:30px;
    height:22px;
    padding:0 8px;
    font-size:10.5px;
    font-weight:700;
    letter-spacing:-.01em;
    background:linear-gradient(135deg,var(--rose),var(--rose-dark));
    color:#fff;
    border-radius:50px;
    box-shadow:0 4px 10px #e91e8c59;
    flex-shrink:0;
    margin-top:2px
}

.promo-step-n-g.hero-pro {
    background:linear-gradient(135deg,#22c55e,#15803d);
    box-shadow:0 4px 10px #22c55e59
}

.promo-step-n-o.hero-pro {
    background:linear-gradient(135deg,#f97316,#c2410c);
    box-shadow:0 4px 10px #f9731659
}

.promo-step-list.hero-pro li:where(.hero-pro) strong:where(.hero-pro) {
    display:block;
    font-size:13.5px;
    font-weight:700;
    letter-spacing:-.01em;
    color:#1a0611
}

.promo-step-list.hero-pro li:where(.hero-pro) span:where(.hero-pro) {
    display:block;
    font-size:12px;
    font-weight:600;
    color:var(--text-muted);
    margin-top:2px
}

@keyframes svelte-13wmnd-gradShift {
    0% {
        background-position:0% center
    }

    to {
        background-position:200% center
    }

    
}

.promo-text.hero-pro {
    font-size:16px;
    color:var(--text-muted);
    line-height:1.75;
    margin-bottom:34px;
    max-width:480px
}

.promo-text.hero-pro a:where(.hero-pro) {
    color:#e91e8c;
    font-weight:600;
    text-decoration:underline;
    text-underline-offset:3px;
    text-decoration-color:#e91e8c59;
    transition:text-decoration-color .2s
}

.promo-text.hero-pro a:where(.hero-pro):hover {
    text-decoration-color:#e91e8c
}

.promo-btns.hero-pro {
    display:flex;
    gap:14px;
    margin-bottom:28px;
    flex-wrap:wrap
}

.promo-btn-primary.hero-pro {
    position:relative;
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:linear-gradient(135deg,#ec4899,#e91e8c,#db2777);
    color:#fff;
    font-weight:500;
    font-size:15px;
    padding:15px 30px;
    border-radius:50px;
    text-decoration:none;
    transition:transform .3s ease,box-shadow .3s ease;
    box-shadow:0 10px 32px #e91e8c61,inset 0 1px #ffffff59;
    overflow:hidden
}

.promo-btn-shine.hero-pro {
    position:absolute;
    top:0;
    left:-120%;
    width:60%;
    height:100%;
    background:linear-gradient(120deg,transparent,rgba(255,255,255,.45),transparent);
    transform:skew(-20deg);
    animation:svelte-13wmnd-btnShine 3.2s ease-in-out infinite
}

@keyframes svelte-13wmnd-btnShine {
    0% {
        left:-120%
    }

    60% {
        left:140%
    }

    to {
        left:140%
    }

    
}

.promo-btn-primary.hero-pro:hover {
    transform:translateY(-2px);
    box-shadow:0 16px 44px #e91e8c7a,inset 0 1px #fff6;
    color:#fff
}

.promo-btn-secondary.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#ffffffd9;
    border:1.5px solid rgba(45,18,72,.12);
    color:var(--heading);
    font-weight:600;
    font-size:15px;
    padding:14px 24px;
    border-radius:50px;
    text-decoration:none;
    transition:all .3s ease;
    -webkit-backdrop-filter:blur(10px);
    backdrop-filter:blur(10px)
}

.promo-btn-secondary.hero-pro:hover {
    border-color:var(--rose);
    color:var(--rose);
    background:#fff;
    transform:translateY(-2px)
}

.promo-trust.hero-pro {
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    font-size:12.5px;
    font-weight:500
}

.promo-trust-pill.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:7px;
    padding:8px 14px;
    background:#fffc;
    border:1px solid rgba(45,18,72,.08);
    border-radius:50px;
    color:var(--heading);
    -webkit-backdrop-filter:blur(8px);
    backdrop-filter:blur(8px);
    transition:all .25s ease
}

.promo-trust-pill.hero-pro:hover {
    border-color:#e91e8c59;
    color:var(--rose);
    transform:translateY(-1px)
}

.promo-trust-pill.hero-pro svg:where(.hero-pro) {
    color:var(--rose)
}

.promo-visual.hero-pro {
    position:relative;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding:30px 20px;
    perspective:1400px
}

.fall-stage.hero-pro {
    position:relative;
    width:100%;
    max-width:500px;
    aspect-ratio:4/5;
    margin:0 auto;
    border-radius:28px;
    background:linear-gradient(180deg,#fff7fb,#fff5ec);
    border:1px solid rgba(233,30,140,.12);
    box-shadow:0 24px 60px #2d12481a;
    overflow:hidden
}

.fall-glow.hero-pro {
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    background:radial-gradient(600px 400px at 20% 20%,rgba(233,30,140,.18),transparent 60%),radial-gradient(600px 400px at 80% 80%,rgba(245,158,11,.18),transparent 60%);
    pointer-events:none
}

.fall-dots.hero-pro {
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    background-image:radial-gradient(circle,rgba(233,30,140,.14) 1px,transparent 1.5px);
    background-size:22px 22px;
    -webkit-mask-image:radial-gradient(ellipse at center,#000 40%,transparent 80%);
    mask-image:radial-gradient(ellipse at center,#000 40%,transparent 80%);
    pointer-events:none
}

.fc.hero-pro {
    position:absolute;
    padding:14px 16px;
    background:#fff;
    border:1px solid rgba(45,18,72,.06);
    border-radius:14px;
    box-shadow:0 20px 44px #2d124829,0 4px 10px #2d124814;
    font-family:inherit;
    transition:transform .45s cubic-bezier(.22,1,.36,1),box-shadow .45s,z-index 0s .45s;
    animation:svelte-13wmnd-fcFloat 8s ease-in-out infinite
}

.fc.hero-pro:hover {
    z-index:20!important;
    transform:rotate(0) scale(1.08)!important;
    box-shadow:0 30px 60px #e91e8c40;
    transition:transform .4s cubic-bezier(.22,1,.36,1),box-shadow .4s,z-index 0s 0s
}

@keyframes svelte-13wmnd-fcFloat {
    0%,to {
        translate:0 0
    }

    50% {
        translate:0 -8px
    }

    
}

.fc-white.hero-pro {
    background:#fff
}

.fc-brand.hero-pro {
    background:linear-gradient(135deg,#fff,#fff0f5);
    text-align:center;
    padding:16px 18px;
    min-width:140px
}

.fc-brand-2.hero-pro {
    background:linear-gradient(135deg,#fff7fb,#fff0db);
    text-align:center;
    padding:14px 16px;
    min-width:110px
}

.fc-gold.hero-pro {
    background:linear-gradient(135deg,#fbbf24,#d97706);
    color:#fff;
    text-align:center;
    padding:14px 16px;
    min-width:120px
}

.fc-rose.hero-pro {
    background:linear-gradient(135deg,var(--rose),var(--rose-dark));
    color:#fff;
    text-align:center;
    padding:14px 16px;
    min-width:150px
}

.fc-peach.hero-pro {
    background:linear-gradient(135deg,#fff1ec,#ffd8c2);
    text-align:center;
    padding:14px 16px;
    min-width:130px
}

.fc-p-1.hero-pro {
    top:4%;
    left:34%;
    transform:rotate(-8deg);
    animation-delay:0s
}

.fc-p-2.hero-pro {
    top:8%;
    left:4%;
    transform:rotate(7deg);
    animation-delay:-1s
}

.fc-p-3.hero-pro {
    top:14%;
    right:4%;
    transform:rotate(10deg);
    animation-delay:-2s
}

.fc-p-4.hero-pro {
    top:32%;
    left:2%;
    transform:rotate(-10deg);
    animation-delay:-3s
}

.fc-p-5.hero-pro {
    top:36%;
    left:40%;
    transform:rotate(5deg);
    animation-delay:-4s;
    z-index:5
}

.fc-p-6.hero-pro {
    top:42%;
    right:2%;
    transform:rotate(8deg);
    animation-delay:-5s
}

.fc-p-7.hero-pro {
    bottom:18%;
    left:10%;
    transform:rotate(-6deg);
    animation-delay:-6s
}

.fc-p-8.hero-pro {
    bottom:8%;
    left:36%;
    transform:rotate(9deg);
    animation-delay:-2.5s
}

.fc-p-9.hero-pro {
    bottom:20%;
    right:6%;
    transform:rotate(-9deg);
    animation-delay:-4.5s
}

.fc-brand-mark.hero-pro {
    width:34px;
    height:34px;
    border-radius:10px;
    background:linear-gradient(135deg,var(--rose),var(--rose-dark));
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 8px;
    box-shadow:0 6px 14px #e91e8c4d
}

.fc-brand-mark-mini.hero-pro {
    font-size:1rem;
    font-weight:700;
    letter-spacing:-.03em;
    color:#fff
}

.fc-brand-name.hero-pro {
    font-size:12.5px;
    font-weight:700;
    letter-spacing:-.02em;
    color:#1a0611
}

.fc-brand-tag.hero-pro {
    font-size:9.5px;
    font-weight:500;
    letter-spacing:.08em;
    color:var(--text-muted);
    margin-top:2px;
    text-transform:uppercase
}

.fc-row.hero-pro {
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:10px
}

.fc-num.hero-pro {
    font-size:9.5px;
    font-weight:700;
    letter-spacing:-.01em;
    padding:3px 8px;
    border-radius:50px;
    color:#fff
}

.fc-num-rose.hero-pro {
    background:linear-gradient(135deg,var(--rose),var(--rose-dark))
}

.fc-num-green.hero-pro {
    background:linear-gradient(135deg,#22c55e,#15803d)
}

.fc-num-orange.hero-pro {
    background:linear-gradient(135deg,#f97316,#c2410c)
}

.fc-ic.hero-pro {
    width:26px;
    height:26px;
    border-radius:8px;
    display:flex;
    align-items:center;
    justify-content:center
}

.fc-ic-rose.hero-pro {
    background:#e91e8c1f;
    color:var(--rose)
}

.fc-ic-green.hero-pro {
    background:#25d36624;
    color:#15803d
}

.fc-ic-orange.hero-pro {
    background:#f9731624;
    color:#c2410c
}

.fc-k.hero-pro {
    font-size:12.5px;
    font-weight:700;
    letter-spacing:-.01em;
    color:#1a0611
}

.fc-v.hero-pro {
    font-size:10.5px;
    font-weight:600;
    color:var(--text-muted);
    margin-top:2px
}

.fc-stars.hero-pro {
    display:inline-flex;
    gap:1px;
    margin-bottom:4px
}

.fc-big.hero-pro {
    font-size:1.4rem;
    font-weight:700;
    letter-spacing:-.03em;
    line-height:1;
    color:#fff
}

.fc-tag-w.hero-pro {
    font-size:9.5px;
    font-weight:500;
    letter-spacing:.06em;
    color:#ffffffd9;
    margin-top:3px;
    text-transform:uppercase
}

.fc-rose-head.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:5px;
    font-size:9px;
    font-weight:700;
    letter-spacing:.12em;
    color:#fffffff2;
    margin-bottom:6px
}

.fc-live-dot.hero-pro {
    width:5px;
    height:5px;
    border-radius:50%;
    background:#fff;
    box-shadow:0 0 0 2px #ffffff4d,0 0 8px #fff;
    animation:svelte-13wmnd-fcLive 2s ease-in-out infinite
}

@keyframes svelte-13wmnd-fcLive {
    0%,to {
        opacity:1
    }

    50% {
        opacity:.4
    }

    
}

.fc-big-w.hero-pro {
    font-size:1.2rem;
    font-weight:700;
    letter-spacing:-.03em;
    line-height:1;
    color:#fff
}

.fc-big-dark.hero-pro {
    font-size:1.4rem;
    font-weight:700;
    letter-spacing:-.03em;
    line-height:1;
    color:var(--rose-dark, #c2185b)
}

.fc-big-dark.hero-pro span:where(.hero-pro) {
    font-size:1rem;
    color:#d97706
}

.fc-tag-dark.hero-pro {
    font-size:9.5px;
    font-weight:500;
    letter-spacing:.06em;
    color:#7b6a90;
    margin-top:3px;
    text-transform:uppercase
}

.fc-pill-dot.hero-pro {
    width:8px;
    height:8px;
    border-radius:50%;
    background:#10b981;
    box-shadow:0 0 0 3px #10b98140;
    animation:svelte-13wmnd-hvPulse 2s ease-in-out infinite;
    display:inline-block
}

@keyframes svelte-13wmnd-hvPulse {
    0%,to {
        box-shadow:0 0 0 3px #10b98138
    }

    50% {
        box-shadow:0 0 0 5px #10b98114,0 0 10px #10b98199
    }

    
}

.fall-cta.hero-pro {
    display:flex;
    align-items:center;
    gap:12px;
    width:100%;
    max-width:500px;
    margin:16px auto 0;
    padding:12px 14px;
    background:linear-gradient(135deg,#25d366,#128c7e);
    color:#fff;
    border-radius:16px;
    text-decoration:none;
    box-shadow:0 14px 28px #25d3664d;
    transition:all .3s
}

.fall-cta.hero-pro:hover {
    transform:translateY(-2px);
    box-shadow:0 18px 38px #25d36673;
    color:#fff
}

.fall-cta-ic.hero-pro {
    width:34px;
    height:34px;
    flex-shrink:0;
    border-radius:50%;
    background:#ffffff38;
    border:1px solid rgba(255,255,255,.3);
    display:flex;
    align-items:center;
    justify-content:center
}

.fall-cta-body.hero-pro {
    flex:1;
    min-width:0
}

.fall-cta-body.hero-pro strong:where(.hero-pro) {
    display:block;
    font-size:13px;
    font-weight:700;
    letter-spacing:-.01em
}

.fall-cta-body.hero-pro span:where(.hero-pro) {
    display:block;
    font-size:10.5px;
    opacity:.9;
    margin-top:1px;
    font-weight:600
}

.cards-slider.hero-pro {
    width:100%;
    max-width:720px;
    position:relative;
    padding:24px 0;
    margin:0 auto
}

.cards-track.hero-pro {
    position:relative;
    height:380px;
    perspective:1200px
}

.slide-card.hero-pro {
    position:absolute;
    top:0;
    left:50%;
    width:220px;
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    will-change:transform,opacity;
    box-shadow:0 10px 30px #2d12481a,0 0 0 1px #2d12480a;
    transform:translate(-50%) scale(.5);
    opacity:0;
    pointer-events:none;
    transition:transform .7s cubic-bezier(.22,1,.36,1),opacity .55s ease,box-shadow .5s ease,filter .5s ease;
    filter:saturate(.7)
}

.slide-card.active.hero-pro {
    transform:translate(-50%) scale(1);
    opacity:1;
    pointer-events:auto;
    z-index:5;
    filter:saturate(1);
    box-shadow:0 28px 70px #2d124838,0 0 0 1px #e91e8c38,0 0 40px #e91e8c33
}

.slide-card.next-1.hero-pro {
    transform:translate(calc(-50% + 165px),8px) scale(.84) rotate(2deg);
    opacity:.88;
    pointer-events:auto;
    z-index:4;
    filter:saturate(.92)
}

.slide-card.prev-1.hero-pro {
    transform:translate(calc(-50% - 165px),8px) scale(.84) rotate(-2deg);
    opacity:.88;
    pointer-events:auto;
    z-index:4;
    filter:saturate(.92)
}

.slide-card.next-2.hero-pro {
    transform:translate(calc(-50% + 290px),28px) scale(.68) rotate(5deg);
    opacity:.55;
    pointer-events:auto;
    z-index:3;
    filter:saturate(.8) blur(.5px)
}

.slide-card.prev-2.hero-pro {
    transform:translate(calc(-50% - 290px),28px) scale(.68) rotate(-5deg);
    opacity:.55;
    pointer-events:auto;
    z-index:3;
    filter:saturate(.8) blur(.5px)
}

.slide-sheen.hero-pro {
    position:absolute;
    top:-50%;
    left:-60%;
    width:40%;
    height:200%;
    background:linear-gradient(120deg,transparent 30%,rgba(255,255,255,.35) 50%,transparent 70%);
    transform:skew(-20deg);
    transition:left .9s ease;
    pointer-events:none
}

.slide-rating.hero-pro {
    position:absolute;
    top:10px;
    right:10px;
    display:flex;
    align-items:center;
    gap:3px;
    padding:4px 8px;
    background:#1a122e8c;
    color:#fff;
    font-size:10px;
    font-weight:500;
    border-radius:12px;
    -webkit-backdrop-filter:blur(8px);
    backdrop-filter:blur(8px);
    border:1px solid rgba(255,255,255,.15)
}

.slide-card-image.hero-pro {
    position:relative;
    width:100%;
    aspect-ratio:3/4;
    overflow:hidden
}

.slide-card-image.hero-pro img:where(.hero-pro) {
    width:100%;
    height:100%;
    object-fit:cover
}

.slide-card-overlay.hero-pro {
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    background:linear-gradient(180deg,#1a122e33,#1a122eb3)
}

.slide-verified.hero-pro {
    position:absolute;
    top:10px;
    left:10px;
    display:flex;
    align-items:center;
    gap:3px;
    background:var(--rose);
    color:#fff;
    font-size:9px;
    font-weight:500;
    padding:4px 8px;
    border-radius:12px
}

.slide-card-info.hero-pro {
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    padding:14px 12px
}

.slide-name.hero-pro {
    color:#fff;
    font-size:16px;
    font-weight:600;
    margin-bottom:3px;
    letter-spacing:-.3px
}

.slide-location.hero-pro {
    display:flex;
    align-items:center;
    gap:3px;
    color:#fffc;
    font-size:10px;
    margin-bottom:6px
}

.slide-price.hero-pro {
    color:#fff;
    font-size:14px;
    font-weight:600
}

.slide-price.hero-pro span:where(.hero-pro) {
    font-size:11px;
    font-weight:500;
    color:#ffffffbf
}

.slide-cta.hero-pro {
    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    background:linear-gradient(135deg,#25d366,#128c7e);
    color:#fff;
    font-weight:500;
    font-size:12px;
    padding:10px 12px;
    text-decoration:none;
    transition:all .25s ease
}

.slide-cta.hero-pro:hover {
    filter:brightness(1.1);
    color:#fff
}

.slider-dots.hero-pro {
    display:flex;
    gap:8px;
    justify-content:center;
    margin-top:28px;
    padding:8px 14px;
    background:#ffffffb3;
    border:1px solid rgba(45,18,72,.06);
    border-radius:50px;
    width:fit-content;
    margin-left:auto;
    margin-right:auto;
    -webkit-backdrop-filter:blur(10px);
    backdrop-filter:blur(10px);
    box-shadow:0 6px 16px #2d12480f
}

.dot.hero-pro {
    width:8px;
    height:8px;
    border-radius:50%;
    background:#2d124826;
    border:none;
    padding:0;
    cursor:pointer;
    transition:all .4s cubic-bezier(.22,1,.36,1)
}

.dot.hero-pro:hover {
    background:#e91e8c59
}

.dot.active.hero-pro {
    background:linear-gradient(90deg,var(--rose),#f59e0b);
    width:28px;
    border-radius:50px;
    box-shadow:0 2px 8px #e91e8c66
}

.slider-arrow.hero-pro {
    position:absolute;
    top:42%;
    transform:translateY(-50%);
    width:44px;
    height:44px;
    border-radius:50%;
    background:#fff;
    border:1.5px solid rgba(233,30,140,.15);
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    padding:0;
    box-shadow:0 10px 28px #2d124824,inset 0 1px #fffc;
    transition:all .3s cubic-bezier(.22,1,.36,1);
    color:var(--rose);
    z-index:5
}

.slider-arrow.hero-pro:before {
    content: "";
    position:absolute;
    top:-4px;
    right:-4px;
    bottom:-4px;
    left:-4px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--rose),#f59e0b);
    opacity:0;
    z-index:-1;
    transition:opacity .3s
}

.slider-arrow.hero-pro:hover {
    transform:translateY(-50%) scale(1.08);
    color:#fff;
    border-color:transparent;
    background:linear-gradient(135deg,var(--rose),var(--rose-dark));
    box-shadow:0 14px 36px #e91e8c66
}

.slider-arrow.hero-pro:active {
    transform:translateY(-50%) scale(.96)
}

.slider-prev.hero-pro {
    left:-10px
}

.slider-next.hero-pro {
    right:-10px
}

.premium-loading.hero-pro {
    display:flex;
    align-items:center;
    justify-content:center;
    padding:40px
}

.loading-spinner.hero-pro {
    width:32px;
    height:32px;
    border:2px solid var(--border);
    border-top-color:var(--rose);
    border-radius:50%;
    animation:svelte-13wmnd-spin .8s linear infinite
}

@keyframes svelte-13wmnd-spin {
    to {
        transform:rotate(360deg)
    }

    
}

@media(max-width:1024px) {
    .profiles-grid.hero-pro {
        grid-template-columns:repeat(3,1fr)
    }

    .locs-grid.hero-pro {
        grid-template-columns:repeat(3,1fr);
        gap:14px
    }

    .loc-card.hero-pro {
        min-height:180px;
        padding:70px 16px 14px
    }

    .loc-name.hero-pro {
        font-size:16px
    }

    .why-grid.hero-pro {
        grid-template-columns:repeat(2,1fr);
        gap:18px
    }

    .why-card.hero-pro {
        padding:22px 20px 18px
    }

    .why-stats-row.hero-pro {
        grid-template-columns:repeat(2,1fr)
    }

    .why-title.hero-pro {
        font-size:2.3rem
    }

    .why-new-header.hero-pro {
        grid-template-columns:1fr;
        gap:40px
    }

    .why-new-left.hero-pro {
        text-align:center;
        max-width:640px;
        margin:0 auto
    }

    .why-new-left.hero-pro .why-eyebrow:where(.hero-pro) {
        justify-content:center
    }

    .why-new-left.hero-pro .why-sub:where(.hero-pro) {
        margin-left:auto;
        margin-right:auto;
        max-width:540px
    }

    .why-feat-list.hero-pro {
        max-width:540px;
        margin:0 auto
    }

    .why-feat.hero-pro {
        text-align:left
    }

    .why-new-right.hero-pro {
        min-height:360px;
        display:flex;
        justify-content:center
    }

    .why-award.hero-pro {
        width:280px;
        height:280px
    }

    .why-award-core.hero-pro {
        width:200px;
        height:200px
    }

    .why-award-number.hero-pro {
        font-size:3.2rem
    }

    .why-ticker.hero-pro {
        grid-template-columns:repeat(2,1fr);
        gap:18px 20px;
        padding:18px;
        border-radius:24px
    }

    .why-ticker-sep.hero-pro {
        display:none
    }

    .why-ticker-item.hero-pro {
        padding:16px 18px;
        gap:14px;
        border-radius:18px;
        background:linear-gradient(135deg,#fff,#fff7fb);
        border:1px solid rgba(233,30,140,.14);
        box-shadow:0 6px 18px #2d12480f;
        transition:transform .3s cubic-bezier(.22,1,.36,1),box-shadow .3s
    }

    .why-ticker-item.hero-pro:hover {
        transform:translateY(-3px);
        box-shadow:0 14px 28px #e91e8c29
    }

    .why-ticker-icon.hero-pro {
        width:44px;
        height:44px;
        border-radius:12px
    }

    .why-ticker-num.hero-pro {
        font-size:1.55rem
    }

    .why-ticker-lbl.hero-pro {
        font-size:10.5px;
        letter-spacing:.1em
    }

    .trust-inner.hero-pro {
        justify-content:flex-start;
        overflow-x:auto
    }

    .about-grid.hero-pro {
        grid-template-columns:1fr;
        gap:48px
    }

    .about-visual.hero-pro {
        order:2;
        min-height:480px;
        max-width:480px;
        margin:0 auto;
        width:100%
    }

    .about-content.hero-pro {
        order:1;
        padding-left:0
    }

    .about-heading.hero-pro {
        font-size:2.4rem
    }

    .promo-grid.hero-pro {
        grid-template-columns:1.1fr .9fr;
        gap:40px;
        align-items:center
    }

    .promo-content.hero-pro {
        order:1;
        padding-right:0
    }

    .promo-visual.hero-pro {
        order:2;
        justify-content:flex-end
    }

    .promo-heading.hero-pro {
        font-size:2.4rem
    }

    .slide-card.hero-pro {
        width:200px
    }

    .slide-card.next-1.hero-pro {
        transform:translate(calc(-50% + 140px),8px) scale(.8) rotate(2deg)
    }

    .slide-card.prev-1.hero-pro {
        transform:translate(calc(-50% - 140px),8px) scale(.8) rotate(-2deg)
    }

    .slide-card.next-2.hero-pro {
        transform:translate(calc(-50% + 240px),24px) scale(.64) rotate(5deg)
    }

    .slide-card.prev-2.hero-pro {
        transform:translate(calc(-50% - 240px),24px) scale(.64) rotate(-5deg)
    }

    .cards-track.hero-pro {
        height:340px
    }

    .fall-stage.hero-pro {
        max-width:420px
    }

    .fc.hero-pro {
        padding:12px 14px
    }

    .fc-brand.hero-pro,.fc-brand-2.hero-pro,.fc-gold.hero-pro,.fc-rose.hero-pro,.fc-peach.hero-pro {
        padding:12px 14px;
        min-width:100px
    }

    .fc-k.hero-pro {
        font-size:11.5px
    }

    .fc-v.hero-pro {
        font-size:10px
    }

    .fc-big.hero-pro,.fc-big-w.hero-pro,.fc-big-dark.hero-pro {
        font-size:1.2rem
    }

    .fc-brand-mark.hero-pro {
        width:30px;
        height:30px
    }

    .modern-card.hero-pro {
        max-width:240px
    }

    .hero-inner.hero-pro {
        grid-template-columns:1.2fr .9fr;
        gap:32px
    }

    .hv-panel.hero-pro {
        width:280px;
        padding:50px 18px 18px
    }

    .hvx-card.hero-pro {
        max-width:290px
    }

    .hvx-name.hero-pro {
        font-size:1.2rem
    }

    .hvx-float-chat.hero-pro {
        left:0;
        min-width:0
    }

    .hvx-float-rating.hero-pro {
        right:0
    }

    .hvx-float-reply.hero-pro {
        left:0
    }

    .hvx-float-msg.hero-pro {
        max-width:140px
    }

    .hv-orbit-lg.hero-pro {
        width:380px;
        height:380px
    }

    .hv-orbit-md.hero-pro {
        width:280px;
        height:280px
    }

    .hv-orbit-avatars.hero-pro {
        width:380px;
        height:380px
    }

    .hv-orbit-av.hero-pro {
        width:40px;
        height:40px
    }

    .hero-visual.hero-pro {
        min-height:460px
    }

    
}

@media(max-width:768px) {
    .hero.hero-pro {
        padding:70px 0 60px
    }

    .hero-inner.hero-pro {
        grid-template-columns:1fr;
        gap:40px
    }

    .hvx-card.hero-pro {
        max-width:320px;
        margin:0 auto
    }

    .hvx-float-chat.hero-pro {
        left:0;
        top:2%
    }

    .hvx-float-rating.hero-pro {
        right:0;
        top:12%
    }

    .hvx-float-reply.hero-pro {
        left:0;
        bottom:8%
    }

    .hero-content.hero-pro {
        max-width:none;
        text-align:center
    }

    .hero-content.hero-pro .hero-desc:where(.hero-pro) {
        margin-left:auto;
        margin-right:auto
    }

    .hero-badge-row.hero-pro,.hero-tags.hero-pro,.hero-actions.hero-pro {
        justify-content:center
    }

    .hero-stats-strip.hero-pro {
        margin:0 auto
    }

    .hero-visual.hero-pro {
        display:flex;
        min-height:520px;
        margin-top:8px
    }

    .hv-panel.hero-pro {
        width:300px;
        padding:24px 18px 18px
    }

    .hv-orbit-lg.hero-pro {
        width:400px;
        height:400px
    }

    .hv-orbit-md.hero-pro {
        width:300px;
        height:300px
    }

    .hv-orbit-avatars.hero-pro {
        width:400px;
        height:400px
    }

    .hv-orbit-av.hero-pro {
        width:40px;
        height:40px
    }

    .hv-visual-glow.hero-pro {
        width:340px;
        height:340px
    }

    .hv-float-top.hero-pro {
        left:-2%;
        top:4%
    }

    .hv-float-bottom.hero-pro {
        right:-2%;
        bottom:4%
    }

    .hero-h1.hero-pro {
        font-size:2.2rem
    }

    .hero-stats-strip.hero-pro {
        padding:14px 20px
    }

    .hss-item.hero-pro {
        padding:0 16px
    }

    .hss-num.hero-pro {
        font-size:1.5rem
    }

    .profiles-grid.hero-pro {
        grid-template-columns:repeat(3,1fr)
    }

    .cats-grid.hero-pro {
        grid-template-columns:repeat(2,1fr);
        gap:14px
    }

    .cat-card.hero-pro {
        min-height:180px;
        padding:18px 18px 14px
    }

    .cat-name.hero-pro {
        font-size:17px
    }

    .cat-icon-wrap.hero-pro {
        width:46px;
        height:46px;
        border-radius:13px
    }

    .locs-grid.hero-pro {
        grid-template-columns:repeat(2,1fr);
        gap:12px
    }

    .why-grid.hero-pro {
        grid-template-columns:repeat(2,1fr);
        gap:14px
    }

    .why-card.hero-pro {
        padding:20px 18px 16px;
        min-height:auto;
        height:auto
    }

    .why-section.hero-pro {
        padding:64px 0
    }

    .why-stats-row.hero-pro {
        grid-template-columns:repeat(2,1fr)
    }

    .why-title.hero-pro {
        font-size:2rem
    }

    .why-tag-row.hero-pro {
        gap:8px
    }

    .why-ticker.hero-pro {
        grid-template-columns:1fr 1fr;
        padding:16px;
        gap:14px 14px
    }

    .why-ticker-item.hero-pro {
        padding:10px 12px;
        gap:10px
    }

    .why-ticker-icon.hero-pro {
        width:38px;
        height:38px
    }

    .why-ticker-num.hero-pro {
        font-size:1.4rem
    }

    .why-ticker-lbl.hero-pro {
        font-size:9.5px
    }

    .cta-inner.hero-pro {
        grid-template-columns:1fr;
        padding:36px 28px
    }

    .cta-actions.hero-pro {
        flex-direction:row;
        flex-wrap:wrap
    }

    .cta-card.hero-pro {
        padding:40px 28px;
        border-radius:24px
    }

    .cta-grid.hero-pro {
        grid-template-columns:1fr;
        gap:36px
    }

    .cta-right.hero-pro {
        min-height:420px;
        order:-1;
        padding:0 20px
    }

    .cta-pill-top.hero-pro {
        left:0;
        top:4%
    }

    .cta-pill-bot.hero-pro {
        right:0;
        bottom:8%
    }

    .cta-headline.hero-pro {
        font-size:2.2rem
    }

    .cta-wa-btn.hero-pro {
        padding:12px 18px 12px 12px
    }

    .cta-wa-icon.hero-pro {
        width:38px;
        height:38px
    }

    .cta-wa-top.hero-pro {
        font-size:14px
    }

    .cta-browse-btn.hero-pro {
        padding:13px 20px;
        font-size:13.5px
    }

    .cta-section.hero-pro {
        padding:70px 0
    }

    .about-heading.hero-pro {
        font-size:2rem
    }

    .about-stats.hero-pro {
        gap:6px;
        padding:16px
    }

    .stat-num.hero-pro {
        font-size:1.5rem
    }

    .about-visual.hero-pro {
        min-height:440px
    }

    .abv-card.hero-pro {
        width:110px
    }

    .abv-rating-card.hero-pro {
        padding:10px 14px;
        bottom:6%;
        left:-2%
    }

    .abv-rating-num.hero-pro {
        font-size:1.4rem
    }

    .promo-section.hero-pro {
        padding:70px 0
    }

    .promo-heading.hero-pro {
        font-size:2rem
    }

    .promo-text.hero-pro {
        font-size:14.5px;
        margin-bottom:22px
    }

    .promo-grid.hero-pro {
        grid-template-columns:1fr;
        gap:40px;
        align-items:center
    }

    .promo-content.hero-pro {
        order:1;
        padding-right:0;
        text-align:center
    }

    .promo-content.hero-pro .promo-text:where(.hero-pro) {
        margin-left:auto;
        margin-right:auto
    }

    .promo-btns.hero-pro,.promo-trust.hero-pro {
        justify-content:center
    }

    .promo-visual.hero-pro {
        order:2;
        padding:10px 0;
        justify-content:center
    }

    .cards-slider.hero-pro {
        max-width:560px;
        margin:0 auto
    }

    .slide-card.hero-pro {
        width:200px
    }

    .slide-card.next-1.hero-pro {
        transform:translate(calc(-50% + 130px),8px) scale(.78) rotate(2deg)
    }

    .slide-card.prev-1.hero-pro {
        transform:translate(calc(-50% - 130px),8px) scale(.78) rotate(-2deg)
    }

    .slide-card.next-2.hero-pro,.slide-card.prev-2.hero-pro {
        display:none
    }

    .cards-track.hero-pro {
        height:320px
    }

    .modern-card.hero-pro {
        max-width:220px
    }

    
}

@media(max-width:480px) {
    .why-grid.hero-pro {
        grid-template-columns:1fr
    }

    .hero.hero-pro {
        padding:52px 0 44px
    }

    .hero-h1.hero-pro {
        font-size:1.75rem
    }

    .hero-badge-row.hero-pro {
        gap:8px
    }

    .hero-cta-primary.hero-pro,.hero-cta-ghost.hero-pro {
        padding:13px 22px;
        font-size:14px
    }

    .hero-stats-strip.hero-pro {
        padding:12px 16px;
        gap:0
    }

    .hss-item.hero-pro {
        padding:0 12px
    }

    .hss-num.hero-pro {
        font-size:1.3rem
    }

    .hss-lbl.hero-pro {
        font-size:9px
    }

    .hero-visual.hero-pro {
        min-height:480px
    }

    .hv-panel.hero-pro {
        width:280px;
        padding:22px 16px 16px
    }

    .hv-orbit-lg.hero-pro {
        width:340px;
        height:340px
    }

    .hv-orbit-md.hero-pro {
        width:250px;
        height:250px
    }

    .hv-orbit-avatars.hero-pro {
        width:340px;
        height:340px
    }

    .hv-orbit-av.hero-pro {
        width:34px;
        height:34px
    }

    .hv-visual-glow.hero-pro {
        width:280px;
        height:280px
    }

    .hv-sparkle.hero-pro {
        font-size:14px
    }

    .hv-float.hero-pro {
        padding:7px 12px;
        font-size:11px
    }

    .hv-float-top.hero-pro {
        left:0;
        top:2%
    }

    .hv-float-bottom.hero-pro {
        right:0;
        bottom:2%
    }

    .hv-spot-name.hero-pro,.hv-spot-price.hero-pro {
        font-size:17px
    }

    .profiles-grid.hero-pro {
        grid-template-columns:repeat(2,1fr);
        gap:12px
    }

    .cats-grid.hero-pro {
        grid-template-columns:1fr;
        gap:12px
    }

    .cat-card.hero-pro {
        min-height:170px
    }

    .locs-grid.hero-pro {
        grid-template-columns:repeat(2,1fr);
        gap:10px
    }

    .loc-card.hero-pro {
        min-height:160px;
        padding:58px 12px 12px;
        border-radius:16px
    }

    .loc-pin-wrap.hero-pro {
        top:12px;
        left:12px;
        width:32px;
        height:32px
    }

    .loc-pin.hero-pro {
        width:24px;
        height:24px
    }

    .loc-pin.hero-pro svg:where(.hero-pro) {
        width:13px;
        height:13px
    }

    .loc-count-badge.hero-pro {
        top:12px;
        right:12px;
        padding:3px 8px;
        font-size:10px;
        gap:4px
    }

    .loc-dot.hero-pro {
        width:4px;
        height:4px
    }

    .loc-info.hero-pro {
        margin-bottom:8px
    }

    .loc-name.hero-pro {
        font-size:16px;
        line-height:1.15
    }

    .loc-sub.hero-pro {
        font-size:12px
    }

    .loc-foot.hero-pro {
        padding-top:8px;
        gap:6px
    }

    .loc-avail.hero-pro {
        font-size:11px
    }

    .loc-go.hero-pro {
        font-size:11.5px;
        gap:4px;
        letter-spacing:.04em
    }

    .loc-go.hero-pro svg:where(.hero-pro) {
        width:10px;
        height:10px
    }

    .loc-map-svg.hero-pro {
        height:60%
    }

    .why-stats-row.hero-pro {
        grid-template-columns:1fr 1fr;
        gap:10px
    }

    .why-title.hero-pro {
        font-size:1.75rem
    }

    .why-trust-row.hero-pro {
        gap:12px
    }

    .why-award.hero-pro {
        width:240px;
        height:240px
    }

    .why-award-core.hero-pro {
        width:170px;
        height:170px;
        padding:14px
    }

    .why-award-number.hero-pro {
        font-size:2.6rem
    }

    .why-award-count.hero-pro {
        font-size:1rem
    }

    .why-mini-1.hero-pro {
        top:0;
        right:0
    }

    .why-mini-2.hero-pro {
        bottom:10%;
        left:0
    }

    .why-mini-3.hero-pro {
        bottom:-4%;
        right:4%
    }

    .why-ticker.hero-pro {
        grid-template-columns:1fr;
        padding:16px;
        gap:10px
    }

    .why-ticker-item.hero-pro {
        justify-content:flex-start
    }

    .cta-card.hero-pro {
        padding:32px 20px
    }

    .cta-headline.hero-pro {
        font-size:1.9rem
    }

    .cta-phone.hero-pro {
        width:230px
    }

    .cta-right.hero-pro {
        min-height:400px
    }

    .cta-actions.hero-pro {
        flex-direction:column
    }

    .cta-wa-btn.hero-pro,.cta-browse-btn.hero-pro {
        width:100%;
        justify-content:center
    }

    .cta-pill-top.hero-pro {
        left:-4%;
        top:4%
    }

    .cta-pill-bot.hero-pro {
        right:-4%;
        bottom:10%
    }

    .cta-proof.hero-pro {
        flex-direction:column;
        align-items:flex-start;
        gap:10px
    }

    .wsr-card.hero-pro {
        padding:16px 12px;
        flex-direction:column;
        align-items:center;
        text-align:center;
        gap:10px;
        min-width:0
    }

    .wsr-icon.hero-pro {
        width:42px;
        height:42px;
        border-radius:12px
    }

    .wsr-icon.hero-pro svg:where(.hero-pro) {
        width:18px;
        height:18px
    }

    .wsr-body.hero-pro {
        width:100%;
        min-width:0
    }

    .wsr-num.hero-pro {
        font-size:1.4rem;
        margin-bottom:2px
    }

    .wsr-lbl.hero-pro {
        font-size:9.5px;
        letter-spacing:.3px;
        white-space:nowrap;
        overflow:hidden;
        text-overflow:ellipsis
    }

    .wsr-glow.hero-pro {
        width:60px;
        height:60px;
        right:-15px;
        bottom:-15px
    }

    .about-section.hero-pro {
        padding:60px 0
    }

    .about-heading.hero-pro {
        font-size:1.7rem
    }

    .about-stats.hero-pro {
        grid-template-columns:1fr;
        padding:14px;
        gap:10px
    }

    .stat-item.hero-pro:not(:last-child):after {
        display:none
    }

    .stat-item.hero-pro {
        text-align:left;
        padding-bottom:10px;
        border-bottom:1px dashed rgba(45,18,72,.1)
    }

    .stat-item.hero-pro:last-child {
        padding-bottom:0;
        border-bottom:none
    }

    .stat-num.hero-pro {
        font-size:1.6rem
    }

    .about-bg-anim.hero-pro {
        display:none
    }

    .about-visual.hero-pro {
        min-height:400px;
        max-width:340px
    }

    .abv-card.hero-pro {
        width:90px
    }

    .abv-rating-card.hero-pro {
        padding:8px 12px;
        left:0
    }

    .abv-rating-num.hero-pro {
        font-size:1.3rem
    }

    .abv-mini-stat.hero-pro {
        padding:8px 12px;
        left:0
    }

    .abt-tl-item.hero-pro {
        padding:12px 14px 12px 12px;
        gap:14px
    }

    .abt-tl-dot.hero-pro {
        width:38px;
        height:38px;
        font-size:11px
    }

    .abt-timeline.hero-pro:before {
        left:19px
    }

    .promo-section.hero-pro {
        padding:56px 0
    }

    .promo-grid.hero-pro {
        grid-template-columns:1fr;
        gap:34px
    }

    .promo-content.hero-pro {
        order:1;
        text-align:center
    }

    .promo-content.hero-pro .promo-text:where(.hero-pro) {
        margin-left:auto;
        margin-right:auto
    }

    .promo-visual.hero-pro {
        order:2;
        padding:6px 0;
        justify-content:center;
        width:100%
    }

    .promo-heading.hero-pro {
        font-size:1.85rem
    }

    .promo-btns.hero-pro {
        flex-direction:column;
        align-items:center
    }

    .promo-btn-primary.hero-pro,.promo-btn-secondary.hero-pro {
        width:100%;
        max-width:320px;
        justify-content:center
    }

    .promo-trust.hero-pro {
        gap:8px;
        justify-content:center
    }

    .promo-trust-pill.hero-pro {
        padding:7px 12px;
        font-size:11.5px
    }

    .cards-slider.hero-pro {
        max-width:280px;
        margin:0 auto
    }

    .cards-track.hero-pro {
        height:340px
    }

    .slide-card.hero-pro {
        width:220px
    }

    .slide-card.next-1.hero-pro,.slide-card.prev-1.hero-pro,.slide-card.next-2.hero-pro,.slide-card.prev-2.hero-pro {
        display:none
    }

    .slide-card.active.hero-pro {
        transform:translate(-50%) scale(1)
    }

    .fall-stage.hero-pro {
        max-width:340px;
        aspect-ratio:5/6
    }

    .fc.hero-pro {
        padding:10px 12px;
        border-radius:11px
    }

    .fc-brand.hero-pro,.fc-brand-2.hero-pro,.fc-gold.hero-pro,.fc-rose.hero-pro,.fc-peach.hero-pro {
        padding:10px 12px;
        min-width:90px
    }

    .fc-k.hero-pro {
        font-size:11px
    }

    .fc-v.hero-pro {
        font-size:9.5px
    }

    .fc-big.hero-pro,.fc-big-w.hero-pro,.fc-big-dark.hero-pro {
        font-size:1.05rem
    }

    .fc-tag-w.hero-pro,.fc-tag-dark.hero-pro,.fc-brand-tag.hero-pro {
        font-size:8.5px
    }

    .fc-brand-mark.hero-pro {
        width:26px;
        height:26px
    }

    .fc-stars.hero-pro svg:where(.hero-pro) {
        width:10px;
        height:10px
    }

    .fc-p-8.hero-pro,.fc-p-9.hero-pro {
        display:none
    }

    .slider-prev.hero-pro {
        left:-8px
    }

    .slider-next.hero-pro {
        right:-8px
    }

    .promo-orb-1.hero-pro,.promo-orb-2.hero-pro {
        filter:blur(60px);
        opacity:.4
    }

    .modern-card.hero-pro {
        max-width:260px
    }

    .card-float-badge.hero-pro {
        display:none
    }

    
}

@media(max-width:420px) {
    .loc-card.hero-pro {
        padding:58px 12px 11px;
        min-height:170px;
        border-radius:14px
    }

    .loc-pin-wrap.hero-pro {
        top:10px;
        left:10px;
        width:30px;
        height:30px
    }

    .loc-pin.hero-pro {
        width:24px;
        height:24px
    }

    .loc-pin.hero-pro svg:where(.hero-pro) {
        width:12px;
        height:12px
    }

    .loc-count-badge.hero-pro {
        top:10px;
        right:10px;
        padding:3px 8px;
        font-size:11px;
        gap:4px
    }

    .loc-count-badge.hero-pro .loc-dot:where(.hero-pro) {
        width:5px;
        height:5px
    }

    .loc-name.hero-pro {
        font-size:16px;
        margin-bottom:3px
    }

    .loc-sub.hero-pro {
        font-size:11.5px;
        line-height:1.3
    }

    .loc-info.hero-pro {
        margin-bottom:9px
    }

    .loc-foot.hero-pro {
        flex-direction:column;
        align-items:flex-start;
        gap:6px;
        padding-top:9px
    }

    .loc-avail.hero-pro,.loc-go.hero-pro {
        font-size:11px;
        letter-spacing:.02em
    }

    .loc-avail.hero-pro {
        white-space:nowrap
    }

    
}

@media(max-width:340px) {
    .locs-grid.hero-pro {
        grid-template-columns:1fr;
        gap:10px
    }

    .loc-card.hero-pro {
        padding:62px 14px 12px;
        min-height:150px
    }

    .loc-name.hero-pro {
        font-size:17px
    }

    .loc-sub.hero-pro,.loc-avail.hero-pro,.loc-go.hero-pro {
        font-size:12px
    }

    .loc-foot.hero-pro {
        flex-direction:row
    }

    
}

@media(max-width:380px) {
    .why-stats-row.hero-pro {
        gap:8px
    }

    .wsr-card.hero-pro {
        padding:14px 8px
    }

    .wsr-num.hero-pro {
        font-size:1.2rem
    }

    .wsr-lbl.hero-pro {
        font-size:9px
    }

    .wsr-icon.hero-pro {
        width:38px;
        height:38px
    }

    
}

.wdiff__head.hero-pro {
    text-align:center;
    max-width:760px;
    margin:72px auto 44px;
    position:relative;
    z-index:1
}

.wdiff__tag.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:7px;
    padding:5px 14px;
    background:linear-gradient(135deg,#e91e8c1a,#f59e0b14);
    color:#c2185b;
    border:1px solid rgba(233,30,140,.25);
    border-radius:999px;
    font-size:11px;
    font-weight:600;
    letter-spacing:.14em;
    text-transform:uppercase;
    margin-bottom:16px
}

.wdiff__tag-dot.hero-pro {
    width:6px;
    height:6px;
    border-radius:50%;
    background:#e91e8c;
    box-shadow:0 0 0 3px #e91e8c38;
    animation:svelte-13wmnd-wdiffDot 1.8s ease-in-out infinite
}

@keyframes svelte-13wmnd-wdiffDot {
    0%,to {
        opacity:1
    }

    50% {
        opacity:.4
    }

    
}

.wdiff__title.hero-pro {
    margin:0 0 12px;
    font-size:clamp(1.8rem,3.1vw,2.6rem);
    font-weight:700;
    letter-spacing:-.02em;
    line-height:1.2;
    color:#110520
}

.wdiff__title-grad.hero-pro {
    background:linear-gradient(135deg,#e91e8c,#f43f5e 55%,#f59e0b);
    -webkit-background-clip:text;
    background-clip:text;
    -webkit-text-fill-color:transparent
}

.wdiff__sub.hero-pro {
    margin:0 auto;
    max-width:580px;
    font-size:clamp(14px,1.15vw,16px);
    line-height:1.65;
    color:#4a2870
}

.wdiff__sub.hero-pro strong:where(.hero-pro) {
    color:#c2185b;
    font-weight:600;
    background:linear-gradient(120deg,transparent 0%,rgba(233,30,140,.12) 40%,rgba(233,30,140,.12) 60%,transparent 100%);
    padding:1px 3px;
    border-radius:3px
}

.wdiff__grid.hero-pro {
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:22px;
    position:relative;
    z-index:1
}

.wdiff__card.hero-pro {
    --a1: #e91e8c;
    --a2: #c2185b;
    --a3: #f472b6;
    position:relative;
    padding:28px 26px 22px;
    background:linear-gradient(160deg,#fff,#fffafc);
    border:1px solid rgba(233,30,140,.12);
    border-radius:22px;
    box-shadow:0 14px 32px -18px #2d124833;
    overflow:hidden;
    isolation:isolate;
    opacity:0;
    transform:translateY(14px);
    animation:svelte-13wmnd-wdiffIn .55s cubic-bezier(.22,1,.36,1) forwards;
    animation-delay:var(--delay, 0ms);
    transition:transform .32s cubic-bezier(.22,1,.36,1),box-shadow .32s,border-color .32s
}

@keyframes svelte-13wmnd-wdiffIn {
    to {
        opacity:1;
        transform:translateY(0)
    }

    
}

.wdiff__card.hero-pro:hover {
    transform:translateY(-8px);
    border-color:color-mix(in srgb,var(--a1) 40%,transparent);
    box-shadow:0 32px 64px -20px color-mix(in srgb,var(--a1) 38%,transparent),0 0 0 1px color-mix(in srgb,var(--a1) 20%,transparent)
}

.wdiff__card--rose.hero-pro {
    --a1: #e91e8c;
    --a2: #c2185b;
    --a3: #f472b6
}

.wdiff__card--violet.hero-pro {
    --a1: #7c3aed;
    --a2: #5b21b6;
    --a3: #a78bfa
}

.wdiff__card--teal.hero-pro {
    --a1: #0ea5e9;
    --a2: #0369a1;
    --a3: #7dd3fc
}

.wdiff__card--gold.hero-pro {
    --a1: #f59e0b;
    --a2: #d97706;
    --a3: #fbbf24
}

.wdiff__card--emerald.hero-pro {
    --a1: #10b981;
    --a2: #059669;
    --a3: #34d399
}

.wdiff__card--coral.hero-pro {
    --a1: #f43f5e;
    --a2: #dc2626;
    --a3: #fb7185
}

.wdiff__card-accent.hero-pro {
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:3px;
    background:linear-gradient(90deg,var(--a1),var(--a3),var(--a1));
    background-size:200% 100%;
    transform-origin:left;
    transform:scaleX(.35);
    transition:transform .4s cubic-bezier(.22,1,.36,1),background-position .8s;
    z-index:2
}

.wdiff__card.hero-pro:hover .wdiff__card-accent:where(.hero-pro) {
    transform:scaleX(1);
    background-position:100% 0%
}

.wdiff__card-halo.hero-pro {
    position:absolute;
    top:-40%;
    right:-30%;
    width:260px;
    height:260px;
    border-radius:50%;
    background:radial-gradient(circle,color-mix(in srgb,var(--a1) 18%,transparent),transparent 70%);
    filter:blur(30px);
    pointer-events:none;
    z-index:0;
    transition:opacity .3s
}

.wdiff__card-ring.hero-pro {
    position:absolute;
    top:-2px;
    right:-2px;
    bottom:-2px;
    left:-2px;
    border-radius:24px;
    background:conic-gradient(from 0deg,var(--a1),var(--a3),transparent 60%,var(--a2),var(--a1));
    opacity:0;
    filter:blur(12px);
    z-index:-1;
    transition:opacity .35s;
    animation:svelte-13wmnd-wdiffRing 6s linear infinite
}

@keyframes svelte-13wmnd-wdiffRing {
    to {
        transform:rotate(360deg)
    }

    
}

.wdiff__card.hero-pro:hover .wdiff__card-ring:where(.hero-pro) {
    opacity:.4
}

.wdiff__card-head.hero-pro {
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:12px;
    margin-bottom:18px;
    position:relative;
    z-index:1
}

.wdiff__card-ic.hero-pro {
    position:relative;
    width:54px;
    height:54px;
    border-radius:16px;
    display:inline-grid;
    place-items:center;
    color:#fff;
    background:linear-gradient(135deg,var(--a1),var(--a2));
    box-shadow:0 14px 28px -10px color-mix(in srgb,var(--a1) 55%,transparent),inset 0 2px #ffffff59;
    transition:transform .35s cubic-bezier(.22,1,.36,1)
}

.wdiff__card.hero-pro:hover .wdiff__card-ic:where(.hero-pro) {
    transform:rotate(-8deg) scale(1.08)
}

.wdiff__card-ic-glow.hero-pro {
    position:absolute;
    top:-8px;
    right:-8px;
    bottom:-8px;
    left:-8px;
    border-radius:22px;
    background:radial-gradient(circle,color-mix(in srgb,var(--a1) 35%,transparent),transparent 70%);
    opacity:0;
    transition:opacity .35s;
    z-index:-1;
    filter:blur(8px)
}

.wdiff__card.hero-pro:hover .wdiff__card-ic-glow:where(.hero-pro) {
    opacity:1
}

.wdiff__card-num.hero-pro {
    font-family:ui-monospace,SF Mono,Consolas,monospace;
    font-size:13px;
    font-weight:600;
    letter-spacing:.06em;
    color:transparent;
    background:linear-gradient(135deg,var(--a1),var(--a3));
    -webkit-background-clip:text;
    background-clip:text;
    padding:5px 11px;
    border:1px solid color-mix(in srgb,var(--a1) 25%,transparent);
    border-radius:999px;
    flex-shrink:0
}

.wdiff__card-title.hero-pro {
    position:relative;
    z-index:1;
    margin:0 0 10px;
    font-size:clamp(16px,1.35vw,18.5px);
    font-weight:600;
    letter-spacing:-.015em;
    line-height:1.3;
    color:#110520
}

.wdiff__card-desc.hero-pro {
    position:relative;
    z-index:1;
    margin:0;
    font-size:13.5px;
    line-height:1.7;
    color:#4a2870
}

.wdiff__card-desc.hero-pro strong {
    color:var(--a2);
    font-weight:600;
    background:linear-gradient(120deg,transparent 0%,color-mix(in srgb,var(--a1) 15%,transparent) 40%,color-mix(in srgb,var(--a1) 15%,transparent) 60%,transparent 100%);
    padding:1px 4px;
    border-radius:3px
}

.wdiff__card-desc.hero-pro a {
    color:var(--a2);
    font-weight:600;
    text-decoration:underline;
    text-underline-offset:3px;
    text-decoration-color:color-mix(in srgb,var(--a2) 45%,transparent);
    transition:text-decoration-color .2s
}

.wdiff__card-desc.hero-pro a:hover {
    text-decoration-color:var(--a2)
}

.wdiff__card-foot.hero-pro {
    position:relative;
    z-index:1;
    display:flex;
    align-items:center;
    gap:10px;
    margin-top:18px;
    padding-top:16px;
    border-top:1px dashed color-mix(in srgb,var(--a1) 22%,transparent)
}

.wdiff__card-link.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:6px;
    font-size:12.5px;
    font-weight:600;
    letter-spacing:.04em;
    text-transform:uppercase;
    color:var(--a2);
    text-decoration:none;
    transition:color .25s,gap .25s
}

.wdiff__card-link.hero-pro:hover {
    color:var(--a1);
    gap:10px
}

.wdiff__card-link.hero-pro svg:where(.hero-pro) {
    transition:transform .25s
}

.wdiff__card.hero-pro:hover .wdiff__card-link:where(.hero-pro) svg:where(.hero-pro) {
    transform:translate(4px)
}

.wdiff__card-foot-line.hero-pro {
    flex:1;
    height:1px;
    background:linear-gradient(90deg,color-mix(in srgb,var(--a1) 35%,transparent),transparent)
}

@media(max-width:1100px) {
    .wdiff__grid.hero-pro {
        grid-template-columns:repeat(2,minmax(0,1fr))
    }

    
}

@media(max-width:640px) {
    .wdiff__head.hero-pro {
        margin:56px auto 32px
    }

    .wdiff__grid.hero-pro {
        grid-template-columns:1fr;
        gap:16px
    }

    .wdiff__card.hero-pro {
        padding:24px 22px 20px
    }

    
}

.agw.hero-pro {
    position:relative;
    overflow:hidden;
    padding:110px 0 120px;
    background:radial-gradient(900px 500px at 90% 0%,rgba(124,58,237,.1),transparent 60%),radial-gradient(800px 500px at 10% 100%,rgba(233,30,140,.09),transparent 60%),linear-gradient(180deg,#fffafc,#fff3f8,#fff7eb)
}

.agw__orb.hero-pro {
    position:absolute;
    border-radius:50%;
    filter:blur(90px);
    pointer-events:none;
    z-index:0
}

.agw__orb--1.hero-pro {
    top:-140px;
    left:45%;
    width:420px;
    height:420px;
    background:radial-gradient(circle,rgba(233,30,140,.26),transparent 70%)
}

.agw__orb--2.hero-pro {
    top:45%;
    right:-120px;
    width:360px;
    height:360px;
    background:radial-gradient(circle,rgba(245,158,11,.18),transparent 70%)
}

.agw__orb--3.hero-pro {
    bottom:-140px;
    left:-100px;
    width:400px;
    height:400px;
    background:radial-gradient(circle,rgba(124,58,237,.18),transparent 70%)
}

.agw__noise.hero-pro {
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    pointer-events:none;
    background-image:repeating-linear-gradient(110deg,rgba(233,30,140,.04) 0 1px,transparent 1px 40px),repeating-linear-gradient(-110deg,rgba(124,58,237,.03) 0 1px,transparent 1px 60px);
    mask-image:radial-gradient(ellipse 70% 70% at 50% 50%,#000 40%,transparent 95%);
    -webkit-mask-image:radial-gradient(ellipse 70% 70% at 50% 50%,#000 40%,transparent 95%)
}

.agw__container.hero-pro {
    position:relative;
    z-index:1
}

.agw__head.hero-pro {
    text-align:center;
    max-width:780px;
    margin:0 auto 72px
}

.agw__tag.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:14px;
    margin-bottom:20px
}

.agw__tag-line.hero-pro {
    width:42px;
    height:2px;
    background:linear-gradient(90deg,transparent,rgba(233,30,140,.5));
    border-radius:2px
}

.agw__tag-line.hero-pro:last-child {
    background:linear-gradient(90deg,rgba(233,30,140,.5),transparent)
}

.agw__tag-text.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:7px;
    padding:6px 16px;
    background:linear-gradient(135deg,#e91e8c1a,#f59e0b14);
    color:#c2185b;
    border:1px solid rgba(233,30,140,.25);
    border-radius:999px;
    font-size:11px;
    font-weight:600;
    letter-spacing:.14em;
    text-transform:uppercase
}

.agw__tag-text.hero-pro svg:where(.hero-pro) {
    color:#f59e0b
}

.agw__title.hero-pro {
    margin:0 0 14px;
    font-size:clamp(1.9rem,3.3vw,2.8rem);
    font-weight:700;
    line-height:1.14;
    letter-spacing:-.02em;
    color:#110520
}

.agw__title-grad.hero-pro {
    background:linear-gradient(135deg,#e91e8c,#f43f5e,#f59e0b);
    -webkit-background-clip:text;
    background-clip:text;
    -webkit-text-fill-color:transparent;
    font-style:italic
}

.agw__sub.hero-pro {
    margin:0 auto;
    max-width:600px;
    font-size:clamp(14px,1.2vw,16px);
    line-height:1.7;
    color:#4a2870
}

.agw__steps.hero-pro {
    position:relative;
    max-width:1100px;
    margin:0 auto
}

.agw__rail.hero-pro {
    position:absolute;
    left:50%;
    top:40px;
    bottom:40px;
    width:2px;
    transform:translate(-50%);
    background:linear-gradient(180deg,transparent 0%,rgba(233,30,140,.35) 8%,rgba(124,58,237,.35) 50%,rgba(245,158,11,.35) 92%,transparent 100%);
    border-radius:2px;
    z-index:0
}

.agw__step.hero-pro {
    --a1: #e91e8c;
    --a2: #c2185b;
    position:relative;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:48px;
    align-items:center;
    padding:36px 0;
    opacity:0;
    transform:translateY(20px);
    animation:svelte-13wmnd-agwIn .7s cubic-bezier(.22,1,.36,1) forwards;
    animation-delay:var(--delay, 0ms)
}

@keyframes svelte-13wmnd-agwIn {
    to {
        opacity:1;
        transform:translateY(0)
    }

    
}

.agw__step--rose.hero-pro {
    --a1: #e91e8c;
    --a2: #c2185b;
    --a3: #f472b6
}

.agw__step--violet.hero-pro {
    --a1: #7c3aed;
    --a2: #5b21b6;
    --a3: #a78bfa
}

.agw__step--gold.hero-pro {
    --a1: #f59e0b;
    --a2: #d97706;
    --a3: #fbbf24
}

.agw__step--left.hero-pro .agw__num-panel:where(.hero-pro) {
    order:1;
    text-align:right;
    padding-right:48px
}

.agw__step--left.hero-pro .agw__body:where(.hero-pro) {
    order:2
}

.agw__step--right.hero-pro .agw__num-panel:where(.hero-pro) {
    order:2;
    text-align:left;
    padding-left:48px
}

.agw__step--right.hero-pro .agw__body:where(.hero-pro) {
    order:1
}

.agw__num-panel.hero-pro {
    position:relative;
    z-index:1
}

.agw__num-halo.hero-pro {
    position:absolute;
    top:50%;
    left:50%;
    width:260px;
    height:260px;
    transform:translate(-50%,-50%);
    border-radius:50%;
    background:radial-gradient(circle,color-mix(in srgb,var(--a1) 28%,transparent) 0%,transparent 70%);
    filter:blur(40px);
    pointer-events:none;
    z-index:-1;
    animation:svelte-13wmnd-agwPulse 4s ease-in-out infinite
}

@keyframes svelte-13wmnd-agwPulse {
    0%,to {
        transform:translate(-50%,-50%) scale(1);
        opacity:.7
    }

    50% {
        transform:translate(-50%,-50%) scale(1.15);
        opacity:1
    }

    
}

.agw__num-ring.hero-pro {
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:240px;
    height:240px;
    border-radius:50%;
    border:1.5px dashed color-mix(in srgb,var(--a1) 35%,transparent);
    animation:svelte-13wmnd-agwSpin 28s linear infinite
}

.agw__step--right.hero-pro .agw__num-ring:where(.hero-pro) {
    animation-direction:reverse
}

@keyframes svelte-13wmnd-agwSpin {
    to {
        transform:translate(-50%,-50%) rotate(360deg)
    }

    
}

.agw__num.hero-pro {
    display:block;
    font-size:clamp(6rem,11vw,10rem);
    font-weight:700;
    line-height:.9;
    letter-spacing:-.06em;
    background:linear-gradient(135deg,var(--a1) 0%,var(--a2) 50%,var(--a3) 100%);
    -webkit-background-clip:text;
    background-clip:text;
    -webkit-text-fill-color:transparent;
    filter:drop-shadow(0 14px 22px color-mix(in srgb,var(--a1) 35%,transparent))
}

.agw__num-tag.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:6px;
    margin-top:8px;
    padding:5px 13px;
    background:#ffffffd9;
    border:1px solid color-mix(in srgb,var(--a1) 25%,transparent);
    color:var(--a2);
    border-radius:999px;
    font-size:11px;
    font-weight:600;
    letter-spacing:.1em;
    text-transform:uppercase;
    -webkit-backdrop-filter:blur(6px);
    backdrop-filter:blur(6px)
}

.agw__body.hero-pro {
    position:relative;
    z-index:1
}

.agw__body-bg.hero-pro {
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    border-radius:24px;
    background:linear-gradient(160deg,#fffffff2,#fffafceb);
    border:1px solid color-mix(in srgb,var(--a1) 15%,transparent);
    box-shadow:0 20px 50px -20px #2d12482e;
    -webkit-backdrop-filter:blur(10px);
    backdrop-filter:blur(10px);
    transition:transform .35s cubic-bezier(.22,1,.36,1),box-shadow .35s,border-color .35s
}

.agw__body.hero-pro:before {
   content: "";
    position:absolute;
    top:-1px;
    right:-1px;
    bottom:-1px;
    left:-1px;
    border-radius:25px;
    background:linear-gradient(135deg,var(--a1),var(--a3),transparent);
    opacity:0;
    transition:opacity .35s;
    z-index:-1;
    filter:blur(10px)
}

.agw__step.hero-pro:hover .agw__body-bg:where(.hero-pro) {
    transform:translateY(-4px);
    border-color:color-mix(in srgb,var(--a1) 45%,transparent);
    box-shadow:0 32px 64px -20px color-mix(in srgb,var(--a1) 30%,transparent)
}

.agw__step.hero-pro:hover .agw__body:where(.hero-pro):before {
    opacity:.35
}

.agw__body-inner.hero-pro {
    position:relative;
    padding:28px 30px
}

.agw__body-head.hero-pro {
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:14px
}

.agw__body-ic.hero-pro {
    width:44px;
    height:44px;
    border-radius:14px;
    display:inline-grid;
    place-items:center;
    color:#fff;
    background:linear-gradient(135deg,var(--a1),var(--a2));
    box-shadow:0 12px 24px -8px color-mix(in srgb,var(--a1) 55%,transparent),inset 0 2px #ffffff59;
    transition:transform .35s cubic-bezier(.22,1,.36,1)
}

.agw__step.hero-pro:hover .agw__body-ic:where(.hero-pro) {
    transform:rotate(-8deg) scale(1.06)
}

.agw__body-step.hero-pro {
    font-size:10.5px;
    font-weight:600;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:#9a7fb8
}

.agw__body-title.hero-pro {
    margin:0 0 12px;
    font-size:clamp(18px,1.5vw,22px);
    font-weight:600;
    line-height:1.3;
    letter-spacing:-.015em;
    color:#110520
}

.agw__body-desc.hero-pro {
    margin:0;
    font-size:14px;
    line-height:1.75;
    color:#4a2870
}

.agw__body-desc.hero-pro strong {
    color:#c2185b;
    font-weight:600;
    background:linear-gradient(120deg,transparent 0%,rgba(233,30,140,.12) 40%,rgba(233,30,140,.12) 60%,transparent 100%);
    padding:1px 3px;
    border-radius:3px
}

.agw__body-desc.hero-pro a {
    color:#c2185b;
    font-weight:600;
    text-decoration:underline;
    text-underline-offset:3px;
    text-decoration-color:#e91e8c66;
    transition:text-decoration-color .2s
}

.agw__body-desc.hero-pro a:hover {
    text-decoration-color:#c2185b
}

.agw__rail-dot.hero-pro {
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:16px;
    height:16px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--a1),var(--a2));
    border:3px solid #fff;
    box-shadow:0 0 0 2px color-mix(in srgb,var(--a1) 30%,transparent),0 6px 14px -4px color-mix(in srgb,var(--a1) 55%,transparent);
    z-index:2
}

.agw__rail-dot.hero-pro:after {
    content: "";
    position:absolute;
    top:-6px;
    right:-6px;
    bottom:-6px;
    left:-6px;
    border-radius:50%;
    background:radial-gradient(circle,color-mix(in srgb,var(--a1) 45%,transparent),transparent 70%);
    animation:svelte-13wmnd-agwDotPulse 2.2s ease-in-out infinite
}

@keyframes svelte-13wmnd-agwDotPulse {
    0%,to {
        opacity:.7;
        transform:scale(1)
    }

    50% {
        opacity:0;
        transform:scale(1.6)
    }

    
}

.agw__footer.hero-pro {
    margin-top:64px;
    padding:22px 28px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    flex-wrap:wrap;
    background:linear-gradient(135deg,#ffffffe6,#fdf6fbd9);
    border:1px solid rgba(233,30,140,.18);
    border-radius:22px;
    -webkit-backdrop-filter:blur(10px);
    backdrop-filter:blur(10px);
    box-shadow:0 14px 34px -14px #2d124826
}

.agw__foot-pills.hero-pro {
    display:flex;
    flex-wrap:wrap;
    gap:8px
}

.agw__foot-pill.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:7px 14px;
    background:#fffc;
    border:1px solid rgba(233,30,140,.18);
    border-radius:999px;
    font-size:12px;
    font-weight:500;
    color:#4a2870
}

.agw__foot-pill.hero-pro svg:where(.hero-pro) {
    color:#e91e8c
}

.agw__foot-cta.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:7px;
    padding:12px 22px;
    background:linear-gradient(135deg,#110520,#3f1f5e);
    color:#fff;
    border-radius:50px;
    font-size:13.5px;
    font-weight:600;
    text-decoration:none;
    box-shadow:0 14px 28px -8px #1105208c,inset 0 1px #ffffff1f;
    transition:transform .25s,box-shadow .25s
}

.agw__foot-cta.hero-pro:hover {
    transform:translateY(-2px);
    box-shadow:0 18px 36px -8px #110520a6;
    color:#fff
}

.agw__foot-cta.hero-pro svg:where(.hero-pro) {
    transition:transform .25s
}

.agw__foot-cta.hero-pro:hover svg:where(.hero-pro) {
    transform:translate(3px)
}

@media(max-width:980px) {
    .agw.hero-pro {
        padding:84px 0 92px
    }

    .agw__head.hero-pro {
        margin-bottom:48px
    }

    .agw__rail.hero-pro {
        left:28px
    }

    .agw__step.hero-pro {
        grid-template-columns:1fr;
        gap:20px;
        padding:24px 0 24px 72px
    }

    .agw__step--left.hero-pro .agw__num-panel:where(.hero-pro),.agw__step--right.hero-pro .agw__num-panel:where(.hero-pro) {
        order:1;
        text-align:left;
        padding:0
    }

    .agw__step--left.hero-pro .agw__body:where(.hero-pro),.agw__step--right.hero-pro .agw__body:where(.hero-pro) {
        order:2
    }

    .agw__num-halo.hero-pro,.agw__num-ring.hero-pro {
        width:180px;
        height:180px
    }

    .agw__num-halo.hero-pro,.agw__num-ring.hero-pro {
        left:80px;
        top:60px
    }

    .agw__num.hero-pro {
        font-size:5rem
    }

    .agw__rail-dot.hero-pro {
        left:28px;
        top:48px;
        transform:translate(-50%)
    }

    
}

@media(max-width:640px) {
    .agw__footer.hero-pro {
        flex-direction:column;
        align-items:stretch;
        text-align:center
    }

    .agw__foot-pills.hero-pro,.agw__foot-cta.hero-pro {
        justify-content:center
    }

    .agw__body-inner.hero-pro {
        padding:22px 20px
    }

    .agw__num.hero-pro {
        font-size:4.4rem
    }

    
}

.proc.hero-pro {
    position:relative;
    padding:96px 0 100px;
    overflow:hidden;
    background:radial-gradient(900px 500px at 85% 0%,rgba(233,30,140,.09),transparent 60%),radial-gradient(800px 500px at 15% 100%,rgba(245,158,11,.08),transparent 60%),linear-gradient(180deg,#fff,#fff8fb 55%,#fff5ec)
}

.proc__orb.hero-pro {
    position:absolute;
    border-radius:50%;
    filter:blur(80px);
    pointer-events:none;
    z-index:0
}

.proc__orb--1.hero-pro {
    top:-120px;
    right:-80px;
    width:380px;
    height:380px;
    background:radial-gradient(circle,rgba(233,30,140,.22),transparent 70%)
}

.proc__orb--2.hero-pro {
    bottom:-120px;
    left:-100px;
    width:360px;
    height:360px;
    background:radial-gradient(circle,rgba(124,58,237,.18),transparent 70%)
}

.proc__grid-bg.hero-pro {
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    pointer-events:none;
    background-image:linear-gradient(to right,rgba(233,30,140,.05) 1px,transparent 1px),linear-gradient(to bottom,rgba(233,30,140,.05) 1px,transparent 1px);
    background-size:48px 48px;
    mask-image:radial-gradient(ellipse 60% 55% at 50% 50%,#000 30%,transparent 85%);
    -webkit-mask-image:radial-gradient(ellipse 60% 55% at 50% 50%,#000 30%,transparent 85%)
}

.proc__container.hero-pro {
    position:relative;
    z-index:1
}

.proc__head.hero-pro {
    text-align:center;
    max-width:780px;
    margin:0 auto 56px
}

.proc__tag.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:7px;
    padding:5px 14px;
    background:linear-gradient(135deg,#e91e8c1f,#f59e0b1a);
    color:#c2185b;
    font-size:11px;
    font-weight:600;
    letter-spacing:.14em;
    text-transform:uppercase;
    border-radius:999px;
    border:1px solid rgba(233,30,140,.22);
    margin-bottom:16px
}

.proc__tag-dot.hero-pro {
    width:6px;
    height:6px;
    border-radius:50%;
    background:#e91e8c;
    box-shadow:0 0 0 3px #e91e8c38;
    animation:svelte-13wmnd-procDot 1.8s ease-in-out infinite
}

@keyframes svelte-13wmnd-procDot {
    0%,to {
        opacity:1
    }

    50% {
        opacity:.4
    }

    
}

.proc__head.hero-pro h2:where(.hero-pro) {
    margin:0 0 14px;
    font-size:clamp(1.8rem,3.1vw,2.6rem);
    font-weight:700;
    line-height:1.14;
    letter-spacing:-.02em;
    color:#110520
}

.proc__grad.hero-pro {
    display:block;
    background:linear-gradient(135deg,#e91e8c,#f43f5e 55%,#f59e0b);
    -webkit-background-clip:text;
    background-clip:text;
    -webkit-text-fill-color:transparent
}

.proc__head.hero-pro p:where(.hero-pro) {
    margin:0 auto 24px;
    font-size:clamp(14px,1.15vw,16px);
    line-height:1.65;
    color:#4a2870;
    max-width:620px
}

.proc__cta.hero-pro {
    position:relative;
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:13px 26px;
    border-radius:50px;
    background:linear-gradient(135deg,#e91e8c,#f43f5e 55%,#f59e0b);
    background-size:200% 100%;
    color:#fff;
    font-size:14px;
    font-weight:600;
    letter-spacing:.02em;
    text-decoration:none;
    box-shadow:0 14px 28px -8px #e91e8c8c,inset 0 1px #ffffff4d;
    overflow:hidden;
    transition:transform .25s cubic-bezier(.22,1,.36,1),background-position .5s ease,box-shadow .25s
}

.proc__cta.hero-pro:hover {
    transform:translateY(-3px);
    background-position:100% 0;
    box-shadow:0 20px 36px -8px #e91e8ca6;
    color:#fff
}

.proc__cta-arrow.hero-pro {
    transition:transform .25s ease
}

.proc__cta.hero-pro:hover .proc__cta-arrow:where(.hero-pro) {
    transform:translate(4px)
}

.proc__cta-shine.hero-pro {
    position:absolute;
    top:0;
    left:-120%;
    width:55%;
    height:100%;
    background:linear-gradient(110deg,transparent 30%,rgba(255,255,255,.45) 50%,transparent 70%);
    transform:skew(-18deg);
    pointer-events:none;
    transition:left .8s cubic-bezier(.22,1,.36,1)
}

.proc__cta.hero-pro:hover .proc__cta-shine:where(.hero-pro) {
    left:140%
}

.proc__grid.hero-pro {
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:20px;
    position:relative
}

.proc__step.hero-pro {
    --a1: #e91e8c;
    --a2: #c2185b;
    position:relative;
    padding:28px 24px 26px;
    background:linear-gradient(180deg,#fff,#fffafc);
    border:1px solid rgba(233,30,140,.12);
    border-radius:22px;
    box-shadow:0 10px 28px -14px #2d124833;
    overflow:hidden;
    isolation:isolate;
    opacity:0;
    transform:translateY(14px);
    animation:svelte-13wmnd-procStepIn .5s cubic-bezier(.22,1,.36,1) forwards;
    animation-delay:var(--delay, 0ms);
    transition:transform .3s cubic-bezier(.22,1,.36,1),box-shadow .3s,border-color .3s
}

@keyframes svelte-13wmnd-procStepIn {
    to {
        opacity:1;
        transform:translateY(0)
    }

    
}

.proc__step.hero-pro:hover {
    transform:translateY(-6px);
    border-color:color-mix(in srgb,var(--a1) 35%,transparent);
    box-shadow:0 28px 52px -16px color-mix(in srgb,var(--a1) 35%,transparent)
}

.proc__step--rose.hero-pro {
    --a1: #e91e8c;
    --a2: #c2185b
}

.proc__step--violet.hero-pro {
    --a1: #7c3aed;
    --a2: #5b21b6
}

.proc__step--gold.hero-pro {
    --a1: #f59e0b;
    --a2: #d97706
}

.proc__step--coral.hero-pro {
    --a1: #f43f5e;
    --a2: #dc2626
}

.proc__step-halo.hero-pro {
    position:absolute;
    top:-40%;
    right:-35%;
    width:220px;
    height:220px;
    border-radius:50%;
    background:radial-gradient(circle,color-mix(in srgb,var(--a1) 20%,transparent),transparent 70%);
    filter:blur(30px);
    pointer-events:none;
    z-index:-1
}

.proc__step-bignum.hero-pro {
    position:absolute;
    top:4px;
    right:10px;
    font-size:120px;
    font-weight:700;
    line-height:.9;
    letter-spacing:-.05em;
    color:transparent;
    background:linear-gradient(135deg,color-mix(in srgb,var(--a1) 22%,transparent),color-mix(in srgb,var(--a2) 8%,transparent));
    -webkit-background-clip:text;
    background-clip:text;
    pointer-events:none;
    z-index:0
}

.proc__step-top.hero-pro {
    position:relative;
    z-index:1;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-bottom:16px
}

.proc__step-ic.hero-pro {
    width:52px;
    height:52px;
    border-radius:16px;
    display:inline-grid;
    place-items:center;
    color:#fff;
    background:linear-gradient(135deg,var(--a1),var(--a2));
    box-shadow:0 14px 28px -10px color-mix(in srgb,var(--a1) 55%,transparent),inset 0 2px #ffffff59;
    transition:transform .3s cubic-bezier(.22,1,.36,1)
}

.proc__step.hero-pro:hover .proc__step-ic:where(.hero-pro) {
    transform:rotate(-6deg) scale(1.06)
}

.proc__step-chip.hero-pro {
    display:inline-flex;
    align-items:center;
    gap:5px;
    padding:4px 11px;
    background:color-mix(in srgb,var(--a1) 10%,#fff);
    color:var(--a2);
    border:1px solid color-mix(in srgb,var(--a1) 28%,transparent);
    border-radius:999px;
    font-size:10.5px;
    font-weight:600;
    letter-spacing:.08em;
    text-transform:uppercase
}

.proc__step-chip-dot.hero-pro {
    width:5px;
    height:5px;
    border-radius:50%;
    background:var(--a1);
    box-shadow:0 0 0 3px color-mix(in srgb,var(--a1) 22%,transparent)
}

.proc__step-title.hero-pro {
    position:relative;
    z-index:1;
    margin:0 0 10px;
    font-size:18px;
    font-weight:600;
    color:#110520;
    letter-spacing:-.015em
}

.proc__step-desc.hero-pro {
    position:relative;
    z-index:1;
    margin:0;
    font-size:13.5px;
    line-height:1.65;
    color:#4a2870
}

.proc__connector.hero-pro {
    position:absolute;
    top:50%;
    right:-27px;
    transform:translateY(-50%);
    z-index:2;
    color:color-mix(in srgb,var(--a1) 60%,#b59ec8);
    pointer-events:none
}

@media(max-width:1100px) {
    .proc__grid.hero-pro {
        grid-template-columns:repeat(2,minmax(0,1fr))
    }

    .proc__step.hero-pro:nth-child(2n) .proc__connector:where(.hero-pro) {
        display:none
    }

    
}

@media(max-width:640px) {
    .proc.hero-pro {
        padding:64px 0 72px
    }

    .proc__head.hero-pro {
        margin-bottom:40px
    }

    .proc__grid.hero-pro {
        grid-template-columns:1fr;
        gap:16px
    }

    .proc__connector.hero-pro {
        top:auto;
        right:50%;
        bottom:-18px;
        transform:translate(50%) rotate(90deg)
    }

    .proc__step.hero-pro:nth-child(2n) .proc__connector:where(.hero-pro) {
        display:block
    }

    .proc__step.hero-pro:last-child .proc__connector:where(.hero-pro) {
        display:none
    }

    .proc__step.hero-pro {
        padding:24px 20px 22px
    }

    .proc__step-bignum.hero-pro {
        font-size:90px
    }

    
}















/*About Page Style Starts here*/



section.svelte-bxfdd3 {
  max-width: 100vw;
}
.abt-hero.svelte-bxfdd3,
.abt-jny-sec.svelte-bxfdd3,
.abt-story-sec.svelte-bxfdd3,
.abt-com-sec.svelte-bxfdd3,
.abt-hub-sec.svelte-bxfdd3,
.abt-cov-sec.svelte-bxfdd3,
.abt-cta-sec.svelte-bxfdd3 {
  border-bottom: 1px solid rgba(233, 30, 140, 0.14);
}
.abt-cta-sec.svelte-bxfdd3 {
  border-bottom: none;
}
.abt-grad.svelte-bxfdd3 {
  background: linear-gradient(135deg, var(--rose), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.abt-hero.svelte-bxfdd3 {
  position: relative;
  overflow: hidden;
  padding: 72px 0 96px;
  background: radial-gradient(
      900px 500px at 50% 0%,
      rgba(245, 158, 11, 0.1) 0%,
      transparent 55%
    ),
    radial-gradient(
      900px 500px at 0% 50%,
      rgba(233, 30, 140, 0.07) 0%,
      transparent 55%
    ),
    radial-gradient(
      900px 500px at 100% 50%,
      rgba(245, 158, 11, 0.09) 0%,
      transparent 55%
    ),
    linear-gradient(180deg, #fff0f7, #fdf4ff);
}
.abt-hero.svelte-bxfdd3:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(
      rgba(233, 30, 140, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(233, 30, 140, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    #000 40%,
    transparent 75%
  );
  mask-image: radial-gradient(ellipse at center, #000 40%, transparent 75%);
  pointer-events: none;
}
.abt-hero.svelte-bxfdd3 > .grid-container:where(.svelte-bxfdd3) {
  position: relative;
  z-index: 1;
}
.abt-hero-inner.svelte-bxfdd3 {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.abt-hero-text.svelte-bxfdd3 {
  max-width: 620px;
}
.abt-orb.svelte-bxfdd3 {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.55;
}
.abt-orb-1.svelte-bxfdd3 {
  top: -120px;
  left: -100px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(233, 30, 140, 0.4), transparent 70%);
}
.abt-orb-2.svelte-bxfdd3 {
  top: 40px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.35),
    transparent 70%
  );
}
.abt-orb-3.svelte-bxfdd3 {
  bottom: -120px;
  left: 30%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.3), transparent 70%);
}
.abt-crumb.svelte-bxfdd3 {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  margin-bottom: 14px;
  background: #ffffffd9;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 14px #2d12480f;
}
.abt-crumb.svelte-bxfdd3 a:where(.svelte-bxfdd3) {
  color: var(--rose);
  text-decoration: none;
  font-weight: 600;
}
.abt-crumb.svelte-bxfdd3 a:where(.svelte-bxfdd3):hover {
  text-decoration: underline;
}
.abt-crumb.svelte-bxfdd3 span:where(.svelte-bxfdd3):last-child {
  color: var(--heading, #2d1248);
  font-weight: 600;
}
.abt-crumb.svelte-bxfdd3 svg:where(.svelte-bxfdd3) {
  color: var(--text-dim);
}
.abt-chip.svelte-bxfdd3 {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 12px;
  margin-bottom: 20px;
  background: #ffffffd9;
  border: 1px solid rgba(245, 196, 107, 0.4);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: #b45309;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 18px #f59e0b26;
}
.abt-chip-dot.svelte-bxfdd3 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px #10b98133, 0 0 10px #10b98199;
  animation: svelte-bxfdd3-abtPulse 2.2s ease-in-out infinite;
}
@keyframes svelte-bxfdd3-abtPulse {
  0%,
  to {
    box-shadow: 0 0 0 3px #10b98133, 0 0 10px #10b98199;
  }
  50% {
    box-shadow: 0 0 0 6px #10b9810d, 0 0 18px #10b981cc;
  }
}
.abt-h1.svelte-bxfdd3 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--heading, #2a0a1a);
  margin: 0 0 16px;
}
.abt-lead.svelte-bxfdd3 {
  max-width: 640px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 32px;
}
.abt-meta.svelte-bxfdd3 {
  display: inline-flex;
  align-items: stretch;
  flex-wrap: wrap;
  padding: 10px 6px;
  background: #ffffffd9;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 36px #e91e8c14;
}
.abt-meta-item.svelte-bxfdd3 {
  padding: 6px 22px;
  text-align: center;
  min-width: 92px;
}
.abt-meta-item.svelte-bxfdd3 + .abt-meta-item:where(.svelte-bxfdd3) {
  border-left: 1px solid rgba(45, 18, 72, 0.08);
}
.abt-meta-val.svelte-bxfdd3 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.abt-live-dot.svelte-bxfdd3 {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px #10b98133;
  animation: svelte-bxfdd3-abtPulse 2.2s ease-in-out infinite;
  -webkit-text-fill-color: initial;
}
.abt-meta-lbl.svelte-bxfdd3 {
  margin-top: 4px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-dim, #7b6a90);
}
.abt-hero-visual.svelte-bxfdd3 {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1/1;
  margin-left: auto;
}
.abt-vis-glow.svelte-bxfdd3 {
  position: absolute;
  top: 8%;
  right: 8%;
  bottom: 8%;
  left: 8%;
  border-radius: 50%;
  background: radial-gradient(
      circle at 30% 30%,
      rgba(233, 30, 140, 0.35) 0%,
      transparent 55%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(245, 158, 11, 0.28) 0%,
      transparent 55%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(245, 158, 11, 0.18) 0%,
      transparent 60%
    );
  filter: blur(24px);
  pointer-events: none;
}
.abt-vis-rings.svelte-bxfdd3 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: svelte-bxfdd3-abtRingSpin 40s linear infinite;
}
@keyframes svelte-bxfdd3-abtRingSpin {
  to {
    transform: rotate(360deg);
  }
}
.abt-vis-core.svelte-bxfdd3 {
  position: absolute;
  top: 30%;
  right: 30%;
  bottom: 30%;
  left: 30%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.abt-vis-blob.svelte-bxfdd3 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 38% 62% 55% 45%/45% 35% 65% 55%;
  background: linear-gradient(
    135deg,
    var(--rose) 0%,
    var(--gold) 60%,
    #8b1a6b 100%
  );
  box-shadow: 0 30px 60px #e91e8c66, inset 0 2px #fff3;
  animation: svelte-bxfdd3-abtCoreMorph 10s ease-in-out infinite;
}
@keyframes svelte-bxfdd3-abtCoreMorph {
  0%,
  to {
    border-radius: 38% 62% 55% 45%/45% 35% 65% 55%;
  }
  50% {
    border-radius: 55% 45% 38% 62%/65% 55% 45% 35%;
  }
}
.abt-vis-crest.svelte-bxfdd3 {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: #ffffff24;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px #ffffff59;
}
.abt-vis-pill.svelte-bxfdd3 {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 10px 10px;
  background: #fff;
  border: 1px solid var(--border, #ead8f0);
  border-radius: 50px;
  box-shadow: 0 12px 28px #2d124826;
  z-index: 3;
  white-space: nowrap;
}
.abt-vis-pill-1.svelte-bxfdd3 {
  top: 6%;
  left: -8%;
  animation: svelte-bxfdd3-abtPillFloat 6s ease-in-out infinite;
}
.abt-vis-pill-2.svelte-bxfdd3 {
  top: 14%;
  right: -6%;
  animation: svelte-bxfdd3-abtPillFloat 6s ease-in-out infinite reverse;
  animation-delay: -2s;
}
.abt-vis-pill-3.svelte-bxfdd3 {
  bottom: 20%;
  left: -10%;
  animation: svelte-bxfdd3-abtPillFloat 6s ease-in-out infinite;
  animation-delay: -4s;
}
.abt-vis-pill-4.svelte-bxfdd3 {
  bottom: 8%;
  right: -4%;
  animation: svelte-bxfdd3-abtPillFloat 6s ease-in-out infinite reverse;
  animation-delay: -1s;
}
@keyframes svelte-bxfdd3-abtPillFloat {
  0%,
  to {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.abt-vis-pill-ic.svelte-bxfdd3 {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.abt-vis-pill-ic-g.svelte-bxfdd3 {
  background: #10b98124;
  color: #059669;
}
.abt-vis-pill-ic-r.svelte-bxfdd3 {
  background: #f59e0b29;
  color: #d97706;
}
.abt-vis-pill-ic-v.svelte-bxfdd3 {
  background: #f59e0b29;
  color: var(--gold);
}
.abt-vis-pill-livedot.svelte-bxfdd3 {
  width: 10px;
  height: 10px;
  margin: 0 4px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px #10b98138;
  animation: svelte-bxfdd3-abtPulse 2.2s ease-in-out infinite;
}
.abt-vis-pill-v.svelte-bxfdd3 {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--heading, #2a0a1a);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.abt-vis-pill-l.svelte-bxfdd3 {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--text-muted, #7b6a90);
  margin-top: 2px;
  letter-spacing: 0.02em;
}
.abt-diff.svelte-bxfdd3 {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: linear-gradient(180deg, #fff5fb, #fff);
}
.abt-diff-orb.svelte-bxfdd3 {
  position: absolute;
  top: -130px;
  left: 50%;
  transform: translate(-50%);
  width: 520px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.12),
    transparent 70%
  );
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.abt-diff.svelte-bxfdd3 .grid-container:where(.svelte-bxfdd3) {
  position: relative;
  z-index: 1;
}
.abt-diff.svelte-bxfdd3 .abt-sec-head:where(.svelte-bxfdd3) {
  margin-bottom: 44px;
}
.abt-diff-grid.svelte-bxfdd3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.abt-diff-card.svelte-bxfdd3 {
  position: relative;
  overflow: hidden;
  background: #fffffff0;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border, #f0d8e6);
  border-radius: 20px;
  padding: 32px 28px 28px;
  box-shadow: 0 10px 38px #2d124812;
  transition: transform 0.28s ease, box-shadow 0.28s ease,
    border-color 0.28s ease;
}
.abt-diff-card.svelte-bxfdd3:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 50px #2d124821;
  border-color: var(--rose-light, #f9a8d4);
}
.abt-diff-num.svelte-bxfdd3 {
  display: block;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
  background: linear-gradient(
    120deg,
    #ff6b9d,
    var(--rose, #e91e8c) 55%,
    var(--gold, #f59e0b)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.abt-diff-card.svelte-bxfdd3 h3:where(.svelte-bxfdd3) {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--heading, #2a0a1a);
  margin: 0 0 10px;
}
.abt-diff-card.svelte-bxfdd3 p:where(.svelte-bxfdd3) {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.75;
  margin: 0;
}
@media (max-width: 640px) {
  .abt-diff.svelte-bxfdd3 {
    padding: 64px 0;
  }
  .abt-diff-card.svelte-bxfdd3 {
    padding: 26px 22px 24px;
  }
}
.abt-jny-sec.svelte-bxfdd3 {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background: linear-gradient(180deg, #fff, #fff7f2);
}
.abt-jny-orb.svelte-bxfdd3 {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.5;
}
.abt-jny-orb-1.svelte-bxfdd3 {
  top: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.35),
    transparent 70%
  );
}
.abt-jny-orb-2.svelte-bxfdd3 {
  bottom: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.3), transparent 70%);
}
.abt-jny-sec.svelte-bxfdd3 > .grid-container:where(.svelte-bxfdd3) {
  position: relative;
  z-index: 1;
}
.abt-jny-head.svelte-bxfdd3 {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 64px;
}
.abt-jny-eyebrow.svelte-bxfdd3 {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--rose);
  margin-bottom: 18px;
}
.abt-jny-eyebrow-line.svelte-bxfdd3 {
  width: 36px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--rose));
}
.abt-jny-eyebrow-line.svelte-bxfdd3:last-child {
  background: linear-gradient(90deg, var(--rose), transparent);
}
.abt-jny-h2.svelte-bxfdd3 {
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--heading, #2a0a1a);
  margin: 0 0 16px;
}
.abt-jny-sub.svelte-bxfdd3 {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 auto;
  max-width: 620px;
}
.abt-jny-wrap.svelte-bxfdd3 {
  position: relative;
  max-width: 880px;
  margin: 0 auto 80px;
  --jny-c1: #ec4899;
  --jny-c2: #be185d;
  --jny-soft: rgba(236, 72, 153, 0.14);
  --jny-halo: rgba(236, 72, 153, 0.28);
}
.abt-jny-row-0.svelte-bxfdd3 {
  --jny-c1: #ec4899;
  --jny-c2: #be185d;
  --jny-soft: rgba(236, 72, 153, 0.14);
  --jny-halo: rgba(236, 72, 153, 0.32);
}
.abt-jny-row-1.svelte-bxfdd3 {
  --jny-c1: #f59e0b;
  --jny-c2: #d97706;
  --jny-soft: rgba(245, 158, 11, 0.14);
  --jny-halo: rgba(245, 158, 11, 0.32);
}
.abt-jny-row-2.svelte-bxfdd3 {
  --jny-c1: #fb7185;
  --jny-c2: #e11d48;
  --jny-soft: rgba(251, 113, 133, 0.14);
  --jny-halo: rgba(251, 113, 133, 0.32);
}
.abt-jny-row-3.svelte-bxfdd3 {
  --jny-c1: #14b8a6;
  --jny-c2: #0f766e;
  --jny-soft: rgba(20, 184, 166, 0.14);
  --jny-halo: rgba(20, 184, 166, 0.3);
}
.abt-jny-rail.svelte-bxfdd3 {
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 128px;
  width: 3px;
  background: linear-gradient(
    180deg,
    #ec48998c,
    #f59e0b8c,
    #fb71858c 66%,
    #14b8a68c
  );
  border-radius: 2px;
  z-index: 0;
  filter: drop-shadow(0 0 6px rgba(236, 72, 153, 0.18));
}
.abt-jny-rail.svelte-bxfdd3:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 255, 255, 0.9) 50%,
    transparent 100%
  );
  background-size: 100% 160px;
  background-repeat: no-repeat;
  animation: svelte-bxfdd3-jnyRailShimmer 3.8s ease-in-out infinite;
  mix-blend-mode: overlay;
  border-radius: inherit;
}
@keyframes svelte-bxfdd3-jnyRailShimmer {
  0% {
    background-position: 0 -200px;
    opacity: 0;
  }
  40% {
    opacity: 0.9;
  }
  to {
    background-position: 0 120%;
    opacity: 0;
  }
}
.abt-jny-row.svelte-bxfdd3 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 110px 36px 1fr;
  column-gap: 24px;
  align-items: start;
  padding: 10px 0 34px;
}
.abt-jny-row.svelte-bxfdd3:last-child {
  padding-bottom: 0;
}
.abt-jny-yearcol.svelte-bxfdd3 {
  display: flex;
  justify-content: flex-end;
  padding-top: 14px;
}
.abt-jny-rail-slot.svelte-bxfdd3 {
  display: flex;
  justify-content: center;
  padding-top: 18px;
  position: relative;
}
.abt-jny-node.svelte-bxfdd3 {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--jny-c1), var(--jny-c2));
  position: relative;
  z-index: 2;
  transform: rotate(45deg);
  border-radius: 4px;
  box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--jny-halo),
    0 8px 22px var(--jny-halo), inset 0 0 0 1px #ffffff73;
}
.abt-jny-node.svelte-bxfdd3:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 38%;
  height: 38%;
  background: linear-gradient(135deg, #ffffffe6, #ffffff1a);
  border-radius: 3px;
  pointer-events: none;
}
.abt-jny-node.svelte-bxfdd3:after {
  content: "";
  position: absolute;
  top: -14px;
  right: -14px;
  bottom: -14px;
  left: -14px;
  background: radial-gradient(
    circle at center,
    var(--jny-halo),
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
  z-index: -1;
  border-radius: 50%;
}
.abt-jny-row.svelte-bxfdd3:hover .abt-jny-node:where(.svelte-bxfdd3):after {
  opacity: 1;
}
.abt-jny-body.svelte-bxfdd3 {
  position: relative;
  padding: 26px 28px 24px;
  background: linear-gradient(180deg, #ffffffeb, #ffffffb8),
    radial-gradient(360px 140px at 0% 0%, var(--jny-soft), transparent 70%),
    radial-gradient(360px 140px at 100% 100%, var(--jny-soft), transparent 70%);
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 1px #ffffffe6 inset, 0 22px 40px -24px #2d12482e,
    0 4px 14px #2d12480d;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.abt-jny-body.svelte-bxfdd3:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    var(--jny-c1),
    var(--jny-c2) 40%,
    rgba(255, 255, 255, 0.4) 70%,
    var(--jny-c1)
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.55;
  pointer-events: none;
  transition: opacity 0.4s;
}
.abt-jny-body.svelte-bxfdd3:after {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  width: 72px;
  height: 72px;
  background: conic-gradient(
    from 210deg at 100% 0%,
    transparent 0deg,
    var(--jny-c1) 40deg,
    transparent 70deg
  );
  opacity: 0.22;
  border-radius: 0 20px 0 50%;
  pointer-events: none;
  transition: opacity 0.4s;
}
.abt-jny-row.svelte-bxfdd3:hover .abt-jny-body:where(.svelte-bxfdd3) {
  transform: translate(6px) translateY(-2px);
  box-shadow: 0 1px #ffffffe6 inset, 0 36px 60px -24px var(--jny-halo),
    0 8px 22px #2d124814;
}
.abt-jny-row.svelte-bxfdd3:hover .abt-jny-body:where(.svelte-bxfdd3):before {
  opacity: 1;
}
.abt-jny-row.svelte-bxfdd3:hover .abt-jny-body:where(.svelte-bxfdd3):after {
  opacity: 0.55;
}
.abt-jny-year.svelte-bxfdd3 {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px 7px 10px;
  background: linear-gradient(135deg, var(--jny-c1), var(--jny-c2));
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
  box-shadow: 0 8px 18px var(--jny-halo), inset 0 1px #ffffff8c,
    inset 0 -1px #00000014;
  position: relative;
  overflow: hidden;
}
.abt-jny-year.svelte-bxfdd3:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    115deg,
    transparent 42%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 58%
  );
  transform: translate(-120%);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.abt-jny-row.svelte-bxfdd3:hover .abt-jny-year:where(.svelte-bxfdd3):before {
  transform: translate(120%);
}
.abt-jny-year-dot.svelte-bxfdd3 {
  width: 6px;
  height: 6px;
  background: #fff;
  transform: rotate(45deg);
  border-radius: 1.5px;
  box-shadow: 0 0 0 2px #fff6;
}
.abt-jny-icon.svelte-bxfdd3 {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff, #fff9),
    linear-gradient(135deg, var(--jny-soft), var(--jny-soft));
  background-color: #fff;
  color: var(--jny-c2);
  position: relative;
  box-shadow: 0 10px 22px -8px var(--jny-halo), inset 0 1px #ffffffe6,
    inset 0 0 0 1px #fff9;
  overflow: hidden;
}
.abt-jny-icon.svelte-bxfdd3:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    var(--jny-c1),
    transparent 55%,
    var(--jny-c2)
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.7;
  pointer-events: none;
}
.abt-jny-icon.svelte-bxfdd3:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 55%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.85),
    transparent 70%
  );
  border-bottom-right-radius: 100%;
  pointer-events: none;
}
.abt-jny-icon.svelte-bxfdd3 svg:where(.svelte-bxfdd3) {
  position: relative;
  z-index: 1;
}
.abt-jny-body.svelte-bxfdd3 h3:where(.svelte-bxfdd3) {
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--heading, #2a0a1a);
  margin: 0 0 10px;
  position: relative;
}
.abt-jny-body.svelte-bxfdd3 p:where(.svelte-bxfdd3) {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
  position: relative;
}
.abt-quote.svelte-bxfdd3 {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 60px 48px;
  background: radial-gradient(
      520px 260px at 0% 0%,
      rgba(236, 72, 153, 0.1),
      transparent 60%
    ),
    radial-gradient(
      520px 260px at 100% 100%,
      rgba(245, 158, 11, 0.1),
      transparent 60%
    ),
    linear-gradient(180deg, #fffffff0, #ffffffc7);
  background-color: #fff;
  border-radius: 28px;
  box-shadow: 0 1px #fffffff2 inset, 0 40px 80px -28px #ec489938,
    0 12px 28px #2d12480f;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  isolation: isolate;
}
.abt-quote.svelte-bxfdd3:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(
    135deg,
    #ec4899,
    #fb7185 28%,
    #ffffff73,
    #f59e0b,
    #ec4899
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.7;
}
.abt-quote.svelte-bxfdd3:after {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 260px;
  height: 260px;
  background: conic-gradient(
    from 200deg at 100% 0%,
    transparent 0deg,
    rgba(245, 158, 11, 0.22) 50deg,
    rgba(236, 72, 153, 0.22) 95deg,
    transparent 140deg
  );
  filter: blur(2px);
  pointer-events: none;
  border-radius: 50%;
  z-index: 0;
}
.abt-quote-mark.svelte-bxfdd3 {
  position: absolute;
  top: -6px;
  left: 40px;
  font-family: Playfair Display, Georgia, Times New Roman, serif;
  font-size: 180px;
  line-height: 1;
  color: transparent;
  background: linear-gradient(135deg, #ec4899, #fb7185 45%, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 700;
  pointer-events: none;
  filter: drop-shadow(0 10px 24px rgba(236, 72, 153, 0.18));
  z-index: 1;
}
.abt-quote-mark.svelte-bxfdd3:after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 26%;
  height: 6px;
  background: radial-gradient(
    ellipse at center,
    rgba(236, 72, 153, 0.35),
    transparent 70%
  );
  filter: blur(4px);
  z-index: -1;
}
.abt-quote-text.svelte-bxfdd3 {
  position: relative;
  z-index: 2;
  font-size: clamp(1.1rem, 1.7vw, 1.32rem);
  line-height: 1.7;
  font-weight: 500;
  color: #2a0a1a;
  margin: 32px 0 36px;
  letter-spacing: -0.008em;
  max-width: 680px;
}
.abt-quote-sig.svelte-bxfdd3 {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
}
.abt-quote-sig.svelte-bxfdd3:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, #ec4899, #f59e0b);
  border-radius: 2px;
  box-shadow: 0 0 12px #ec489959;
}
.abt-quote-av.svelte-bxfdd3 {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ec4899, #fb7185, #f59e0b);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
  position: relative;
  box-shadow: 0 12px 26px -6px #ec489973, inset 0 1px #ffffff8c,
    inset 0 -1px #0000001a;
  isolation: isolate;
}
.abt-quote-av.svelte-bxfdd3:before {
  content: "";
  position: absolute;
  top: -3px;
  right: -3px;
  bottom: -3px;
  left: -3px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #ec4899, #f59e0b, #fb7185, #ec4899);
  z-index: -1;
  filter: blur(6px);
  opacity: 0.55;
  animation: svelte-bxfdd3-qAvGlow 8s linear infinite;
}
.abt-quote-av.svelte-bxfdd3:after {
  content: "";
  position: absolute;
  top: 4px;
  left: 6px;
  width: 42%;
  height: 42%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.85),
    transparent 75%
  );
  border-radius: 50%;
  pointer-events: none;
}
@keyframes svelte-bxfdd3-qAvGlow {
  to {
    transform: rotate(360deg);
  }
}
.abt-quote-name.svelte-bxfdd3 {
  font-size: 15px;
  font-weight: 700;
  color: #2a0a1a;
  letter-spacing: -0.012em;
}
.abt-quote-role.svelte-bxfdd3 {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 3px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.abt-story-sec.svelte-bxfdd3 {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background: linear-gradient(180deg, #fff0f5, #fff5ec);
}
.abt-story-bg.svelte-bxfdd3 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  background: radial-gradient(
      600px 400px at 15% 30%,
      rgba(233, 30, 140, 0.1),
      transparent 60%
    ),
    radial-gradient(
      600px 400px at 85% 70%,
      rgba(245, 158, 11, 0.1),
      transparent 60%
    );
}
.abt-story-sec.svelte-bxfdd3 > .grid-container:where(.svelte-bxfdd3) {
  position: relative;
  z-index: 1;
}
.abt-story-grid.svelte-bxfdd3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.abt-story-h1.svelte-bxfdd3 {
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--heading, #2a0a1a);
  margin: 0 0 22px;
}
.abt-story-lead.svelte-bxfdd3 {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 28px;
  max-width: 460px;
}
.abt-story-cta.svelte-bxfdd3 {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.abt-story-btn.svelte-bxfdd3 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px 14px 14px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
}
.abt-story-btn-primary.svelte-bxfdd3 {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  box-shadow: 0 14px 30px #e91e8c59, inset 0 1px #ffffff4d;
}
.abt-story-btn-primary.svelte-bxfdd3:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px #e91e8c80;
}
.abt-story-btn-ghost.svelte-bxfdd3 {
  background: #fff;
  border: 1.5px solid var(--border, #ead8f0);
  color: #2a0a1a;
  padding: 14px 22px;
  box-shadow: 0 4px 12px #2d12480d;
}
.abt-story-btn-ghost.svelte-bxfdd3:hover {
  border-color: var(--rose);
  color: var(--rose);
  transform: translateY(-2px);
}
.abt-story-btn-ic.svelte-bxfdd3 {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.abt-story-trust.svelte-bxfdd3 {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}
.abt-story-trust.svelte-bxfdd3 span:where(.svelte-bxfdd3) {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.abt-story-bullet.svelte-bxfdd3 {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--rose);
}
.abt-collage.svelte-bxfdd3 {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  max-width: 520px;
  margin-left: auto;
}
.abt-cg-line.svelte-bxfdd3 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.abt-cg-rating.svelte-bxfdd3 {
  position: absolute;
  top: 2%;
  right: 4%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 8px;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 16px 36px #2d124824;
  z-index: 5;
  animation: svelte-bxfdd3-abtFloat 6s ease-in-out infinite;
}
.abt-cg-rating-logo.svelte-bxfdd3 {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.abt-cg-rating-stars.svelte-bxfdd3 {
  display: flex;
  align-items: center;
  gap: 2px;
}
.abt-cg-rating-score.svelte-bxfdd3 {
  margin-left: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #2a0a1a;
  letter-spacing: -0.01em;
}
.abt-cg-rating-meta.svelte-bxfdd3 {
  font-size: 9.5px;
  font-weight: 500;
  color: #c2185b;
  margin-top: 2px;
  letter-spacing: 0.04em;
}
.abt-cg-av.svelte-bxfdd3 {
  position: absolute;
  z-index: 3;
  width: 118px;
  height: 118px;
  border-radius: 20px;
  padding: 6px;
  background: #fff;
  box-shadow: 0 18px 36px #2d124824;
  animation: svelte-bxfdd3-abtFloat 7s ease-in-out infinite;
}
.abt-cg-av-1.svelte-bxfdd3 {
  top: 16%;
  left: 2%;
  animation-delay: -1s;
}
.abt-cg-av-2.svelte-bxfdd3 {
  top: 4%;
  right: -2%;
  animation-delay: -3s;
  transform: rotate(2deg);
}
.abt-cg-av-3.svelte-bxfdd3 {
  bottom: 22%;
  left: -4%;
  animation-delay: -2s;
  transform: rotate(-3deg);
}
.abt-cg-av-4.svelte-bxfdd3 {
  bottom: 2%;
  right: -4%;
  animation-delay: -4s;
  transform: rotate(3deg);
}
.abt-cg-av-img.svelte-bxfdd3 {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
}
.abt-cg-av-initial.svelte-bxfdd3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffffd9;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  letter-spacing: -0.03em;
}
.abt-cg-av-ic.svelte-bxfdd3 {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px #0000001a;
}
.abt-cg-dot.svelte-bxfdd3 {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 2px #10b9814d;
  animation: svelte-bxfdd3-abtPulse 2.2s ease-in-out infinite;
}
.abt-cg-feature.svelte-bxfdd3 {
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translate(-50%);
  width: 64%;
  padding: 18px 18px 16px;
  background: #2a0a1a;
  color: #fff;
  border-radius: 24px;
  box-shadow: 0 24px 60px #2a0a1a80;
  z-index: 4;
}
.abt-cg-feature-head.svelte-bxfdd3 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}
.abt-cg-feature-title.svelte-bxfdd3 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.abt-cg-feature-sub.svelte-bxfdd3 {
  font-size: 11px;
  color: #ffffff8c;
  margin-top: 2px;
  font-weight: 500;
}
.abt-cg-dots.svelte-bxfdd3 {
  display: inline-flex;
  gap: 3px;
}
.abt-cg-dots.svelte-bxfdd3 span:where(.svelte-bxfdd3) {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff6;
}
.abt-cg-wave.svelte-bxfdd3 {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 40px;
  padding: 0 2px;
}
.abt-cg-wave.svelte-bxfdd3 span:where(.svelte-bxfdd3) {
  flex: 1;
  background: linear-gradient(180deg, #f472b6, #f59e0b);
  border-radius: 3px;
  animation: svelte-bxfdd3-abtWave 1.6s ease-in-out infinite;
}
.abt-cg-wave.svelte-bxfdd3 span:where(.svelte-bxfdd3):nth-child(odd) {
  animation-delay: -0.3s;
}
.abt-cg-wave.svelte-bxfdd3 span:where(.svelte-bxfdd3):nth-child(3n) {
  animation-delay: -0.6s;
}
.abt-cg-wave.svelte-bxfdd3 span:where(.svelte-bxfdd3):nth-child(5n) {
  animation-delay: -0.9s;
}
@keyframes svelte-bxfdd3-abtWave {
  0%,
  to {
    transform: scaleY(1);
    opacity: 0.9;
  }
  50% {
    transform: scaleY(0.55);
    opacity: 0.6;
  }
}
.abt-cg-feature-foot.svelte-bxfdd3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}
.abt-cg-feature-time.svelte-bxfdd3 {
  font-size: 12px;
  font-weight: 600;
  color: #ffffffd9;
  letter-spacing: -0.01em;
}
.abt-cg-feature-badge.svelte-bxfdd3 {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: #ffffff1a;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #ffffffe6;
}
.abt-cg-feature-badge-dot.svelte-bxfdd3 {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f472b6;
  box-shadow: 0 0 6px #f472b6cc;
}
.abt-cg-chat.svelte-bxfdd3 {
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translate(-50%);
  width: 62%;
  padding: 14px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 24px 50px #2d12482e;
  z-index: 3;
}
.abt-cg-chat-top.svelte-bxfdd3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.abt-cg-chat-av.svelte-bxfdd3 {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fcd34d, #f59e0b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}
.abt-cg-chat-name.svelte-bxfdd3 {
  font-size: 12px;
  font-weight: 700;
  color: #2a0a1a;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.abt-cg-chat-tag.svelte-bxfdd3 {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  padding: 2px 6px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
}
.abt-cg-chat-time.svelte-bxfdd3 {
  font-size: 10px;
  color: #9b8aaf;
  font-weight: 600;
}
.abt-cg-chat-msg.svelte-bxfdd3 {
  font-size: 11.5px;
  line-height: 1.5;
  color: #2a0a1a;
  margin: 0 0 8px;
}
.abt-cg-chat-msg.svelte-bxfdd3 b:where(.svelte-bxfdd3) {
  color: var(--rose);
  font-weight: 600;
}
.abt-cg-chat-msg-2.svelte-bxfdd3 {
  color: #6b5780;
  font-size: 11px;
}
.abt-cg-chat-input.svelte-bxfdd3 {
  display: flex;
  justify-content: flex-end;
  margin-top: 6px;
}
.abt-cg-chat-mic.svelte-bxfdd3 {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px #e91e8c66;
}
.abt-eyebrow.svelte-bxfdd3 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--rose, #e91e8c);
  margin-bottom: 14px;
}
.abt-origin.svelte-bxfdd3 {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: linear-gradient(180deg, #fffaf3, #fff5fb);
}
.abt-origin-orb.svelte-bxfdd3 {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.abt-origin-orb-1.svelte-bxfdd3 {
  top: -120px;
  left: -120px;
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.16),
    transparent 70%
  );
}
.abt-origin-orb-2.svelte-bxfdd3 {
  bottom: -140px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.16),
    transparent 70%
  );
}
.abt-origin.svelte-bxfdd3 .grid-container:where(.svelte-bxfdd3) {
  position: relative;
  z-index: 1;
}
.abt-origin-head.svelte-bxfdd3 {
  margin-bottom: 40px;
}
.abt-origin-grid.svelte-bxfdd3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 26px;
  align-items: stretch;
}
.abt-origin-card.svelte-bxfdd3 {
  position: relative;
  overflow: hidden;
  background: #ffffffeb;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border, #f0d8e6);
  border-radius: 22px;
  padding: 34px 32px 30px;
  box-shadow: 0 10px 40px #2d124812;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.abt-origin-card.svelte-bxfdd3:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 52px #2d124821;
}
.abt-origin-card.svelte-bxfdd3:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}
.abt-origin-card--problem.svelte-bxfdd3:before {
  background: linear-gradient(90deg, #fbbf24, var(--gold, #f59e0b));
}
.abt-origin-card--promise.svelte-bxfdd3:before {
  background: linear-gradient(90deg, #ff6b9d, var(--rose, #e91e8c));
}
.abt-origin-ic.svelte-bxfdd3 {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px #2d124829;
}
.abt-origin-ic--gold.svelte-bxfdd3 {
  background: linear-gradient(135deg, #fbbf24, var(--gold, #f59e0b));
}
.abt-origin-ic--rose.svelte-bxfdd3 {
  background: linear-gradient(135deg, #ff6b9d, var(--rose, #e91e8c));
}
.abt-origin-tag.svelte-bxfdd3 {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.abt-origin-tag--gold.svelte-bxfdd3 {
  color: var(--gold-dark, #d97706);
  background: #f59e0b1f;
}
.abt-origin-tag--rose.svelte-bxfdd3 {
  color: var(--rose-dark, #c2185b);
  background: #e91e8c1a;
}
.abt-origin-card.svelte-bxfdd3 p:where(.svelte-bxfdd3) {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}
.abt-origin-card.svelte-bxfdd3
  p:where(.svelte-bxfdd3)
  strong:where(.svelte-bxfdd3) {
  color: var(--heading, #2a0a1a);
  font-weight: 700;
}
@media (max-width: 640px) {
  .abt-origin.svelte-bxfdd3 {
    padding: 64px 0;
  }
  .abt-origin-card.svelte-bxfdd3 {
    padding: 26px 22px 24px;
    border-radius: 18px;
  }
}
.abt-eyebrow-dot.svelte-bxfdd3 {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 3px #e91e8c2e;
}
.abt-h2.svelte-bxfdd3 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--heading, #2a0a1a);
  margin: 0 0 18px;
}
.abt-sub.svelte-bxfdd3 {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto;
}
.abt-sec-head.svelte-bxfdd3 {
  text-align: center;
  margin-bottom: 48px;
}
.abt-sec-head.svelte-bxfdd3 .abt-eyebrow:where(.svelte-bxfdd3) {
  justify-content: center;
}
@keyframes svelte-bxfdd3-abtFloat {
  0%,
  to {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.abt-com-sec.svelte-bxfdd3 {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background: linear-gradient(180deg, #fff7fb, #fffaf2);
  color: var(--heading, #2a0a1a);
}
.abt-com-sec.svelte-bxfdd3 .abt-h2:where(.svelte-bxfdd3) {
  color: var(--heading, #2a0a1a);
}
.abt-com-sec.svelte-bxfdd3 .abt-sub:where(.svelte-bxfdd3) {
  color: var(--text-muted);
}
.abt-com-orb.svelte-bxfdd3 {
  position: absolute;
  top: -140px;
  right: -140px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.18),
    transparent 70%
  );
  filter: blur(80px);
  pointer-events: none;
}
.abt-com-sec.svelte-bxfdd3:before {
  content: "";
  position: absolute;
  bottom: -140px;
  left: -140px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.18),
    transparent 70%
  );
  filter: blur(80px);
  pointer-events: none;
}
.abt-num-split.svelte-bxfdd3 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
.abt-num-headline.svelte-bxfdd3 {
  position: relative;
  padding: 48px 44px 42px;
  background: radial-gradient(
      520px 260px at 0% 0%,
      rgba(236, 72, 153, 0.12),
      transparent 60%
    ),
    radial-gradient(
      520px 260px at 100% 100%,
      rgba(245, 158, 11, 0.12),
      transparent 60%
    ),
    linear-gradient(180deg, #ffffffeb, #ffffffbd);
  background-color: #fff;
  border-radius: 28px;
  box-shadow: 0 1px #fffffff2 inset, 0 30px 60px -24px #ec489938,
    0 8px 24px #2d12480f;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
  isolation: isolate;
}
.abt-num-headline.svelte-bxfdd3:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(
    135deg,
    #ec4899,
    #f59e0b 35%,
    #fff6,
    #fb7185 75%,
    #ec4899
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.75;
}
.abt-num-headline.svelte-bxfdd3:after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 220px;
  height: 220px;
  background: conic-gradient(
    from 200deg at 100% 0%,
    transparent 0deg,
    rgba(245, 158, 11, 0.25) 50deg,
    rgba(236, 72, 153, 0.22) 90deg,
    transparent 130deg
  );
  filter: blur(2px);
  pointer-events: none;
  border-radius: 50%;
}
.abt-num-headline.svelte-bxfdd3 > .abt-num-num:where(.svelte-bxfdd3),
.abt-num-headline.svelte-bxfdd3 > .abt-num-lbl:where(.svelte-bxfdd3) {
  position: relative;
  z-index: 1;
}
.abt-num-num.svelte-bxfdd3 {
  font-size: clamp(3.6rem, 7.2vw, 5.6rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.035em;
  background: linear-gradient(135deg, #ec4899, #be185d 45%, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 20px;
  display: inline-block;
  font-variant-numeric: tabular-nums;
  position: relative;
  text-shadow: 0 18px 40px rgba(236, 72, 153, 0.18);
}
.abt-num-num.svelte-bxfdd3:after {
  content: "";
  position: absolute;
  top: -6px;
  right: -10px;
  bottom: -6px;
  left: -10px;
  background: linear-gradient(
    115deg,
    transparent 40%,
    rgba(255, 255, 255, 0.9) 50%,
    transparent 60%
  );
  transform: translate(-120%);
  animation: svelte-bxfdd3-numShine 4.5s ease-in-out infinite;
  mix-blend-mode: overlay;
  pointer-events: none;
  border-radius: 12px;
}
@keyframes svelte-bxfdd3-numShine {
  0% {
    transform: translate(-120%);
  }
  55% {
    transform: translate(130%);
  }
  to {
    transform: translate(130%);
  }
}
.abt-num-lbl.svelte-bxfdd3 {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 420px;
  font-weight: 500;
}
.abt-num-list.svelte-bxfdd3 {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.abt-num-item.svelte-bxfdd3 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px 14px 16px;
  background: linear-gradient(180deg, #ffffffd1, #fff9);
  border-radius: 16px;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--heading, #2a0a1a);
  font-weight: 500;
  box-shadow: 0 1px #ffffffe6 inset, 0 6px 18px -10px #2d12481f;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s;
  --bul-c1: #ec4899;
  --bul-c2: #be185d;
  --bul-halo: rgba(236, 72, 153, 0.32);
}
.abt-num-item.svelte-bxfdd3:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    var(--bul-c1),
    rgba(255, 255, 255, 0.5) 55%,
    var(--bul-c2)
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.35;
  pointer-events: none;
  transition: opacity 0.3s;
}
.abt-num-item.svelte-bxfdd3:hover {
  transform: translate(4px);
  box-shadow: 0 1px #fffffff2 inset, 0 14px 30px -14px var(--bul-halo);
}
.abt-num-item.svelte-bxfdd3:hover:before {
  opacity: 0.85;
}
.abt-num-item.svelte-bxfdd3:nth-child(1) {
  --bul-c1: #ec4899;
  --bul-c2: #be185d;
  --bul-halo: rgba(236, 72, 153, 0.32);
}
.abt-num-item.svelte-bxfdd3:nth-child(2) {
  --bul-c1: #f59e0b;
  --bul-c2: #d97706;
  --bul-halo: rgba(245, 158, 11, 0.32);
}
.abt-num-item.svelte-bxfdd3:nth-child(3) {
  --bul-c1: #fb7185;
  --bul-c2: #e11d48;
  --bul-halo: rgba(251, 113, 133, 0.32);
}
.abt-num-item.svelte-bxfdd3:nth-child(4) {
  --bul-c1: #f59e0b;
  --bul-c2: #b45309;
  --bul-halo: rgba(245, 158, 11, 0.32);
}
.abt-num-item.svelte-bxfdd3:nth-child(5) {
  --bul-c1: #14b8a6;
  --bul-c2: #0f766e;
  --bul-halo: rgba(20, 184, 166, 0.32);
}
.abt-num-bullet.svelte-bxfdd3 {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--bul-c1), var(--bul-c2));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 6px 16px -4px var(--bul-halo), inset 0 1px #fff9,
    inset 0 -1px #00000014;
  margin: 0;
}
.abt-num-bullet.svelte-bxfdd3:before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 45%;
  height: 45%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.8),
    transparent 70%
  );
  border-radius: 6px;
  pointer-events: none;
}
.abt-num-bullet.svelte-bxfdd3 svg:where(.svelte-bxfdd3) {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.12));
}
.abt-hub-sec.svelte-bxfdd3 {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background: linear-gradient(180deg, #fff7fb, #fffaf2);
}
.abt-hub-orb.svelte-bxfdd3 {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.55;
}
.abt-hub-orb-1.svelte-bxfdd3 {
  top: -100px;
  left: 10%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(233, 30, 140, 0.2), transparent 70%);
}
.abt-hub-orb-2.svelte-bxfdd3 {
  bottom: -100px;
  right: 10%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.2), transparent 70%);
}
.abt-hub-sec.svelte-bxfdd3 > .grid-container:where(.svelte-bxfdd3) {
  position: relative;
  z-index: 1;
}
.abt-hub-pill.svelte-bxfdd3 {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  background: #fff;
  border: 1px solid var(--border, #ead8f0);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--rose);
  text-transform: uppercase;
  box-shadow: 0 6px 14px #2d12480d;
  margin-bottom: 16px;
}
.abt-sec-head.svelte-bxfdd3 .abt-hub-pill:where(.svelte-bxfdd3) {
  margin: 0 auto 16px;
}
.abt-hub.svelte-bxfdd3 {
  position: relative;
  width: 100%;
  max-width: 960px;
  aspect-ratio: 1.6/1;
  margin: 0 auto;
}
.abt-hub-lines.svelte-bxfdd3 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.abt-hub-ring.svelte-bxfdd3 {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 1.5px dashed rgba(233, 30, 140, 0.2);
  pointer-events: none;
}
.abt-hub-ring-1.svelte-bxfdd3 {
  width: 34%;
  aspect-ratio: 1/1;
  animation: svelte-bxfdd3-hubSpin 30s linear infinite;
}
.abt-hub-ring-2.svelte-bxfdd3 {
  width: 54%;
  aspect-ratio: 1/1;
  border-color: #f59e0b2e;
  animation: svelte-bxfdd3-hubSpin 45s linear infinite reverse;
}
.abt-hub-ring-3.svelte-bxfdd3 {
  width: 78%;
  aspect-ratio: 1/1;
  border-color: #e91e8c1a;
  animation: svelte-bxfdd3-hubSpin 60s linear infinite;
}
@keyframes svelte-bxfdd3-hubSpin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.abt-hub-core.svelte-bxfdd3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  border-radius: 28px;
  background: radial-gradient(circle at 30% 30%, #fff, #fff6f9 70%), #fff;
  border: 1px solid rgba(233, 30, 140, 0.2);
  box-shadow: 0 30px 60px #e91e8c2e, 0 0 0 10px #ffffff80, 0 0 0 11px #e91e8c14;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  z-index: 4;
}
.abt-hub-core-inner.svelte-bxfdd3 {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 28px #e91e8c59, inset 0 1px #ffffff59;
}
.abt-hub-core-label.svelte-bxfdd3 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--heading, #2a0a1a);
}
.abt-hub-core-pulse.svelte-bxfdd3 {
  position: absolute;
  top: -10px;
  right: -10px;
  bottom: -10px;
  left: -10px;
  border-radius: 36px;
  border: 1.5px solid rgba(233, 30, 140, 0.25);
  animation: svelte-bxfdd3-hubPulse 2.8s ease-out infinite;
  pointer-events: none;
}
.abt-hub-core-pulse-2.svelte-bxfdd3 {
  animation-delay: -1.4s;
  border-color: #f59e0b40;
}
@keyframes svelte-bxfdd3-hubPulse {
  0% {
    transform: scale(0.85);
    opacity: 0.8;
  }
  to {
    transform: scale(1.45);
    opacity: 0;
  }
}
.abt-hub-node.svelte-bxfdd3 {
  position: absolute;
  width: 230px;
  padding: 18px 18px 16px;
  background: #fff;
  border: 1px solid var(--border, #ead8f0);
  border-radius: 18px;
  box-shadow: 0 12px 30px #2d124814;
  text-decoration: none;
  color: inherit;
  z-index: 3;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s,
    border-color 0.35s;
}
.abt-hub-node.svelte-bxfdd3:before {
  content: "";
  position: absolute;
  top: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.3s;
}
.abt-hub-node.svelte-bxfdd3:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 24px 48px #e91e8c33;
}
.abt-hub-node.svelte-bxfdd3:hover:before {
  opacity: 1;
}
.abt-hub-node-tl.svelte-bxfdd3 {
  top: 8%;
  left: 2%;
}
.abt-hub-node-tr.svelte-bxfdd3 {
  top: 8%;
  right: 2%;
}
.abt-hub-node-bl.svelte-bxfdd3 {
  bottom: 8%;
  left: 2%;
}
.abt-hub-node-br.svelte-bxfdd3 {
  bottom: 8%;
  right: 2%;
}
.abt-hub-node-top.svelte-bxfdd3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.abt-hub-node-num.svelte-bxfdd3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.abt-hub-node-ic.svelte-bxfdd3 {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ffe4ef, #fff0db);
  color: var(--rose-dark, #c2185b);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(233, 30, 140, 0.15);
}
.abt-hub-node.svelte-bxfdd3 h4:where(.svelte-bxfdd3) {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--heading, #2a0a1a);
  margin: 0 0 6px;
}
.abt-hub-node.svelte-bxfdd3 p:where(.svelte-bxfdd3) {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}
.abt-cov-sec.svelte-bxfdd3 {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background: linear-gradient(180deg, #fff, #fff7f2);
}
.abt-cov-orb.svelte-bxfdd3 {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.45;
}
.abt-cov-orb-1.svelte-bxfdd3 {
  top: -120px;
  right: -60px;
  width: 360px;
  height: 360px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.25),
    transparent 70%
  );
}
.abt-cov-orb-2.svelte-bxfdd3 {
  bottom: -140px;
  left: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.22),
    transparent 70%
  );
}
.abt-cov-sec.svelte-bxfdd3 > .grid-container:where(.svelte-bxfdd3) {
  position: relative;
  z-index: 1;
}
.abt-cov-head.svelte-bxfdd3 {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 56px;
}
.abt-cov-pill.svelte-bxfdd3 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 12px;
  background: #fff;
  border: 1px solid var(--border, #ead8f0);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--rose);
  box-shadow: 0 6px 14px #2d12480d;
  margin-bottom: 18px;
}
.abt-cov-pill-dot.svelte-bxfdd3 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px #10b98138, 0 0 10px #10b98199;
  animation: svelte-bxfdd3-abtPulse 2.2s ease-in-out infinite;
}
.abt-cov-stats.svelte-bxfdd3 {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 10px;
  margin-top: 28px;
  padding: 10px;
  background: #fffc;
  border: 1px solid var(--border, #ead8f0);
  border-radius: 22px;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 34px #2d124814;
}
.abt-cov-stat.svelte-bxfdd3 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px 12px 12px;
  background: #fff;
  border: 1px solid var(--border, #ead8f0);
  border-radius: 16px;
  box-shadow: 0 4px 12px #2d12480a;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s;
}
.abt-cov-stat.svelte-bxfdd3:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px #e91e8c26;
}
.abt-cov-stat-ic.svelte-bxfdd3 {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.abt-cov-stat-rose.svelte-bxfdd3 .abt-cov-stat-ic:where(.svelte-bxfdd3) {
  background: linear-gradient(135deg, #ffe4ef, #ffd1e3);
  color: var(--rose-dark, #c2185b);
}
.abt-cov-stat-gold.svelte-bxfdd3 .abt-cov-stat-ic:where(.svelte-bxfdd3) {
  background: linear-gradient(135deg, #fff0db, #ffe0b3);
  color: #d97706;
}
.abt-cov-stat-live.svelte-bxfdd3 .abt-cov-stat-ic:where(.svelte-bxfdd3) {
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  color: #059669;
}
.abt-cov-stat-body.svelte-bxfdd3 {
  text-align: left;
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.abt-cov-stat.svelte-bxfdd3 b:where(.svelte-bxfdd3) {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--heading, #2a0a1a);
  display: inline-flex;
  align-items: baseline;
}
.abt-cov-stat-rose.svelte-bxfdd3 b:where(.svelte-bxfdd3) {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.abt-cov-stat-gold.svelte-bxfdd3 b:where(.svelte-bxfdd3) {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.abt-cov-stat-live.svelte-bxfdd3 b:where(.svelte-bxfdd3) {
  background: linear-gradient(135deg, #10b981, #059669);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.abt-cov-stat-plus.svelte-bxfdd3,
.abt-cov-stat-slash.svelte-bxfdd3 {
  font-size: 0.85em;
  margin-left: 1px;
}
.abt-cov-stat-lbl.svelte-bxfdd3 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-dim, #7b6a90);
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-transform: uppercase;
}
.abt-cov-stat-dot.svelte-bxfdd3 {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 2px #10b98138;
  animation: svelte-bxfdd3-abtPulse 2s ease-in-out infinite;
}
.abt-cov-stat-sep.svelte-bxfdd3 {
  display: none;
}
.abt-cov-bento.svelte-bxfdd3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
.abt-cov-ftr.svelte-bxfdd3 {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: 22px;
  text-decoration: none;
  color: inherit;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s;
  border: 1px solid var(--border, #ead8f0);
  box-shadow: 0 12px 28px #2d124814;
}
.abt-cov-ftr.svelte-bxfdd3:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px #e91e8c38;
}
.abt-cov-ftr-rose.svelte-bxfdd3 {
  background: linear-gradient(135deg, #fff0f7, #ffe4ef);
}
.abt-cov-ftr-gold.svelte-bxfdd3 {
  background: linear-gradient(135deg, #fff7eb, #ffe8c2);
}
.abt-cov-ftr-peach.svelte-bxfdd3 {
  background: linear-gradient(135deg, #fff1ec, #ffd8c2);
}
.abt-cov-ftr-bg.svelte-bxfdd3 {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.15),
    transparent 70%
  );
  pointer-events: none;
}
.abt-cov-ftr-gold.svelte-bxfdd3 .abt-cov-ftr-bg:where(.svelte-bxfdd3) {
  background: radial-gradient(circle, rgba(245, 158, 11, 0.2), transparent 70%);
}
.abt-cov-ftr-peach.svelte-bxfdd3 .abt-cov-ftr-bg:where(.svelte-bxfdd3) {
  background: radial-gradient(
    circle,
    rgba(251, 146, 60, 0.18),
    transparent 70%
  );
}
.abt-cov-ftr-top.svelte-bxfdd3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.abt-cov-ftr-zone.svelte-bxfdd3 {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--rose-dark, #c2185b);
  padding: 4px 10px;
  background: #ffffffb3;
  border-radius: 50px;
}
.abt-cov-ftr-live.svelte-bxfdd3 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #2a0a1a;
  padding: 4px 10px 4px 8px;
  background: #ffffffd9;
  border-radius: 50px;
}
.abt-cov-ftr-dot.svelte-bxfdd3 {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px #10b98138;
  animation: svelte-bxfdd3-abtPulse 2.2s ease-in-out infinite;
}
.abt-cov-ftr-pin.svelte-bxfdd3 {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #fff;
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px #e91e8c33;
  margin-bottom: 14px;
}
.abt-cov-ftr-gold.svelte-bxfdd3 .abt-cov-ftr-pin:where(.svelte-bxfdd3) {
  color: var(--gold-dark, #d97706);
  box-shadow: 0 10px 22px #f59e0b40;
}
.abt-cov-ftr-peach.svelte-bxfdd3 .abt-cov-ftr-pin:where(.svelte-bxfdd3) {
  color: #ea580c;
  box-shadow: 0 10px 22px #fb923c40;
}
.abt-cov-ftr.svelte-bxfdd3 h3:where(.svelte-bxfdd3) {
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #2a0a1a;
  margin: 0 0 auto;
}
.abt-cov-ftr-foot.svelte-bxfdd3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
}
.abt-cov-ftr-tag.svelte-bxfdd3 {
  font-size: 12px;
  font-weight: 600;
  color: var(--rose);
}
.abt-cov-ftr-gold.svelte-bxfdd3 .abt-cov-ftr-tag:where(.svelte-bxfdd3) {
  color: var(--gold-dark, #d97706);
}
.abt-cov-ftr-peach.svelte-bxfdd3 .abt-cov-ftr-tag:where(.svelte-bxfdd3) {
  color: #ea580c;
}
.abt-cov-ftr-arrow.svelte-bxfdd3 {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose);
  transition: transform 0.3s, background 0.3s, color 0.3s;
  box-shadow: 0 4px 10px #2d12481a;
}
.abt-cov-ftr.svelte-bxfdd3:hover .abt-cov-ftr-arrow:where(.svelte-bxfdd3) {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  transform: translate(4px) rotate(-5deg);
}
.abt-cov-grid.svelte-bxfdd3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.abt-cov-tile.svelte-bxfdd3 {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--border, #ead8f0);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 12px #2d12480d;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.abt-cov-tile.svelte-bxfdd3:hover {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: 0 14px 30px #e91e8c2e;
}
.abt-cov-tile-pin.svelte-bxfdd3 {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #ffe4ef, #fff0db);
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.abt-cov-tile.svelte-bxfdd3:hover .abt-cov-tile-pin:where(.svelte-bxfdd3) {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
}
.abt-cov-tile-body.svelte-bxfdd3 {
  flex: 1;
  min-width: 0;
}
.abt-cov-tile-name.svelte-bxfdd3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #2a0a1a;
}
.abt-cov-tile-meta.svelte-bxfdd3 {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 2px;
}
.abt-cov-tile-arrow.svelte-bxfdd3 {
  color: var(--text-dim, #c9b8d8);
  transition: transform 0.3s, color 0.3s;
}
.abt-cov-tile.svelte-bxfdd3:hover .abt-cov-tile-arrow:where(.svelte-bxfdd3) {
  color: var(--rose);
  transform: translate(3px);
}
.abt-cov-all.svelte-bxfdd3 {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
  padding: 14px 26px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 14px 30px #e91e8c59, inset 0 1px #ffffff4d;
  transition: all 0.3s;
}
.abt-cov-all.svelte-bxfdd3:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px #e91e8c80;
}
.abt-cta-sec.svelte-bxfdd3 {
  padding: 56px 0 110px;
  background: linear-gradient(180deg, #fff7f2, #fff);
}
.abt-cta2.svelte-bxfdd3 {
  position: relative;
  overflow: hidden;
  padding: 56px 56px 48px;
  border-radius: 32px;
  background: radial-gradient(
      600px 400px at 0% 100%,
      rgba(245, 158, 11, 0.12),
      transparent 60%
    ),
    radial-gradient(
      600px 400px at 100% 0%,
      rgba(233, 30, 140, 0.14),
      transparent 60%
    ),
    linear-gradient(135deg, #fff, #fff7fb);
  border: 1px solid var(--border, #ead8f0);
  box-shadow: 0 30px 80px #2d12481a;
}
.abt-cta2-blob.svelte-bxfdd3 {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.abt-cta2-blob-1.svelte-bxfdd3 {
  top: -60px;
  right: 20%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(233, 30, 140, 0.3), transparent 70%);
  animation: svelte-bxfdd3-ctaFloat 9s ease-in-out infinite;
}
.abt-cta2-blob-2.svelte-bxfdd3 {
  bottom: -40px;
  left: 10%;
  width: 180px;
  height: 180px;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.28),
    transparent 70%
  );
  animation: svelte-bxfdd3-ctaFloat 11s ease-in-out infinite reverse;
}
.abt-cta2-blob-3.svelte-bxfdd3 {
  top: 40%;
  right: -40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(251, 146, 60, 0.2), transparent 70%);
  animation: svelte-bxfdd3-ctaFloat 7s ease-in-out infinite;
}
@keyframes svelte-bxfdd3-ctaFloat {
  0%,
  to {
    transform: translate(0);
  }
  50% {
    transform: translate(18px, -14px);
  }
}
.abt-cta2-dots.svelte-bxfdd3 {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 180px;
  height: 120px;
  opacity: 0.7;
  pointer-events: none;
}
.abt-cta2-grid.svelte-bxfdd3 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.abt-cta2-pill.svelte-bxfdd3 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  background: #fff;
  border: 1px solid var(--border, #ead8f0);
  border-radius: 50px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--rose-dark, #c2185b);
  box-shadow: 0 6px 14px #2d12480f;
  margin-bottom: 18px;
}
.abt-cta2-pill-dot.svelte-bxfdd3 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px #10b98138, 0 0 10px #10b98199;
  animation: svelte-bxfdd3-abtPulse 2.2s ease-in-out infinite;
}
.abt-cta2-h2.svelte-bxfdd3 {
  font-size: clamp(1.8rem, 3.3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--heading, #2a0a1a);
  margin: 0 0 14px;
}
.abt-cta2-sub.svelte-bxfdd3 {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 28px;
  max-width: 520px;
}
.abt-cta2-actions.svelte-bxfdd3 {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.abt-cta2-btn.svelte-bxfdd3 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px 14px 14px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
}
.abt-cta2-btn-primary.svelte-bxfdd3 {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  box-shadow: 0 14px 30px #e91e8c66, inset 0 1px #ffffff4d;
}
.abt-cta2-btn-primary.svelte-bxfdd3:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px #e91e8c8c;
}
.abt-cta2-btn-ic.svelte-bxfdd3 {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ffffff38;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.abt-cta2-btn-whats.svelte-bxfdd3 {
  background: #fff;
  border: 1.5px solid #25d366;
  color: #128c7e;
  padding: 14px 22px;
}
.abt-cta2-btn-whats.svelte-bxfdd3:hover {
  background: #25d366;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px #25d36666;
}
.abt-cta2-meta.svelte-bxfdd3 {
  display: flex;
  align-items: center;
  gap: 14px;
}
.abt-cta2-avs.svelte-bxfdd3 {
  display: flex;
}
.abt-cta2-av.svelte-bxfdd3 {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  box-shadow: 0 3px 8px #2d12481f;
}
.abt-cta2-av.svelte-bxfdd3 + .abt-cta2-av:where(.svelte-bxfdd3) {
  margin-left: -10px;
}
.abt-cta2-av-more.svelte-bxfdd3 {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  font-size: 10px;
  letter-spacing: 0;
}
.abt-cta2-meta-v.svelte-bxfdd3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--heading, #2a0a1a);
  letter-spacing: -0.01em;
}
.abt-cta2-meta-l.svelte-bxfdd3 {
  font-size: 11.5px;
  color: var(--text-muted);
  margin-top: 2px;
  font-weight: 600;
}
.abt-cta2-right.svelte-bxfdd3 {
  position: relative;
  width: 100%;
  aspect-ratio: 1/0.9;
  min-height: 320px;
}
.abt-cta2-card.svelte-bxfdd3 {
  position: absolute;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--border, #ead8f0);
  border-radius: 18px;
  box-shadow: 0 18px 40px #2d124824;
}
.abt-cta2-card-1.svelte-bxfdd3 {
  top: 0;
  right: 4%;
  width: 78%;
  animation: svelte-bxfdd3-ctaCardFloat 7s ease-in-out infinite;
}
.abt-cta2-card-2.svelte-bxfdd3 {
  top: 32%;
  left: 0;
  width: 78%;
  animation: svelte-bxfdd3-ctaCardFloat 7s ease-in-out infinite reverse;
  animation-delay: -2s;
  z-index: 2;
}
.abt-cta2-card-3.svelte-bxfdd3 {
  bottom: 0;
  right: 10%;
  width: 58%;
  animation: svelte-bxfdd3-ctaCardFloat 7s ease-in-out infinite;
  animation-delay: -4s;
}
@keyframes svelte-bxfdd3-ctaCardFloat {
  0%,
  to {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.abt-cta2-card-top.svelte-bxfdd3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.abt-cta2-live.svelte-bxfdd3 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #059669;
  padding: 3px 10px 3px 7px;
  background: #10b9811a;
  border-radius: 50px;
}
.abt-cta2-live-dot.svelte-bxfdd3 {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px #10b98138;
  animation: svelte-bxfdd3-abtPulse 2s ease-in-out infinite;
}
.abt-cta2-mini.svelte-bxfdd3 {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--text-dim, #9b8aaf);
  letter-spacing: 0.04em;
}
.abt-cta2-card-row.svelte-bxfdd3 {
  display: flex;
  align-items: center;
  gap: 10px;
}
.abt-cta2-card-av.svelte-bxfdd3 {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.abt-cta2-card-av-sm.svelte-bxfdd3 {
  width: 28px;
  height: 28px;
  font-size: 11px;
}
.abt-cta2-card-name.svelte-bxfdd3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--heading, #2a0a1a);
  letter-spacing: -0.01em;
}
.abt-cta2-card-sub.svelte-bxfdd3 {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 1px;
}
.abt-cta2-card-rate.svelte-bxfdd3 {
  font-size: 12px;
  font-weight: 700;
  color: var(--rose);
  padding: 5px 10px;
  background: #e91e8c14;
  border-radius: 50px;
  margin-left: auto;
}
.abt-cta2-msg-top.svelte-bxfdd3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.abt-cta2-msg-time.svelte-bxfdd3 {
  font-size: 10px;
  color: #9b8aaf;
  font-weight: 500;
  margin-left: auto;
}
.abt-cta2-bubble.svelte-bxfdd3 {
  padding: 10px 14px;
  background: linear-gradient(135deg, #fff0f7, #ffe4ef);
  border-radius: 14px 14px 14px 4px;
  font-size: 12px;
  line-height: 1.55;
  color: var(--heading, #2a0a1a);
}
.abt-cta2-bubble.svelte-bxfdd3 b:where(.svelte-bxfdd3) {
  color: var(--rose);
  font-weight: 700;
}
.abt-cta2-typing.svelte-bxfdd3 {
  display: inline-flex;
  gap: 4px;
  margin-top: 8px;
  padding-left: 8px;
}
.abt-cta2-typing.svelte-bxfdd3 span:where(.svelte-bxfdd3) {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose);
  animation: svelte-bxfdd3-ctaTyp 1.4s ease-in-out infinite;
}
.abt-cta2-typing.svelte-bxfdd3 span:where(.svelte-bxfdd3):nth-child(2) {
  animation-delay: 0.2s;
}
.abt-cta2-typing.svelte-bxfdd3 span:where(.svelte-bxfdd3):nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes svelte-bxfdd3-ctaTyp {
  0%,
  60%,
  to {
    transform: scale(0.7);
    opacity: 0.4;
  }
  30% {
    transform: scale(1.1);
    opacity: 1;
  }
}
.abt-cta2-rating-top.svelte-bxfdd3 {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 8px;
}
.abt-cta2-rating-v.svelte-bxfdd3 {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.abt-cta2-rating-l.svelte-bxfdd3 {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-top: 4px;
}
@media (max-width: 1024px) {
  .abt-hero-inner.svelte-bxfdd3 {
    grid-template-columns: 1fr 0.9fr;
    gap: 32px;
  }
  .abt-hero-visual.svelte-bxfdd3 {
    max-width: 340px;
  }
  .abt-story-grid.svelte-bxfdd3 {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .abt-story-text.svelte-bxfdd3 {
    text-align: center;
    margin: 0 auto;
  }
  .abt-story-lead.svelte-bxfdd3 {
    margin-left: auto;
    margin-right: auto;
  }
  .abt-story-cta.svelte-bxfdd3,
  .abt-story-trust.svelte-bxfdd3 {
    justify-content: center;
  }
  .abt-collage.svelte-bxfdd3 {
    max-width: 460px;
    margin: 0 auto;
  }
  .abt-story-h1.svelte-bxfdd3 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
  }
  .abt-jny-row.svelte-bxfdd3 {
    grid-template-columns: 84px 28px 1fr;
    column-gap: 16px;
  }
  .abt-jny-rail.svelte-bxfdd3 {
    left: 98px;
  }
  .abt-num-split.svelte-bxfdd3 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .abt-cov-grid.svelte-bxfdd3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .abt-hub.svelte-bxfdd3 {
    aspect-ratio: auto;
    max-width: 640px;
  }
  .abt-hub-lines.svelte-bxfdd3,
  .abt-hub-ring.svelte-bxfdd3 {
    display: none;
  }
  .abt-hub-core.svelte-bxfdd3 {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 0 auto 32px;
  }
  .abt-hub-node.svelte-bxfdd3 {
    position: relative;
    width: auto;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
  }
  .abt-hub.svelte-bxfdd3 > .abt-hub-node:where(.svelte-bxfdd3) {
    display: block;
  }
  .abt-hub.svelte-bxfdd3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .abt-hub.svelte-bxfdd3 .abt-hub-core:where(.svelte-bxfdd3) {
    grid-column: 1 / -1;
  }
}
@media (max-width: 768px) {
  .abt-hero.svelte-bxfdd3 {
    padding: 56px 0 72px;
  }
  .abt-hero-inner.svelte-bxfdd3 {
    grid-template-columns: 1fr 0.85fr;
    gap: 20px;
  }
  .abt-hero-visual.svelte-bxfdd3 {
    max-width: 280px;
  }
  .abt-h1.svelte-bxfdd3 {
    font-size: 1.7rem;
  }
  .abt-lead.svelte-bxfdd3 {
    font-size: 0.95rem;
  }
  .abt-meta.svelte-bxfdd3 {
    display: flex;
    width: 100%;
    padding: 8px 4px;
  }
  .abt-meta-item.svelte-bxfdd3 {
    flex: 1;
    min-width: 0;
    padding: 6px 4px;
  }
  .abt-meta-val.svelte-bxfdd3 {
    font-size: 1.05rem;
    justify-content: center;
  }
  .abt-meta-lbl.svelte-bxfdd3 {
    font-size: 9px;
    letter-spacing: 0.06em;
    white-space: nowrap;
  }
  .abt-vis-pill.svelte-bxfdd3 {
    padding: 6px 10px 6px 6px;
  }
  .abt-vis-pill-v.svelte-bxfdd3 {
    font-size: 11px;
  }
  .abt-vis-pill-l.svelte-bxfdd3 {
    font-size: 9.5px;
  }
  .abt-vis-pill-ic.svelte-bxfdd3 {
    width: 22px;
    height: 22px;
  }
  .abt-vis-pill-1.svelte-bxfdd3 {
    left: 0;
  }
  .abt-vis-pill-2.svelte-bxfdd3 {
    right: 0;
  }
  .abt-vis-pill-3.svelte-bxfdd3 {
    left: 0;
  }
  .abt-vis-pill-4.svelte-bxfdd3 {
    right: 0;
  }
  .abt-story-sec.svelte-bxfdd3,
  .abt-com-sec.svelte-bxfdd3,
  .abt-hub-sec.svelte-bxfdd3,
  .abt-cov-sec.svelte-bxfdd3,
  .abt-jny-sec.svelte-bxfdd3 {
    padding: 64px 0;
  }
  .abt-cov-stats.svelte-bxfdd3 {
    display: flex;
    width: 100%;
    gap: 8px;
    padding: 8px;
    border-radius: 18px;
  }
  .abt-cov-stat.svelte-bxfdd3 {
    flex: 1;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 14px 8px 12px;
    gap: 8px;
    border-radius: 14px;
  }
  .abt-cov-stat-ic.svelte-bxfdd3 {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }
  .abt-cov-stat-body.svelte-bxfdd3 {
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .abt-cov-stat.svelte-bxfdd3 b:where(.svelte-bxfdd3) {
    font-size: 1.15rem;
    justify-content: center;
  }
  .abt-cov-stat-lbl.svelte-bxfdd3 {
    font-size: 9.5px;
    letter-spacing: 0.06em;
    margin-top: 4px;
    justify-content: center;
    white-space: nowrap;
  }
  .abt-cov-stat-word.svelte-bxfdd3 {
    display: none;
  }
  .abt-cov-bento.svelte-bxfdd3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .abt-cov-ftr.svelte-bxfdd3 {
    padding: 18px;
    min-height: 180px;
  }
  .abt-cov-ftr.svelte-bxfdd3 h3:where(.svelte-bxfdd3) {
    font-size: 1.15rem;
  }
  .abt-cov-ftr-top.svelte-bxfdd3 {
    margin-bottom: 18px;
  }
  .abt-cov-ftr-zone.svelte-bxfdd3 {
    font-size: 9.5px;
    padding: 3px 8px;
  }
  .abt-cov-ftr-live.svelte-bxfdd3 {
    font-size: 10px;
    padding: 3px 8px 3px 6px;
  }
  .abt-cov-ftr-pin.svelte-bxfdd3 {
    width: 40px;
    height: 40px;
  }
  .abt-cov-ftr-tag.svelte-bxfdd3 {
    font-size: 11px;
  }
  .abt-cov-grid.svelte-bxfdd3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .abt-cov-stats.svelte-bxfdd3 {
    flex-wrap: wrap;
    gap: 12px;
    padding: 10px 16px;
  }
  .abt-cov-stat-sep.svelte-bxfdd3 {
    display: none;
  }
  .abt-quote.svelte-bxfdd3 {
    padding: 36px 28px 32px;
  }
  .abt-quote-mark.svelte-bxfdd3 {
    font-size: 100px;
    top: -16px;
    left: 20px;
  }
  .abt-cta2.svelte-bxfdd3 {
    padding: 32px 20px 28px;
    border-radius: 22px;
  }
  .abt-cta2-grid.svelte-bxfdd3 {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .abt-cta2-right.svelte-bxfdd3 {
    max-width: 440px;
    margin: 0 auto;
    aspect-ratio: 1/0.85;
  }
  .abt-cta2-h2.svelte-bxfdd3 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  .abt-cta2-sub.svelte-bxfdd3 {
    font-size: 14px;
  }
  .abt-cta2-actions.svelte-bxfdd3 {
    width: 100%;
  }
  .abt-cta2-actions.svelte-bxfdd3 .abt-cta2-btn:where(.svelte-bxfdd3) {
    flex: 1;
    justify-content: center;
    padding: 12px 16px;
    font-size: 13px;
    white-space: nowrap;
  }
  .abt-cta2-btn-primary.svelte-bxfdd3 {
    padding: 12px 16px 12px 10px;
  }
  .abt-cta2-btn-ic.svelte-bxfdd3 {
    width: 22px;
    height: 22px;
  }
  .abt-cta2-dots.svelte-bxfdd3 {
    display: none;
  }
}
@media (max-width: 600px) {
  .abt-hero-inner.svelte-bxfdd3 {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .abt-hero-visual.svelte-bxfdd3 {
    max-width: 320px;
    margin: 0 auto;
  }
  .abt-num-headline.svelte-bxfdd3 {
    padding: 28px 22px;
  }
  .abt-num-lbl.svelte-bxfdd3 {
    font-size: 1rem;
  }
  .abt-steps.svelte-bxfdd3 {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .abt-step-circle.svelte-bxfdd3 {
    width: 72px;
    height: 72px;
  }
  .abt-step-num.svelte-bxfdd3 {
    font-size: 1.15rem;
  }
  .abt-jny-wrap.svelte-bxfdd3 {
    max-width: 100%;
  }
  .abt-jny-row.svelte-bxfdd3 {
    grid-template-columns: 24px 1fr;
    grid-template-areas: "rail year" "rail body";
    column-gap: 12px;
    row-gap: 10px;
    padding-bottom: 24px;
  }
  .abt-jny-rail.svelte-bxfdd3 {
    left: 11px;
  }
  .abt-jny-yearcol.svelte-bxfdd3 {
    grid-area: year;
    justify-content: flex-start;
    padding-top: 0;
  }
  .abt-jny-rail-slot.svelte-bxfdd3 {
    grid-area: rail;
    padding-top: 6px;
  }
  .abt-jny-body.svelte-bxfdd3 {
    grid-area: body;
    padding: 18px;
  }
  .abt-jny-body.svelte-bxfdd3 h3:where(.svelte-bxfdd3) {
    font-size: 1rem;
  }
  .abt-jny-body.svelte-bxfdd3 p:where(.svelte-bxfdd3) {
    font-size: 0.9rem;
  }
  .abt-cov-bento.svelte-bxfdd3 {
    grid-template-columns: 1fr;
  }
  .abt-cta2.svelte-bxfdd3 {
    padding: 24px 14px;
    border-radius: 20px;
  }
  .abt-cta2-h2.svelte-bxfdd3 {
    font-size: 1.45rem;
    word-break: break-word;
  }
  .abt-cta2-sub.svelte-bxfdd3 {
    font-size: 13.5px;
    line-height: 1.6;
    max-width: 100%;
    word-break: break-word;
  }
  .abt-cta2-pill.svelte-bxfdd3 {
    font-size: 10.5px;
    padding: 5px 12px 5px 8px;
    letter-spacing: 0.04em;
  }
  .abt-cta2-actions.svelte-bxfdd3 {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .abt-cta2-actions.svelte-bxfdd3 .abt-cta2-btn:where(.svelte-bxfdd3) {
    width: 100%;
    padding: 13px 16px;
    font-size: 13.5px;
  }
  .abt-cta2-meta.svelte-bxfdd3 {
    gap: 12px;
  }
  .abt-cta2-meta-v.svelte-bxfdd3 {
    font-size: 12.5px;
  }
  .abt-cta2-meta-l.svelte-bxfdd3 {
    font-size: 11px;
  }
  .abt-cta2-right.svelte-bxfdd3 {
    aspect-ratio: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 100%;
  }
  .abt-cta2-card.svelte-bxfdd3,
  .abt-cta2-card-1.svelte-bxfdd3,
  .abt-cta2-card-2.svelte-bxfdd3,
  .abt-cta2-card-3.svelte-bxfdd3 {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    width: 100%;
    max-width: 100%;
    animation: none;
    padding: 12px;
  }
  .abt-cta2-card-av.svelte-bxfdd3 {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }
  .abt-cta2-card-name.svelte-bxfdd3 {
    font-size: 12.5px;
  }
  .abt-cta2-card-sub.svelte-bxfdd3 {
    font-size: 10.5px;
  }
  .abt-cta2-card-rate.svelte-bxfdd3 {
    font-size: 11px;
    padding: 4px 8px;
  }
  .abt-cta2-bubble.svelte-bxfdd3 {
    font-size: 11.5px;
  }
  .abt-cov-grid.svelte-bxfdd3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .abt-cov-tile.svelte-bxfdd3 {
    padding: 10px;
    gap: 10px;
    border-radius: 14px;
  }
  .abt-cov-tile-pin.svelte-bxfdd3 {
    width: 30px;
    height: 30px;
    border-radius: 9px;
  }
  .abt-cov-tile-name.svelte-bxfdd3 {
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .abt-cov-tile-meta.svelte-bxfdd3 {
    font-size: 10.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .abt-cov-tile-arrow.svelte-bxfdd3 {
    display: none;
  }
  .abt-hub.svelte-bxfdd3 {
    grid-template-columns: 1fr;
  }
  .abt-cg-av.svelte-bxfdd3 {
    width: 86px;
    height: 86px;
    border-radius: 16px;
  }
  .abt-cg-av-initial.svelte-bxfdd3 {
    font-size: 1.6rem;
  }
  .abt-cg-feature.svelte-bxfdd3 {
    width: 72%;
  }
  .abt-cg-chat.svelte-bxfdd3 {
    width: 78%;
  }
  .abt-cg-rating.svelte-bxfdd3 {
    padding: 6px 10px 6px 6px;
  }
  .abt-cg-rating-logo.svelte-bxfdd3 {
    width: 26px;
    height: 26px;
  }
}

/*About Page Style Ends here*/


/*Contact Us Page starts here*/

@property --ctc-pop-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}
.ctc-pop-back.svelte-19y1n4 {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  background: #2d12487a;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  padding: 20px;
  animation: svelte-19y1n4-ctcPopFade 0.22s ease-out;
}
@keyframes svelte-19y1n4-ctcPopFade {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.ctc-pop-card.svelte-19y1n4 {
  position: relative;
  width: 100%;
  max-width: 460px;
  padding: 40px 36px 28px;
  border-radius: 28px;
  background: radial-gradient(ellipse at 50% 0%, #d1fae5, #fff 60%), #fff;
  border: 1px solid rgba(184, 134, 61, 0.14);
  box-shadow: 0 50px 100px -30px #2d124880, inset 0 1px #ffffffe6;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  animation: svelte-19y1n4-ctcPopIn 0.38s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes svelte-19y1n4-ctcPopIn {
  0% {
    opacity: 0;
    transform: translateY(16px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.ctc-pop-ring.svelte-19y1n4 {
  position: absolute;
  top: -70px;
  right: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: conic-gradient(
    from var(--ctc-pop-angle),
    transparent 0%,
    #6ee7b7 25%,
    transparent 50%,
    #10b981 75%,
    transparent 100%
  );
  -webkit-mask: radial-gradient(
    circle,
    transparent 58%,
    #000 60%,
    #000 70%,
    transparent 72%
  );
  mask: radial-gradient(
    circle,
    transparent 58%,
    #000 60%,
    #000 70%,
    transparent 72%
  );
  opacity: 0.55;
  animation: svelte-19y1n4-ctcPopSpin 12s linear infinite;
  z-index: 0;
  pointer-events: none;
}
@keyframes svelte-19y1n4-ctcPopSpin {
  to {
    --ctc-pop-angle: 360deg;
  }
}
.ctc-pop-spark.svelte-19y1n4 {
  position: absolute;
  font-size: 13px;
  color: #10b981;
  opacity: 0.55;
  animation: svelte-19y1n4-ctcPopFloat 5s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}
.ctc-pop-spark--a.svelte-19y1n4 {
  top: 50px;
  left: 40px;
  color: #e91e8c;
}
.ctc-pop-spark--b.svelte-19y1n4 {
  top: 38px;
  right: 55px;
  animation-delay: 1s;
}
.ctc-pop-spark--c.svelte-19y1n4 {
  bottom: 70px;
  left: 55px;
  animation-delay: 2.2s;
  color: #d97706;
}
@keyframes svelte-19y1n4-ctcPopFloat {
  0%,
  to {
    transform: translateY(0) rotate(0);
    opacity: 0.4;
  }
  50% {
    transform: translateY(-8px) rotate(18deg);
    opacity: 0.9;
  }
}
.ctc-pop-close.svelte-19y1n4 {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(184, 134, 61, 0.22);
  color: #8a7888;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.22s;
  z-index: 3;
}
.ctc-pop-close.svelte-19y1n4:hover {
  color: #e91e8c;
  border-color: #e91e8c;
  transform: rotate(90deg);
}
.ctc-pop-ic.svelte-19y1n4 {
  position: relative;
  width: 88px;
  height: 88px;
  margin: 0 auto 20px;
  z-index: 1;
}
.ctc-pop-ic-halo.svelte-19y1n4 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(16, 185, 129, 0.55) 0%,
    transparent 70%
  );
  filter: blur(4px);
  animation: svelte-19y1n4-ctcPopHalo 1.8s ease-in-out infinite;
}
@keyframes svelte-19y1n4-ctcPopHalo {
  0%,
  to {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.7;
  }
}
.ctc-pop-ic-core.svelte-19y1n4 {
  position: absolute;
  top: 12px;
  right: 12px;
  bottom: 12px;
  left: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  color: #059669;
  display: grid;
  place-items: center;
  box-shadow: inset 0 1px #ffffffe6, 0 10px 22px -6px #10b98173;
  animation: svelte-19y1n4-ctcPopPop 0.55s cubic-bezier(0.2, 1.4, 0.6, 1);
}
@keyframes svelte-19y1n4-ctcPopPop {
  0% {
    transform: scale(0.4);
    opacity: 0;
  }
  60% {
    transform: scale(1.1);
    opacity: 1;
  }
  to {
    transform: scale(1);
  }
}
.ctc-pop-tag.svelte-19y1n4 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 30px;
  background: linear-gradient(135deg, #d1fae5, #fef3c7);
  color: #065f46;
  font: 700 9.5px Courier New, monospace;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid rgba(5, 150, 105, 0.22);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.ctc-pop-tag-dot.svelte-19y1n4 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 #10b9818c;
  animation: svelte-19y1n4-ctcPopDot 1.6s ease-out infinite;
}
@keyframes svelte-19y1n4-ctcPopDot {
  0% {
    box-shadow: 0 0 #10b98199;
  }
  70% {
    box-shadow: 0 0 0 8px #10b98100;
  }
  to {
    box-shadow: 0 0 #10b98100;
  }
}
.ctc-pop-title.svelte-19y1n4 {
  font-family: Georgia, Cormorant Garamond, serif;
  font-size: 26px;
  font-weight: 600;
  color: #1f1724;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 12px;
  position: relative;
  z-index: 1;
}
.ctc-pop-title-accent.svelte-19y1n4 {
  font-style: italic;
  background: linear-gradient(95deg, #059669, #0d9488 55%, #e91e8c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ctc-pop-lead.svelte-19y1n4 {
  font-size: 13.5px;
  color: #574757;
  line-height: 1.65;
  margin: 0 0 22px;
  position: relative;
  z-index: 1;
}
.ctc-pop-lead.svelte-19y1n4 b:where(.svelte-19y1n4) {
  color: #e91e8c;
  font-weight: 600;
  background: linear-gradient(135deg, #e91e8c, #d97706);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ctc-pop-steps.svelte-19y1n4 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0 auto 22px;
  padding: 10px 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f0fdf4, #fffaf2);
  border: 1px solid rgba(5, 150, 105, 0.2);
  max-width: 100%;
  position: relative;
  z-index: 1;
}
.ctc-pop-step.svelte-19y1n4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 72px;
}
.ctc-pop-step-dot.svelte-19y1n4 {
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid rgba(184, 134, 61, 0.3);
  color: #8a7888;
  display: grid;
  place-items: center;
  transition: all 0.25s;
}
.ctc-pop-step.is-done.svelte-19y1n4 .ctc-pop-step-dot:where(.svelte-19y1n4) {
  background: linear-gradient(135deg, #059669, #0d9488);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 10px -4px #05966980;
}
.ctc-pop-step.is-active.svelte-19y1n4 .ctc-pop-step-dot:where(.svelte-19y1n4) {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border-color: #d97706;
}
.ctc-pop-step-pulse.svelte-19y1n4 {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d97706;
  box-shadow: 0 0 #d977068c;
  animation: svelte-19y1n4-ctcPopStepPulse 1.6s ease-out infinite;
}
@keyframes svelte-19y1n4-ctcPopStepPulse {
  0% {
    box-shadow: 0 0 #d977068c;
  }
  70% {
    box-shadow: 0 0 0 7px #d9770600;
  }
  to {
    box-shadow: 0 0 #d9770600;
  }
}
.ctc-pop-step-l.svelte-19y1n4 {
  font: 700 9px Courier New, monospace;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a7888;
}
.ctc-pop-step.is-done.svelte-19y1n4 .ctc-pop-step-l:where(.svelte-19y1n4) {
  color: #065f46;
}
.ctc-pop-step.is-active.svelte-19y1n4 .ctc-pop-step-l:where(.svelte-19y1n4) {
  color: #92400e;
}
.ctc-pop-step-line.svelte-19y1n4 {
  flex: 1;
  height: 1.5px;
  max-width: 36px;
  background: repeating-linear-gradient(
    90deg,
    rgba(184, 134, 61, 0.5) 0,
    rgba(184, 134, 61, 0.5) 4px,
    transparent 4px,
    transparent 7px
  );
}
.ctc-pop-trust.svelte-19y1n4 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 10.5px;
  color: #8a7888;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.ctc-pop-trust-item.svelte-19y1n4 {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.ctc-pop-trust-item.svelte-19y1n4 svg:where(.svelte-19y1n4) {
  color: #059669;
}
.ctc-pop-trust-sep.svelte-19y1n4 {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #b8863d59;
}
.ctc-pop-row.svelte-19y1n4 {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.ctc-pop-btn.svelte-19y1n4 {
  min-width: 180px;
}
.ctc-pop-ok.svelte-19y1n4 {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 24px;
  border-radius: 30px;
  background: #fff;
  color: #065f46;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  border: 1.5px solid rgba(5, 150, 105, 0.35);
  cursor: pointer;
  box-shadow: 0 4px 10px -6px #0596694d;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.ctc-pop-ok.svelte-19y1n4 svg:where(.svelte-19y1n4) {
  color: #10b981;
  transition: transform 0.25s;
}
.ctc-pop-ok.svelte-19y1n4:hover {
  background: linear-gradient(135deg, #d1fae5, #f0fdfa);
  border-color: #10b981;
  color: #047857;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px -8px #05966966;
}
.ctc-pop-ok.svelte-19y1n4:hover svg:where(.svelte-19y1n4) {
  transform: scale(1.15);
}
.ctc-pop-foot.svelte-19y1n4 {
  margin-top: 18px;
  font-size: 10.5px;
  color: #8a7888;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 1;
}
.ctc-pop-foot.svelte-19y1n4 kbd:where(.svelte-19y1n4) {
  display: inline-block;
  padding: 2px 6px;
  font-family: Courier New, monospace;
  font-size: 10px;
  font-weight: 700;
  color: #574757;
  background: #fff;
  border: 1px solid rgba(184, 134, 61, 0.28);
  border-radius: 4px;
  box-shadow: 0 1px #b8863d1f;
}
@media (max-width: 480px) {
  .ctc-pop-card.svelte-19y1n4 {
    padding: 34px 22px 22px;
    border-radius: 22px;
  }
  .ctc-pop-title.svelte-19y1n4 {
    font-size: 22px;
  }
  .ctc-pop-lead.svelte-19y1n4 {
    font-size: 12.5px;
  }
  .ctc-pop-ic.svelte-19y1n4 {
    width: 78px;
    height: 78px;
    margin-bottom: 16px;
  }
  .ctc-pop-row.svelte-19y1n4 {
    flex-direction: column;
  }
  .ctc-pop-btn.svelte-19y1n4,
  .ctc-pop-ok.svelte-19y1n4 {
    width: 100%;
    justify-content: center;
  }
  .ctc-pop-ring.svelte-19y1n4,
  .ctc-pop-spark.svelte-19y1n4 {
    display: none;
  }
  .ctc-pop-steps.svelte-19y1n4 {
    padding: 8px 10px;
    gap: 4px;
  }
  .ctc-pop-step.svelte-19y1n4 {
    min-width: 60px;
  }
  .ctc-pop-step-line.svelte-19y1n4 {
    max-width: 18px;
  }
  .ctc-pop-trust.svelte-19y1n4 {
    gap: 8px;
    font-size: 10px;
  }
}
.ctc-grad.svelte-19y1n4 {
  background: linear-gradient(135deg, var(--rose), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ctc-hero.svelte-19y1n4,
.ctc-meth-sec.svelte-19y1n4,
.ctc-form-sec.svelte-19y1n4,
.ctc-why-sec.svelte-19y1n4,
.ctc-cta-sec.svelte-19y1n4 {
  border-bottom: 1px solid rgba(233, 30, 140, 0.14);
}
.ctc-cta-sec.svelte-19y1n4 {
  border-bottom: none;
}
.ctc-hero.svelte-19y1n4 {
  position: relative;
  overflow: hidden;
  padding: 80px 0 88px;
  background: radial-gradient(
      900px 500px at 50% 0%,
      rgba(245, 158, 11, 0.1) 0%,
      transparent 55%
    ),
    radial-gradient(
      900px 500px at 0% 50%,
      rgba(233, 30, 140, 0.09) 0%,
      transparent 55%
    ),
    radial-gradient(
      900px 500px at 100% 50%,
      rgba(245, 158, 11, 0.1) 0%,
      transparent 55%
    ),
    linear-gradient(180deg, #fff0f7, #fff5ec);
}
.ctc-hero.svelte-19y1n4:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(
      rgba(233, 30, 140, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(233, 30, 140, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    #000 40%,
    transparent 75%
  );
  mask-image: radial-gradient(ellipse at center, #000 40%, transparent 75%);
  pointer-events: none;
}
.ctc-hero.svelte-19y1n4 > .grid-container:where(.svelte-19y1n4) {
  position: relative;
  z-index: 1;
}
.ctc-hero-inner.svelte-19y1n4 {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.ctc-hero-text.svelte-19y1n4 {
  max-width: 640px;
}
.ctc-hero-visual.svelte-19y1n4 {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin-left: auto;
}
.ctc-vis-glow.svelte-19y1n4 {
  position: absolute;
  top: 8%;
  right: 8%;
  bottom: 0;
  left: 8%;
  border-radius: 40px;
  background: radial-gradient(
      circle at 30% 30%,
      rgba(233, 30, 140, 0.3) 0%,
      transparent 55%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(245, 158, 11, 0.25) 0%,
      transparent 55%
    );
  filter: blur(30px);
  z-index: 0;
  pointer-events: none;
}
.ctc-chat.svelte-19y1n4 {
  position: relative;
  z-index: 2;
  width: 100%;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--border, #ead8f0);
  box-shadow: 0 30px 70px #2d12482e;
  overflow: hidden;
}
.ctc-chat-head.svelte-19y1n4 {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
}
.ctc-chat-av.svelte-19y1n4 {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fcd34d, #f59e0b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 4px 10px #00000026;
  flex-shrink: 0;
  position: relative;
}
.ctc-chat-av.svelte-19y1n4:after {
  content: "";
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #10b981;
  border: 2px solid var(--rose-dark, #c2185b);
}
.ctc-chat-head-body.svelte-19y1n4 {
  flex: 1;
  min-width: 0;
}
.ctc-chat-name.svelte-19y1n4 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
}
.ctc-chat-status.svelte-19y1n4 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #fffc;
  margin-top: 2px;
  font-style: italic;
}
.ctc-chat-status-dot.svelte-19y1n4 {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 2px #10b98159;
  animation: svelte-19y1n4-ctcPulse 2s ease-in-out infinite;
}
.ctc-chat-icons.svelte-19y1n4 {
  display: inline-flex;
  gap: 10px;
  color: #ffffffe6;
}
.ctc-chat-body.svelte-19y1n4 {
  padding: 18px 14px 14px;
  background: linear-gradient(180deg, #fff7fb, #fffaf2);
  min-height: 260px;
}
.ctc-chat-date.svelte-19y1n4 {
  text-align: center;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-dim, #9b8aaf);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.ctc-msg.svelte-19y1n4 {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 10px;
}
.ctc-msg-in.svelte-19y1n4 {
  justify-content: flex-end;
}
.ctc-msg-out.svelte-19y1n4 {
  justify-content: flex-start;
}
.ctc-msg-av.svelte-19y1n4 {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fcd34d, #f59e0b);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.ctc-msg-av-hide.svelte-19y1n4 {
  visibility: hidden;
}
.ctc-msg-bubble.svelte-19y1n4 {
  max-width: 240px;
  padding: 9px 13px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  border-radius: 16px 16px 4px;
  font-size: 12.5px;
  line-height: 1.5;
  box-shadow: 0 6px 14px #e91e8c40;
}
.ctc-msg-bubble.svelte-19y1n4 b:where(.svelte-19y1n4) {
  font-weight: 700;
}
.ctc-msg-bubble-out.svelte-19y1n4 {
  background: #fff;
  color: #1a0611;
  border: 1px solid var(--border, #ead8f0);
  border-radius: 16px 16px 16px 4px;
  box-shadow: 0 4px 12px #2d12480f;
}
.ctc-msg-bubble-out.svelte-19y1n4 b:where(.svelte-19y1n4) {
  color: var(--rose);
}
.ctc-msg-time.svelte-19y1n4 {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-dim, #9b8aaf);
  margin-top: 4px;
  text-align: right;
}
.ctc-msg-out.svelte-19y1n4 .ctc-msg-time:where(.svelte-19y1n4) {
  text-align: left;
  padding-left: 4px;
}
.ctc-chat-typing.svelte-19y1n4 {
  display: inline-flex;
  gap: 4px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--border, #ead8f0);
  border-radius: 16px 16px 16px 4px;
  box-shadow: 0 4px 12px #2d12480f;
}
.ctc-chat-typing.svelte-19y1n4 span:where(.svelte-19y1n4) {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose);
  animation: svelte-19y1n4-ctcTyp 1.3s ease-in-out infinite;
}
.ctc-chat-typing.svelte-19y1n4 span:where(.svelte-19y1n4):nth-child(2) {
  animation-delay: 0.2s;
}
.ctc-chat-typing.svelte-19y1n4 span:where(.svelte-19y1n4):nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes svelte-19y1n4-ctcTyp {
  0%,
  60%,
  to {
    transform: scale(0.7);
    opacity: 0.4;
  }
  30% {
    transform: scale(1.1);
    opacity: 1;
  }
}
.ctc-chat-input.svelte-19y1n4 {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px 12px 14px;
  background: #fff;
  border-top: 1px solid var(--border, #ead8f0);
}
.ctc-chat-attach.svelte-19y1n4 {
  color: var(--text-dim, #9b8aaf);
  display: inline-flex;
}
.ctc-chat-ph.svelte-19y1n4 {
  flex: 1;
  padding: 9px 14px;
  background: #fff7fb;
  border: 1px solid var(--border, #ead8f0);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dim, #9b8aaf);
}
.ctc-chat-send.svelte-19y1n4 {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px #e91e8c59;
}
.ctc-float.svelte-19y1n4 {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 8px;
  background: #fff;
  border: 1px solid var(--border, #ead8f0);
  border-radius: 50px;
  box-shadow: 0 14px 30px #2d124824;
  white-space: nowrap;
}
.ctc-float-1.svelte-19y1n4 {
  top: 10%;
  left: -12%;
  animation: svelte-19y1n4-ctcFloatP 6s ease-in-out infinite;
}
.ctc-float-2.svelte-19y1n4 {
  bottom: 30%;
  left: -14%;
  animation: svelte-19y1n4-ctcFloatP 6s ease-in-out infinite reverse;
  animation-delay: -2s;
}
.ctc-float-3.svelte-19y1n4 {
  top: 40%;
  right: -10%;
  animation: svelte-19y1n4-ctcFloatP 6s ease-in-out infinite;
  animation-delay: -4s;
}
@keyframes svelte-19y1n4-ctcFloatP {
  0%,
  to {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.ctc-float-ic.svelte-19y1n4 {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ctc-float-ic-g.svelte-19y1n4 {
  background: #10b98124;
  color: #059669;
}
.ctc-float-ic-r.svelte-19y1n4 {
  background: #f59e0b29;
  color: #d97706;
}
.ctc-float-livedot.svelte-19y1n4 {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 6px;
  background: #10b981;
  box-shadow: 0 0 0 3px #10b98138;
  animation: svelte-19y1n4-ctcPulse 2s ease-in-out infinite;
}
.ctc-float-v.svelte-19y1n4 {
  font-size: 12px;
  font-weight: 700;
  color: #1a0611;
  letter-spacing: -0.01em;
}
.ctc-float-l.svelte-19y1n4 {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 1px;
}
.ctc-orb.svelte-19y1n4 {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.55;
}
.ctc-orb-1.svelte-19y1n4 {
  top: -120px;
  left: -100px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(233, 30, 140, 0.4), transparent 70%);
}
.ctc-orb-2.svelte-19y1n4 {
  top: 40px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.35),
    transparent 70%
  );
}
.ctc-orb-3.svelte-19y1n4 {
  bottom: -120px;
  left: 30%;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(251, 146, 60, 0.25),
    transparent 70%
  );
}
.ctc-crumb.svelte-19y1n4 {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  margin-bottom: 14px;
  background: #ffffffd9;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 14px #2d12480f;
}
.ctc-crumb.svelte-19y1n4 a:where(.svelte-19y1n4) {
  color: var(--rose);
  text-decoration: none;
  font-weight: 600;
}
.ctc-crumb.svelte-19y1n4 a:where(.svelte-19y1n4):hover {
  text-decoration: underline;
}
.ctc-crumb.svelte-19y1n4 span:where(.svelte-19y1n4):last-child {
  color: #2a0a1a;
  font-weight: 600;
}
.ctc-chip.svelte-19y1n4 {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 12px;
  margin-bottom: 20px;
  background: #ffffffd9;
  border: 1px solid rgba(245, 196, 107, 0.4);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #b45309;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 18px #f59e0b26;
}
.ctc-chip-dot.svelte-19y1n4 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px #10b98133, 0 0 10px #10b98199;
  animation: svelte-19y1n4-ctcPulse 2.2s ease-in-out infinite;
}
@keyframes svelte-19y1n4-ctcPulse {
  0%,
  to {
    box-shadow: 0 0 0 3px #10b98133, 0 0 10px #10b98199;
  }
  50% {
    box-shadow: 0 0 0 6px #10b9810d, 0 0 18px #10b981cc;
  }
}
.ctc-h1.svelte-19y1n4 {
  font-size: clamp(1.9rem, 4.4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #1a0611;
  margin: 0 0 14px;
  max-width: 820px;
}
.ctc-lead.svelte-19y1n4 {
  max-width: 660px;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 28px;
}
.ctc-hero-trust.svelte-19y1n4 {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 10px;
  background: #ffffffd9;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 22px;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 34px #2d124814;
}
.ctc-trust-item.svelte-19y1n4 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: #fff;
  border: 1px solid var(--border, #ead8f0);
  border-radius: 16px;
}
.ctc-trust-item.svelte-19y1n4 b:where(.svelte-19y1n4) {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #1a0611;
  letter-spacing: -0.01em;
}
.ctc-trust-item.svelte-19y1n4 span:where(.svelte-19y1n4) {
  display: block;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-dim, #7b6a90);
  margin-top: 2px;
  text-transform: uppercase;
}
.ctc-trust-dot.svelte-19y1n4 {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px #10b98140;
  animation: svelte-19y1n4-ctcPulse 2.2s ease-in-out infinite;
}
.ctc-trust-avs.svelte-19y1n4 {
  display: flex;
}
.ctc-trust-avs.svelte-19y1n4 span:where(.svelte-19y1n4) {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #fff;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.02em;
}
.ctc-trust-avs.svelte-19y1n4
  span:where(.svelte-19y1n4)
  + span:where(.svelte-19y1n4) {
  margin-left: -8px;
}
.ctc-trust-stars.svelte-19y1n4 {
  display: inline-flex;
  gap: 1px;
}
.ctc-meth-sec.svelte-19y1n4 {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: linear-gradient(180deg, #fff, #fff7fb);
}
.ctc-meth-orb.svelte-19y1n4 {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.4;
}
.ctc-meth-orb-1.svelte-19y1n4 {
  top: -100px;
  left: 10%;
  width: 320px;
  height: 320px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.22),
    transparent 70%
  );
}
.ctc-meth-orb-2.svelte-19y1n4 {
  bottom: -100px;
  right: 10%;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.2), transparent 70%);
}
.ctc-meth-sec.svelte-19y1n4 > .grid-container:where(.svelte-19y1n4) {
  position: relative;
  z-index: 1;
}
.ctc-meth-stats.svelte-19y1n4 {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  padding: 8px 18px;
  background: #ffffffd9;
  border: 1px solid var(--border, #ead8f0);
  border-radius: 50px;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 24px #2d12480f;
}
.ctc-meth-stat.svelte-19y1n4 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-muted);
}
.ctc-meth-stat.svelte-19y1n4 b:where(.svelte-19y1n4) {
  color: var(--rose);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.ctc-meth-stat-dot.svelte-19y1n4 {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px #10b98138;
  animation: svelte-19y1n4-ctcPulse 2s ease-in-out infinite;
}
.ctc-bento.svelte-19y1n4 {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}
.ctc-b-scatter.svelte-19y1n4 {
  position: relative;
  overflow: hidden;
  padding: 30px 30px 20px;
  border-radius: 26px;
  background: radial-gradient(
      600px 400px at 20% 100%,
      rgba(245, 158, 11, 0.15),
      transparent 60%
    ),
    radial-gradient(
      600px 400px at 80% 0%,
      rgba(233, 30, 140, 0.15),
      transparent 60%
    ),
    linear-gradient(135deg, #fff7fb, #fff5ec);
  border: 1px solid var(--border, #ead8f0);
  grid-row: span 3;
  min-height: 440px;
  box-shadow: 0 24px 60px #2d124814;
}
.ctc-b-sbg.svelte-19y1n4 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(
      rgba(233, 30, 140, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(233, 30, 140, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    #000 40%,
    transparent 80%
  );
  mask-image: radial-gradient(ellipse at center, #000 40%, transparent 80%);
  pointer-events: none;
}
.ctc-b-scatter-over.svelte-19y1n4 {
  position: relative;
  z-index: 5;
  max-width: 320px;
}
.ctc-b-scatter-pill.svelte-19y1n4 {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px 5px 9px;
  background: #fff;
  border: 1px solid var(--border, #ead8f0);
  border-radius: 50px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--rose-dark, #c2185b);
  box-shadow: 0 6px 14px #2d12480f;
  margin-bottom: 14px;
}
.ctc-b-scatter-dot.svelte-19y1n4 {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px #10b98138;
  animation: svelte-19y1n4-ctcPulse 2s ease-in-out infinite;
}
.ctc-b-scatter-h.svelte-19y1n4 {
  font-size: clamp(1.4rem, 2.4vw, 1.95rem);
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.12;
  color: #1a0611;
  margin: 0 0 10px;
}
.ctc-b-scatter-p.svelte-19y1n4 {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0 0 18px;
  max-width: 290px;
}
.ctc-b-scatter-cta.svelte-19y1n4 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px 12px 16px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 12px 28px #25d36659;
  transition: all 0.25s;
}
.ctc-b-scatter-cta.svelte-19y1n4:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px #25d36680;
}
.ctc-sc.svelte-19y1n4 {
  position: absolute;
  z-index: 2;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--border, #ead8f0);
  border-radius: 12px;
  box-shadow: 0 20px 40px #2d124824, 0 4px 8px #2d124814;
  font-family: inherit;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s;
}
.ctc-sc.svelte-19y1n4:hover {
  z-index: 10 !important;
  box-shadow: 0 30px 60px #e91e8c40, 0 4px 8px #2d124814;
}
.ctc-sc-white.svelte-19y1n4 {
  background: #fff;
}
.ctc-sc-brand.svelte-19y1n4 {
  background: linear-gradient(135deg, #fff, #fff0f5);
  text-align: center;
  padding: 16px 18px;
  min-width: 150px;
}
.ctc-sc-gold.svelte-19y1n4 {
  background: linear-gradient(135deg, #fff7eb, #ffe0b3);
  text-align: center;
  padding: 16px 18px;
  min-width: 130px;
}
.ctc-sc-rose.svelte-19y1n4 {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  text-align: center;
  padding: 16px 18px;
  min-width: 150px;
}
.ctc-sc-1.svelte-19y1n4 {
  top: 4%;
  right: 6%;
  transform: rotate(-12deg);
  animation: svelte-19y1n4-scFloat 8s ease-in-out infinite;
}
.ctc-sc-2.svelte-19y1n4 {
  top: 18%;
  right: 26%;
  transform: rotate(7deg);
  animation: svelte-19y1n4-scFloat 9s ease-in-out infinite reverse;
  animation-delay: -1s;
}
.ctc-sc-3.svelte-19y1n4 {
  top: 38%;
  right: 4%;
  transform: rotate(14deg);
  animation: svelte-19y1n4-scFloat 7s ease-in-out infinite;
  animation-delay: -2s;
}
.ctc-sc-4.svelte-19y1n4 {
  bottom: 26%;
  right: 30%;
  transform: rotate(-8deg);
  animation: svelte-19y1n4-scFloat 10s ease-in-out infinite reverse;
  animation-delay: -3s;
}
.ctc-sc-5.svelte-19y1n4 {
  bottom: 32%;
  right: 2%;
  transform: rotate(6deg);
  animation: svelte-19y1n4-scFloat 8s ease-in-out infinite;
  animation-delay: -4s;
}
.ctc-sc-6.svelte-19y1n4 {
  bottom: 4%;
  right: 18%;
  transform: rotate(-14deg);
  animation: svelte-19y1n4-scFloat 9s ease-in-out infinite reverse;
  animation-delay: -1.5s;
}
.ctc-sc-7.svelte-19y1n4 {
  bottom: 10%;
  right: 40%;
  transform: rotate(10deg);
  animation: svelte-19y1n4-scFloat 11s ease-in-out infinite;
  animation-delay: -2.5s;
  z-index: 1;
}
@keyframes svelte-19y1n4-scFloat {
  0%,
  to {
    translate: 0 0;
  }
  50% {
    translate: 0 -6px;
  }
}
.ctc-sc.svelte-19y1n4:hover {
  transform: rotate(0) scale(1.06);
}
.ctc-sc-logo-mark.svelte-19y1n4 {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  box-shadow: 0 6px 14px #e91e8c4d;
}
.ctc-sc-logo-mark-w.svelte-19y1n4 {
  background: #ffffff38;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: inset 0 1px #ffffff4d;
}
.ctc-sc-logo-text.svelte-19y1n4 {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}
.ctc-sc-logo-text-w.svelte-19y1n4 {
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  background-clip: initial;
  color: #fff;
}
.ctc-sc-brand-name.svelte-19y1n4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1a0611;
}
.ctc-sc-brand-tag.svelte-19y1n4 {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-top: 2px;
  text-transform: uppercase;
}
.ctc-sc-brand-name-w.svelte-19y1n4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}
.ctc-sc-brand-tag-w.svelte-19y1n4 {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #ffffffd9;
  margin-top: 2px;
}
.ctc-sc-row.svelte-19y1n4 {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ctc-sc-ic.svelte-19y1n4 {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: #25d36624;
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ctc-sc-ic-r.svelte-19y1n4 {
  background: #e91e8c1f;
  color: var(--rose);
}
.ctc-sc-ic-o.svelte-19y1n4 {
  background: #fb923c24;
  color: #ea580c;
}
.ctc-sc-name.svelte-19y1n4 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-dim, #7b6a90);
  text-transform: uppercase;
}
.ctc-sc-val.svelte-19y1n4 {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #1a0611;
  margin-top: 1px;
}
.ctc-b-mini.svelte-19y1n4 {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--border, #ead8f0);
  border-radius: 22px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 28px #2d12480f;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s,
    border-color 0.35s;
}
.ctc-b-tone-gold.svelte-19y1n4 {
  background: linear-gradient(120deg, #fff, #fff4dc 60%, #ffe8b8);
  border-color: #f59e0b2e;
}
.ctc-b-tone-peach.svelte-19y1n4 {
  background: linear-gradient(120deg, #fff, #fff0e6 60%, #ffdcc5);
  border-color: #fb923c2e;
}
.ctc-b-tone-green.svelte-19y1n4 {
  background: linear-gradient(120deg, #fff, #ecfdf3 60%, #c8f0d4);
  border-color: #10b9812e;
}
.ctc-b-mini.svelte-19y1n4:after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(233, 30, 140, 0.1), transparent 70%);
}
.ctc-b-tone-gold.svelte-19y1n4:after {
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.18),
    transparent 70%
  );
}
.ctc-b-tone-peach.svelte-19y1n4:after {
  background: radial-gradient(
    circle,
    rgba(251, 146, 60, 0.18),
    transparent 70%
  );
}
.ctc-b-tone-green.svelte-19y1n4:after {
  background: radial-gradient(
    circle,
    rgba(16, 185, 129, 0.15),
    transparent 70%
  );
}
.ctc-b-mini.svelte-19y1n4:before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.3s;
}
.ctc-b-mini.svelte-19y1n4:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: 0 20px 44px #e91e8c2e;
}
.ctc-b-mini.svelte-19y1n4:hover:before {
  opacity: 1;
}
.ctc-b-mini-ic.svelte-19y1n4 {
  position: relative;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ctc-b-tone-gold.svelte-19y1n4 .ctc-b-mini-ic:where(.svelte-19y1n4) {
  background: linear-gradient(135deg, #fff0db, #ffe0b3);
  color: #b45309;
  border: 1px solid rgba(245, 158, 11, 0.25);
}
.ctc-b-tone-peach.svelte-19y1n4 .ctc-b-mini-ic:where(.svelte-19y1n4) {
  background: linear-gradient(135deg, #fff1ec, #ffd8c2);
  color: #ea580c;
  border: 1px solid rgba(251, 146, 60, 0.25);
}
.ctc-b-tone-green.svelte-19y1n4 .ctc-b-mini-ic:where(.svelte-19y1n4) {
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.25);
}
.ctc-b-ring.svelte-19y1n4 {
  position: absolute;
  top: -6px;
  right: -6px;
  bottom: -6px;
  left: -6px;
  border: 2px solid rgba(245, 158, 11, 0.35);
  border-radius: 20px;
  animation: svelte-19y1n4-ctcRing 2s ease-out infinite;
  pointer-events: none;
}
@keyframes svelte-19y1n4-ctcRing {
  0% {
    transform: scale(0.9);
    opacity: 0.8;
  }
  to {
    transform: scale(1.2);
    opacity: 0;
  }
}
.ctc-b-badge.svelte-19y1n4 {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px #e91e8c66;
  border: 2px solid #fff;
}
.ctc-b-mini-body.svelte-19y1n4 {
  flex: 1;
  min-width: 0;
}
.ctc-b-mini-label.svelte-19y1n4 {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-dim, #7b6a90);
  margin-bottom: 4px;
}
.ctc-b-mini-value.svelte-19y1n4 {
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #1a0611;
  word-break: break-word;
}
.ctc-b-mini-sub.svelte-19y1n4 {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 3px;
}
.ctc-b-mini-arrow.svelte-19y1n4 {
  position: relative;
  z-index: 1;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffffd9;
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  transition: all 0.3s;
}
.ctc-b-tone-gold.svelte-19y1n4 .ctc-b-mini-arrow:where(.svelte-19y1n4) {
  color: #d97706;
}
.ctc-b-tone-peach.svelte-19y1n4 .ctc-b-mini-arrow:where(.svelte-19y1n4) {
  color: #ea580c;
}
.ctc-b-tone-green.svelte-19y1n4 .ctc-b-mini-arrow:where(.svelte-19y1n4) {
  color: #059669;
}
.ctc-b-mini.svelte-19y1n4:hover .ctc-b-mini-arrow:where(.svelte-19y1n4) {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  transform: translate(3px);
}
.ctc-b-tone-gold.svelte-19y1n4:hover .ctc-b-mini-arrow:where(.svelte-19y1n4) {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}
.ctc-b-tone-peach.svelte-19y1n4:hover .ctc-b-mini-arrow:where(.svelte-19y1n4) {
  background: linear-gradient(135deg, #fb923c, #ea580c);
}
.ctc-b-tone-green.svelte-19y1n4:hover .ctc-b-mini-arrow:where(.svelte-19y1n4) {
  background: linear-gradient(135deg, #10b981, #059669);
}
.ctc-b-mini-ic.svelte-19y1n4,
.ctc-b-mini-body.svelte-19y1n4 {
  position: relative;
  z-index: 1;
}
.ctc-sec-head.svelte-19y1n4 {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.ctc-pill.svelte-19y1n4 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 12px;
  background: #fff;
  border: 1px solid var(--border, #ead8f0);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--rose);
  box-shadow: 0 6px 14px #2d12480d;
  margin-bottom: 18px;
}
.ctc-pill-dot.svelte-19y1n4 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px #10b98138;
  animation: svelte-19y1n4-ctcPulse 2.2s ease-in-out infinite;
}
.ctc-h2.svelte-19y1n4 {
  font-size: clamp(1.7rem, 3.3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #1a0611;
  margin: 0 0 14px;
}
.ctc-sub.svelte-19y1n4 {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 auto;
  max-width: 600px;
}
.ctc-form-sec.svelte-19y1n4 {
  padding: 100px 0;
  background: linear-gradient(180deg, #fff7fb, #fffaf2);
}
.ctc-form-grid.svelte-19y1n4 {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  max-width: 1180px;
  margin: 0 auto;
}
.ctc-form-card.svelte-19y1n4 {
  position: relative;
  padding: 36px;
  background: #fff;
  border: 1px solid var(--border, #ead8f0);
  border-radius: 28px;
  box-shadow: 0 24px 60px #2d124814;
}
.ctc-form-head.svelte-19y1n4 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.ctc-form-eyebrow.svelte-19y1n4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--rose);
  margin-bottom: 8px;
}
.ctc-form-h2.svelte-19y1n4 {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #1a0611;
  margin: 0 0 8px;
}
.ctc-form-sub.svelte-19y1n4 {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
  max-width: 460px;
}
.ctc-form-badge.svelte-19y1n4 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px 5px 8px;
  background: #10b9811a;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #059669;
  flex-shrink: 0;
}
.ctc-form-badge-dot.svelte-19y1n4 {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px #10b98138;
  animation: svelte-19y1n4-ctcPulse 2s ease-in-out infinite;
}
.ctc-form.svelte-19y1n4 {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ctc-row.svelte-19y1n4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.ctc-field.svelte-19y1n4 {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ctc-field.svelte-19y1n4 label:where(.svelte-19y1n4) {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-dim, #7b6a90);
  text-transform: uppercase;
}
.ctc-input-wrap.svelte-19y1n4 {
  position: relative;
  display: flex;
  align-items: center;
}
.ctc-input-wrap.svelte-19y1n4 svg:where(.svelte-19y1n4) {
  position: absolute;
  left: 14px;
  color: var(--text-dim, #c9b8d8);
}
.ctc-input-wrap.svelte-19y1n4 input:where(.svelte-19y1n4),
.ctc-form.svelte-19y1n4 textarea:where(.svelte-19y1n4) {
  width: 100%;
  padding: 14px 16px 14px 40px;
  background: #fff;
  border: 1.5px solid var(--border, #ead8f0);
  border-radius: 14px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: #1a0611;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.ctc-form.svelte-19y1n4 textarea:where(.svelte-19y1n4) {
  padding: 14px 16px;
  resize: vertical;
  min-height: 130px;
}
.ctc-input-wrap.svelte-19y1n4 input:where(.svelte-19y1n4):focus,
.ctc-form.svelte-19y1n4 textarea:where(.svelte-19y1n4):focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 4px #e91e8c1a;
}
.ctc-input-wrap.svelte-19y1n4 input:where(.svelte-19y1n4)::placeholder,
.ctc-form.svelte-19y1n4 textarea:where(.svelte-19y1n4)::placeholder {
  color: var(--text-dim, #c9b8d8);
}
.ctc-purposes.svelte-19y1n4 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ctc-purpose.svelte-19y1n4 {
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  background: #fff;
  border: 1.5px solid var(--border, #ead8f0);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: #4a2d5e;
  transition: all 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}
.ctc-purpose.svelte-19y1n4 input:where(.svelte-19y1n4) {
  display: none;
}
.ctc-purpose.svelte-19y1n4:hover {
  border-color: var(--rose);
  color: var(--rose);
}
.ctc-purpose.is-sel.svelte-19y1n4 {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 18px #e91e8c4d;
}
.ctc-form-error.svelte-19y1n4 {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 11px 14px;
  margin-top: 4px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f43f5e14, #e91e8c14);
  border: 1px solid rgba(244, 63, 94, 0.3);
  color: #b91c4c;
  font-size: 13px;
  line-height: 1.5;
}
.ctc-form-error.svelte-19y1n4 svg:where(.svelte-19y1n4) {
  flex-shrink: 0;
  margin-top: 2px;
  color: #e11d48;
}
@property --ctc-auth-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}
.ctc-auth-notice.svelte-19y1n4 {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 18px 24px;
  margin: 0 auto 28px;
  max-width: 760px;
  border-radius: 18px;
  background: radial-gradient(
      ellipse at 0% 0%,
      rgba(251, 207, 232, 0.55) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 100% 100%,
      rgba(253, 230, 138, 0.45) 0%,
      transparent 60%
    ),
    linear-gradient(160deg, #fff, #fffaf2);
  border: 1px solid rgba(184, 134, 61, 0.22);
  box-shadow: 0 14px 28px -18px #e91e8c33, inset 0 1px #ffffffe6;
  overflow: hidden;
  isolation: isolate;
}
.ctc-auth-ring.svelte-19y1n4 {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: conic-gradient(
    from var(--ctc-auth-angle),
    transparent 0%,
    #e91e8c 25%,
    transparent 50%,
    #d97706 75%,
    transparent 100%
  );
  -webkit-mask: radial-gradient(
    circle,
    transparent 60%,
    #000 62%,
    #000 70%,
    transparent 72%
  );
  mask: radial-gradient(
    circle,
    transparent 60%,
    #000 62%,
    #000 70%,
    transparent 72%
  );
  opacity: 0.5;
  animation: svelte-19y1n4-ctcAuthSpin 12s linear infinite;
  z-index: 0;
  pointer-events: none;
}
@keyframes svelte-19y1n4-ctcAuthSpin {
  to {
    --ctc-auth-angle: 360deg;
  }
}
.ctc-auth-ico.svelte-19y1n4 {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #e91e8c, #d97706);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: inset 0 1px #ffffff59, 0 10px 22px -8px #e91e8c80;
}
.ctc-auth-body.svelte-19y1n4 {
  position: relative;
  z-index: 1;
  min-width: 0;
}
.ctc-auth-tag.svelte-19y1n4 {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  background: #fce7f3;
  color: #9e0c66;
  font: 700 9px Courier New, monospace;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.ctc-auth-h.svelte-19y1n4 {
  margin: 0 0 4px;
  font-family: Georgia, Cormorant Garamond, serif;
  font-size: 17px;
  font-weight: 600;
  color: #1f1724;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.ctc-auth-body.svelte-19y1n4 p:where(.svelte-19y1n4) {
  margin: 0;
  font-size: 12.5px;
  color: #574757;
  line-height: 1.55;
}
.ctc-auth-row.svelte-19y1n4 {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.ctc-auth-primary.svelte-19y1n4,
.ctc-auth-ghost.svelte-19y1n4 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 30px;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  white-space: nowrap;
}
.ctc-auth-primary.svelte-19y1n4 {
  background: linear-gradient(135deg, #e91e8c, #d97706);
  color: #fff;
  box-shadow: 0 10px 20px -8px #e91e8c80;
}
.ctc-auth-primary.svelte-19y1n4:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px -8px #e91e8ca6;
}
.ctc-auth-ghost.svelte-19y1n4 {
  background: #fff;
  color: #574757;
  border: 1px solid rgba(184, 134, 61, 0.25);
}
.ctc-auth-ghost.svelte-19y1n4:hover {
  background: #fefbf5;
  color: #1f1724;
  border-color: #b8863d73;
}
@media (max-width: 720px) {
  .ctc-auth-notice.svelte-19y1n4 {
    grid-template-columns: 44px 1fr;
    row-gap: 12px;
  }
  .ctc-auth-row.svelte-19y1n4 {
    grid-column: 1 / -1;
    justify-content: stretch;
  }
  .ctc-auth-primary.svelte-19y1n4,
  .ctc-auth-ghost.svelte-19y1n4 {
    flex: 1;
    justify-content: center;
  }
}
@media (max-width: 420px) {
  .ctc-auth-ring.svelte-19y1n4 {
    display: none;
  }
  .ctc-auth-notice.svelte-19y1n4 {
    padding: 14px 16px;
  }
}
.ctc-form-foot.svelte-19y1n4 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.ctc-form-note.svelte-19y1n4 {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}
.ctc-form-note.svelte-19y1n4 svg:where(.svelte-19y1n4) {
  color: #059669;
}
.ctc-btn.svelte-19y1n4 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border: none;
  cursor: pointer;
  border-radius: 50px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
}
.ctc-btn.svelte-19y1n4:disabled {
  opacity: 0.6;
  cursor: wait;
}
.ctc-btn-primary.svelte-19y1n4 {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  box-shadow: 0 14px 30px #e91e8c66, inset 0 1px #ffffff4d;
}
.ctc-btn-primary.svelte-19y1n4:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px #e91e8c8c;
}
.ctc-btn-whats.svelte-19y1n4 {
  background: #25d366;
  color: #fff;
  box-shadow: 0 14px 30px #25d36659;
}
.ctc-btn-whats.svelte-19y1n4:hover {
  transform: translateY(-2px);
  background: #1fbd5b;
  box-shadow: 0 20px 42px #25d36680;
}
.ctc-success.svelte-19y1n4 {
  text-align: center;
  padding: 36px 8px;
}
.ctc-success-ic.svelte-19y1n4 {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 32px #10b9814d;
}
.ctc-success.svelte-19y1n4 h3:where(.svelte-19y1n4) {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1a0611;
  margin: 0 0 10px;
}
.ctc-success.svelte-19y1n4 p:where(.svelte-19y1n4) {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 auto 24px;
  max-width: 420px;
}
.ctc-side.svelte-19y1n4 {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ctc-side-card.svelte-19y1n4 {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--border, #ead8f0);
  border-radius: 20px;
  box-shadow: 0 14px 34px #2d124812;
}
.ctc-side-head.svelte-19y1n4 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.ctc-side-h.svelte-19y1n4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #1a0611;
}
.ctc-side-live.svelte-19y1n4 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px 4px 8px;
  background: #10b9811a;
  border-radius: 50px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #059669;
}
.ctc-side-live-dot.svelte-19y1n4 {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 2px #10b98138;
  animation: svelte-19y1n4-ctcPulse 2s ease-in-out infinite;
}
.ctc-agents.svelte-19y1n4 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ctc-agent.svelte-19y1n4 {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  background: #fff7fb;
  border: 1px solid var(--border, #ead8f0);
  border-radius: 14px;
  transition: all 0.25s;
}
.ctc-agent.svelte-19y1n4:hover {
  border-color: var(--rose);
  transform: translate(3px);
}
.ctc-agent-av.svelte-19y1n4 {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.ctc-agent-n.svelte-19y1n4 {
  font-size: 12.5px;
  font-weight: 700;
  color: #1a0611;
}
.ctc-agent-t.svelte-19y1n4 {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 1px;
}
.ctc-agent-bubble.svelte-19y1n4 {
  margin-left: auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ctc-hour.svelte-19y1n4 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(233, 30, 140, 0.12);
}
.ctc-hour.svelte-19y1n4:last-child {
  border-bottom: none;
}
.ctc-hour.svelte-19y1n4 span:where(.svelte-19y1n4) {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-muted);
}
.ctc-hour.svelte-19y1n4 b:where(.svelte-19y1n4) {
  font-size: 13px;
  font-weight: 700;
  color: #1a0611;
  letter-spacing: -0.01em;
}
.ctc-side-whats.svelte-19y1n4 {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 20px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 18px 36px #25d36659;
  transition: all 0.25s;
}
.ctc-side-whats.svelte-19y1n4:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px #25d36680;
}
.ctc-side-whats-v.svelte-19y1n4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.ctc-side-whats-l.svelte-19y1n4 {
  font-size: 11.5px;
  font-weight: 600;
  opacity: 0.9;
  margin-top: 2px;
}
.ctc-why-sec.svelte-19y1n4 {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: linear-gradient(180deg, #fffaf2, #fff);
}
.ctc-why-orb.svelte-19y1n4 {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.5;
}
.ctc-why-orb-1.svelte-19y1n4 {
  top: -100px;
  left: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.22),
    transparent 70%
  );
}
.ctc-why-orb-2.svelte-19y1n4 {
  bottom: -100px;
  right: -80px;
  width: 340px;
  height: 340px;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.22),
    transparent 70%
  );
}
.ctc-why-sec.svelte-19y1n4 > .grid-container:where(.svelte-19y1n4) {
  position: relative;
  z-index: 1;
}
.ctc-why-grid.svelte-19y1n4 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.ctc-why2.svelte-19y1n4 {
  position: relative;
  overflow: hidden;
  padding: 28px 26px 24px;
  background: #fff;
  border: 1px solid var(--border, #ead8f0);
  border-radius: 24px;
  box-shadow: 0 10px 30px #2d124812;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s,
    border-color 0.35s;
}
.ctc-why2.svelte-19y1n4:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  opacity: 0;
  transition: opacity 0.35s;
}
.ctc-why2.svelte-19y1n4:hover {
  transform: translateY(-10px);
  border-color: transparent;
  box-shadow: 0 30px 60px #e91e8c38;
}
.ctc-why2.svelte-19y1n4:hover:before {
  opacity: 1;
}
.ctc-why2-top.svelte-19y1n4 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}
.ctc-why2-ic.svelte-19y1n4 {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ctc-why2-rose.svelte-19y1n4 .ctc-why2-ic:where(.svelte-19y1n4) {
  background: linear-gradient(135deg, #ffe4ef, #ffd1e3);
  color: var(--rose-dark, #c2185b);
  border: 1px solid rgba(233, 30, 140, 0.2);
}
.ctc-why2-gold.svelte-19y1n4 .ctc-why2-ic:where(.svelte-19y1n4) {
  background: linear-gradient(135deg, #fff0db, #ffe0b3);
  color: #b45309;
  border: 1px solid rgba(245, 158, 11, 0.25);
}
.ctc-why2-green.svelte-19y1n4 .ctc-why2-ic:where(.svelte-19y1n4) {
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.25);
}
.ctc-why2-num.svelte-19y1n4 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, #e91e8c2e, #f59e0b33);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}
.ctc-why2-stat.svelte-19y1n4 {
  padding: 14px 16px;
  background: linear-gradient(135deg, #fff7fb, #fffaf2);
  border: 1px dashed rgba(233, 30, 140, 0.22);
  border-radius: 14px;
  margin-bottom: 12px;
}
.ctc-why2-gold.svelte-19y1n4 .ctc-why2-stat:where(.svelte-19y1n4) {
  background: linear-gradient(135deg, #fff9ee, #fff3d6);
  border-color: #f59e0b4d;
}
.ctc-why2-green.svelte-19y1n4 .ctc-why2-stat:where(.svelte-19y1n4) {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border-color: #10b9814d;
}
.ctc-why2-stat-v.svelte-19y1n4 {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ctc-why2-gold.svelte-19y1n4 .ctc-why2-stat-v:where(.svelte-19y1n4) {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  -webkit-background-clip: text;
  background-clip: text;
}
.ctc-why2-green.svelte-19y1n4 .ctc-why2-stat-v:where(.svelte-19y1n4) {
  background: linear-gradient(135deg, #10b981, #059669);
  -webkit-background-clip: text;
  background-clip: text;
}
.ctc-why2-stat-l.svelte-19y1n4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-dim, #7b6a90);
  margin-top: 4px;
  text-transform: uppercase;
}
.ctc-why2-bar.svelte-19y1n4 {
  width: 100%;
  height: 5px;
  background: #e91e8c14;
  border-radius: 50px;
  overflow: hidden;
  margin-bottom: 18px;
}
.ctc-why2-bar.svelte-19y1n4 span:where(.svelte-19y1n4) {
  display: block;
  height: 100%;
  width: var(--w);
  background: linear-gradient(90deg, var(--rose), var(--gold));
  border-radius: 50px;
  transform-origin: left;
  animation: svelte-19y1n4-whyBar 1.4s ease-out both;
}
.ctc-why2-gold.svelte-19y1n4
  .ctc-why2-bar:where(.svelte-19y1n4)
  span:where(.svelte-19y1n4) {
  background: linear-gradient(90deg, #f59e0b, #d97706);
}
.ctc-why2-green.svelte-19y1n4
  .ctc-why2-bar:where(.svelte-19y1n4)
  span:where(.svelte-19y1n4) {
  background: linear-gradient(90deg, #10b981, #059669);
}
@keyframes svelte-19y1n4-whyBar {
  0% {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
.ctc-why2.svelte-19y1n4 h3:where(.svelte-19y1n4) {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1a0611;
  margin: 0 0 10px;
}
.ctc-why2.svelte-19y1n4 p:where(.svelte-19y1n4) {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 18px;
}
.ctc-why2-features.svelte-19y1n4 {
  list-style: none;
  padding: 16px 0 0;
  margin: 0;
  border-top: 1px dashed rgba(233, 30, 140, 0.15);
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.ctc-why2-features.svelte-19y1n4 li:where(.svelte-19y1n4) {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 500;
  color: #1a0611;
}
.ctc-why2-rose.svelte-19y1n4
  .ctc-why2-features:where(.svelte-19y1n4)
  li:where(.svelte-19y1n4)
  svg:where(.svelte-19y1n4) {
  color: var(--rose);
}
.ctc-why2-gold.svelte-19y1n4
  .ctc-why2-features:where(.svelte-19y1n4)
  li:where(.svelte-19y1n4)
  svg:where(.svelte-19y1n4) {
  color: #d97706;
}
.ctc-why2-green.svelte-19y1n4
  .ctc-why2-features:where(.svelte-19y1n4)
  li:where(.svelte-19y1n4)
  svg:where(.svelte-19y1n4) {
  color: #059669;
}
.ctc-why2-shine.svelte-19y1n4 {
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.12),
    transparent 70%
  );
  pointer-events: none;
}
.ctc-why2-gold.svelte-19y1n4 .ctc-why2-shine:where(.svelte-19y1n4) {
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.14),
    transparent 70%
  );
}
.ctc-why2-green.svelte-19y1n4 .ctc-why2-shine:where(.svelte-19y1n4) {
  background: radial-gradient(
    circle,
    rgba(16, 185, 129, 0.12),
    transparent 70%
  );
}
.ctc-why-strip.svelte-19y1n4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 44px;
}
.ctc-why-strip-item.svelte-19y1n4 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: #fff;
  border: 1px solid var(--border, #ead8f0);
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 600;
  color: #1a0611;
  box-shadow: 0 4px 12px #2d12480d;
  transition: all 0.25s;
}
.ctc-why-strip-item.svelte-19y1n4:hover {
  border-color: var(--rose);
  color: var(--rose);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px #e91e8c2e;
}
.ctc-why-strip-item.svelte-19y1n4 svg:where(.svelte-19y1n4) {
  color: var(--rose);
}
.ctc-why-strip-item.svelte-19y1n4:hover svg:where(.svelte-19y1n4) {
  color: var(--rose-dark, #c2185b);
}
.cfaq-sec.svelte-19y1n4 {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: radial-gradient(
      1000px 600px at 15% 0%,
      rgba(233, 30, 140, 0.1) 0%,
      transparent 55%
    ),
    radial-gradient(
      900px 600px at 85% 100%,
      rgba(245, 158, 11, 0.1) 0%,
      transparent 55%
    ),
    linear-gradient(180deg, #fff9fc, #fffaf2, #fff7fc);
  border-bottom: 1px solid rgba(233, 30, 140, 0.14);
}
.cfaq-orb.svelte-19y1n4 {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}
.cfaq-orb-1.svelte-19y1n4 {
  top: -120px;
  right: -90px;
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.28),
    transparent 70%
  );
}
.cfaq-orb-2.svelte-19y1n4 {
  bottom: -140px;
  left: -100px;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.24),
    transparent 70%
  );
}
.cfaq-sec.svelte-19y1n4 > .grid-container:where(.svelte-19y1n4) {
  position: relative;
  z-index: 1;
}
.cfaq-topbar.svelte-19y1n4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 20px 28px;
  background: #ffffffd9;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 14px 40px #e91e8c14;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  margin-bottom: 32px;
}
.cfaq-brand.svelte-19y1n4 {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cfaq-brand-ic.svelte-19y1n4 {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px #e91e8c59;
  flex-shrink: 0;
}
.cfaq-brand-t.svelte-19y1n4 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #1a0611;
}
.cfaq-brand-s.svelte-19y1n4 {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}
.cfaq-search.svelte-19y1n4 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: #fff;
  border: 1px solid rgba(45, 18, 72, 0.08);
  border-radius: 50px;
  min-width: 300px;
  color: var(--text-muted);
  transition: all 0.3s ease;
}
.cfaq-search.svelte-19y1n4:focus-within {
  border-color: #e91e8c59;
  box-shadow: 0 0 0 4px #e91e8c14;
}
.cfaq-search.svelte-19y1n4 input:where(.svelte-19y1n4) {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 13.5px;
  color: #1a0611;
  font-family: inherit;
}
.cfaq-body.svelte-19y1n4 {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 22px;
  align-items: start;
}
.cfaq-sidebar.svelte-19y1n4 {
  position: sticky;
  top: 20px;
  padding: 22px 18px;
  background: #ffffffd9;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 14px 40px #2d124814;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.cfaq-side-head.svelte-19y1n4 {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 8px 14px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--rose);
  border-bottom: 1px dashed rgba(45, 18, 72, 0.12);
  margin-bottom: 10px;
}
.cfaq-side-line.svelte-19y1n4 {
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  border-radius: 2px;
}
.cfaq-list.svelte-19y1n4 {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cfaq-list-btn.svelte-19y1n4 {
  width: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 14px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 500;
  color: #1a0611;
  text-align: left;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.cfaq-list-btn.svelte-19y1n4:hover {
  background: #e91e8c0d;
  color: var(--rose);
}
.cfaq-list-btn.is-active.svelte-19y1n4 {
  background: linear-gradient(135deg, #e91e8c1f, #f59e0b14);
  border-color: #e91e8c38;
  color: var(--rose);
  box-shadow: 0 6px 18px #e91e8c14;
}
.cfaq-list-num.svelte-19y1n4 {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: #e91e8c1a;
  color: var(--rose);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s;
}
.cfaq-list-btn.is-active.svelte-19y1n4 .cfaq-list-num:where(.svelte-19y1n4) {
  background: linear-gradient(135deg, var(--rose), var(--gold));
  color: #fff;
  box-shadow: 0 4px 10px #e91e8c59;
}
.cfaq-list-q.svelte-19y1n4 {
  flex: 1;
  line-height: 1.35;
}
.cfaq-list-arrow.svelte-19y1n4 {
  opacity: 0;
  transform: translate(-4px);
  transition: all 0.25s;
  flex-shrink: 0;
}
.cfaq-list-btn.is-active.svelte-19y1n4 .cfaq-list-arrow:where(.svelte-19y1n4),
.cfaq-list-btn.svelte-19y1n4:hover .cfaq-list-arrow:where(.svelte-19y1n4) {
  opacity: 1;
  transform: translate(0);
}
.cfaq-still.svelte-19y1n4 {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  margin-top: 16px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 10px 24px #25d36640;
  transition: transform 0.25s, box-shadow 0.25s;
}
.cfaq-still.svelte-19y1n4:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px #25d36666;
}
.cfaq-still.svelte-19y1n4 svg:where(.svelte-19y1n4) {
  flex-shrink: 0;
  padding: 8px;
  width: 30px;
  height: 30px;
  background: #fff3;
  border-radius: 50%;
}
.cfaq-still-t.svelte-19y1n4 {
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.1;
}
.cfaq-still-s.svelte-19y1n4 {
  font-size: 11px;
  font-weight: 600;
  opacity: 0.9;
  margin-top: 2px;
}
.cfaq-panel.svelte-19y1n4 {
  padding: 34px 36px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 22px;
  box-shadow: 0 18px 50px #2d124817;
  animation: svelte-19y1n4-cfaqFade 0.4s ease;
}
@keyframes svelte-19y1n4-cfaqFade {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.cfaq-panel-head.svelte-19y1n4 {
  margin-bottom: 16px;
}
.cfaq-panel-crumb.svelte-19y1n4 {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.cfaq-panel-title.svelte-19y1n4 {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: #1a0611;
  margin: 0;
}
.cfaq-panel-lead.svelte-19y1n4 {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0 0 22px;
}
.cfaq-steps.svelte-19y1n4 {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cfaq-steps.svelte-19y1n4 li:where(.svelte-19y1n4) {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  background: #e91e8c0a;
  border: 1px solid rgba(233, 30, 140, 0.08);
  border-radius: 12px;
  transition: border-color 0.25s, background 0.25s;
}
.cfaq-steps.svelte-19y1n4 li:where(.svelte-19y1n4):hover {
  background: #e91e8c12;
  border-color: #e91e8c2e;
}
.cfaq-step-num.svelte-19y1n4 {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  box-shadow: 0 4px 10px #e91e8c4d;
}
.cfaq-step-text.svelte-19y1n4 {
  font-size: 13.5px;
  line-height: 1.6;
  color: #1a0611;
}
.cfaq-note.svelte-19y1n4 {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #f5c46b26, #f59e0b14);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 14px;
  margin-bottom: 26px;
}
.cfaq-note-ic.svelte-19y1n4 {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  box-shadow: 0 4px 10px #f59e0b59;
}
.cfaq-note.svelte-19y1n4 strong:where(.svelte-19y1n4) {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b45309;
  margin-bottom: 3px;
}
.cfaq-note.svelte-19y1n4 p:where(.svelte-19y1n4) {
  font-size: 13.5px;
  line-height: 1.65;
  color: #1a0611;
  margin: 0;
}
.cfaq-foot.svelte-19y1n4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px dashed rgba(45, 18, 72, 0.14);
}
.cfaq-helpful-q.svelte-19y1n4 {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}
.cfaq-helpful.svelte-19y1n4 {
  display: flex;
  gap: 8px;
}
.cfaq-helpful-btn.svelte-19y1n4 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid rgba(45, 18, 72, 0.12);
  border-radius: 50px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  color: #1a0611;
  cursor: pointer;
  transition: all 0.25s;
}
.cfaq-helpful-btn.svelte-19y1n4:hover {
  border-color: var(--rose);
  color: var(--rose);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px #e91e8c1f;
}
@media (max-width: 1024px) {
  .cfaq-body.svelte-19y1n4 {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .cfaq-sidebar.svelte-19y1n4 {
    position: static;
  }
  .cfaq-panel-title.svelte-19y1n4 {
    font-size: 1.55rem;
  }
}
@media (max-width: 768px) {
  .cfaq-sec.svelte-19y1n4 {
    padding: 70px 0;
  }
  .cfaq-topbar.svelte-19y1n4 {
    padding: 16px 18px;
    gap: 14px;
  }
  .cfaq-search.svelte-19y1n4 {
    min-width: auto;
    width: 100%;
  }
  .cfaq-panel.svelte-19y1n4 {
    padding: 26px 22px;
  }
  .cfaq-panel-title.svelte-19y1n4 {
    font-size: 1.35rem;
  }
  .cfaq-foot.svelte-19y1n4 {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
@media (max-width: 600px) {
  .cfaq-sec.svelte-19y1n4 {
    padding: 56px 0;
  }
  .cfaq-brand-t.svelte-19y1n4 {
    font-size: 17px;
  }
  .cfaq-brand-s.svelte-19y1n4 {
    font-size: 11px;
  }
  .cfaq-panel.svelte-19y1n4 {
    padding: 22px 18px;
    border-radius: 18px;
  }
  .cfaq-panel-title.svelte-19y1n4 {
    font-size: 1.2rem;
  }
  .cfaq-panel-lead.svelte-19y1n4 {
    font-size: 14px;
  }
  .cfaq-sidebar.svelte-19y1n4 {
    padding: 18px 14px;
  }
  .cfaq-list-btn.svelte-19y1n4 {
    padding: 10px 12px;
    font-size: 13px;
  }
  .cfaq-step-text.svelte-19y1n4 {
    font-size: 13px;
  }
  .cfaq-note.svelte-19y1n4 p:where(.svelte-19y1n4) {
    font-size: 13px;
  }
  .cfaq-orb.svelte-19y1n4 {
    display: none;
  }
}
.ctc-cta-sec.svelte-19y1n4 {
  padding: 72px 0 110px;
  background: linear-gradient(180deg, #fff7fb, #fff);
}
.ctc-cta.svelte-19y1n4 {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  padding: 44px 48px;
  border-radius: 30px;
  background: radial-gradient(
      600px 400px at 0% 100%,
      rgba(245, 158, 11, 0.15),
      transparent 60%
    ),
    radial-gradient(
      600px 400px at 100% 0%,
      rgba(233, 30, 140, 0.15),
      transparent 60%
    ),
    linear-gradient(135deg, #fff, #fff7fb);
  border: 1px solid var(--border, #ead8f0);
  box-shadow: 0 30px 80px #2d12481a;
}
.ctc-cta-blob.svelte-19y1n4 {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.ctc-cta-blob-1.svelte-19y1n4 {
  top: -60px;
  left: 30%;
  width: 220px;
  height: 220px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.25),
    transparent 70%
  );
  animation: svelte-19y1n4-ctcFloat 9s ease-in-out infinite;
}
.ctc-cta-blob-2.svelte-19y1n4 {
  bottom: -40px;
  right: 20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.25),
    transparent 70%
  );
  animation: svelte-19y1n4-ctcFloat 11s ease-in-out infinite reverse;
}
@keyframes svelte-19y1n4-ctcFloat {
  0%,
  to {
    transform: translate(0);
  }
  50% {
    transform: translate(18px, -14px);
  }
}
.ctc-cta-body.svelte-19y1n4 {
  position: relative;
  z-index: 1;
  max-width: 560px;
}
.ctc-cta-pill.svelte-19y1n4 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px 5px 10px;
  background: #fff;
  border: 1px solid var(--border, #ead8f0);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--rose-dark, #c2185b);
  margin-bottom: 14px;
}
.ctc-cta-pill-dot.svelte-19y1n4 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px #10b98138;
  animation: svelte-19y1n4-ctcPulse 2s ease-in-out infinite;
}
.ctc-cta.svelte-19y1n4 p:where(.svelte-19y1n4) {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}
.ctc-cta-actions.svelte-19y1n4 {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .ctc-hero-inner.svelte-19y1n4 {
    grid-template-columns: 1fr 0.95fr;
    gap: 28px;
  }
  .ctc-hero-visual.svelte-19y1n4 {
    max-width: 340px;
  }
  .ctc-msg-bubble.svelte-19y1n4 {
    max-width: 180px;
    font-size: 12px;
  }
  .ctc-float-1.svelte-19y1n4,
  .ctc-float-2.svelte-19y1n4 {
    left: -6%;
  }
  .ctc-float-3.svelte-19y1n4 {
    right: -4%;
  }
  .ctc-bento.svelte-19y1n4 {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .ctc-b-scatter.svelte-19y1n4 {
    grid-row: auto;
    padding: 26px 22px 16px;
    min-height: 400px;
  }
  .ctc-form-grid.svelte-19y1n4 {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 720px;
  }
  .ctc-why-grid.svelte-19y1n4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .ctc-why-grid.svelte-19y1n4 > :where(.svelte-19y1n4):nth-child(3) {
    grid-column: 1 / -1;
    max-width: 520px;
    justify-self: center;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .ctc-hero.svelte-19y1n4 {
    padding: 56px 0 72px;
  }
  .ctc-hero-inner.svelte-19y1n4 {
    grid-template-columns: 1fr 0.9fr;
    gap: 20px;
  }
  .ctc-hero-visual.svelte-19y1n4 {
    max-width: 300px;
  }
  .ctc-chat.svelte-19y1n4 {
    border-radius: 22px;
  }
  .ctc-chat-head.svelte-19y1n4 {
    padding: 10px 12px;
  }
  .ctc-chat-body.svelte-19y1n4 {
    padding: 14px 10px 10px;
    min-height: 220px;
  }
  .ctc-msg-bubble.svelte-19y1n4 {
    max-width: 160px;
    font-size: 11.5px;
    padding: 8px 11px;
  }
  .ctc-msg-av.svelte-19y1n4 {
    width: 22px;
    height: 22px;
    font-size: 10px;
  }
  .ctc-chat-input.svelte-19y1n4 {
    padding: 8px 8px 10px 12px;
  }
  .ctc-chat-ph.svelte-19y1n4 {
    font-size: 11px;
    padding: 7px 12px;
  }
  .ctc-float.svelte-19y1n4 {
    padding: 6px 10px 6px 6px;
  }
  .ctc-float-v.svelte-19y1n4 {
    font-size: 11px;
  }
  .ctc-float-l.svelte-19y1n4 {
    font-size: 9.5px;
  }
  .ctc-float-ic.svelte-19y1n4 {
    width: 22px;
    height: 22px;
  }
  .ctc-float-1.svelte-19y1n4 {
    left: 0;
    top: 6%;
  }
  .ctc-float-2.svelte-19y1n4 {
    left: 0;
    bottom: 26%;
  }
  .ctc-float-3.svelte-19y1n4 {
    right: 0;
    top: 38%;
  }
  .ctc-h1.svelte-19y1n4 {
    font-size: 1.5rem;
  }
  .ctc-lead.svelte-19y1n4 {
    font-size: 0.92rem;
  }
  .ctc-hero-trust.svelte-19y1n4 {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    padding: 6px;
  }
  .ctc-trust-item.svelte-19y1n4 {
    width: 100%;
    padding: 8px 12px;
    gap: 10px;
  }
  .ctc-trust-item.svelte-19y1n4 b:where(.svelte-19y1n4) {
    font-size: 12.5px;
  }
  .ctc-trust-item.svelte-19y1n4 span:where(.svelte-19y1n4) {
    font-size: 9.5px;
  }
  .ctc-meth-sec.svelte-19y1n4,
  .ctc-form-sec.svelte-19y1n4,
  .ctc-why-sec.svelte-19y1n4,
  .ctc-cta-sec.svelte-19y1n4 {
    padding: 64px 0;
  }
  .ctc-form-card.svelte-19y1n4 {
    padding: 24px 20px;
  }
  .ctc-form-head.svelte-19y1n4 {
    flex-direction: column;
    align-items: flex-start;
  }
  .ctc-row.svelte-19y1n4 {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .ctc-cta.svelte-19y1n4 {
    padding: 32px 24px;
    border-radius: 22px;
  }
  .ctc-cta-actions.svelte-19y1n4 {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .ctc-hero-inner.svelte-19y1n4 {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .ctc-hero-text.svelte-19y1n4 {
    max-width: none;
    text-align: center;
  }
  .ctc-crumb.svelte-19y1n4,
  .ctc-chip.svelte-19y1n4 {
    margin-left: auto;
    margin-right: auto;
  }
  .ctc-hero-visual.svelte-19y1n4 {
    margin: 0 auto;
    max-width: 340px;
  }
  .ctc-h1.svelte-19y1n4 {
    font-size: 1.75rem;
  }
  .ctc-lead.svelte-19y1n4 {
    font-size: 0.96rem;
    margin-left: auto;
    margin-right: auto;
  }
  .ctc-msg-bubble.svelte-19y1n4 {
    max-width: 220px;
    font-size: 12px;
  }
  .ctc-b-scatter.svelte-19y1n4 {
    padding: 22px 18px;
    min-height: 360px;
  }
  .ctc-b-scatter-h.svelte-19y1n4 {
    font-size: 1.3rem;
  }
  .ctc-b-scatter-over.svelte-19y1n4 {
    max-width: 100%;
  }
  .ctc-sc.svelte-19y1n4 {
    padding: 8px 10px;
  }
  .ctc-sc-brand.svelte-19y1n4,
  .ctc-sc-gold.svelte-19y1n4,
  .ctc-sc-rose.svelte-19y1n4 {
    padding: 12px 14px;
    min-width: 120px;
  }
  .ctc-sc-logo-mark.svelte-19y1n4 {
    width: 28px;
    height: 28px;
  }
  .ctc-sc-brand-name.svelte-19y1n4,
  .ctc-sc-brand-name-w.svelte-19y1n4 {
    font-size: 12px;
  }
  .ctc-sc-val.svelte-19y1n4 {
    font-size: 11px;
  }
  .ctc-sc-ic.svelte-19y1n4 {
    width: 22px;
    height: 22px;
  }
  .ctc-b-mini.svelte-19y1n4 {
    padding: 16px;
    gap: 12px;
  }
  .ctc-b-mini-ic.svelte-19y1n4 {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }
  .ctc-b-mini-value.svelte-19y1n4 {
    font-size: 13.5px;
  }
  .ctc-meth-stats.svelte-19y1n4 {
    gap: 10px;
    padding: 8px 14px;
  }
  .ctc-meth-stat.svelte-19y1n4 {
    font-size: 11.5px;
  }
  .ctc-why-grid.svelte-19y1n4 {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .ctc-why-grid.svelte-19y1n4 > :where(.svelte-19y1n4):nth-child(3) {
    max-width: none;
  }
  .ctc-form-card.svelte-19y1n4 {
    padding: 20px 16px;
    border-radius: 20px;
  }
  .ctc-cta-actions.svelte-19y1n4 {
    flex-direction: column;
    gap: 10px;
  }
  .ctc-purposes.svelte-19y1n4 {
    gap: 6px;
  }
  .ctc-purpose.svelte-19y1n4 {
    padding: 8px 14px;
    font-size: 12.5px;
  }
}

/*contact us ends here*/


/*Call Girls Page style starts here*/

.cg-hero.callgirls-service {
  position: relative;
  overflow: hidden;
  padding: 48px 0 40px;
  background: radial-gradient(
      1100px 700px at 85% 10%,
      rgba(233, 30, 140, 0.14) 0%,
      transparent 55%
    ),
    radial-gradient(
      900px 600px at 10% 90%,
      rgba(245, 158, 11, 0.12) 0%,
      transparent 55%
    ),
    radial-gradient(
      700px 500px at 55% 55%,
      rgba(245, 196, 107, 0.1) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #fff8fc, #fdf1f8, #fff4f9);
  border-bottom: 1px solid rgba(233, 30, 140, 0.1);
}
.cg-hero.callgirls-service:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  background-image: linear-gradient(
      to right,
      rgba(233, 30, 140, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(233, 30, 140, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(
    ellipse 70% 70% at 50% 50%,
    #000 30%,
    transparent 90%
  );
  mask-image: radial-gradient(
    ellipse 70% 70% at 50% 50%,
    #000 30%,
    transparent 90%
  );
}
.cg-hero.callgirls-service > .grid-container:where(.callgirls-service) {
  position: relative;
  z-index: 1;
}
.cg-hero-orb.callgirls-service {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  pointer-events: none;
}
.cg-hero-orb-1.callgirls-service {
  top: -100px;
  right: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(233, 30, 140, 0.3), transparent 70%);
}
.cg-hero-orb-2.callgirls-service {
  top: auto;
  bottom: -120px;
  left: -100px;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.22),
    transparent 70%
  );
  contain: strict;
}
.cg-hero-orb-3.callgirls-service {
  top: 40%;
  right: 40%;
  width: 260px;
  height: 260px;
  background: radial-gradient(
    circle,
    rgba(245, 196, 107, 0.3),
    transparent 70%
  );
  opacity: 0.35;
}
.cg-crumb.callgirls-service {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: #fffc;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 14px #2d12480f;
  margin-bottom: 20px;
}
.cg-crumb.callgirls-service a:where(.callgirls-service) {
  color: var(--rose);
  text-decoration: none;
  font-weight: 500;
}
.cg-crumb.callgirls-service a:where(.callgirls-service):hover {
  text-decoration: underline;
}
.cg-crumb.callgirls-service span:where(.callgirls-service):last-child {
  color: var(--heading);
  font-weight: 500;
}
.cg-crumb.callgirls-service svg:where(.callgirls-service) {
  color: var(--text-dim);
}
.cg-hero-inner.callgirls-service {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 48px;
  align-items: center;
}
.cg-hero-text.callgirls-service {
  max-width: 620px;
}
.cg-quick-answer.callgirls-service {
  margin: 16px 0 20px;
  padding: 14px 18px;
  border-left: 3px solid var(--rose);
  background: #e91e8c0f;
  border-radius: 8px;
}
.cg-qa-q.callgirls-service {
  margin: 0 0 4px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--rose);
}
.cg-qa-a.callgirls-service {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}
.cg-gallery.callgirls-service {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  gap: 12px;
  max-width: 360px;
  margin-left: auto;
}
.cg-gal-ring.callgirls-service {
  position: absolute;
  top: -20px;
  right: -20px;
  bottom: -20px;
  left: -20px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.18),
    transparent 65%
  );
  filter: blur(40px);
  z-index: -1;
}
.cg-gal-tile.callgirls-service {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 4px solid #fff;
  box-shadow: 0 18px 40px #2d124833, 0 0 0 1px #e91e8c14;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  background: #eee;
}
.cg-gal-tile.callgirls-service img:where(.callgirls-service) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}
.cg-gal-tile.callgirls-service:hover {
  transform: translateY(-6px) rotate(0) scale(1.02) !important;
}
.cg-gal-tile.callgirls-service:hover img:where(.callgirls-service) {
  transform: scale(1.06);
}
.cg-gal-grad.callgirls-service {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    180deg,
    transparent 55%,
    rgba(26, 18, 46, 0.7) 100%
  );
}
.cg-gal-caption.callgirls-service {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  color: #fff;
  z-index: 1;
}
.cg-gal-name.callgirls-service {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.cg-gal-loc.callgirls-service {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 10.5px;
  color: #ffffffe6;
  font-weight: 600;
  margin-top: 2px;
}
.cg-gal-verify.callgirls-service {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px #10b98166;
}
.cg-gal-tile.callgirls-service {
  aspect-ratio: 4/5;
}
.cg-gal-tile-0.callgirls-service {
  transform: rotate(-2deg);
  z-index: 3;
}
.cg-gal-tile-1.callgirls-service {
  transform: rotate(2deg) translateY(-4px);
  z-index: 2;
}
.cg-gal-tile-2.callgirls-service {
  transform: rotate(2deg) translateY(4px);
}
.cg-gal-tile-3.callgirls-service {
  transform: rotate(-2deg) translateY(-2px);
}
.cg-gal-badge.callgirls-service {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #fffffff2;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  box-shadow: 0 14px 36px #2d12482e, 0 0 0 1px #2d12480a;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 5;
  animation: svelte-194cbso-cgFloat 4s ease-in-out infinite;
}
@keyframes svelte-194cbso-cgFloat {
  0%,
  to {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.cg-gal-badge-icon.callgirls-service {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #f5c46b40, #f59e0b1f);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cg-gal-badge-dot.callgirls-service {
  width: 10px;
  height: 10px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 3px #10b98138;
  animation: svelte-194cbso-cgPulse 1.5s ease-in-out infinite;
}
.cg-gal-badge-v.callgirls-service {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--heading);
  line-height: 1;
}
.cg-gal-badge-l.callgirls-service {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}
.cg-gal-badge-top.callgirls-service {
  top: 4%;
  left: -10%;
}
.cg-gal-badge-bot.callgirls-service {
  bottom: 8%;
  right: -8%;
  animation-delay: -1.5s;
}
.cg-chip.callgirls-service {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 12px;
  margin-bottom: 18px;
  background: #ffffffd9;
  border: 1px solid rgba(245, 196, 107, 0.4);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: #b45309;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 18px #f59e0b26;
}
.cg-chip-dot.callgirls-service {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px #10b98133;
  animation: svelte-194cbso-cgPulse 1.6s ease-in-out infinite;
}
@keyframes svelte-194cbso-cgPulse {
  0%,
  to {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.8);
    opacity: 0.6;
  }
}
.cg-h1.callgirls-service {
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--heading);
  margin: 0 0 16px;
}
.cg-grad.callgirls-service {
  background: linear-gradient(
    120deg,
    #ff6b9d,
    var(--rose) 50%,
    var(--rose-dark)
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: svelte-194cbso-cgGradShift 6s linear infinite;
}
@keyframes svelte-194cbso-cgGradShift {
  0% {
    background-position: 0% center;
  }
  to {
    background-position: 200% center;
  }
}
.cg-desc.callgirls-service {
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.75;
  max-width: 620px;
  margin: 0 0 28px;
}
.cg-meta.callgirls-service {
  display: inline-flex;
  align-items: stretch;
  padding: 10px 6px;
  background: #fffc;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 36px #e91e8c14, 0 0 0 1px #2d124808;
  flex-wrap: wrap;
}
.cg-meta-item.callgirls-service {
  padding: 6px 22px;
  text-align: center;
  min-width: 80px;
}
.cg-meta-val.callgirls-service {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 24px;
}
.cg-live-dot.callgirls-service {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 3px #10b98133;
  animation: svelte-194cbso-cgPulse 1.5s ease-in-out infinite;
  -webkit-text-fill-color: #10b981;
}
.cg-meta-lbl.callgirls-service {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  margin-top: 6px;
}
.cg-meta-sep.callgirls-service {
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(45, 18, 72, 0.12),
    transparent
  );
}
.cg-body.callgirls-service {
  position: relative;
  overflow: hidden;
  padding: 40px 0 80px;
  background: radial-gradient(
      800px 500px at 0% 20%,
      rgba(233, 30, 140, 0.05) 0%,
      transparent 55%
    ),
    radial-gradient(
      800px 500px at 100% 80%,
      rgba(245, 158, 11, 0.05) 0%,
      transparent 55%
    ),
    linear-gradient(180deg, #fdf6fb, #fff, #fdf4fb);
}
.filter-pill.callgirls-service {
  position: sticky;
  top: 12px;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) auto minmax(160px, 1fr) auto minmax(
      160px,
      1fr
    ) auto;
  align-items: center;
  margin-bottom: 18px;
  padding: 8px 8px 8px 18px;
  background: #fff;
  border: 1px solid rgba(45, 18, 72, 0.06);
  border-radius: 60px;
  box-shadow: 0 14px 40px #e91e8c1a, 0 0 0 1px #ffffff80 inset, inset 0 1px #fff;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.filter-pill.callgirls-service:focus-within,
.filter-pill.callgirls-service:hover {
  box-shadow: 0 18px 50px #e91e8c29, 0 0 0 1px #ffffff80 inset;
  border-color: #e91e8c2e;
}
.filter-pill.has-filter.callgirls-service {
  border-color: #e91e8c2e;
}
.seg.callgirls-service {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  cursor: pointer;
  border-radius: 50px;
  transition: background 0.25s ease;
  min-width: 0;
}
.seg.callgirls-service:hover {
  background: #e91e8c0d;
}
.seg-active.callgirls-service {
  background: linear-gradient(135deg, #e91e8c1a, #e91e8c0a);
}
.seg-active.callgirls-service:hover {
  background: linear-gradient(135deg, #e91e8c24, #e91e8c0f);
}
.seg-ic.callgirls-service {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e91e8c1a, #f43f5e0f);
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.seg-active.callgirls-service .seg-ic:where(.callgirls-service) {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  box-shadow: 0 6px 16px #e91e8c59;
}
.seg.callgirls-service:hover .seg-ic:where(.callgirls-service) {
  transform: rotate(-6deg) scale(1.06);
}
.seg-body.callgirls-service {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
  flex: 1;
}
.seg-lbl.callgirls-service {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1;
}
.seg-active.callgirls-service .seg-lbl:where(.callgirls-service) {
  color: var(--rose);
}
.seg-input.callgirls-service,
.seg-select.callgirls-service {
  border: none;
  outline: none;
  background: transparent;
  padding: 0;
  margin: 0;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--heading);
  line-height: 1.3;
  letter-spacing: -0.01em;
  cursor: pointer;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  min-width: 0;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.seg-input.callgirls-service {
  cursor: text;
}
.seg-input.callgirls-service::placeholder {
  color: var(--text-dim);
  font-weight: 500;
}
.seg-active.callgirls-service .seg-input:where(.callgirls-service) {
  color: var(--rose);
}
.seg-val.callgirls-service {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}
.seg-chev.callgirls-service {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.25s ease;
}
.seg.callgirls-service:hover .seg-chev:where(.callgirls-service) {
  transform: translateY(2px);
  color: var(--rose);
}
.seg-active.callgirls-service .seg-chev:where(.callgirls-service) {
  color: var(--rose);
}
.seg-x.callgirls-service {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: none;
  background: #2d124814;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.seg-x.callgirls-service:hover {
  background: var(--rose);
  color: #fff;
  transform: scale(1.1);
}
.seg-divider.callgirls-service {
  width: 1px;
  height: 36px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(45, 18, 72, 0.12),
    transparent
  );
  align-self: center;
}
.seg-as-btn.callgirls-service {
  width: 100%;
  border: none;
  background: transparent;
  font-family: inherit;
  text-align: left;
  color: inherit;
}
.seg-as-btn.seg-open.callgirls-service .seg-chev:where(.callgirls-service) {
  transform: rotate(180deg);
  color: var(--rose);
}
.seg-text.callgirls-service {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  color: var(--heading);
  letter-spacing: -0.01em;
}
.seg-active.callgirls-service .seg-text:where(.callgirls-service) {
  color: var(--rose);
}
.seg-drop-wrap.callgirls-service {
  position: relative;
  min-width: 0;
}
.seg-drop.callgirls-service {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  right: 0;
  min-width: 240px;
  z-index: 100;
  padding: 10px;
  background: #fffffffa;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  box-shadow: 0 24px 60px #2d12482e, 0 0 0 1px #e91e8c0f, inset 0 1px #fff;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  animation: svelte-194cbso-dropIn 0.22s cubic-bezier(0.22, 1, 0.36, 1);
  max-height: 360px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@keyframes svelte-194cbso-dropIn {
  0% {
    opacity: 0;
    transform: translateY(-6px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.seg-drop.callgirls-service:before {
  content: "";
  position: absolute;
  top: -7px;
  left: 28px;
  width: 14px;
  height: 14px;
  background: #fffffffa;
  border-left: 1px solid rgba(233, 30, 140, 0.06);
  border-top: 1px solid rgba(255, 255, 255, 0.95);
  transform: rotate(45deg);
  border-top-left-radius: 4px;
}
.seg-drop-head.callgirls-service {
  padding: 8px 12px 10px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px dashed rgba(45, 18, 72, 0.1);
  margin-bottom: 6px;
}
.seg-drop-list.callgirls-service {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-y: auto;
  max-height: 280px;
}
.seg-drop-list.callgirls-service::-webkit-scrollbar-thumb {
  background: #e91e8c4d;
  border-radius: 3px;
}
.drop-opt.callgirls-service {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 12px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--heading);
  cursor: pointer;
  text-align: left;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.drop-opt.callgirls-service:hover {
  background: #e91e8c0f;
  color: var(--rose);
}
.drop-opt.is-selected.callgirls-service {
  background: linear-gradient(135deg, #e91e8c1f, #e91e8c0a);
  border-color: #e91e8c38;
  color: var(--rose);
}
.opt-ic.callgirls-service {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: #e91e8c14;
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
}
.drop-opt.callgirls-service:hover .opt-ic:where(.callgirls-service),
.drop-opt.is-selected.callgirls-service .opt-ic:where(.callgirls-service) {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  box-shadow: 0 4px 12px #e91e8c4d;
}
.opt-name.callgirls-service {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.opt-count.callgirls-service {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  background: #2d12480f;
  padding: 2px 9px;
  border-radius: 50px;
  flex-shrink: 0;
}
.drop-opt.callgirls-service:hover .opt-count:where(.callgirls-service),
.drop-opt.is-selected.callgirls-service .opt-count:where(.callgirls-service) {
  background: #e91e8c26;
  color: var(--rose);
}
.opt-check.callgirls-service {
  color: var(--rose);
  flex-shrink: 0;
}
.filter-btn.callgirls-service {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 22px;
  border: none;
  border-radius: 50px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-left: 8px;
  white-space: nowrap;
}
.filter-btn-search.callgirls-service {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  color: #fff;
  box-shadow: 0 8px 22px #e91e8c59, inset 0 1px #ffffff4d;
  cursor: default;
}
.filter-btn-clear.callgirls-service {
  background: linear-gradient(135deg, #f43f5e, #e11d48);
  color: #fff;
  box-shadow: 0 8px 22px #e53e3e59, inset 0 1px #ffffff4d;
}
.filter-btn-clear.callgirls-service:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px #e53e3e80;
}
.cg-pg-head.callgirls-service {
  text-align: center;
  max-width: 760px;
  margin: 44px auto 22px;
}
.cg-pg-h2.callgirls-service {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--heading, #2a0a1a);
  margin: 0 0 14px;
}
.cg-pg-h2.callgirls-service .cg-grad:where(.callgirls-service) {
  background: linear-gradient(
    135deg,
    var(--rose, #e91e8c),
    var(--gold, #f59e0b)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cg-pg-sub.callgirls-service {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-muted, #4a2870);
  margin: 0;
}
.results-bar.callgirls-service {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 18px 0 28px;
  padding: 14px 20px 14px 14px;
  background: #ffffffd9;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px #2d12480f, 0 0 0 1px #e91e8c0d;
  flex-wrap: wrap;
}
.results-count.callgirls-service {
  display: flex;
  align-items: center;
  gap: 14px;
}
.results-icon.callgirls-service {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px #e91e8c52;
  flex-shrink: 0;
}
.results-text.callgirls-service {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.results-line.callgirls-service {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.count-num.callgirls-service {
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.count-lbl.callgirls-service {
  font-size: 14px;
  color: var(--heading);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.results-sub.callgirls-service {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.results-live.callgirls-service {
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 3px #10b9812e;
  animation: svelte-194cbso-cgPulse 1.5s ease-in-out infinite;
}
.active-filters.callgirls-service {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.fchip.callgirls-service {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 6px 5px 12px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.18);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  color: var(--heading);
  box-shadow: 0 4px 12px #e91e8c0f;
}
.fchip-k.callgirls-service {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose);
}
.fchip-v.callgirls-service {
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.fchip-x.callgirls-service {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: #e53e3e1a;
  border: none;
  border-radius: 50%;
  color: #e53e3e;
  cursor: pointer;
  transition: all 0.2s ease;
}
.fchip-x.callgirls-service:hover {
  background: #e53e3e;
  color: #fff;
  transform: scale(1.1);
}
.profiles-grid.callgirls-service {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.cg-grid-intro.callgirls-service {
  margin: 40px 0 0;
  max-width: none;
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.85;
  text-align: center;
}
.cg-grid-intro.callgirls-service strong:where(.callgirls-service) {
  color: var(--text);
  font-weight: 700;
}
.cg-empty.callgirls-service {
  text-align: center;
  max-width: 540px;
  margin: 60px auto;
  padding: 40px 28px;
  background: #fffc;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 40px #2d124814;
}
.cg-empty-visual.callgirls-service {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 0 auto 24px;
}
.cg-empty-ring.callgirls-service {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  border: 2px dashed rgba(233, 30, 140, 0.3);
  animation: svelte-194cbso-cgSpin 14s linear infinite;
}
.cg-empty-icon.callgirls-service {
  position: absolute;
  top: 12px;
  right: 12px;
  bottom: 12px;
  left: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e91e8c26, #f43f5e14);
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2px #fffc;
}
.cg-empty.callgirls-service h3:where(.callgirls-service) {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--heading);
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.cg-empty.callgirls-service p:where(.callgirls-service) {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 24px;
}
.cg-empty-actions.callgirls-service {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.cg-empty-cta.callgirls-service {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 24px #e91e8c59;
  font-family: inherit;
}
.cg-empty-cta.callgirls-service:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px #e91e8c80;
}
.cg-empty-sec.callgirls-service {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 22px;
  background: #fff;
  border: 1.5px solid rgba(233, 30, 140, 0.2);
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--heading);
  text-decoration: none;
  transition: all 0.3s ease;
}
.cg-empty-sec.callgirls-service:hover {
  border-color: var(--rose);
  color: var(--rose);
  transform: translateY(-2px);
}
.cg-info.callgirls-service {
  position: relative;
  padding: 70px 0;
  border-top: 1px solid rgba(233, 30, 140, 0.06);
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}
.cg-benefits-info.callgirls-service {
  background: linear-gradient(180deg, #fff4f8, #ffe8f1);
}
.cg-cats-info.callgirls-service {
  background: linear-gradient(180deg, #fffaef, #fff1d6);
}
.cg-areas-info.callgirls-service {
  background: linear-gradient(180deg, #edfaf2, #daf3e6);
}
.cg-strat-info.callgirls-service {
  background: linear-gradient(180deg, #fff2ec, #ffe1d4);
}
.cg-types-info.callgirls-service {
  background: radial-gradient(
      circle at 12% 18%,
      rgba(14, 165, 233, 0.12),
      transparent 42%
    ),
    radial-gradient(
      circle at 88% 82%,
      rgba(245, 158, 11, 0.12),
      transparent 42%
    ),
    linear-gradient(135deg, #ebf7ff, #f1faf4 52%, #fff6ec);
}
.cgt-grid.callgirls-service {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(258px, 1fr));
  gap: 18px;
}
.cgt-card.callgirls-service {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 22px 22px;
  box-shadow: var(--shadow-card);
  transition: transform 0.24s ease, box-shadow 0.24s ease,
    border-color 0.24s ease;
}
.cgt-card.callgirls-service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.cgt-blob.callgirls-service {
  position: absolute;
  top: -38px;
  right: -38px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  opacity: 0.5;
  filter: blur(6px);
  pointer-events: none;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.cgt-card.callgirls-service:hover .cgt-blob:where(.callgirls-service) {
  transform: scale(1.25);
  opacity: 0.7;
}
.cgt-ic.callgirls-service {
  position: relative;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--white);
  margin-bottom: 15px;
  box-shadow: 0 6px 16px #2d124824;
}
.cgt-title.callgirls-service {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--heading);
  margin: 0 0 7px;
}
.cgt-link.callgirls-service {
  font-weight: 700;
  color: var(--rose);
  transition: color 0.2s ease;
}
.cgt-link.callgirls-service:hover {
  color: var(--rose-dark);
  text-decoration: underline;
}
.cgt-kw.callgirls-service {
  font-weight: 700;
  color: var(--rose);
}
.cgt-desc.callgirls-service {
  position: relative;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}
.cgt-badge.callgirls-service {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--rose-dark);
  background: var(--rose-subtle);
  border: 1px solid var(--border-glow);
  padding: 4px 9px;
  border-radius: 999px;
}
.cgt-rose.callgirls-service .cgt-ic:where(.callgirls-service) {
  background: linear-gradient(135deg, #ff6b9d, var(--rose));
}
.cgt-rose.callgirls-service .cgt-blob:where(.callgirls-service) {
  background: var(--rose-light);
}
.cgt-rose.callgirls-service:hover {
  border-color: var(--rose-light);
}
.cgt-gold.callgirls-service .cgt-ic:where(.callgirls-service) {
  background: linear-gradient(135deg, #fbbf24, var(--gold));
}
.cgt-gold.callgirls-service .cgt-blob:where(.callgirls-service) {
  background: #fcd34d;
}
.cgt-gold.callgirls-service:hover {
  border-color: #f5c46b;
}
.cgt-teal.callgirls-service .cgt-ic:where(.callgirls-service) {
  background: linear-gradient(135deg, #38bdf8, var(--teal));
}
.cgt-teal.callgirls-service .cgt-blob:where(.callgirls-service) {
  background: #7dd3fc;
}
.cgt-teal.callgirls-service:hover {
  border-color: #7dd3fc;
}
.cgt-coral.callgirls-service .cgt-ic:where(.callgirls-service) {
  background: linear-gradient(135deg, #ff9a76, #ff6f59);
}
.cgt-coral.callgirls-service .cgt-blob:where(.callgirls-service) {
  background: #ffb59e;
}
.cgt-coral.callgirls-service:hover {
  border-color: #ffb59e;
}
.cg-routes-info.callgirls-service {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 18% 10%, #fff0dc 0%, transparent 55%),
    radial-gradient(ellipse at 82% 85%, #fde8c8 0%, transparent 55%),
    linear-gradient(180deg, #fffaef, #fff1d6);
}
.cg-video-info.callgirls-service {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 20% 15%, #ffe2ee 0%, transparent 55%),
    radial-gradient(ellipse at 80% 88%, #ffd9ea 0%, transparent 58%),
    linear-gradient(180deg, #fff4f8, #ffe8f1);
  color: #2a0a1a;
}
.cg-test-info.callgirls-service {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 15% 10%, #ffe0d2 0%, transparent 55%),
    radial-gradient(ellipse at 85% 90%, #ffd6c6 0%, transparent 55%),
    linear-gradient(180deg, #fff2ec, #ffe1d4);
}
.cg-consult-info.callgirls-service {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 12% 12%, #fff3d8 0%, transparent 55%),
    radial-gradient(ellipse at 85% 90%, #ffe8c4 0%, transparent 58%),
    linear-gradient(180deg, #fffbf0, #fff3da);
}
.cg-ben-grid.callgirls-service {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 64px;
  row-gap: 0;
  margin-top: 56px;
  counter-reset: ben;
  padding: 8px 0 0;
}
.cg-ben-grid.callgirls-service:before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 50%;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(236, 72, 153, 0.35) 18%,
    rgba(245, 158, 11, 0.35) 82%,
    transparent 100%
  );
  transform: translate(-0.5px);
  pointer-events: none;
}
.cg-ben-card.callgirls-service {
  counter-increment: ben;
  position: relative;
  padding: 34px 8px 34px 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: grid;
  grid-template-columns: 92px auto 1fr;
  grid-template-rows: auto auto;
  grid-template-areas: "num icon title" "num text text";
  column-gap: 14px;
  row-gap: 14px;
  align-items: center;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.cg-ben-card.callgirls-service:nth-child(odd) {
  padding-right: 32px;
}
.cg-ben-card.callgirls-service:nth-child(2n) {
  padding-left: 32px;
}
.cg-ben-card.callgirls-service:before {
  content: counter(ben, decimal-leading-zero);
  grid-area: num;
  font-size: clamp(2.8rem, 4.6vw, 3.6rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.045em;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(135deg, #ec4899, #be185d 40%, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  align-self: start;
  padding-top: 6px;
  transition: filter 0.4s;
  filter: drop-shadow(0 10px 22px rgba(236, 72, 153, 0.18));
}
.cg-ben-card.callgirls-service:nth-child(2n):before {
  background: linear-gradient(135deg, #f59e0b, #d97706 40%, #ec4899);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 10px 22px rgba(245, 158, 11, 0.2));
}
.cg-ben-card.callgirls-service:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(236, 72, 153, 0.28) 20%,
    rgba(245, 158, 11, 0.28) 80%,
    transparent 100%
  );
}
.cg-ben-card.callgirls-service:nth-last-child(-n + 2):after {
  display: none;
}
.cg-ben-ic.callgirls-service {
  grid-area: icon;
  align-self: center;
  justify-self: start;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  position: relative;
  box-shadow: inset 0 1px #fffc, 0 8px 18px -6px #2d12482e;
  overflow: hidden;
  flex-shrink: 0;
}
.cg-ben-ic.callgirls-service:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    currentColor,
    transparent 60%,
    currentColor
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.6;
  pointer-events: none;
}
.cg-ben-ic.callgirls-service:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 45%;
  height: 45%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.75),
    transparent 75%
  );
  border-radius: 7px;
  pointer-events: none;
}
.cg-ben-ic.callgirls-service svg:where(.callgirls-service) {
  position: relative;
  z-index: 1;
}
.cg-ben-ic-rose.callgirls-service {
  background: linear-gradient(135deg, #fff4f8, #ffe1ec);
  color: #c2185b;
}
.cg-ben-ic-gold.callgirls-service {
  background: linear-gradient(135deg, #fff8ea, #ffeccb);
  color: #d97706;
}
.cg-ben-card.callgirls-service h3:where(.callgirls-service) {
  grid-area: title;
  font-size: clamp(1.08rem, 1.55vw, 1.22rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--heading, #2a0a1a);
  margin: 0;
  line-height: 1.3;
  align-self: center;
  transition: color 0.35s;
}
.cg-ben-card.callgirls-service p:where(.callgirls-service) {
  grid-area: text;
  font-size: 0.9375rem;
  line-height: 1.72;
  color: var(--text-muted, #4a2870);
  margin: 0;
  max-width: 56ch;
}
.cg-ben-card.callgirls-service > p:where(.callgirls-service):after {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  margin-top: 16px;
  border-radius: 2px;
  background: linear-gradient(90deg, #ec4899, #f59e0b);
  box-shadow: 0 0 10px #ec489959;
  opacity: 0.55;
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s;
}
.cg-ben-card.callgirls-service:hover {
  transform: translateY(-2px);
}
.cg-ben-card.callgirls-service:hover:before {
  filter: drop-shadow(0 14px 30px rgba(236, 72, 153, 0.32)) brightness(1.05);
}
.cg-ben-card.callgirls-service:hover > p:where(.callgirls-service):after {
  width: 72px;
  opacity: 1;
}
.cg-ben-card.callgirls-service:hover h3:where(.callgirls-service) {
  background: linear-gradient(135deg, #ec4899, #be185d 45%, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cg-ben-cta.callgirls-service {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}
.cg-ben-btn.callgirls-service {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 34px;
  background: linear-gradient(135deg, #ec4899, #be185d, #f59e0b);
  color: #fff;
  font-weight: 700;
  font-size: 0.975rem;
  letter-spacing: 0.01em;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 14px 30px -8px #ec489973, inset 0 1px #ffffff73;
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}
.cg-ben-btn.callgirls-service:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    115deg,
    transparent 40%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 60%
  );
  transform: translate(-120%);
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.cg-ben-btn.callgirls-service:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px -8px #ec48998c, inset 0 1px #ffffff80;
}
.cg-ben-btn.callgirls-service:hover:before {
  transform: translate(120%);
}
@media (max-width: 900px) {
  .cg-ben-grid.callgirls-service {
    column-gap: 32px;
  }
  .cg-ben-card.callgirls-service:nth-child(odd) {
    padding-right: 20px;
  }
  .cg-ben-card.callgirls-service:nth-child(2n) {
    padding-left: 20px;
  }
}
@media (max-width: 600px) {
  .cg-ben-grid.callgirls-service {
    grid-template-columns: 1fr;
    padding-top: 0;
    column-gap: 0;
    margin-top: 36px;
  }
  .cg-ben-grid.callgirls-service:before {
    display: none;
  }
  .cg-ben-card.callgirls-service {
    grid-template-columns: 64px auto 1fr;
    column-gap: 12px;
    row-gap: 10px;
    padding: 26px 0 !important;
  }
  .cg-ben-card.callgirls-service:before {
    font-size: 2.4rem;
    padding-top: 4px;
  }
  .cg-ben-card.callgirls-service:last-child:after {
    display: none;
  }
  .cg-ben-card.callgirls-service:nth-last-child(2):after {
    display: block;
  }
  .cg-ben-card.callgirls-service h3:where(.callgirls-service) {
    font-size: 1.05rem;
  }
  .cg-ben-ic.callgirls-service {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }
  .cg-ben-card.callgirls-service p:where(.callgirls-service) {
    font-size: 0.9rem;
  }
}
.cg-strat-tags.callgirls-service {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 36px auto 56px;
  padding: 0 0 40px;
  max-width: 920px;
}
.cg-strat-tags.callgirls-service:after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(236, 72, 153, 0.35) 30%,
    rgba(245, 158, 11, 0.35) 70%,
    transparent 100%
  );
}
.cg-strat-tags.callgirls-service:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 9px;
  height: 9px;
  background: linear-gradient(135deg, #ec4899, #f59e0b);
  transform: translate(-50%) rotate(45deg);
  border-radius: 2px;
  box-shadow: 0 0 12px #ec489959;
}
.cg-strat-tag.callgirls-service {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 11px 22px;
  background: #ffffffd9;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--heading, #2a0a1a);
  text-decoration: none;
  letter-spacing: -0.005em;
  box-shadow: 0 1px #ffffffe6 inset, 0 6px 16px -6px #2d12481a;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.3s, box-shadow 0.3s, color 0.3s;
  overflow: hidden;
  isolation: isolate;
}
.cg-strat-tag.callgirls-service:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, #ec48998c, #f59e0b8c);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.5;
  transition: opacity 0.3s;
  pointer-events: none;
}
.cg-strat-tag.callgirls-service:hover {
  transform: translateY(-3px);
  box-shadow: 0 1px #fff inset, 0 14px 26px -10px #ec48994d;
  color: #be185d;
}
.cg-strat-tag.callgirls-service:hover:before {
  opacity: 1;
}
.cg-strat-tag-active.callgirls-service {
  background: linear-gradient(135deg, #ec4899, #be185d, #f59e0b);
  color: #fff;
  box-shadow: 0 1px #ffffff73 inset, 0 12px 28px -6px #ec48997a;
}
.cg-strat-tag-active.callgirls-service:before {
  opacity: 0;
}
.cg-strat-tag-active.callgirls-service:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    115deg,
    transparent 40%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 60%
  );
  transform: translate(-120%);
  animation: svelte-194cbso-stratShine 3.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes svelte-194cbso-stratShine {
  0% {
    transform: translate(-120%);
  }
  55% {
    transform: translate(130%);
  }
  to {
    transform: translate(130%);
  }
}
.cg-strat-tag-active.callgirls-service:hover {
  transform: translateY(-3px);
  color: #fff;
}
.cg-strat-case.callgirls-service {
  position: relative;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
  padding: 48px 56px 48px 48px;
  background: radial-gradient(
      560px 280px at 0% 0%,
      rgba(236, 72, 153, 0.09),
      transparent 60%
    ),
    radial-gradient(
      560px 280px at 100% 100%,
      rgba(245, 158, 11, 0.09),
      transparent 60%
    ),
    linear-gradient(180deg, #ffffffe6, #ffffffb3);
  background-color: #fff;
  border-radius: 28px;
  box-shadow: 0 1px #fffffff2 inset, 0 40px 80px -32px #ec48992e,
    0 12px 28px #2d12480d;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.cg-strat-case.callgirls-service:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(
    135deg,
    #ec4899,
    #f59e0b 40%,
    #fff6 55%,
    #fb7185 75%,
    #ec4899
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.65;
  pointer-events: none;
}
.cg-strat-case.callgirls-service:after {
  content: "CASE · 01";
  position: absolute;
  top: 22px;
  right: 26px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: transparent;
  background: linear-gradient(135deg, #ec4899, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  padding: 5px 12px;
  border-radius: 999px;
  background-origin: border-box;
  box-shadow: inset 0 0 0 1px #ec489959;
  pointer-events: none;
}
.cg-strat-case-img.callgirls-service {
  aspect-ratio: 1;
  border-radius: 24px;
  background: linear-gradient(135deg, #ec4899, #fb7185 45%, #f59e0b);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 26px 54px -16px #ec48997a, inset 0 1px #fff6,
    inset 0 -1px #00000014;
}
.cg-strat-case-img.callgirls-service:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: radial-gradient(
      circle at 22% 22%,
      rgba(255, 255, 255, 0.35),
      transparent 55%
    ),
    radial-gradient(circle at 80% 85%, rgba(0, 0, 0, 0.12), transparent 60%);
  pointer-events: none;
}
.cg-strat-case-img.callgirls-service:after {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  bottom: 14px;
  left: 14px;
  border-radius: 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  pointer-events: none;
  box-shadow: inset 0 0 0 2px #ffffff14;
}
.cg-strat-case-logo.callgirls-service {
  font-size: 4.6rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  position: relative;
  z-index: 1;
  font-family: Playfair Display, Georgia, serif;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.18), 0 1px 0 rgba(255, 255, 255, 0.2);
}
.cg-strat-case-body.callgirls-service {
  position: relative;
  z-index: 1;
}
.cg-strat-case-body.callgirls-service h3:where(.callgirls-service) {
  font-size: clamp(1.45rem, 2.2vw, 1.75rem);
  font-weight: 800;
  color: var(--heading, #2a0a1a);
  margin: 0 0 6px;
  letter-spacing: -0.02em;
  position: relative;
  padding-left: 18px;
}
.cg-strat-case-body.callgirls-service h3:where(.callgirls-service):before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, #ec4899, #f59e0b);
  box-shadow: 0 0 12px #ec489973;
}
.cg-strat-case-meta.callgirls-service {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 10px;
  background: linear-gradient(135deg, #ec489914, #f59e0b14);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted, #4a2870);
  letter-spacing: 0.02em;
  vertical-align: middle;
  box-shadow: inset 0 0 0 1px #ec48992e;
}
.cg-strat-case-who.callgirls-service {
  font-size: 1rem;
  font-style: italic;
  color: var(--text-muted, #4a2870);
  margin: 4px 0 22px 18px;
  line-height: 1.55;
  position: relative;
}
.cg-strat-case-who.callgirls-service:before {
  content: "";
  position: absolute;
  left: -18px;
  top: 50%;
  width: 14px;
  height: 1px;
  background: linear-gradient(90deg, #ec4899, transparent);
}
.cg-strat-case-scope.callgirls-service,
.cg-strat-case-result.callgirls-service {
  position: relative;
  font-size: 0.96rem;
  line-height: 1.72;
  color: var(--heading, #2a0a1a);
  margin: 0 0 18px;
  padding: 16px 20px 16px 22px;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffffb3, #fff6);
}
.cg-strat-case-scope.callgirls-service:before,
.cg-strat-case-result.callgirls-service:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, #ec489947, #f59e0b47);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.cg-strat-case-result.callgirls-service {
  margin-bottom: 0;
  background: linear-gradient(180deg, #fef4e699, #fff9ed59);
}
.cg-strat-case-result.callgirls-service:before {
  background: linear-gradient(135deg, #f59e0b59, #ec489947);
}
.cg-strat-case-scope.callgirls-service b:where(.callgirls-service),
.cg-strat-case-result.callgirls-service b:where(.callgirls-service) {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  margin-right: 8px;
  background: linear-gradient(135deg, #ec4899, #be185d);
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 6px 14px -4px #ec489966, inset 0 1px #fff6;
  vertical-align: middle;
}
.cg-strat-case-result.callgirls-service b:where(.callgirls-service) {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 6px 14px -4px #f59e0b73, inset 0 1px #fff6;
}
.cg-routes-bg.callgirls-service {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden;
}
.cg-routes-mesh.callgirls-service {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
}
.cg-routes-orb.callgirls-service {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  will-change: transform;
}
.cg-routes-orb-1.callgirls-service {
  width: 360px;
  height: 360px;
  top: -80px;
  left: -60px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.35),
    transparent 70%
  );
  animation: svelte-194cbso-cgRouteOrbA 18s ease-in-out infinite;
}
.cg-routes-orb-2.callgirls-service {
  width: 420px;
  height: 420px;
  bottom: -120px;
  right: -80px;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.32),
    transparent 70%
  );
  animation: svelte-194cbso-cgRouteOrbB 22s ease-in-out infinite;
}
.cg-routes-orb-3.callgirls-service {
  width: 300px;
  height: 300px;
  top: 40%;
  left: 45%;
  background: radial-gradient(
    circle,
    rgba(14, 165, 233, 0.22),
    transparent 70%
  );
  animation: svelte-194cbso-cgRouteOrbC 26s ease-in-out infinite;
}
@keyframes svelte-194cbso-cgRouteOrbA {
  0%,
  to {
    transform: translate(0) scale(1);
  }
  50% {
    transform: translate(40px, 30px) scale(1.08);
  }
}
@keyframes svelte-194cbso-cgRouteOrbB {
  0%,
  to {
    transform: translate(0) scale(1);
  }
  50% {
    transform: translate(-30px, -40px) scale(1.1);
  }
}
@keyframes svelte-194cbso-cgRouteOrbC {
  0%,
  to {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-48%, -54%) scale(1.12);
  }
}
.cg-routes-info.callgirls-service .grid-container:where(.callgirls-service) {
  position: relative;
  z-index: 2;
}
.cg-routes-grid.callgirls-service {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: 52px;
  perspective: 1400px;
}
.cg-route.callgirls-service {
  position: relative;
  padding: 40px 36px 36px;
  border-radius: 28px;
  background: linear-gradient(150deg, #ffffffeb, #fff8fcc7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 1px #ffffffe6 inset, 0 -1px #e91e8c0f inset,
    0 22px 50px -18px #c2185b38, 0 6px 18px #2d12480d;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.6s;
  animation: svelte-194cbso-cgRouteFloat 9s ease-in-out infinite;
}
.cg-route-a.callgirls-service {
  animation-delay: -1.5s;
}
.cg-route-b.callgirls-service {
  animation-delay: -4.5s;
}
@keyframes svelte-194cbso-cgRouteFloat {
  0%,
  to {
    transform: translateY(0) rotateX(0) rotateY(0);
  }
  50% {
    transform: translateY(-8px) rotateX(0.4deg) rotateY(-0.4deg);
  }
}
.cg-route.callgirls-service:hover {
  transform: translateY(-10px) rotateX(2deg) rotateY(-1.5deg);
  box-shadow: 0 1px #ffffffe6 inset, 0 -1px #e91e8c14 inset,
    0 38px 70px -18px #c2185b52, 0 10px 24px #2d124814;
}
.cg-route-b.callgirls-service:hover {
  transform: translateY(-10px) rotateX(2deg) rotateY(1.5deg);
}
.cg-route-facet.callgirls-service {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(
    135deg,
    rgba(233, 30, 140, 0.16) 0%,
    rgba(251, 113, 133, 0.1) 40%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
  clip-path: polygon(0 0, 100% 0, 100% 32%, 0 100%);
}
.cg-route-b.callgirls-service .cg-route-facet:where(.callgirls-service) {
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.2) 0%,
    rgba(233, 30, 140, 0.14) 45%,
    transparent 72%
  );
}
.cg-route-edge.callgirls-service {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 28px;
  padding: 1px;
  background: linear-gradient(135deg, #ffffffe6, #e91e8c2e 45%, #f59e0b38);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}
.cg-route-b.callgirls-service .cg-route-edge:where(.callgirls-service) {
  background: linear-gradient(135deg, #fffffff2, #f59e0b59 45%, #e91e8c59);
}
.cg-route-shimmer.callgirls-service {
  position: absolute;
  top: -50%;
  left: -70%;
  width: 60%;
  height: 200%;
  background: linear-gradient(
    115deg,
    transparent 35%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 65%
  );
  transform: rotate(8deg);
  pointer-events: none;
  z-index: 2;
  animation: svelte-194cbso-cgRouteShimmer 6s ease-in-out infinite;
}
.cg-route-b.callgirls-service .cg-route-shimmer:where(.callgirls-service) {
  animation-delay: -3s;
}
@keyframes svelte-194cbso-cgRouteShimmer {
  0% {
    transform: translate(0) rotate(8deg);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  60% {
    transform: translate(280%) rotate(8deg);
    opacity: 0;
  }
  to {
    transform: translate(280%) rotate(8deg);
    opacity: 0;
  }
}
.cg-route.callgirls-service
  > :where(.callgirls-service):not(.cg-route-facet):not(.cg-route-shimmer):not(
    .cg-route-edge
  ) {
  position: relative;
  z-index: 3;
}
.cg-route-featured.callgirls-service {
  background: linear-gradient(150deg, #fffbf5f0, #fde8f2d1);
  box-shadow: 0 1px #fffffff2 inset, 0 -1px #f59e0b1a inset,
    0 30px 60px -16px #e91e8c47, 0 8px 22px #f59e0b1a;
}
.cg-route-ribbon.callgirls-service {
  position: absolute;
  top: -13px;
    right: -48px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px 8px 14px;
    background: linear-gradient(135deg, #e91e8c, #f59e0b);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 999px 4px 4px 999px;
    box-shadow: 0 10px 24px #e91e8c61, 0 2px #c2185b66 inset;
    z-index: 4;
    overflow: hidden;
    transform: rotate(0deg);
}
.cg-route-ribbon.callgirls-service:after {
  content: "";
  position: absolute;
  bottom: -8px;
  right: 2px;
  width: 10px;
  height: 10px;
  background: #a8156f;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.cg-route-ribbon-crown.callgirls-service {
  flex-shrink: 0;
  opacity: 0.95;
}
.cg-route-ribbon-shine.callgirls-service {
  position: absolute;
  top: 0;
  left: -50%;
  width: 30%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.55),
    transparent
  );
  animation: svelte-194cbso-cgRibbonShine 3.5s ease-in-out infinite;
}
@keyframes svelte-194cbso-cgRibbonShine {
  0%,
  to {
    transform: translate(0);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  70% {
    transform: translate(420%);
    opacity: 0;
  }
}
.cg-route-head.callgirls-service {
  display: flex;
  align-items: center;
  gap: 18px;
}
.cg-route-title.callgirls-service {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cg-route-label.callgirls-service {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c2185b;
  opacity: 0.75;
}
.cg-route-label-b.callgirls-service {
  color: #b45309;
}
.cg-route-mono.callgirls-service {
  position: relative;
  width: 62px;
  height: 62px;
  flex-shrink: 0;
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  font-family: Playfair Display, Georgia, serif;
}
.cg-route-mono-shadow.callgirls-service,
.cg-route-mono-letter.callgirls-service {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.cg-route-mono-shadow.callgirls-service {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(233, 30, 140, 0.28);
  transform: translate(4px, 4px);
}
.cg-route-mono-letter.callgirls-service {
  background: linear-gradient(145deg, #f59e0b, #e91e8c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 10px rgba(233, 30, 140, 0.25));
}
.cg-route-mono-b.callgirls-service .cg-route-mono-letter:where(.callgirls-service) {
  background: linear-gradient(145deg, #e91e8c, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
}
.cg-route-mono-b.callgirls-service .cg-route-mono-shadow:where(.callgirls-service) {
  -webkit-text-stroke: 1.5px rgba(245, 158, 11, 0.32);
}
.cg-route-mono-ring.callgirls-service {
  position: absolute;
  top: -6px;
  right: -6px;
  bottom: -6px;
  left: -6px;
  border-radius: 18px;
  border: 1.5px dashed rgba(233, 30, 140, 0.25);
  animation: svelte-194cbso-cgMonoRing 14s linear infinite;
}
.cg-route-mono-b.callgirls-service .cg-route-mono-ring:where(.callgirls-service) {
  border-color: #f59e0b59;
}
@keyframes svelte-194cbso-cgMonoRing {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.cg-route.callgirls-service h3:where(.callgirls-service) {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #2a0a1a;
  margin: 0;
}
.cg-route-plus.callgirls-service {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #c2185b;
  background: linear-gradient(135deg, #fde8f2cc, #fff1e8cc);
  border: 1px solid rgba(233, 30, 140, 0.18);
  border-radius: 999px;
  margin: 0;
  align-self: flex-start;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.cg-route-plus-chip.callgirls-service {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #e91e8c, #f59e0b);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: 0 3px 8px #e91e8c52;
}
.cg-route-list.callgirls-service {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cg-route-list.callgirls-service li:where(.callgirls-service) {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #2a0a1a;
}
.cg-route-tick.callgirls-service {
  position: relative;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: radial-gradient(circle at 32% 28%, #ffd2e3, #e91e8c 55%, #c2185b);
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  margin-top: 2px;
  filter: drop-shadow(0 3px 6px rgba(233, 30, 140, 0.32));
}
.cg-route-tick.callgirls-service:before {
  content: "";
  position: absolute;
  top: 14%;
  left: 22%;
  width: 22%;
  height: 14%;
  background: #ffffffbf;
  border-radius: 50%;
  filter: blur(0.5px);
}
.cg-route-tick-b.callgirls-service {
  background: radial-gradient(circle at 32% 28%, #ffe7b8, #f59e0b 52%, #b45309);
  filter: drop-shadow(0 3px 6px rgba(245, 158, 11, 0.42));
}
.cg-route-cta.callgirls-service {
  position: relative;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s,
    background 0.3s;
  margin-top: 8px;
  overflow: hidden;
}
.cg-route-cta-label.callgirls-service {
  position: relative;
  z-index: 2;
}
.cg-route-cta-arrow.callgirls-service {
  position: relative;
  z-index: 2;
  display: inline-flex;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.cg-route-cta.callgirls-service:hover .cg-route-cta-arrow:where(.callgirls-service) {
  transform: translate(4px);
}
.cg-route-cta-outline.callgirls-service {
  background: #ffffffb3;
  color: #c2185b;
  border: 2px solid rgba(233, 30, 140, 0.45);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px #ffffffe6 inset, 0 6px 16px #e91e8c1a;
}
.cg-route-cta-outline.callgirls-service:hover {
  background: linear-gradient(135deg, #e91e8c, #c2185b);
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 30px #e91e8c57;
}
.cg-route-cta-solid.callgirls-service {
  background: linear-gradient(135deg, #e91e8c, #f59e0b);
  color: #fff;
  border: 2px solid transparent;
  box-shadow: 0 1px #fff6 inset, 0 -2px #c2185b59 inset, 0 10px 24px #e91e8c61;
}
.cg-route-cta-solid.callgirls-service:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 1px #ffffff80 inset, 0 -2px #c2185b59 inset,
    0 18px 36px #e91e8c75;
}
.cg-route-cta-glow.callgirls-service {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140%;
  height: 300%;
  background: radial-gradient(
    ellipse,
    rgba(255, 255, 255, 0.4),
    transparent 60%
  );
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  animation: svelte-194cbso-cgCtaGlow 3s ease-in-out infinite;
}
@keyframes svelte-194cbso-cgCtaGlow {
  0%,
  to {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cg-route.callgirls-service,
  .cg-routes-orb.callgirls-service,
  .cg-route-shimmer.callgirls-service,
  .cg-route-mono-ring.callgirls-service,
  .cg-route-ribbon-shine.callgirls-service,
  .cg-route-cta-glow.callgirls-service {
    animation: none !important;
  }
}
.cg-video-bg.callgirls-service {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden;
}
.cg-video-orb.callgirls-service {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.55;
}
.cg-video-orb-1.callgirls-service {
  width: 460px;
  height: 460px;
  top: -140px;
  left: -120px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.4), transparent 70%);
  animation: svelte-194cbso-cgVideoOrbA 22s ease-in-out infinite;
}
.cg-video-orb-2.callgirls-service {
  width: 480px;
  height: 480px;
  bottom: -160px;
  right: -100px;
  background: radial-gradient(circle, rgba(233, 30, 140, 0.3), transparent 70%);
  animation: svelte-194cbso-cgVideoOrbB 26s ease-in-out infinite;
}
.cg-video-orb-3.callgirls-service {
  width: 340px;
  height: 340px;
  top: 40%;
  left: 48%;
  background: radial-gradient(
    circle,
    rgba(14, 165, 233, 0.18),
    transparent 70%
  );
  animation: svelte-194cbso-cgVideoOrbC 30s ease-in-out infinite;
}
@keyframes svelte-194cbso-cgVideoOrbA {
  0%,
  to {
    transform: translate(0);
  }
  50% {
    transform: translate(35px, 22px);
  }
}
@keyframes svelte-194cbso-cgVideoOrbB {
  0%,
  to {
    transform: translate(0);
  }
  50% {
    transform: translate(-30px, -26px);
  }
}
@keyframes svelte-194cbso-cgVideoOrbC {
  0%,
  to {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-48%, -52%) scale(1.08);
  }
}
.cg-video-info.callgirls-service .grid-container:where(.callgirls-service) {
  position: relative;
  z-index: 2;
}
.cg-video-info.callgirls-service .info-eyebrow-on-dark:where(.callgirls-service) {
  color: #b45309;
}
.cg-video-info.callgirls-service
  .info-eyebrow-on-dark:where(.callgirls-service)
  .info-line:where(.callgirls-service) {
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.7));
}
.cg-video-info.callgirls-service .info-h2-on-dark:where(.callgirls-service) {
  color: #2a0a1a !important;
}
.cg-video-vitrine.callgirls-service {
  position: relative;
  max-width: 1000px;
  margin: 72px auto 56px;
  padding: 0 24px;
}
.cg-video-crown.callgirls-service {
  position: absolute;
  top: -44px;
  left: 50%;
  width: 72px;
  height: 54px;
  transform: translate(-50%);
  filter: drop-shadow(0 6px 14px rgba(245, 158, 11, 0.32));
  animation: svelte-194cbso-cgCrownBob 5.5s ease-in-out infinite;
  z-index: 4;
}
@keyframes svelte-194cbso-cgCrownBob {
  0%,
  to {
    transform: translate(-50%) translateY(0) rotate(0);
  }
  50% {
    transform: translate(-50%) translateY(-6px) rotate(-2deg);
  }
}
.cg-video-sparkle.callgirls-service {
  position: absolute;
  font-size: 14px;
  color: #f59e0b;
  pointer-events: none;
  text-shadow: 0 0 10px rgba(245, 158, 11, 0.6);
  animation: svelte-194cbso-cgSparkle 3.2s ease-in-out infinite;
}
.cg-video-sparkle-1.callgirls-service {
  top: 12%;
  left: 4%;
  font-size: 18px;
  color: #e91e8c;
  animation-delay: -0.2s;
}
.cg-video-sparkle-2.callgirls-service {
  top: 6%;
  right: 12%;
  font-size: 12px;
  animation-delay: -1s;
}
.cg-video-sparkle-3.callgirls-service {
  bottom: 22%;
  left: 6%;
  font-size: 14px;
  color: #fb7185;
  animation-delay: -1.7s;
}
.cg-video-sparkle-4.callgirls-service {
  top: 42%;
  right: 3%;
  font-size: 16px;
  color: #f59e0b;
  animation-delay: -0.6s;
}
.cg-video-sparkle-5.callgirls-service {
  bottom: 10%;
  right: 18%;
  font-size: 20px;
  color: #e91e8c;
  animation-delay: -2.2s;
}
.cg-video-sparkle-6.callgirls-service {
  top: 58%;
  left: 2%;
  font-size: 11px;
  animation-delay: -2.8s;
}
@keyframes svelte-194cbso-cgSparkle {
  0%,
  to {
    opacity: 0.2;
    transform: scale(0.7) rotate(0);
  }
  50% {
    opacity: 1;
    transform: scale(1.1) rotate(180deg);
  }
}
.cg-video-frame.callgirls-service {
  position: relative;
  padding: 26px;
  background: transparent;
  filter: drop-shadow(0 22px 42px rgba(194, 24, 91, 0.22))
    drop-shadow(0 10px 18px rgba(245, 158, 11, 0.1));
  animation: svelte-194cbso-cgVitrineFloat 8s ease-in-out infinite;
}
@keyframes svelte-194cbso-cgVitrineFloat {
  0%,
  to {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.cg-video-gem-bg.callgirls-service {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.cg-video-glint.callgirls-service {
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  filter: blur(14px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 3;
}
.cg-video-glint-tl.callgirls-service {
  top: 18px;
  left: 18px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.6), transparent 70%);
  animation: svelte-194cbso-cgGlint 4s ease-in-out infinite;
}
.cg-video-glint-tr.callgirls-service {
  top: 18px;
  right: 18px;
  background: radial-gradient(circle, rgba(233, 30, 140, 0.5), transparent 70%);
  animation: svelte-194cbso-cgGlint 4s ease-in-out infinite -1s;
}
.cg-video-glint-bl.callgirls-service {
  bottom: 18px;
  left: 18px;
  background: radial-gradient(
    circle,
    rgba(251, 113, 133, 0.5),
    transparent 70%
  );
  animation: svelte-194cbso-cgGlint 4s ease-in-out infinite -2s;
}
.cg-video-glint-br.callgirls-service {
  bottom: 18px;
  right: 18px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.5), transparent 70%);
  animation: svelte-194cbso-cgGlint 4s ease-in-out infinite -3s;
}
@keyframes svelte-194cbso-cgGlint {
  0%,
  to {
    opacity: 0.4;
    transform: scale(0.85);
  }
  50% {
    opacity: 0.95;
    transform: scale(1.15);
  }
}
.cg-video-placeholder.callgirls-service {
  position: relative;
  aspect-ratio: 16 / 9;
  background: radial-gradient(
    ellipse at 50% 42%,
    #fff8ed,
    #ffe2d4 45%,
    #fccbe0
  );
  border-radius: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 5;
  border: 0;
  box-shadow: 0 1px #ffffffd9 inset, 0 0 0 1px #f59e0b2e inset,
    0 8px 22px #c2185b1a inset;
}
.cg-video-placeholder.callgirls-service:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
      115deg,
      rgba(255, 255, 255, 0.45) 0%,
      transparent 40%
    ),
    linear-gradient(-115deg, rgba(255, 255, 255, 0.3) 0%, transparent 35%);
  pointer-events: none;
}
.cg-video-placeholder.callgirls-service:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(245, 158, 11, 0.035) 0 1px,
    transparent 1px 22px
  );
  pointer-events: none;
}
.cg-video-stage.callgirls-service {
  position: absolute;
  top: 15%;
  right: 15%;
  bottom: 15%;
  left: 15%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.65) 0%,
    rgba(253, 213, 228, 0.35) 50%,
    transparent 75%
  );
  filter: blur(10px);
  animation: svelte-194cbso-cgStagePulse 5s ease-in-out infinite;
}
@keyframes svelte-194cbso-cgStagePulse {
  0%,
  to {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}
.cg-video-caustic.callgirls-service {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -30%;
  width: 30%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(245, 158, 11, 0.18) 35%,
    rgba(233, 30, 140, 0.14) 50%,
    rgba(14, 165, 233, 0.12) 65%,
    transparent
  );
  filter: blur(6px);
  transform: skew(-12deg);
  animation: svelte-194cbso-cgCaustic 7s ease-in-out infinite;
}
@keyframes svelte-194cbso-cgCaustic {
  0%,
  to {
    left: -30%;
    opacity: 0;
  }
  30% {
    opacity: 0.9;
  }
  70% {
    left: 100%;
    opacity: 0;
  }
}
.cg-video-play.callgirls-service {
  position: relative;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.cg-video-play-halo.callgirls-service {
  position: absolute;
  width: 88px;
  height: 88px;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  background: #e91e8c4d;
  animation: svelte-194cbso-cgGemHalo 2.6s ease-out infinite;
}
.cg-video-play-halo-2.callgirls-service {
  background: #f59e0b59;
  animation-delay: -1.3s;
}
@keyframes svelte-194cbso-cgGemHalo {
  0% {
    transform: scale(1) rotate(0);
    opacity: 0.8;
  }
  to {
    transform: scale(1.9) rotate(12deg);
    opacity: 0;
  }
}
.cg-video-play-gem.callgirls-service {
  position: absolute;
  width: 88px;
  height: 88px;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  background: linear-gradient(
    135deg,
    #fff1d4,
    #ffd2a6,
    #f59e0b 50%,
    #e91e8c 80%,
    #c2185b
  );
  box-shadow: 0 14px 32px #e91e8c73;
}
.cg-video-play-facet-l.callgirls-service {
  position: absolute;
  width: 44px;
  height: 88px;
  left: 11px;
  clip-path: polygon(100% 0, 100% 100%, 0 50%);
  background: linear-gradient(90deg, #ffffff8c, #ffffff26);
  pointer-events: none;
}
.cg-video-play-facet-r.callgirls-service {
  position: absolute;
  width: 44px;
  height: 88px;
  right: 11px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: linear-gradient(-90deg, #c2185b40, #e91e8c0d);
  pointer-events: none;
}
.cg-video-play-highlight.callgirls-service {
  position: absolute;
  top: 16%;
  left: 42%;
  width: 16%;
  height: 10%;
  background: #ffffffbf;
  border-radius: 50%;
  filter: blur(1.5px);
  pointer-events: none;
}
.cg-video-play-icon.callgirls-service {
  position: relative;
  z-index: 2;
  color: #fff;
  filter: drop-shadow(0 2px 3px rgba(194, 24, 91, 0.45));
  margin-left: 3px;
}
.cg-video-placeholder.callgirls-service:hover
  .cg-video-play:where(.callgirls-service) {
  transform: scale(1.1) rotate(-8deg);
}
.cg-video-timebar.callgirls-service {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 4;
}
.cg-video-timebar-fill.callgirls-service {
  flex: 1;
  height: 4px;
  border-radius: 3px;
  background: #c2185b29;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px #ffffffb3 inset;
}
.cg-video-timebar-fill.callgirls-service:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--vp, 0%);
  background: linear-gradient(90deg, #e91e8c, #f59e0b);
  border-radius: 3px;
  box-shadow: 0 0 10px #f59e0b8c;
  transition: width 0.15s linear;
}
.cg-video-timebar-fill.callgirls-service:after {
  content: "";
  position: absolute;
  left: var(--vp, 0%);
  top: 50%;
  width: 12px;
  height: 12px;
  margin: -6px 0 0 -6px;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  background: linear-gradient(135deg, #fff1d4, #e91e8c);
  box-shadow: 0 0 10px #e91e8c99;
  transition: left 0.15s linear;
}
.cg-video-player.callgirls-service {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  z-index: 2;
  background: #000;
}
.cg-video-placeholder.callgirls-service:before,
.cg-video-placeholder.callgirls-service:after {
  z-index: 3;
  opacity: 0.5;
}
.cg-video-stage.callgirls-service,
.cg-video-caustic.callgirls-service {
  z-index: 3;
}
.cg-video-play.callgirls-service {
  z-index: 6;
  pointer-events: none;
}
.cg-video-nav.callgirls-service {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: #12061a8c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 24px #00000059;
  transition: background 0.25s ease, transform 0.25s ease;
  z-index: 7;
}
.cg-video-nav.callgirls-service:hover {
  background: linear-gradient(135deg, #e91e8c, #c2185b);
  border-color: #ffffffb3;
  transform: translateY(-50%) scale(1.06);
}
.cg-video-nav-prev.callgirls-service {
  left: 16px;
}
.cg-video-nav-next.callgirls-service {
  right: 16px;
}
.cg-video-title-pill.callgirls-service {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  background: #12061a8c;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 7;
}
.cg-video-title-dot.callgirls-service {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px #10b98140;
  animation: svelte-194cbso-cgPulse 1.6s ease-in-out infinite;
}
.cg-video-title-count.callgirls-service {
  padding-left: 10px;
  margin-left: 4px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 11px;
  color: #fffc;
  letter-spacing: 0.08em;
}
.cg-video-timebar.callgirls-service {
  z-index: 7;
  background: linear-gradient(180deg, transparent, rgba(18, 6, 26, 0.35));
  padding: 8px 10px;
  border-radius: 10px;
}
.cg-video-time.callgirls-service {
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}
.cg-video-fs-btn.callgirls-service {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-left: 8px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  background: #12061a73;
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.22s ease, transform 0.22s ease,
    border-color 0.22s ease;
  flex-shrink: 0;
}
.cg-video-fs-btn.callgirls-service:hover {
  background: linear-gradient(135deg, #e91e8c, #c2185b);
  border-color: #ffffffb3;
  transform: scale(1.06);
}
.cg-video-fs-btn.callgirls-service:active {
  transform: scale(0.96);
}
.cg-video-fs-btn.callgirls-service svg:where(.callgirls-service) {
  display: block;
}
.cg-video-placeholder.callgirls-service:fullscreen,
.cg-video-placeholder.callgirls-service:-webkit-full-screen {
  width: 100vw !important;
  height: 100vh !important;
  max-width: none !important;
  aspect-ratio: auto !important;
  border-radius: 0 !important;
  background: #000 !important;
}
.cg-video-placeholder.callgirls-service:fullscreen
  .cg-video-player:where(.callgirls-service),
.cg-video-placeholder.callgirls-service:-webkit-full-screen
  .cg-video-player:where(.callgirls-service) {
  object-fit: contain !important;
  border-radius: 0 !important;
}
.cg-video-placeholder.callgirls-service:fullscreen
  .cg-video-nav:where(.callgirls-service),
.cg-video-placeholder.callgirls-service:-webkit-full-screen
  .cg-video-nav:where(.callgirls-service) {
  width: 54px;
  height: 54px;
}
.cg-video-placeholder.callgirls-service:fullscreen
  .cg-video-timebar:where(.callgirls-service),
.cg-video-placeholder.callgirls-service:-webkit-full-screen
  .cg-video-timebar:where(.callgirls-service) {
  left: 24px;
  right: 24px;
  bottom: 24px;
}
.cg-video-placeholder.callgirls-service:fullscreen:before,
.cg-video-placeholder.callgirls-service:fullscreen:after,
.cg-video-placeholder.callgirls-service:-webkit-full-screen:before,
.cg-video-placeholder.callgirls-service:-webkit-full-screen:after {
  display: none;
}
.cg-video-strip.callgirls-service {
  display: flex;
  gap: 10px;
  margin: 22px auto 0;
  padding: 4px 2px 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.cg-video-strip.callgirls-service::-webkit-scrollbar {
  display: none;
}
.cg-video-thumb.callgirls-service {
  position: relative;
  flex: 0 0 auto;
  width: 150px;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid transparent;
  background: linear-gradient(135deg, #fce4f0, #ffd2a6 45%, #fbcbd9);
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  scroll-snap-align: start;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 8px 20px #2d12481f;
  isolation: isolate;
}
.cg-video-thumb.callgirls-service video:where(.callgirls-service) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  transition: transform 0.5s ease, filter 0.35s ease;
}
.cg-video-thumb.callgirls-service:hover video:where(.callgirls-service) {
  transform: scale(1.08);
  filter: saturate(1.15) brightness(1.05);
}
.cg-video-thumb-shine.callgirls-service {
  position: absolute;
  top: 0;
  left: -120%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    115deg,
    transparent 35%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 65%
  );
  transform: skew(-20deg);
  transition: left 0.85s ease;
  pointer-events: none;
  z-index: 3;
}
.cg-video-thumb.callgirls-service:hover
  .cg-video-thumb-shine:where(.callgirls-service) {
  left: 130%;
}
.cg-video-thumb-overlay.callgirls-service {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
      180deg,
      transparent 45%,
      rgba(18, 6, 26, 0.75) 100%
    ),
    linear-gradient(135deg, rgba(233, 30, 140, 0.12) 0%, transparent 40%);
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 2;
}
.cg-video-thumb-play.callgirls-service {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b, #e91e8c);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px #e91e8c80;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  z-index: 4;
}
.cg-video-thumb-play.callgirls-service svg:where(.callgirls-service) {
  margin-left: 2px;
}
.cg-video-thumb.callgirls-service:hover
  .cg-video-thumb-play:where(.callgirls-service) {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.cg-video-thumb-meta.callgirls-service {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  pointer-events: none;
  z-index: 4;
}
.cg-video-thumb-num.callgirls-service {
  display: inline-block;
  padding: 2px 7px;
  background: linear-gradient(135deg, #f59e0b, #e91e8c);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  border-radius: 4px;
  box-shadow: 0 2px 6px #e91e8c66;
  flex-shrink: 0;
}
.cg-video-thumb-title.callgirls-service {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
  flex: 1;
}
.cg-video-thumb.callgirls-service:hover {
  transform: translateY(-4px);
  border-color: #e91e8c80;
  box-shadow: 0 16px 32px #e91e8c40;
}
.cg-video-thumb-active.callgirls-service {
  border-color: #e91e8c;
  box-shadow: 0 14px 32px #e91e8c66;
}
.cg-video-thumb-active.callgirls-service:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #e91e8c38, #f59e0b24);
  pointer-events: none;
  z-index: 2;
}
.cg-video-thumb-now.callgirls-service {
  position: absolute;
  top: 6px;
  right: 6px;
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  padding: 4px 6px;
  background: #12061a99;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-radius: 6px;
  z-index: 5;
}
.cg-video-thumb-bar.callgirls-service {
  width: 2.5px;
  height: 10px;
  background: linear-gradient(180deg, #f59e0b, #e91e8c);
  border-radius: 2px;
  animation: svelte-194cbso-cgEqBar 0.9s ease-in-out infinite;
}
.cg-video-thumb-bar.callgirls-service:nth-child(2) {
  animation-delay: -0.3s;
}
.cg-video-thumb-bar.callgirls-service:nth-child(3) {
  animation-delay: -0.6s;
}
@keyframes svelte-194cbso-cgEqBar {
  0%,
  to {
    transform: scaleY(0.35);
  }
  50% {
    transform: scaleY(1);
  }
}
.cg-video-time.callgirls-service {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #b45309;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
}
.cg-video-pedestal.callgirls-service {
  display: block;
  margin: 18px auto 0;
  width: 58%;
  height: 16px;
  background: linear-gradient(
    180deg,
    rgba(245, 158, 11, 0.28) 0%,
    rgba(245, 158, 11, 0.08) 40%,
    transparent 100%
  );
  border-radius: 50%;
  filter: blur(5px);
}
@media (max-width: 780px) {
  .cg-video-vitrine.callgirls-service {
    margin: 56px auto 40px;
    padding: 0 14px;
  }
  .cg-video-crown.callgirls-service {
    width: 58px;
    height: 44px;
    top: -32px;
  }
  .cg-video-frame.callgirls-service {
    padding: 16px;
  }
  .cg-video-nav.callgirls-service {
    width: 38px;
    height: 38px;
  }
  .cg-video-nav-prev.callgirls-service {
    left: 10px;
  }
  .cg-video-nav-next.callgirls-service {
    right: 10px;
  }
  .cg-video-title-pill.callgirls-service {
    font-size: 11px;
    padding: 5px 10px;
    top: 10px;
    left: 10px;
    gap: 7px;
  }
  .cg-video-title-count.callgirls-service {
    padding-left: 7px;
    margin-left: 2px;
    font-size: 10px;
  }
  .cg-video-thumb.callgirls-service {
    width: 120px;
  }
  .cg-video-thumb-title.callgirls-service {
    font-size: 9.5px;
  }
  .cg-video-thumb-num.callgirls-service {
    font-size: 9px;
    padding: 2px 6px;
  }
  .cg-video-thumb-play.callgirls-service {
    width: 28px;
    height: 28px;
  }
  .cg-video-strip.callgirls-service {
    gap: 8px;
    margin-top: 18px;
  }
  .cg-video-glint.callgirls-service {
    width: 50px;
    height: 50px;
    top: 12px !important;
    left: 12px;
    right: auto;
    bottom: auto;
  }
  .cg-video-glint-tr.callgirls-service {
    left: auto;
    right: 12px;
  }
  .cg-video-glint-bl.callgirls-service {
    top: auto !important;
    bottom: 12px;
    left: 12px;
    right: auto;
  }
  .cg-video-glint-br.callgirls-service {
    top: auto !important;
    bottom: 12px;
    left: auto;
    right: 12px;
  }
  .cg-video-play.callgirls-service {
    width: 88px;
    height: 88px;
  }
  .cg-video-play-gem.callgirls-service,
  .cg-video-play-halo.callgirls-service {
    width: 70px;
    height: 70px;
  }
  .cg-video-play-facet-l.callgirls-service {
    width: 35px;
    height: 70px;
    left: 9px;
  }
  .cg-video-play-facet-r.callgirls-service {
    width: 35px;
    height: 70px;
    right: 9px;
  }
  .cg-video-play-icon.callgirls-service {
    width: 18px;
    height: 18px;
  }
  .cg-video-timebar.callgirls-service {
    left: 18px;
    right: 18px;
    bottom: 12px;
    gap: 10px;
  }
  .cg-video-time.callgirls-service {
    font-size: 0.72rem;
  }
  .cg-video-sparkle.callgirls-service {
    font-size: 11px !important;
  }
  .cg-video-sparkle-1.callgirls-service {
    font-size: 14px !important;
  }
  .cg-video-sparkle-5.callgirls-service {
    font-size: 16px !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cg-video-orb.callgirls-service,
  .cg-video-crown.callgirls-service,
  .cg-video-frame.callgirls-service,
  .cg-video-sparkle.callgirls-service,
  .cg-video-glint.callgirls-service,
  .cg-video-stage.callgirls-service,
  .cg-video-caustic.callgirls-service,
  .cg-video-play-halo.callgirls-service {
    animation: none !important;
  }
}
.cg-test-bg.callgirls-service {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden;
}
.cg-test-defs.callgirls-service {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.cg-test-orb.callgirls-service {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
}
.cg-test-orb-1.callgirls-service {
  width: 380px;
  height: 380px;
  top: -100px;
  left: -80px;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.35),
    transparent 70%
  );
  animation: svelte-194cbso-cgTestOrbA 22s ease-in-out infinite;
}
.cg-test-orb-2.callgirls-service {
  width: 420px;
  height: 420px;
  bottom: -120px;
  right: -90px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.32),
    transparent 70%
  );
  animation: svelte-194cbso-cgTestOrbB 26s ease-in-out infinite;
}
.cg-test-orb-3.callgirls-service {
  width: 280px;
  height: 280px;
  top: 40%;
  left: 50%;
  background: radial-gradient(
    circle,
    rgba(251, 113, 133, 0.22),
    transparent 70%
  );
  animation: svelte-194cbso-cgTestOrbC 30s ease-in-out infinite;
}
@keyframes svelte-194cbso-cgTestOrbA {
  0%,
  to {
    transform: translate(0);
  }
  50% {
    transform: translate(30px, 18px);
  }
}
@keyframes svelte-194cbso-cgTestOrbB {
  0%,
  to {
    transform: translate(0);
  }
  50% {
    transform: translate(-24px, -20px);
  }
}
@keyframes svelte-194cbso-cgTestOrbC {
  0%,
  to {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-48%, -52%) scale(1.08);
  }
}
.cg-test-info.callgirls-service .grid-container:where(.callgirls-service) {
  position: relative;
  z-index: 2;
}
.cg-test-stage.callgirls-service {
  position: relative;
  max-width: 820px;
  margin: 56px auto 40px;
  padding: 20px 10px 48px;
}
.cg-test-quotemark.callgirls-service {
  position: absolute;
  top: -24px;
  left: -14px;
  width: 180px;
  height: 150px;
  opacity: 0.9;
  filter: drop-shadow(0 8px 16px rgba(233, 30, 140, 0.18));
  z-index: 0;
  animation: svelte-194cbso-cgQmBob 9s ease-in-out infinite;
}
@keyframes svelte-194cbso-cgQmBob {
  0%,
  to {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-6px) rotate(-1.5deg);
  }
}
.cg-test-pearl.callgirls-service {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, #fff, #fff1e3 40%, #f59e0b);
  box-shadow: 0 4px 10px #f59e0b59, 0 0 0 2px #fff9 inset;
  pointer-events: none;
  z-index: 1;
}
.cg-test-pearl-1.callgirls-service {
  width: 14px;
  height: 14px;
  top: 8%;
  right: 6%;
  animation: svelte-194cbso-cgPearlDrift 7s ease-in-out infinite;
}
.cg-test-pearl-2.callgirls-service {
  width: 10px;
  height: 10px;
  bottom: 32%;
  left: 2%;
  background: radial-gradient(circle at 32% 30%, #fff, #fde8f2 40%, #e91e8c);
  animation: svelte-194cbso-cgPearlDrift 9s ease-in-out infinite -2s;
}
.cg-test-pearl-3.callgirls-service {
  width: 8px;
  height: 8px;
  top: 60%;
  right: 3%;
  background: radial-gradient(circle at 32% 30%, #fff, #ffe0e0 40%, #fb7185);
  animation: svelte-194cbso-cgPearlDrift 8s ease-in-out infinite -4s;
}
.cg-test-pearl-4.callgirls-service {
  width: 12px;
  height: 12px;
  bottom: 8%;
  right: 12%;
  animation: svelte-194cbso-cgPearlDrift 10s ease-in-out infinite -1s;
}
@keyframes svelte-194cbso-cgPearlDrift {
  0%,
  to {
    transform: translate(0) scale(1);
    opacity: 0.9;
  }
  50% {
    transform: translate(6px, -8px) scale(1.15);
    opacity: 1;
  }
}
.cg-test-carousel.callgirls-service {
  position: relative;
  min-height: 360px;
  z-index: 2;
}
.cg-test-card.callgirls-service {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 48px 52px 40px 66px;
  background: linear-gradient(160deg, #fffdf7, #fff6fb 55%, #fff0e8);
  border-radius: 22px;
  box-shadow: 0 1px #fffffff2 inset, 0 0 0 1px #f59e0b33 inset,
    0 -1px #e91e8c0f inset, 0 26px 54px -18px #c2185b38, 0 8px 18px #f59e0b14;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.98);
  transition: opacity 0.6s, transform 0.6s, visibility 0.6s;
  display: flex;
  flex-direction: column;
  gap: 22px;
  overflow: hidden;
}
.cg-test-card.callgirls-service:before {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  bottom: 10px;
  left: 10px;
  border-radius: 16px;
  border: 1px solid rgba(245, 158, 11, 0.22);
  pointer-events: none;
}
.cg-test-card.callgirls-service:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(245, 158, 11, 0.025) 0 1px,
    transparent 1px 18px
  );
  pointer-events: none;
}
.cg-test-active.callgirls-service {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  position: relative;
  animation: svelte-194cbso-cgTestFloat 8s ease-in-out infinite;
}
@keyframes svelte-194cbso-cgTestFloat {
  0%,
  to {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-5px) scale(1);
  }
}
.cg-test-fleur.callgirls-service {
  position: absolute;
  width: 24px;
  height: 24px;
  pointer-events: none;
  z-index: 3;
  filter: drop-shadow(0 1px 2px rgba(245, 158, 11, 0.3));
}
.cg-test-fleur-tl.callgirls-service {
  top: 18px;
  left: 18px;
}
.cg-test-fleur-tr.callgirls-service {
  top: 18px;
  right: 18px;
  transform: scaleX(-1);
}
.cg-test-fleur-bl.callgirls-service {
  bottom: 18px;
  left: 18px;
  transform: scaleY(-1);
}
.cg-test-fleur-br.callgirls-service {
  bottom: 18px;
  right: 18px;
  transform: scale(-1);
}
.cg-test-rail.callgirls-service {
  position: absolute;
  left: 32px;
  top: 48px;
  bottom: 48px;
  width: 3px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(245, 158, 11, 0.45) 10%,
    rgba(233, 30, 140, 0.45) 90%,
    transparent 100%
  );
  border-radius: 2px;
}
.cg-test-rail.callgirls-service:before,
.cg-test-rail.callgirls-service:after {
  content: "";
  position: absolute;
  left: 50%;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background: linear-gradient(135deg, #f59e0b, #e91e8c);
  border-radius: 50%;
  box-shadow: 0 0 8px #f59e0b80;
}
.cg-test-rail.callgirls-service:before {
  top: -4px;
}
.cg-test-rail.callgirls-service:after {
  bottom: -4px;
}
.cg-test-stars.callgirls-service {
  display: flex;
  gap: 4px;
  position: relative;
  z-index: 2;
}
.cg-test-stars.callgirls-service svg:where(.callgirls-service) {
  filter: drop-shadow(0 2px 3px rgba(245, 158, 11, 0.4));
  transform: rotate(-4deg);
}
.cg-test-stars.callgirls-service svg:where(.callgirls-service):nth-child(2) {
  transform: rotate(2deg);
}
.cg-test-stars.callgirls-service svg:where(.callgirls-service):nth-child(3) {
  transform: rotate(-2deg);
}
.cg-test-stars.callgirls-service svg:where(.callgirls-service):nth-child(4) {
  transform: rotate(3deg);
}
.cg-test-stars.callgirls-service svg:where(.callgirls-service):nth-child(5) {
  transform: rotate(-3deg);
}
.cg-test-quote.callgirls-service {
  position: relative;
  z-index: 2;
  font-size: 1.15rem;
  line-height: 1.7;
  font-weight: 500;
  color: #2a0a1a;
  margin: 0;
  font-style: italic;
  font-family: Playfair Display, Georgia, serif;
  letter-spacing: -0.005em;
}
.cg-test-rule.callgirls-service {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
}
.cg-test-rule-line.callgirls-service {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(245, 158, 11, 0.5),
    transparent
  );
}
.cg-test-rule-diamond.callgirls-service {
  width: 10px;
  height: 10px;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  background: linear-gradient(135deg, #fff1d4, #e91e8c);
  box-shadow: 0 0 8px #e91e8c73;
}
.cg-test-sig.callgirls-service {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  z-index: 2;
  margin-top: auto;
}
.cg-test-av.callgirls-service {
  position: relative;
  width: 62px;
  height: 62px;
  flex-shrink: 0;
}
.cg-test-av-notch.callgirls-service {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  background: repeating-conic-gradient(
    from 0deg,
    rgba(245, 158, 11, 0.55) 0deg 4deg,
    transparent 4deg 8deg
  );
  filter: blur(0.3px);
}
.cg-test-av-ring.callgirls-service {
  position: absolute;
  top: 3px;
  right: 3px;
  bottom: 3px;
  left: 3px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff1d4, #f59e0b, #c2185b);
  box-shadow: 0 1px #ffffffb3 inset, 0 -2px #c2185b4d inset;
}
.cg-test-av-core.callgirls-service {
  position: absolute;
  top: 8px;
  right: 8px;
  bottom: 8px;
  left: 8px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 25%, #fff8ed, #fde8f2 55%, #fccbe0);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
}
.cg-test-av-rose.callgirls-service .cg-test-av-core:where(.callgirls-service) {
  background: radial-gradient(circle at 30% 25%, #fff0f5, #fce7f0, #fbcfe0);
}
.cg-test-av-gold.callgirls-service .cg-test-av-core:where(.callgirls-service) {
  background: radial-gradient(circle at 30% 25%, #fffdf0, #fff0d4, #ffe0b3);
}
.cg-test-av-initial.callgirls-service {
  position: relative;
  z-index: 2;
  font-family: Playfair Display, Georgia, serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #c2185b;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}
.cg-test-av-gold.callgirls-service .cg-test-av-initial:where(.callgirls-service) {
  color: #b45309;
}
.cg-test-av-shine.callgirls-service {
  position: absolute;
  top: 10%;
  left: 18%;
  width: 32%;
  height: 22%;
  background: radial-gradient(
    ellipse,
    rgba(255, 255, 255, 0.75),
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}
.cg-test-sig-text.callgirls-service {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cg-test-name.callgirls-service {
  font-family: Playfair Display, Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #2a0a1a;
  font-style: italic;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.cg-test-flourish.callgirls-service {
  width: 70px;
  height: 10px;
  margin-left: -2px;
}
.cg-test-role.callgirls-service {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b45309;
}
.cg-test-av-rose.callgirls-service
  ~ .cg-test-sig-text:where(.callgirls-service)
  .cg-test-role:where(.callgirls-service) {
  color: #c2185b;
}
.cg-test-dots.callgirls-service {
  position: absolute;
  left: 50%;
  bottom: -38px;
  transform: translate(-50%);
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0 12px;
}
.cg-test-dots-rail.callgirls-service {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(245, 158, 11, 0.55) 18%,
    rgba(233, 30, 140, 0.55) 82%,
    transparent 100%
  );
  transform: translateY(-50%);
}
.cg-test-dot.callgirls-service {
  position: relative;
  z-index: 2;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, #fff, #fde8f2 50%, #f9a8c4);
  box-shadow: 0 2px 5px #e91e8c40, 0 0 0 2px #fffaf3;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.cg-test-dot-active.callgirls-service {
  width: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f59e0b, #e91e8c);
  box-shadow: 0 4px 10px #e91e8c73, 0 0 0 2px #fffaf3;
}
@media (max-width: 780px) {
  .cg-test-stage.callgirls-service {
    margin: 40px auto 32px;
    padding: 10px 0 44px;
  }
  .cg-test-carousel.callgirls-service {
    min-height: 420px;
  }
  .cg-test-card.callgirls-service {
    padding: 34px 26px 28px 50px;
    gap: 18px;
  }
  .cg-test-card.callgirls-service:before {
    top: 8px;
    right: 8px;
    bottom: 8px;
    left: 8px;
  }
  .cg-test-fleur.callgirls-service {
    width: 18px;
    height: 18px;
  }
  .cg-test-fleur-tl.callgirls-service,
  .cg-test-fleur-tr.callgirls-service {
    top: 12px;
  }
  .cg-test-fleur-tl.callgirls-service,
  .cg-test-fleur-bl.callgirls-service {
    left: 12px;
  }
  .cg-test-fleur-tr.callgirls-service,
  .cg-test-fleur-br.callgirls-service {
    right: 12px;
  }
  .cg-test-fleur-bl.callgirls-service,
  .cg-test-fleur-br.callgirls-service {
    bottom: 12px;
  }
  .cg-test-rail.callgirls-service {
    left: 22px;
    top: 38px;
    bottom: 38px;
  }
  .cg-test-quotemark.callgirls-service {
    width: 120px;
    height: 100px;
    top: -12px;
    left: -4px;
  }
  .cg-test-quote.callgirls-service {
    font-size: 1.02rem;
    line-height: 1.65;
  }
  .cg-test-av.callgirls-service {
    width: 54px;
    height: 54px;
  }
  .cg-test-av-initial.callgirls-service {
    font-size: 1.15rem;
  }
  .cg-test-name.callgirls-service {
    font-size: 1.02rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cg-test-orb.callgirls-service,
  .cg-test-quotemark.callgirls-service,
  .cg-test-pearl.callgirls-service,
  .cg-test-active.callgirls-service {
    animation: none !important;
  }
}
.cg-consult-bg.callgirls-service {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden;
}
.cg-consult-orb.callgirls-service {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.5;
}
.cg-consult-orb-1.callgirls-service {
  width: 440px;
  height: 440px;
  top: -140px;
  left: -120px;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.38),
    transparent 70%
  );
  animation: svelte-194cbso-cgConsultOrbA 24s ease-in-out infinite;
}
.cg-consult-orb-2.callgirls-service {
  width: 460px;
  height: 460px;
  bottom: -160px;
  right: -110px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.32),
    transparent 70%
  );
  animation: svelte-194cbso-cgConsultOrbB 28s ease-in-out infinite;
}
.cg-consult-orb-3.callgirls-service {
  width: 300px;
  height: 300px;
  top: 55%;
  left: 45%;
  background: radial-gradient(
    circle,
    rgba(251, 113, 133, 0.22),
    transparent 70%
  );
  animation: svelte-194cbso-cgConsultOrbC 30s ease-in-out infinite;
}
@keyframes svelte-194cbso-cgConsultOrbA {
  0%,
  to {
    transform: translate(0);
  }
  50% {
    transform: translate(30px, 20px);
  }
}
@keyframes svelte-194cbso-cgConsultOrbB {
  0%,
  to {
    transform: translate(0);
  }
  50% {
    transform: translate(-28px, -22px);
  }
}
@keyframes svelte-194cbso-cgConsultOrbC {
  0%,
  to {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-48%, -52%) scale(1.08);
  }
}
.cg-consult-info.callgirls-service .grid-container:where(.callgirls-service) {
  position: relative;
  z-index: 2;
}
.cg-consult-layout.callgirls-service {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.cg-consult-left.callgirls-service .info-eyebrow:where(.callgirls-service) {
  justify-content: flex-start;
}
.cg-consult-left.callgirls-service .info-h2:where(.callgirls-service) {
  text-align: left;
}
.cg-consult-left.callgirls-service .info-sub:where(.callgirls-service) {
  text-align: left;
  max-width: 460px;
  margin: 16px 0 0;
}
.cg-consult-points.callgirls-service {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cg-consult-point.callgirls-service {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #ffffffd1, #fff8fcb8);
  border: 1px solid rgba(245, 158, 11, 0.22);
  border-radius: 14px;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #2a0a1a;
  box-shadow: 0 1px #ffffffd9 inset, 0 8px 22px -10px #c2185b2e;
  transition: transform 0.3s, box-shadow 0.3s;
}
.cg-consult-point.callgirls-service:hover {
  transform: translateY(-2px);
  box-shadow: 0 1px #ffffffd9 inset, 0 14px 32px -12px #c2185b47;
}
.cg-consult-gem.callgirls-service {
  position: relative;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 1px #ffffff8c inset, 0 -2px #0000001f inset,
    0 6px 14px #e91e8c47;
}
.cg-consult-gem.callgirls-service:before {
  content: "";
  position: absolute;
  top: 14%;
  left: 22%;
  width: 28%;
  height: 18%;
  background: #ffffffb3;
  border-radius: 50%;
  filter: blur(0.8px);
}
.cg-consult-point-rose.callgirls-service .cg-consult-gem:where(.callgirls-service) {
  background: radial-gradient(circle at 30% 28%, #ffd2e3, #e91e8c 60%, #c2185b);
}
.cg-consult-point-gold.callgirls-service .cg-consult-gem:where(.callgirls-service) {
  background: radial-gradient(circle at 30% 28%, #ffe7b8, #f59e0b 60%, #b45309);
  box-shadow: 0 1px #ffffff8c inset, 0 -2px #0000001f inset,
    0 6px 14px #f59e0b52;
}
.cg-consult-point-coral.callgirls-service .cg-consult-gem:where(.callgirls-service) {
  background: radial-gradient(circle at 30% 28%, #ffdcdc, #fb7185 60%, #be123c);
  box-shadow: 0 1px #ffffff8c inset, 0 -2px #0000001f inset,
    0 6px 14px #fb718552;
}
.cg-consult-form-shell.callgirls-service {
  position: relative;
  padding: 40px;
  background: linear-gradient(160deg, #fffdf7, #fff6fb 55%, #fff0e8);
  border-radius: 24px;
  box-shadow: 0 1px #fffffff2 inset, 0 -1px #e91e8c0f inset,
    0 28px 58px -20px #c2185b3d, 0 10px 22px #f59e0b14;
  overflow: hidden;
}
.cg-consult-form-shell.callgirls-service:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 24px;
  padding: 1.5px;
  background: linear-gradient(
    135deg,
    #fffffff2,
    #f59e0b73 35%,
    #e91e8c73 65%,
    #fffffff2
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.cg-consult-form-shell.callgirls-service:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(245, 158, 11, 0.025) 0 1px,
    transparent 1px 22px
  );
  pointer-events: none;
}
.cg-consult-corner.callgirls-service {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b, #e91e8c);
  box-shadow: 0 0 10px #f59e0b80;
  z-index: 3;
}
.cg-consult-corner.callgirls-service:before,
.cg-consult-corner.callgirls-service:after {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, #f59e0b, transparent);
  opacity: 0.55;
}
.cg-consult-corner.callgirls-service:before {
  width: 34px;
  height: 1.5px;
  top: 50%;
  margin-top: -0.75px;
}
.cg-consult-corner.callgirls-service:after {
  width: 1.5px;
  height: 34px;
  left: 50%;
  margin-left: -0.75px;
}
.cg-consult-corner-tl.callgirls-service {
  top: 14px;
  left: 14px;
}
.cg-consult-corner-tl.callgirls-service:before {
  left: 12px;
}
.cg-consult-corner-tl.callgirls-service:after {
  top: 12px;
}
.cg-consult-corner-tr.callgirls-service {
  top: 14px;
  right: 14px;
}
.cg-consult-corner-tr.callgirls-service:before {
  right: 12px;
  background: linear-gradient(-90deg, #f59e0b, transparent);
}
.cg-consult-corner-tr.callgirls-service:after {
  top: 12px;
}
.cg-consult-corner-bl.callgirls-service {
  bottom: 14px;
  left: 14px;
}
.cg-consult-corner-bl.callgirls-service:before {
  left: 12px;
}
.cg-consult-corner-bl.callgirls-service:after {
  bottom: 12px;
}
.cg-consult-corner-br.callgirls-service {
  bottom: 14px;
  right: 14px;
}
.cg-consult-corner-br.callgirls-service:before {
  right: 12px;
  background: linear-gradient(-90deg, #f59e0b, transparent);
}
.cg-consult-corner-br.callgirls-service:after {
  bottom: 12px;
}
.cg-consult-form.callgirls-service {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 2;
}
.cg-consult-row.callgirls-service {
  display: grid;
  gap: 18px;
}
.cg-consult-row-2.callgirls-service {
  grid-template-columns: 1fr 1fr;
}
.cg-consult-field.callgirls-service {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.cg-consult-field.callgirls-service label:where(.callgirls-service) {
  font-size: 0.72rem;
  font-weight: 700;
  color: #b45309;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.cg-consult-optional.callgirls-service {
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #9a7a4e;
  margin-left: 2px;
}
.cg-consult-input.callgirls-service {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  background: #ffffffd1;
  border: 1.5px solid rgba(245, 158, 11, 0.28);
  border-radius: 12px;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.cg-consult-input.callgirls-service:focus-within {
  border-color: #e91e8cb3;
  background: #fffaf6;
  box-shadow: 0 0 0 4px #e91e8c1f, 0 0 18px #f59e0b40;
}
.cg-consult-input-icon.callgirls-service {
  flex-shrink: 0;
  color: #c2185b;
  opacity: 0.7;
  transition: color 0.2s, opacity 0.2s, transform 0.3s;
}
.cg-consult-input.callgirls-service:focus-within
  .cg-consult-input-icon:where(.callgirls-service) {
  color: #e91e8c;
  opacity: 1;
  transform: scale(1.08);
}
.cg-consult-input.callgirls-service input:where(.callgirls-service) {
  flex: 1;
  border: 0;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.9375rem;
  padding: 12px 0;
  color: #2a0a1a;
  min-width: 0;
}
.cg-consult-input.callgirls-service input:where(.callgirls-service)::placeholder {
  color: #4a287073;
}
.cg-consult-input-caret.callgirls-service {
  flex-shrink: 0;
  color: #b45309;
  pointer-events: none;
  transition: transform 0.25s;
}
.cg-consult-input-select.callgirls-service:focus-within
  .cg-consult-input-caret:where(.callgirls-service),
.cg-consult-combo-open.callgirls-service
  .cg-consult-input-caret:where(.callgirls-service) {
  transform: rotate(180deg);
  color: #e91e8c;
}
.cg-consult-combo.callgirls-service {
  position: relative;
}
.cg-consult-combo.callgirls-service
  > button.cg-consult-input:where(.callgirls-service) {
  width: 100%;
  padding: 0 14px;
  min-height: 48px;
  background: #ffffffd1;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9375rem;
  color: #2a0a1a;
}
.cg-consult-combo.callgirls-service
  > button.cg-consult-input:where(.callgirls-service):focus {
  outline: none;
  border-color: #e91e8cb3;
  background: #fffaf6;
  box-shadow: 0 0 0 4px #e91e8c1f, 0 0 18px #f59e0b40;
}
.cg-consult-combo-open.callgirls-service {
  border-color: #e91e8cb3 !important;
  background: #fffaf6 !important;
  box-shadow: 0 0 0 4px #e91e8c1f, 0 0 18px #f59e0b40;
}
.cg-consult-combo-value.callgirls-service {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cg-consult-combo-placeholder.callgirls-service {
  color: #4a287080;
}
.cg-consult-combo-menu.callgirls-service {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 20;
  padding: 8px;
  background: linear-gradient(160deg, #fffdf7, #fff6fb 55%, #fff0e8);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 14px;
  box-shadow: 0 1px #fffffff2 inset, 0 18px 40px -14px #c2185b4d,
    0 8px 18px #f59e0b1f;
  display: flex;
  flex-direction: column;
  gap: 2px;
  animation: svelte-194cbso-cgComboPop 0.18s cubic-bezier(0.2, 1.2, 0.4, 1) 1;
  transform-origin: top center;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
@keyframes svelte-194cbso-cgComboPop {
  0% {
    opacity: 0;
    transform: translateY(-4px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.cg-consult-combo-menu.callgirls-service:before {
  content: "";
  position: absolute;
  top: -6px;
  left: 22px;
  width: 12px;
  height: 12px;
  background: linear-gradient(160deg, #fffdf7, #fff6fb);
  border-left: 1px solid rgba(245, 158, 11, 0.35);
  border-top: 1px solid rgba(245, 158, 11, 0.35);
  transform: rotate(45deg);
}
.cg-consult-combo-menu-scroll.callgirls-service {
  max-height: 260px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(233, 30, 140, 0.35) transparent;
}
.cg-consult-combo-menu-scroll.callgirls-service::-webkit-scrollbar {
  width: 6px;
}
.cg-consult-combo-menu-scroll.callgirls-service::-webkit-scrollbar-track {
  background: transparent;
}
.cg-consult-combo-menu-scroll.callgirls-service::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #f59e0b, #e91e8c);
  border-radius: 999px;
}
.cg-consult-combo-opt.callgirls-service {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  background: transparent;
  border: 0;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  color: #2a0a1a;
  text-align: left;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.18s;
}
.cg-consult-combo-opt.callgirls-service:hover {
  background: linear-gradient(135deg, #fde8f2e6, #fff1e8e6);
  color: #c2185b;
  transform: translate(2px);
}
.cg-consult-combo-opt.callgirls-service:focus-visible {
  outline: none;
  background: linear-gradient(135deg, #fde8f2e6, #fff1e8e6);
  box-shadow: 0 0 0 2px #e91e8c59 inset;
}
.cg-consult-combo-opt-active.callgirls-service {
  background: linear-gradient(135deg, #f59e0b2e, #e91e8c2e);
  color: #c2185b;
  font-weight: 700;
}
.cg-consult-combo-tick.callgirls-service {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
  color: #fff;
  background: transparent;
  border: 1.5px solid rgba(245, 158, 11, 0.32);
  transition: all 0.2s;
}
.cg-consult-combo-opt-active.callgirls-service
  .cg-consult-combo-tick:where(.callgirls-service) {
  background: linear-gradient(135deg, #e91e8c, #f59e0b);
  border-color: transparent;
  box-shadow: 0 3px 8px #e91e8c52;
}
.cg-consult-input-textarea.callgirls-service {
  align-items: flex-start;
  padding-top: 12px;
  padding-bottom: 8px;
}
.cg-consult-submit.callgirls-service {
  position: relative;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #e91e8c, #f59e0b);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  margin-top: 10px;
  overflow: hidden;
  box-shadow: 0 1px #ffffff73 inset, 0 -3px #c2185b52 inset,
    0 14px 32px #e91e8c61;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s;
}
.cg-consult-submit.callgirls-service:not(:disabled):hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 1px #ffffff80 inset, 0 -3px #c2185b52 inset,
    0 22px 44px #e91e8c7a;
}
.cg-consult-submit.callgirls-service:disabled {
  cursor: not-allowed;
  opacity: 0.75;
}
.cg-consult-submit-label.callgirls-service {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.cg-consult-submit-arrow.callgirls-service {
  position: relative;
  z-index: 2;
  display: inline-flex;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.cg-consult-submit.callgirls-service:not(:disabled):hover
  .cg-consult-submit-arrow:where(.callgirls-service) {
  transform: translate(5px);
}
.cg-consult-submit-glow.callgirls-service {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140%;
  height: 300%;
  background: radial-gradient(
    ellipse,
    rgba(255, 255, 255, 0.35),
    transparent 60%
  );
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  animation: svelte-194cbso-cgConsultGlow 3s ease-in-out infinite;
}
@keyframes svelte-194cbso-cgConsultGlow {
  0%,
  to {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}
.cg-consult-spinner.callgirls-service {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: svelte-194cbso-cgSpin 0.8s linear infinite;
}
@keyframes svelte-194cbso-cgSpin {
  to {
    transform: rotate(360deg);
  }
}
.cg-consult-legal.callgirls-service {
  position: relative;
  z-index: 2;
  font-size: 0.72rem;
  line-height: 1.55;
  color: #6b4a2e;
  margin: 6px 0 0;
}
.cg-consult-legal.callgirls-service a:where(.callgirls-service) {
  color: #c2185b;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: #e91e8c59;
  text-underline-offset: 3px;
}
.cg-consult-error.callgirls-service {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: linear-gradient(135deg, #fff4e6, #ffe8e8);
  border: 1px solid rgba(220, 38, 38, 0.25);
  border-radius: 12px;
  color: #b91c1c;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 6px 16px -8px #dc262640;
}
.cg-consult-success.callgirls-service {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 28px 20px 18px;
}
.cg-consult-success-ring.callgirls-service {
  position: absolute;
  top: 12px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.22),
    transparent 70%
  );
  animation: svelte-194cbso-cgSuccessPulse 2.4s ease-in-out infinite;
}
@keyframes svelte-194cbso-cgSuccessPulse {
  0%,
  to {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}
.cg-consult-success-icon.callgirls-service {
  position: relative;
  width: 58px;
  height: 58px;
  padding: 12px;
  color: #fff;
  background: radial-gradient(circle at 30% 25%, #ffd2e3, #e91e8c 55%, #c2185b);
  border-radius: 50%;
  box-shadow: 0 1px #ffffff80 inset, 0 14px 28px #e91e8c59, 0 0 0 6px #ffffffd9;
  animation: svelte-194cbso-cgSuccessPop 0.6s cubic-bezier(0.2, 1.4, 0.4, 1) 1;
}
@keyframes svelte-194cbso-cgSuccessPop {
  0% {
    transform: scale(0.4);
    opacity: 0;
  }
  60% {
    transform: scale(1.12);
    opacity: 1;
  }
  to {
    transform: scale(1);
  }
}
.cg-consult-success-body.callgirls-service {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.cg-consult-success-title.callgirls-service {
  font-family: Playfair Display, Georgia, serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #2a0a1a;
}
.cg-consult-success-reset.callgirls-service {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #fff9;
  border: 1.5px solid rgba(233, 30, 140, 0.4);
  border-radius: 999px;
  color: #c2185b;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: transform 0.25s, background 0.25s, color 0.25s;
}
.cg-consult-success-reset.callgirls-service:hover {
  background: linear-gradient(135deg, #e91e8c, #c2185b);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
}
@media (prefers-reduced-motion: reduce) {
  .cg-consult-orb.callgirls-service,
  .cg-consult-submit-glow.callgirls-service,
  .cg-consult-success-ring.callgirls-service,
  .cg-consult-success-icon.callgirls-service {
    animation: none !important;
  }
}
.cg-match-overlay.callgirls-service {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  background: radial-gradient(
      ellipse at 20% 15%,
      rgba(253, 232, 242, 0.85),
      transparent 55%
    ),
    radial-gradient(
      ellipse at 80% 85%,
      rgba(255, 241, 213, 0.85),
      transparent 55%
    ),
    #2a0a1a61;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
  animation: svelte-194cbso-cgMatchFadeIn 0.28s ease-out;
}
@keyframes svelte-194cbso-cgMatchFadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.cg-match-modal.callgirls-service {
  position: relative;
  width: 100%;
  max-width: 1020px;
  max-height: 92vh;
  overflow-y: auto;
  padding: 44px 40px 32px;
  background: linear-gradient(160deg, #fffdf7, #fff6fb 55%, #fff0e8);
  border-radius: 26px;
  box-shadow: 0 1px #fffffff2 inset, 0 -1px #e91e8c14 inset,
    0 40px 80px -20px #c2185b59, 0 14px 32px #f59e0b1f;
  animation: svelte-194cbso-cgMatchPop 0.4s cubic-bezier(0.2, 1.2, 0.4, 1);
  scrollbar-width: thin;
  scrollbar-color: rgba(233, 30, 140, 0.4) transparent;
}
.cg-match-modal.callgirls-service::-webkit-scrollbar {
  width: 8px;
}
.cg-match-modal.callgirls-service::-webkit-scrollbar-track {
  background: transparent;
}
.cg-match-modal.callgirls-service::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #f59e0b, #e91e8c);
  border-radius: 999px;
}
.cg-match-modal.callgirls-service:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 26px;
  padding: 1.5px;
  background: linear-gradient(
    135deg,
    #fffffff2,
    #f59e0b8c 35%,
    #e91e8c80 65%,
    #fffffff2
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
@keyframes svelte-194cbso-cgMatchPop {
  0% {
    opacity: 0;
    transform: translateY(14px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.cg-match-close.callgirls-service {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffffbf;
  border: 1.5px solid rgba(233, 30, 140, 0.25);
  border-radius: 50%;
  color: #c2185b;
  cursor: pointer;
  transition: transform 0.25s, background 0.25s, color 0.25s, border-color 0.25s;
  z-index: 5;
}
.cg-match-close.callgirls-service:hover {
  background: linear-gradient(135deg, #e91e8c, #c2185b);
  color: #fff;
  border-color: transparent;
  transform: rotate(90deg);
}
.cg-match-head.callgirls-service {
  text-align: center;
  margin-bottom: 28px;
}
.cg-match-eyebrow.callgirls-service {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b45309;
  margin-bottom: 12px;
}
.cg-match-eyebrow-dot.callgirls-service {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b, #e91e8c);
  box-shadow: 0 0 8px #f59e0b99;
  animation: svelte-194cbso-cgMatchDot 1.6s ease-in-out infinite;
}
@keyframes svelte-194cbso-cgMatchDot {
  0%,
  to {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.4);
  }
}
.cg-match-title.callgirls-service {
  font-family: Playfair Display, Georgia, serif;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #2a0a1a;
  margin: 0 0 10px;
}
.cg-match-title-grad.callgirls-service {
  background: linear-gradient(135deg, #e91e8c, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cg-match-sub.callgirls-service {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #6b4a2e;
  max-width: 560px;
  margin: 0 auto;
}
.cg-match-grid.callgirls-service {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}
.cg-match-card.callgirls-service {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(245, 158, 11, 0.22);
  box-shadow: 0 1px #fffffff2 inset, 0 16px 36px -14px #c2185b38;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s;
}
.cg-match-card.callgirls-service:hover {
  transform: translateY(-4px);
  box-shadow: 0 1px #fffffff2 inset, 0 24px 48px -14px #c2185b52;
}
.cg-match-img.callgirls-service {
  position: relative;
  aspect-ratio: 4 / 5;
  background: radial-gradient(circle at 50% 40%, #fde8f2, #ffe0d4);
  overflow: hidden;
}
.cg-match-img.callgirls-service img:where(.callgirls-service) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s;
}
.cg-match-card.callgirls-service:hover
  .cg-match-img:where(.callgirls-service)
  img:where(.callgirls-service) {
  transform: scale(1.05);
}
.cg-match-img-ph.callgirls-service {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Playfair Display, serif;
  font-size: 3rem;
  font-weight: 800;
  color: #c2185b;
  opacity: 0.35;
}
.cg-match-verified.callgirls-service {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: #fffffff2;
  color: #15803d;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 4px 10px #15803d33;
}
.cg-match-featured.callgirls-service {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 10px;
  background: linear-gradient(135deg, #f59e0b, #e91e8c);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 4px 10px #e91e8c52;
}
.cg-match-body.callgirls-service {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 18px 18px;
}
.cg-match-name-row.callgirls-service {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.cg-match-name.callgirls-service {
  font-family: Playfair Display, Georgia, serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: #2a0a1a;
}
.cg-match-rating.callgirls-service {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px 8px;
  background: #f59e0b24;
  color: #b45309;
  font-size: 0.78rem;
  font-weight: 800;
  border-radius: 999px;
  font-variant-numeric: tabular-nums;
}
.cg-match-meta.callgirls-service {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.cg-match-chip.callgirls-service {
  padding: 3px 10px;
  background: linear-gradient(135deg, #fde8f2e6, #fff1e8e6);
  border: 1px solid rgba(233, 30, 140, 0.22);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #c2185b;
}
.cg-match-chip-gold.callgirls-service {
  background: linear-gradient(135deg, #fff1d5e6, #ffe8c3e6);
  border-color: #f59e0b47;
  color: #b45309;
}
.cg-match-rate.callgirls-service {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.cg-match-rate-amount.callgirls-service {
  font-family: Playfair Display, serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #c2185b;
}
.cg-match-rate-unit.callgirls-service {
  font-size: 0.78rem;
  color: #6b4a2e;
  font-weight: 600;
}
.cg-match-ctas.callgirls-service {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 6px;
}
.cg-match-btn.callgirls-service {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.25s, background 0.25s, color 0.25s,
    border-color 0.25s;
  border: 1.5px solid transparent;
  cursor: pointer;
}
.cg-match-btn-outline.callgirls-service {
  background: #ffffffb3;
  color: #c2185b;
  border-color: #e91e8c66;
}
.cg-match-btn-outline.callgirls-service:hover {
  background: linear-gradient(135deg, #e91e8c, #c2185b);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
}
.cg-match-btn-solid.callgirls-service {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 6px 16px #25d36659;
}
.cg-match-btn-solid.callgirls-service:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px #25d36673;
}
.cg-match-foot.callgirls-service {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(245, 158, 11, 0.18);
}
.cg-match-foot-text.callgirls-service {
  font-size: 0.85rem;
  color: #6b4a2e;
  font-weight: 600;
}
.cg-match-foot-btn.callgirls-service {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #ffffffbf;
  border: 1.5px solid rgba(233, 30, 140, 0.35);
  border-radius: 999px;
  color: #c2185b;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform 0.25s, background 0.25s, color 0.25s, border-color 0.25s,
    box-shadow 0.25s;
}
.cg-match-foot-btn.callgirls-service:hover {
  background: linear-gradient(135deg, #e91e8c, #f59e0b);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px #e91e8c52;
}
@media (max-width: 780px) {
  .cg-match-overlay.callgirls-service {
    padding: 12px;
    align-items: flex-end;
  }
  .cg-match-modal.callgirls-service {
    padding: 36px 20px 24px;
    max-height: 90vh;
    border-radius: 20px 20px 0 0;
    animation: svelte-194cbso-cgMatchSlide 0.35s cubic-bezier(0.2, 1, 0.4, 1);
  }
  .cg-match-modal.callgirls-service:before {
    border-radius: 20px 20px 0 0;
  }
  @keyframes svelte-194cbso-cgMatchSlide {
    0% {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .cg-match-grid.callgirls-service {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .cg-match-title.callgirls-service {
    font-size: 1.35rem;
  }
  .cg-match-close.callgirls-service {
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
  }
}
@media (max-width: 1100px) and (min-width: 781px) {
  .cg-match-grid.callgirls-service {
    grid-template-columns: repeat(2, 1fr);
  }
  .cg-match-grid.callgirls-service > :where(.callgirls-service):last-child {
    grid-column: 1 / -1;
    max-width: 420px;
    justify-self: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cg-match-overlay.callgirls-service,
  .cg-match-modal.callgirls-service,
  .cg-match-eyebrow-dot.callgirls-service {
    animation: none !important;
  }
}
.cg-how-info.callgirls-service {
  background: linear-gradient(180deg, #fdf4ff, #fff3f9);
}
.cg-pricing-info.callgirls-service {
  background: linear-gradient(180deg, #eafafa, #d4f1f1);
}
.cg-trust-info.callgirls-service {
  background: linear-gradient(180deg, #edfaf2, #daf3e6);
}
.cg-safety-note.callgirls-service {
  margin: 30px auto 0;
  max-width: 820px;
  text-align: center;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-muted);
}
.cg-safety-note.callgirls-service strong:where(.callgirls-service) {
  color: var(--heading);
  font-weight: 700;
}
.cg-faq-info.callgirls-service {
  background: linear-gradient(180deg, #ecf6ff, #d6ebfd);
}
.cg-final-cta.callgirls-service {
  background: linear-gradient(180deg, #fff4f8, #fff);
  padding: 50px 0 80px;
}
.info-head.callgirls-service {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.info-head-center.callgirls-service {
  text-align: center;
  flex-direction: column;
  align-items: center;
}
.info-eyebrow.callgirls-service {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--rose);
  margin-bottom: 12px;
}
.info-eyebrow-center.callgirls-service {
  justify-content: center;
}
.info-line.callgirls-service {
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--rose), transparent);
  border-radius: 2px;
}
.info-h2.callgirls-service {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--heading);
  margin: 0;
}
.info-grad.callgirls-service {
  background: linear-gradient(
    120deg,
    #ff6b9d,
    var(--rose) 50%,
    var(--rose-dark)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.info-sub.callgirls-service {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0;
  max-width: 420px;
}
.info-sub-center.callgirls-service {
  max-width: 540px;
  margin: 12px auto 0;
  text-align: center;
}
.info-head__col.callgirls-service {
  flex: 1 1 100%;
  min-width: 0;
}
.info-sub--below.callgirls-service {
  max-width: none;
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}
.catpop-grid.callgirls-service {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.catpop-card.callgirls-service {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid rgba(45, 18, 72, 0.06);
  border-radius: 18px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 6px 18px #2d12480d;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease, border-color 0.4s ease;
}
.catpop-0.callgirls-service {
  --cp: 233, 30, 140;
  --cp2: 244, 63, 94;
}
.catpop-1.callgirls-service {
  --cp: 244, 63, 94;
  --cp2: 245, 158, 11;
}
.catpop-2.callgirls-service {
  --cp: 245, 158, 11;
  --cp2: 233, 30, 140;
}
.catpop-3.callgirls-service {
  --cp: 233, 30, 140;
  --cp2: 245, 196, 107;
}
.catpop-4.callgirls-service {
  --cp: 244, 63, 94;
  --cp2: 233, 30, 140;
}
.catpop-card.callgirls-service:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--cp), 0.3);
  box-shadow: 0 18px 36px rgba(var(--cp), 0.2);
}
.catpop-blob.callgirls-service {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--cp), 0.18), transparent 70%);
  opacity: 0.6;
  transition: all 0.5s ease;
  z-index: -1;
}
.catpop-card.callgirls-service:hover .catpop-blob:where(.callgirls-service) {
  transform: scale(1.4);
  opacity: 1;
}
.catpop-icon.callgirls-service {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: linear-gradient(135deg, rgb(var(--cp)), rgb(var(--cp2)));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(var(--cp), 0.32);
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.catpop-card.callgirls-service:hover .catpop-icon:where(.callgirls-service) {
  transform: rotate(-8deg) scale(1.06);
}
.catpop-body.callgirls-service {
  flex: 1;
  min-width: 0;
}
.catpop-name.callgirls-service {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--heading);
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.catpop-meta.callgirls-service {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 3px;
}
.catpop-dot.callgirls-service {
  width: 5px;
  height: 5px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 3px #10b9812e;
  animation: svelte-194cbso-cgPulse 1.6s ease-in-out infinite;
}
.catpop-arrow.callgirls-service {
  color: rgb(var(--cp));
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.catpop-card.callgirls-service:hover .catpop-arrow:where(.callgirls-service) {
  transform: translate(4px);
}
.catpop-active.callgirls-service {
  background: linear-gradient(
    135deg,
    rgba(var(--cp), 0.12),
    rgba(var(--cp), 0.04)
  );
  border-color: rgba(var(--cp), 0.35);
  box-shadow: 0 14px 32px rgba(var(--cp), 0.22);
}
.catpop-active.callgirls-service .catpop-name:where(.callgirls-service) {
  color: rgb(var(--cp));
}
.area-grid.callgirls-service {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.area-tile.callgirls-service {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid rgba(45, 18, 72, 0.06);
  border-radius: 16px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 4px 14px #2d12480d;
}
.area-tile-0.callgirls-service {
  --area-c: 233, 30, 140;
  --area-c2: 244, 63, 94;
}
.area-tile-1.callgirls-service {
  --area-c: 244, 63, 94;
  --area-c2: 245, 158, 11;
}
.area-tile-2.callgirls-service {
  --area-c: 245, 158, 11;
  --area-c2: 233, 30, 140;
}
.area-tile-3.callgirls-service {
  --area-c: 233, 30, 140;
  --area-c2: 245, 196, 107;
}
.area-tile.callgirls-service:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--area-c), 0.3);
  box-shadow: 0 14px 32px rgba(var(--area-c), 0.18);
}
.area-pin.callgirls-service {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgb(var(--area-c)), rgb(var(--area-c2)));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(var(--area-c), 0.3);
  flex-shrink: 0;
}
.area-info.callgirls-service {
  flex: 1;
  min-width: 0;
}
.area-name.callgirls-service {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--heading);
  letter-spacing: -0.015em;
}
.area-meta.callgirls-service {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 2px;
}
.area-live.callgirls-service {
  width: 5px;
  height: 5px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 3px #10b9812e;
  animation: svelte-194cbso-cgPulse 1.6s ease-in-out infinite;
}
.area-arrow.callgirls-service {
  color: rgb(var(--area-c));
  transition: transform 0.3s ease;
}
.area-tile.callgirls-service:hover .area-arrow:where(.callgirls-service) {
  transform: translate(4px);
}
.how-steps.callgirls-service {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.how-line-bg.callgirls-service {
  position: absolute;
  top: 50px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    rgba(233, 30, 140, 0.3) 0 8px,
    transparent 8px 16px
  );
  z-index: 0;
}
.how-step.callgirls-service {
  position: relative;
  z-index: 1;
  padding: 28px 22px 24px;
  background: #fff;
  border: 1px solid rgba(45, 18, 72, 0.05);
  border-radius: 20px;
  box-shadow: 0 8px 26px #2d12480f;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease, border-color 0.4s ease;
}
.how-step.callgirls-service:hover {
  transform: translateY(-6px);
  border-color: #e91e8c2e;
  box-shadow: 0 18px 38px #e91e8c29;
}
.how-step-icon.callgirls-service {
  position: relative;
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    #ff6b9d 0%,
    var(--rose) 50%,
    var(--rose-dark) 100%
  );
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px #e91e8c59, inset 0 1px #ffffff4d;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.how-step-num.callgirls-service {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 26px;
  height: 26px;
  padding: 0 8px;
  background: #fff;
  color: var(--rose);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px #e91e8c40, 0 0 0 1px #e91e8c2e;
}
.how-step-title.callgirls-service {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--heading);
  margin: 0 0 8px;
}
.how-step-desc.callgirls-service {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}
.price-grid.callgirls-service {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.price-card.callgirls-service {
  position: relative;
  padding: 28px 24px 24px;
  background: #fff;
  border: 1px solid rgba(45, 18, 72, 0.06);
  border-radius: 22px;
  box-shadow: 0 10px 28px #2d124814;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease;
}
.price-rose.callgirls-service {
  --pc: 233, 30, 140;
}
.price-violet.callgirls-service {
  --pc: 244, 63, 94;
}
.price-gold.callgirls-service {
  --pc: 245, 158, 11;
}
.price-card.callgirls-service:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(var(--pc), 0.22);
}
.price-card.callgirls-service:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, rgb(var(--pc)), rgba(var(--pc), 0.5));
  border-radius: 22px 22px 0 0;
}
.price-tag.callgirls-service {
  position: absolute;
  top: -10px;
  right: 18px;
  padding: 5px 12px;
  background: linear-gradient(135deg, rgb(var(--pc)), rgba(var(--pc), 0.7));
  color: #fff;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  box-shadow: 0 6px 14px rgba(var(--pc), 0.32);
}
.price-tier.callgirls-service {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--heading);
  margin-bottom: 4px;
}
.price-desc.callgirls-service {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.price-row.callgirls-service {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: linear-gradient(
    135deg,
    rgba(var(--pc), 0.06),
    rgba(var(--pc), 0.02)
  );
  border-radius: 14px;
  margin-bottom: 16px;
}
.price-amt.callgirls-service {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: rgb(var(--pc));
  line-height: 1;
}
.price-amt.callgirls-service span:where(.callgirls-service) {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 2px;
}
.price-divider.callgirls-service {
  width: 1px;
  height: 28px;
  background: rgba(var(--pc), 0.2);
}
.price-perks.callgirls-service {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.price-perks.callgirls-service span:where(.callgirls-service) {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--heading);
}
.price-perks.callgirls-service svg:where(.callgirls-service) {
  color: rgb(var(--pc));
}
.price-note.callgirls-service {
  margin-top: 22px;
  padding: 14px 18px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #f5c46b1f;
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: #92400e;
  line-height: 1.55;
}
.price-note.callgirls-service svg:where(.callgirls-service) {
  color: #d97706;
  flex-shrink: 0;
  margin-top: 2px;
}
.trust-grid.callgirls-service {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trust-card.callgirls-service {
  position: relative;
  padding: 24px 22px 18px;
  background: #fff;
  border: 1px solid rgba(45, 18, 72, 0.05);
  border-radius: 22px;
  box-shadow: 0 8px 26px #2d12480f;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease, border-color 0.45s ease;
  overflow: hidden;
  isolation: isolate;
}
.trust-card.callgirls-service:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, rgb(var(--tc)), rgb(var(--tc2)));
  border-radius: 22px 22px 0 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.trust-0.callgirls-service {
  --tc: 233, 30, 140;
  --tc2: 244, 63, 94;
}
.trust-1.callgirls-service {
  --tc: 244, 63, 94;
  --tc2: 245, 158, 11;
}
.trust-2.callgirls-service {
  --tc: 245, 158, 11;
  --tc2: 233, 30, 140;
}
.trust-3.callgirls-service {
  --tc: 233, 30, 140;
  --tc2: 245, 196, 107;
}
.trust-card.callgirls-service:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--tc), 0.25);
  box-shadow: 0 22px 44px rgba(var(--tc), 0.2);
}
.trust-card.callgirls-service:hover:before {
  transform: scaleX(1);
}
.trust-blob.callgirls-service {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--tc), 0.15), transparent 70%);
  opacity: 0.5;
  transition: all 0.6s ease;
  z-index: -1;
}
.trust-card.callgirls-service:hover .trust-blob:where(.callgirls-service) {
  transform: scale(1.4);
  opacity: 1;
}
.trust-shine.callgirls-service {
  position: absolute;
  top: 0;
  left: -120%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    115deg,
    transparent 35%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 65%
  );
  transform: skew(-20deg);
  transition: left 0.9s ease;
  pointer-events: none;
  z-index: 1;
}
.trust-card.callgirls-service:hover .trust-shine:where(.callgirls-service) {
  left: 130%;
}
.trust-head.callgirls-service {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}
.trust-icon.callgirls-service {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgb(var(--tc)), rgb(var(--tc2)));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(var(--tc), 0.3), inset 0 1px #ffffff4d;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  flex-shrink: 0;
}
.trust-card.callgirls-service:hover .trust-icon:where(.callgirls-service) {
  transform: rotate(-8deg) scale(1.06);
}
.trust-tag.callgirls-service {
  padding: 4px 10px;
  background: rgba(var(--tc), 0.1);
  border: 1px solid rgba(var(--tc), 0.22);
  color: rgb(var(--tc));
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.trust-card.callgirls-service:hover .trust-tag:where(.callgirls-service) {
  background: rgba(var(--tc), 0.18);
  border-color: rgba(var(--tc), 0.35);
}
.trust-card.callgirls-service h3:where(.callgirls-service) {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--heading);
  margin: 0 0 6px;
  line-height: 1.25;
}
.trust-card.callgirls-service p:where(.callgirls-service) {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 0 16px;
}
.trust-foot.callgirls-service {
  padding-top: 12px;
  border-top: 1px dashed rgba(45, 18, 72, 0.1);
  transition: border-color 0.3s ease;
}
.trust-card.callgirls-service:hover .trust-foot:where(.callgirls-service) {
  border-top-color: rgba(var(--tc), 0.25);
}
.trust-check.callgirls-service {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgb(var(--tc));
}
.trust-check.callgirls-service svg:where(.callgirls-service) {
  width: 16px;
  height: 16px;
  padding: 3px;
  background: rgba(var(--tc), 0.12);
  border-radius: 50%;
}
.cgfaq-topbar.callgirls-service {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  background: #ffffffe6;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 30px #e91e8c14;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.cgfaq-brand.callgirls-service {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cgfaq-brand-icon.callgirls-service {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px #e91e8c52;
}
.cgfaq-brand-title.callgirls-service {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--heading);
}
.cgfaq-brand-sub.callgirls-service {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}
.cgfaq-ask.callgirls-service {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 22px #25d36652;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cgfaq-ask.callgirls-service:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px #25d36673;
}
.cgfaq-body.callgirls-service {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 20px;
  align-items: start;
}
.cgfaq-sidebar.callgirls-service {
  position: sticky;
  top: 20px;
  padding: 20px 16px;
  background: #ffffffe6;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 30px #2d12480f;
}
.cgfaq-side-head.callgirls-service {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 8px 12px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--rose);
  border-bottom: 1px dashed rgba(45, 18, 72, 0.12);
  margin-bottom: 8px;
}
.cgfaq-side-line.callgirls-service {
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--rose-dark));
  border-radius: 2px;
}
.cgfaq-list.callgirls-service {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cgfaq-list-btn.callgirls-service {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 12px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 12px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--heading);
  text-align: left;
  cursor: pointer;
  transition: all 0.25s ease;
}
.cgfaq-list-btn.callgirls-service:hover {
  background: #e91e8c0d;
  color: var(--rose);
}
.cgfaq-list-btn.is-active.callgirls-service {
  background: linear-gradient(135deg, #e91e8c1f, #f43f5e0f);
  border-color: #e91e8c38;
  color: var(--rose);
  box-shadow: 0 6px 16px #e91e8c1a;
}
.cgfaq-num.callgirls-service {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: #e91e8c1a;
  color: var(--rose);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
}
.cgfaq-list-btn.is-active.callgirls-service .cgfaq-num:where(.callgirls-service) {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  box-shadow: 0 4px 10px #e91e8c52;
}
.cgfaq-q.callgirls-service {
  flex: 1;
  line-height: 1.35;
}
.cgfaq-arrow.callgirls-service {
  flex-shrink: 0;
  opacity: 0;
  transform: translate(-4px);
  transition: all 0.25s ease;
}
.cgfaq-list-btn.callgirls-service:hover .cgfaq-arrow:where(.callgirls-service),
.cgfaq-list-btn.is-active.callgirls-service .cgfaq-arrow:where(.callgirls-service) {
  opacity: 1;
  transform: translate(0);
}
.cgfaq-panel.callgirls-service {
  padding: 32px 34px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 16px 42px #2d124814, 0 0 0 1px #2d12480a;
  animation: svelte-194cbso-cgfaqFadeIn 0.4s ease;
}
@keyframes svelte-194cbso-cgfaqFadeIn {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.cgfaq-panel-crumb.callgirls-service {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.cgfaq-panel-title.callgirls-service {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: var(--heading);
  margin: 0 0 14px;
}
.cgfaq-panel-lead.callgirls-service {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0 0 22px;
}
.cgfaq-points.callgirls-service {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cgfaq-points.callgirls-service li:where(.callgirls-service) {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  background: linear-gradient(135deg, #e91e8c0a, #f43f5e05);
  border: 1px solid rgba(233, 30, 140, 0.1);
  border-radius: 12px;
  font-size: 13.5px;
  color: var(--heading);
  line-height: 1.6;
  transition: all 0.3s ease;
}
.cgfaq-points.callgirls-service li:where(.callgirls-service):hover {
  border-color: #e91e8c38;
  transform: translate(4px);
}
.cgfaq-point-ic.callgirls-service {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  box-shadow: 0 4px 10px #e91e8c4d;
}
.cgfaq-panel-foot.callgirls-service {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px dashed rgba(45, 18, 72, 0.12);
  flex-wrap: wrap;
}
.cgfaq-helpful.callgirls-service {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}
.cgfaq-h-actions.callgirls-service {
  display: flex;
  gap: 8px;
}
.cgfaq-h-btn.callgirls-service {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid rgba(45, 18, 72, 0.12);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  color: var(--heading);
  cursor: pointer;
  font-family: inherit;
  transition: all 0.25s ease;
}
.cgfaq-h-btn.callgirls-service:hover:not(:disabled) {
  border-color: var(--rose);
  color: var(--rose);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px #e91e8c1f;
}
.cgfaq-h-btn.callgirls-service:disabled {
  cursor: wait;
  opacity: 0.75;
}
.cgfaq-h-btn.is-busy.callgirls-service {
  opacity: 0.75;
  cursor: wait;
}
.cgfaq-h-btn--yes.is-on.callgirls-service {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 22px -6px #10b98180, inset 0 1px #ffffff4d;
  animation: svelte-194cbso-cgfaqPop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cgfaq-h-btn--yes.is-on.callgirls-service:hover:not(:disabled) {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 14px 28px -6px #10b98199;
}
.cgfaq-h-btn--no.is-on.callgirls-service {
  background: linear-gradient(135deg, #f43f5e, #dc2626);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 22px -6px #dc262680, inset 0 1px #ffffff4d;
  animation: svelte-194cbso-cgfaqPop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cgfaq-h-btn--no.is-on.callgirls-service:hover:not(:disabled) {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 14px 28px -6px #dc262699;
}
@keyframes svelte-194cbso-cgfaqPop {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.12);
  }
  to {
    transform: scale(1);
  }
}
.cgfaq-h-btn__n.callgirls-service {
  font-style: normal;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  padding: 1px 7px;
  margin-left: 2px;
  background: #0000001a;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  line-height: 1.5;
}
.cgfaq-h-btn.is-on.callgirls-service .cgfaq-h-btn__n:where(.callgirls-service) {
  background: #ffffff4d;
  color: #fff;
}
.cta-pill.callgirls-service {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 22px 26px;
  background: radial-gradient(
      90% 80% at 0% 0%,
      rgba(233, 30, 140, 0.1),
      transparent 55%
    ),
    radial-gradient(
      90% 80% at 100% 100%,
      rgba(245, 158, 11, 0.08),
      transparent 55%
    ),
    linear-gradient(135deg, #fff, #fff7fb);
  border: 1px solid rgba(233, 30, 140, 0.18);
  border-radius: 22px;
  box-shadow: 0 18px 44px #e91e8c1f;
  flex-wrap: wrap;
}
.cta-pill-icon.callgirls-service {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px #25d36666;
  flex-shrink: 0;
}
.cta-pill-text.callgirls-service {
  flex: 1;
  min-width: 220px;
}
.cta-pill-text.callgirls-service h3:where(.callgirls-service) {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--heading);
  margin: 0 0 4px;
}
.cta-pill-text.callgirls-service p:where(.callgirls-service) {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}
.cta-pill-btn.callgirls-service {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  font-size: 13.5px;
  font-weight: 500;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 26px #e91e8c66, inset 0 1px #ffffff4d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}
.cta-pill-btn.callgirls-service:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px #e91e8c8c;
}
@media (max-width: 1024px) {
  .cg-h1.callgirls-service {
    font-size: 2.5rem;
  }
  .profiles-grid.callgirls-service {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .select-wrap.callgirls-service {
    min-width: 150px;
  }
  .area-grid.callgirls-service {
    grid-template-columns: repeat(3, 1fr);
  }
  .trust-grid.callgirls-service {
    grid-template-columns: repeat(2, 1fr);
  }
  .price-grid.callgirls-service {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  .price-card.callgirls-service {
    padding: 22px 18px 18px;
  }
  .price-tier.callgirls-service {
    font-size: 1.35rem;
  }
  .price-row.callgirls-service {
    padding: 12px;
    gap: 10px;
    flex-wrap: wrap;
  }
  .price-amt.callgirls-service {
    font-size: 1.05rem;
  }
  .price-amt.callgirls-service span:where(.callgirls-service) {
    font-size: 10px;
  }
  .price-tag.callgirls-service {
    top: -9px;
    right: 14px;
    font-size: 9.5px;
    padding: 4px 10px;
  }
  .catpop-grid.callgirls-service {
    grid-template-columns: repeat(3, 1fr);
  }
  .how-steps.callgirls-service {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .how-line-bg.callgirls-service {
    display: none;
  }
  .cg-hero-inner.callgirls-service {
    grid-template-columns: 1fr 0.85fr;
    gap: 28px;
  }
  .cg-gallery.callgirls-service {
    max-width: 320px;
    gap: 10px;
  }
  .cg-gal-badge-top.callgirls-service {
    left: -4%;
  }
  .cg-gal-badge-bot.callgirls-service {
    right: -4%;
  }
}
@media (max-width: 768px) {
  .cg-hero.callgirls-service {
    padding: 50px 0 40px;
  }
  .cg-hero-inner.callgirls-service {
    grid-template-columns: 1fr 0.95fr;
    gap: 24px;
    align-items: center;
  }
  .cg-gallery.callgirls-service {
    max-width: 280px;
    gap: 8px;
    margin: 0;
  }
  .cg-gal-badge-top.callgirls-service {
    left: -2%;
    top: 0;
    padding: 7px 11px;
  }
  .cg-gal-badge-bot.callgirls-service {
    right: -2%;
    bottom: 0;
    padding: 7px 11px;
  }
  .cg-gal-badge-icon.callgirls-service {
    width: 24px;
    height: 24px;
  }
  .cg-gal-badge-v.callgirls-service {
    font-size: 11.5px;
  }
  .cg-gal-badge-l.callgirls-service {
    font-size: 9px;
  }
  .cg-gal-name.callgirls-service {
    font-size: 13px;
  }
  .cg-gal-badge-top.callgirls-service {
    left: 2%;
    top: 2%;
  }
  .cg-gal-badge-bot.callgirls-service {
    right: 2%;
    bottom: 2%;
  }
  .cg-h1.callgirls-service {
    font-size: 2rem;
  }
  .cg-desc.callgirls-service {
    font-size: 14px;
  }
  .cg-meta.callgirls-service {
    flex-wrap: wrap;
    padding: 6px;
  }
  .cg-meta-item.callgirls-service {
    padding: 6px 14px;
    min-width: auto;
    flex: 1;
  }
  .cg-meta-val.callgirls-service {
    font-size: 1.3rem;
  }
  .cg-meta-sep.callgirls-service {
    display: none;
  }
  .filter-pill.callgirls-service {
    position: static;
    grid-template-columns: minmax(0, 1.4fr) auto minmax(0, 1fr) auto minmax(
        0,
        1fr
      ) auto;
    padding: 7px 7px 7px 10px;
    border-radius: 50px;
    gap: 0;
    align-items: center;
  }
  .seg.callgirls-service {
    padding: 6px 10px;
    gap: 9px;
    min-height: 46px;
  }
  .seg-ic.callgirls-service {
    width: 32px;
    height: 32px;
  }
  .seg-ic.callgirls-service svg:where(.callgirls-service) {
    width: 12px;
    height: 12px;
  }
  .seg-lbl.callgirls-service {
    font-size: 9px;
    letter-spacing: 0.14em;
  }
  .seg-input.callgirls-service,
  .seg-select.callgirls-service,
  .seg-text.callgirls-service {
    font-size: 12.5px;
  }
  .seg-chev.callgirls-service {
    width: 10px;
    height: 10px;
  }
  .seg-divider.callgirls-service {
    width: 1px;
    height: 32px;
    background: linear-gradient(
      180deg,
      transparent,
      rgba(45, 18, 72, 0.18),
      transparent
    );
    margin: 0 2px;
  }
  .filter-btn.callgirls-service {
    width: 46px;
    height: 46px;
    padding: 0;
    border-radius: 50%;
    margin-left: 6px;
    flex-shrink: 0;
    justify-content: center;
  }
  .filter-btn.callgirls-service .btn-txt:where(.callgirls-service) {
    display: none;
  }
  .filter-btn.callgirls-service svg:where(.callgirls-service) {
    width: 16px;
    height: 16px;
  }
  .profiles-grid.callgirls-service {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .price-grid.callgirls-service {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .price-card.callgirls-service {
    padding: 24px 20px 20px;
  }
  .price-card.callgirls-service:last-child {
    grid-column: 1 / -1;
    max-width: 100%;
  }
  .price-tier.callgirls-service {
    font-size: 1.3rem;
  }
  .price-desc.callgirls-service {
    font-size: 11px;
    margin-bottom: 14px;
  }
  .price-tag.callgirls-service {
    top: -10px;
    right: 16px;
    font-size: 9.5px;
    padding: 4px 10px;
  }
  .price-row.callgirls-service {
    padding: 12px 14px;
    gap: 10px;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }
  .price-divider.callgirls-service {
    display: block;
  }
  .price-amt.callgirls-service {
    font-size: 1.05rem;
  }
  .price-perks.callgirls-service span:where(.callgirls-service) {
    font-size: 12px;
  }
  .price-note.callgirls-service {
    font-size: 12px;
    padding: 12px 14px;
    line-height: 1.55;
  }
  .cg-info.callgirls-service {
    padding: 50px 0;
  }
  .cg-ben-grid.callgirls-service {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .cg-strat-case.callgirls-service {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 22px 30px;
  }
  .cg-strat-case-img.callgirls-service {
    max-width: 220px;
    margin: 0 auto;
    aspect-ratio: 1;
  }
  .cg-strat-case.callgirls-service:after {
    top: 14px;
    right: 14px;
    font-size: 9px;
    padding: 4px 10px;
  }
  .cg-strat-case-body.callgirls-service h3:where(.callgirls-service) {
    font-size: 1.35rem;
    padding-left: 14px;
  }
  .cg-strat-case-body.callgirls-service h3:where(.callgirls-service):before {
    top: 8px;
    bottom: 8px;
    width: 3px;
  }
  .cg-strat-case-meta.callgirls-service {
    display: inline-block;
    margin: 4px 0 0;
  }
  .cg-strat-case-who.callgirls-service {
    margin-left: 14px;
    font-size: 0.95rem;
  }
  .cg-strat-case-scope.callgirls-service,
  .cg-strat-case-result.callgirls-service {
    padding: 14px 16px;
    font-size: 0.92rem;
  }
  .cg-strat-case-scope.callgirls-service b:where(.callgirls-service),
  .cg-strat-case-result.callgirls-service b:where(.callgirls-service) {
    display: inline-flex;
    margin-right: 6px;
    margin-bottom: 4px;
    font-size: 0.7rem;
    padding: 3px 9px;
  }
  .cg-routes-grid.callgirls-service {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 36px;
  }
  .cg-route.callgirls-service {
    padding: 32px 24px 28px;
  }
  .cg-route.callgirls-service h3:where(.callgirls-service) {
    font-size: 1.3rem;
  }
  .cg-route-mono.callgirls-service {
    width: 54px;
    height: 54px;
    font-size: 1.8rem;
  }
  .cg-route-ribbon.callgirls-service {
    top: 18px;
    right: -6px;
    padding: 7px 14px 7px 12px;
    font-size: 0.68rem;
  }
  .cg-route.callgirls-service:hover,
  .cg-route-b.callgirls-service:hover {
    transform: translateY(-4px);
  }
  .cg-consult-layout.callgirls-service {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cg-consult-form-shell.callgirls-service {
    padding: 26px 22px;
  }
  .cg-consult-row-2.callgirls-service {
    grid-template-columns: 1fr;
  }
  .cg-consult-corner.callgirls-service {
    width: 8px;
    height: 8px;
  }
  .cg-consult-corner-tl.callgirls-service,
  .cg-consult-corner-tr.callgirls-service {
    top: 10px;
  }
  .cg-consult-corner-bl.callgirls-service,
  .cg-consult-corner-br.callgirls-service {
    bottom: 10px;
  }
  .cg-consult-corner-tl.callgirls-service,
  .cg-consult-corner-bl.callgirls-service {
    left: 10px;
  }
  .cg-consult-corner-tr.callgirls-service,
  .cg-consult-corner-br.callgirls-service {
    right: 10px;
  }
  .cg-consult-corner.callgirls-service:before {
    width: 22px;
  }
  .cg-consult-corner.callgirls-service:after {
    height: 22px;
  }
  .cg-consult-point.callgirls-service {
    padding: 12px 14px;
    font-size: 0.9rem;
    gap: 12px;
  }
  .cg-consult-gem.callgirls-service {
    width: 30px;
    height: 30px;
  }
  .cg-consult-submit.callgirls-service {
    padding: 14px 26px;
    font-size: 0.9rem;
  }
  .info-h2.callgirls-service {
    font-size: 1.6rem;
  }
  .info-head.callgirls-service {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .area-grid.callgirls-service,
  .trust-grid.callgirls-service {
    grid-template-columns: repeat(2, 1fr);
  }
  .catpop-grid.callgirls-service {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .how-step.callgirls-service {
    padding: 22px 18px 20px;
  }
  .cgfaq-body.callgirls-service {
    grid-template-columns: 1fr;
  }
  .cgfaq-sidebar.callgirls-service {
    position: static;
  }
  .cgfaq-panel.callgirls-service {
    padding: 24px 22px;
  }
  .cgfaq-panel-title.callgirls-service {
    font-size: 1.3rem;
  }
  .cta-pill.callgirls-service {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .cta-pill-btn.callgirls-service {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .cg-hero-inner.callgirls-service {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .cg-gallery.callgirls-service {
    max-width: 320px;
    margin: 0 auto;
    gap: 10px;
  }
  .cg-gal-badge-top.callgirls-service {
    left: 4%;
    top: 2%;
  }
  .cg-gal-badge-bot.callgirls-service {
    right: 4%;
    bottom: 2%;
  }
}
@media (max-width: 480px) {
  .cg-hero.callgirls-service {
    padding: 40px 0 30px;
  }
  .cg-h1.callgirls-service {
    font-size: 1.7rem;
  }
  .cg-chip.callgirls-service {
    font-size: 10px;
    padding: 6px 12px;
  }
  .cg-meta.callgirls-service {
    gap: 0;
  }
  .cg-meta-item.callgirls-service {
    padding: 4px 10px;
  }
  .cg-meta-val.callgirls-service {
    font-size: 1.1rem;
  }
  .cg-meta-lbl.callgirls-service {
    font-size: 9px;
    letter-spacing: 0.08em;
  }
  .filter-pill.callgirls-service {
    grid-template-columns: 1fr;
    padding: 10px;
    border-radius: 22px;
    gap: 8px;
    background: linear-gradient(180deg, #fff, #fff5fa);
    border: 1px solid rgba(233, 30, 140, 0.22);
    box-shadow: 0 18px 44px #e91e8c24, 0 0 0 1px #fff9 inset, inset 0 1px #fff;
  }
  .filter-pill.callgirls-service > .seg-drop-wrap:where(.callgirls-service) {
    grid-column: 1 / -1;
  }
  .seg.callgirls-service {
    padding: 10px 12px;
    gap: 10px;
    border-radius: 14px;
    border: 1px solid rgba(233, 30, 140, 0.14);
    background: #fff;
  }
  .seg-active.callgirls-service {
    background: linear-gradient(135deg, #e91e8c1a, #e91e8c08);
    border-color: #e91e8c47;
  }
  .seg-divider.callgirls-service {
    display: none;
  }
  .seg-ic.callgirls-service {
    width: 34px;
    height: 34px;
  }
  .seg-input.callgirls-service,
  .seg-select.callgirls-service {
    font-size: 13px;
  }
  .filter-btn.callgirls-service {
    height: 44px;
    font-size: 13px;
  }
  .count-num.callgirls-service {
    font-size: 1.6rem;
  }
  .count-lbl.callgirls-service {
    font-size: 13px;
  }
  .profiles-grid.callgirls-service {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .cg-info.callgirls-service {
    padding: 44px 0;
  }
  .cg-ben-grid.callgirls-service {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .info-h2.callgirls-service {
    font-size: 1.4rem;
  }
  .area-grid.callgirls-service {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .trust-grid.callgirls-service {
    grid-template-columns: 1fr;
  }
  .catpop-grid.callgirls-service {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .how-steps.callgirls-service {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .cgfaq-topbar.callgirls-service {
    padding: 14px 18px;
    gap: 12px;
  }
  .cgfaq-brand-title.callgirls-service {
    font-size: 16px;
  }
  .cgfaq-ask.callgirls-service {
    width: 100%;
    justify-content: center;
  }
  .cgfaq-panel.callgirls-service {
    padding: 22px 18px;
    border-radius: 18px;
  }
  .cgfaq-panel-title.callgirls-service {
    font-size: 1.2rem;
  }
  .cgfaq-panel-foot.callgirls-service {
    flex-direction: column;
    align-items: flex-start;
  }
  .how-step.callgirls-service {
    padding: 20px 16px;
  }
  .how-step-icon.callgirls-service {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
  }
  .cat-chip.callgirls-service {
    font-size: 12px;
    padding: 8px 12px;
  }
  .price-grid.callgirls-service {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .price-card.callgirls-service {
    padding: 22px 18px 18px;
  }
  .price-card.callgirls-service:last-child {
    grid-column: auto;
  }
  .price-tier.callgirls-service {
    font-size: 1.4rem;
  }
  .price-desc.callgirls-service {
    font-size: 11px;
    margin-bottom: 14px;
    letter-spacing: 0.08em;
  }
  .price-tag.callgirls-service {
    top: -10px;
    right: 16px;
    font-size: 9.5px;
    padding: 4px 11px;
  }
  .price-row.callgirls-service {
    padding: 12px 14px;
    gap: 12px;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }
  .price-divider.callgirls-service {
    display: block;
    width: 1px;
    height: 24px;
  }
  .price-amt.callgirls-service {
    font-size: 1.05rem;
  }
  .price-perks.callgirls-service {
    gap: 8px;
  }
  .price-perks.callgirls-service span:where(.callgirls-service) {
    font-size: 12px;
  }
  .price-note.callgirls-service {
    font-size: 12px;
    padding: 12px 14px;
    line-height: 1.55;
  }
  .faq-q.callgirls-service {
    font-size: 13px;
    padding: 14px 16px;
  }
  .faq-a.callgirls-service {
    font-size: 13px;
    padding: 0 16px 14px;
  }
  .cta-pill.callgirls-service {
    padding: 18px;
  }
  .cg-gallery.callgirls-service {
    max-width: 280px;
    gap: 8px;
  }
  .cg-gal-badge.callgirls-service {
    padding: 8px 12px;
    gap: 8px;
  }
  .cg-gal-badge-icon.callgirls-service {
    width: 24px;
    height: 24px;
  }
  .cg-gal-badge-v.callgirls-service {
    font-size: 12px;
  }
  .cg-gal-badge-l.callgirls-service {
    font-size: 9px;
  }
  .cg-gal-name.callgirls-service {
    font-size: 13px;
  }

}

.age-logo.svelte-1l0quee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin-bottom: 24px;
  filter: drop-shadow(0 4px 12px rgba(233, 30, 140, 0.3));
}
.age-icon-wrap.svelte-1l0quee {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: var(--rose-subtle);
  border: 1px solid rgba(233, 30, 140, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.age-box.svelte-1l0quee h2:where(.svelte-1l0quee) {
  font-size: 1.7rem;
  color: var(--heading);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.age-box.svelte-1l0quee > p:where(.svelte-1l0quee) {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 14px;
  line-height: 1.7;
}
.age-btns.svelte-1l0quee {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.age-enter.svelte-1l0quee {
  justify-content: center;
  padding: 15px 36px;
  font-size: 15px;
}
.age-exit.svelte-1l0quee {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  padding: 13px 36px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}
.age-exit.svelte-1l0quee:hover {
  border-color: var(--rose);
  color: var(--rose);
}
.age-disclaimer.svelte-1l0quee {
  font-size: 11px;
  color: var(--text-dim);
}
.age-disclaimer.svelte-1l0quee a:where(.svelte-1l0quee) {
  color: var(--text-muted);
  text-decoration: underline;
}
.scroll-top-float.svelte-1l0quee {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px #e91e8c66;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: svelte-1l0quee-fadeInUp 0.25s ease;
}
.scroll-top-float.svelte-1l0quee:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px #e91e8c80;
}
@keyframes svelte-1l0quee-fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

html,
body {
  overflow-x: clip;
}
section.svelte-1j8k0si {
  max-width: 100vw;
  overflow: clip;
}
.blg-grad.svelte-1j8k0si {
  background: linear-gradient(135deg, var(--rose), #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.blg-hero.svelte-1j8k0si,
.blg-how-sec.svelte-1j8k0si,
.blg-list-sec.svelte-1j8k0si,
.blg-writers-sec.svelte-1j8k0si,
.blg-tags-sec.svelte-1j8k0si,
.blg-news-sec.svelte-1j8k0si {
  border-bottom: 1px solid rgba(233, 30, 140, 0.12);
}
.blg-news-sec.svelte-1j8k0si {
  border-bottom: none;
}
.blg-hero.svelte-1j8k0si {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  background: radial-gradient(
      900px 500px at 50% 0%,
      rgba(245, 158, 11, 0.1) 0%,
      transparent 55%
    ),
    radial-gradient(
      900px 500px at 0% 50%,
      rgba(233, 30, 140, 0.09) 0%,
      transparent 55%
    ),
    radial-gradient(
      900px 500px at 100% 50%,
      rgba(245, 158, 11, 0.09) 0%,
      transparent 55%
    ),
    linear-gradient(180deg, #fff0f7, #fff5ec);
}
.blg-hero.svelte-1j8k0si:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(
      rgba(233, 30, 140, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(233, 30, 140, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    #000 40%,
    transparent 75%
  );
  mask-image: radial-gradient(ellipse at center, #000 40%, transparent 75%);
  pointer-events: none;
}
.blg-orb.svelte-1j8k0si {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.5;
}
.blg-orb-1.svelte-1j8k0si {
  top: -120px;
  left: -100px;
  width: 360px;
  height: 360px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.35),
    transparent 70%
  );
}
.blg-orb-2.svelte-1j8k0si {
  top: 40px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.3), transparent 70%);
}
.blg-orb-3.svelte-1j8k0si {
  bottom: -120px;
  left: 30%;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(251, 146, 60, 0.25),
    transparent 70%
  );
}
.blg-hero.svelte-1j8k0si > .grid-container:where(.svelte-1j8k0si) {
  position: relative;
  z-index: 1;
}
.blg-hero-inner.svelte-1j8k0si {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.blg-hero-text.svelte-1j8k0si {
  max-width: 640px;
}
.blg-crumb.svelte-1j8k0si {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  margin-bottom: 14px;
  background: #ffffffd9;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  box-shadow: 0 4px 14px #2d12480f;
}
.blg-crumb.svelte-1j8k0si a:where(.svelte-1j8k0si) {
  color: var(--rose);
  text-decoration: none;
  font-weight: 600;
}
.blg-crumb.svelte-1j8k0si span:where(.svelte-1j8k0si):last-child {
  color: #2a0a1a;
  font-weight: 600;
}
.blg-chip.svelte-1j8k0si {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 12px;
  margin: 0 0 20px;
  background: #ffffffd9;
  border: 1px solid rgba(245, 196, 107, 0.4);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #b45309;
  box-shadow: 0 6px 18px #f59e0b26;
}
.blg-chip-dot.svelte-1j8k0si {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px #10b98133;
  animation: svelte-1j8k0si-blgPulse 2.2s ease-in-out infinite;
}
@keyframes svelte-1j8k0si-blgPulse {
  0%,
  to {
    box-shadow: 0 0 0 3px #10b98133;
  }
  50% {
    box-shadow: 0 0 0 6px #10b9810d, 0 0 18px #10b981cc;
  }
}
.blg-h1.svelte-1j8k0si {
  font-size: clamp(2rem, 4.3vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #1a0611;
  margin: 0 0 14px;
}
.blg-lead.svelte-1j8k0si {
  max-width: 540px;
  margin: 0 0 24px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
}
.blg-search.svelte-1j8k0si {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 540px;
  margin: 0 0 14px;
  padding: 6px;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 50px;
  background-clip: padding-box;
  box-shadow: 0 14px 34px #2d12481a, inset 0 1px #fffc;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.blg-search.svelte-1j8k0si:before {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  bottom: -2px;
  left: -2px;
  z-index: -1;
  border-radius: 50px;
  background: linear-gradient(135deg, #e91e8c59, #f59e0b59);
  opacity: 0.5;
  transition: opacity 0.3s;
}
.blg-search.svelte-1j8k0si:focus-within {
  box-shadow: 0 20px 44px #e91e8c38, 0 0 0 4px #e91e8c14, inset 0 1px #fffc;
  transform: translateY(-1px);
}
.blg-search.svelte-1j8k0si:focus-within:before {
  opacity: 1;
}
.blg-search-ic.svelte-1j8k0si {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 14px #e91e8c59;
}
.blg-search.svelte-1j8k0si input:where(.svelte-1j8k0si) {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  padding: 0 4px;
  font-size: 14px;
  font-family: inherit;
  font-weight: 600;
  color: #1a0611;
}
.blg-search.svelte-1j8k0si input:where(.svelte-1j8k0si)::placeholder {
  color: var(--text-dim, #9b8aaf);
  font-weight: 500;
}
.blg-search-count.svelte-1j8k0si {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 12px 7px 8px;
  background: #e91e8c14;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  color: var(--rose);
  letter-spacing: 0.02em;
  flex-shrink: 0;
  white-space: nowrap;
}
.blg-search-count-n.svelte-1j8k0si {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  border-radius: 50px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.blg-search-clear.svelte-1j8k0si {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e91e8c1a;
  color: var(--rose);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s;
}
.blg-search-clear.svelte-1j8k0si:hover {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  transform: rotate(90deg);
}
.blg-trending.svelte-1j8k0si {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 0 0 24px;
  font-size: 12px;
}
.blg-trending-l.svelte-1j8k0si {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-dim, #7b6a90);
  text-transform: uppercase;
  margin-right: 4px;
}
.blg-trending.svelte-1j8k0si a:where(.svelte-1j8k0si) {
  padding: 5px 11px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.15);
  border-radius: 50px;
  color: var(--rose-dark, #c2185b);
  font-size: 11.5px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 3px 8px #2d12480d;
  transition: all 0.25s;
}
.blg-trending.svelte-1j8k0si a:where(.svelte-1j8k0si):hover {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  border-color: transparent;
  transform: translateY(-1px);
}
.blg-stats.svelte-1j8k0si {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 10px 20px;
  background: #ffffffe6;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 50px;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 34px #2d124814;
}
.blg-stat.svelte-1j8k0si {
  text-align: center;
}
.blg-stat-v.svelte-1j8k0si {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.blg-stat-v.svelte-1j8k0si span:where(.svelte-1j8k0si) {
  font-size: 0.85em;
}
.blg-stat-l.svelte-1j8k0si {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-dim, #7b6a90);
  margin-top: 4px;
  text-transform: uppercase;
}
.blg-stat-sep.svelte-1j8k0si {
  width: 1px;
  height: 22px;
  background: #2d12481a;
}
.blg-hero-vis.svelte-1j8k0si {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1/1;
  margin-left: auto;
}
.blg-vis-glow.svelte-1j8k0si {
  position: absolute;
  top: 6%;
  right: 6%;
  bottom: 6%;
  left: 6%;
  border-radius: 40px;
  background: radial-gradient(
      circle at 30% 30%,
      rgba(233, 30, 140, 0.32),
      transparent 55%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(245, 158, 11, 0.28),
      transparent 55%
    );
  filter: blur(40px);
  pointer-events: none;
}
.blg-vis-grid.svelte-1j8k0si {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    #000 40%,
    transparent 85%
  );
  mask-image: radial-gradient(ellipse at center, #000 40%, transparent 85%);
}
.blg-mag.svelte-1j8k0si {
  position: absolute;
  width: 280px;
  padding: 10px;
  background: #fff;
  border: 1px solid rgba(45, 18, 72, 0.06);
  border-radius: 20px;
  box-shadow: 0 24px 60px #2d124833, 0 4px 10px #2d124814;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s;
}
.blg-mag.svelte-1j8k0si:hover {
  transform: rotate(0) scale(1.05) !important;
  z-index: 20;
  box-shadow: 0 30px 70px #e91e8c4d;
}
.blg-mag-1.svelte-1j8k0si {
  top: 18%;
  left: 8%;
  z-index: 5;
  transform: rotate(-5deg);
  animation: svelte-1j8k0si-magFloat 7s ease-in-out infinite;
}
.blg-mag-2.svelte-1j8k0si {
  top: 4%;
  right: 2%;
  z-index: 3;
  transform: rotate(8deg);
  animation: svelte-1j8k0si-magFloat 8s ease-in-out infinite reverse;
  animation-delay: -2s;
  width: 220px;
}
.blg-mag-3.svelte-1j8k0si {
  bottom: 6%;
  right: 10%;
  z-index: 2;
  transform: rotate(-10deg);
  animation: svelte-1j8k0si-magFloat 9s ease-in-out infinite;
  animation-delay: -4s;
  width: 200px;
}
@keyframes svelte-1j8k0si-magFloat {
  0%,
  to {
    translate: 0 0;
  }
  50% {
    translate: 0 -8px;
  }
}
.blg-mag-ribbon.svelte-1j8k0si {
  position: absolute;
  top: -10px;
  right: 14px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px 5px 9px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px #e91e8c73;
  white-space: nowrap;
}
.blg-mag-img.svelte-1j8k0si {
  width: 100%;
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  border-radius: 14px;
  margin-bottom: 10px;
}
.blg-mag-body.svelte-1j8k0si {
  padding: 0 4px 6px;
}
.blg-mag-cat.svelte-1j8k0si {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 50px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.blg-mag-cat-rose.svelte-1j8k0si {
  background: #e91e8c1a;
  color: var(--rose-dark, #c2185b);
}
.blg-mag-cat-gold.svelte-1j8k0si {
  background: #f59e0b1f;
  color: #b45309;
}
.blg-mag-cat-peach.svelte-1j8k0si {
  background: #f973161f;
  color: #c2410c;
}
.blg-mag-t.svelte-1j8k0si {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: #1a0611;
}
.blg-mag-2.svelte-1j8k0si .blg-mag-t:where(.svelte-1j8k0si),
.blg-mag-3.svelte-1j8k0si .blg-mag-t:where(.svelte-1j8k0si) {
  font-size: 12px;
}
.blg-mag-meta.svelte-1j8k0si {
  display: inline-flex;
  gap: 6px;
  margin-top: 6px;
  font-size: 10.5px;
  font-weight: 500;
  color: var(--text-muted);
}
.blg-mag-sep.svelte-1j8k0si {
  opacity: 0.5;
}
.blg-vis-stat.svelte-1j8k0si {
  position: absolute;
  top: 4%;
  left: -4%;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 10px 10px;
  background: #fff;
  border: 1px solid rgba(45, 18, 72, 0.06);
  border-radius: 16px;
  box-shadow: 0 14px 34px #2d124826;
  animation: svelte-1j8k0si-magFloat 6s ease-in-out infinite;
  animation-delay: -1s;
}
.blg-vis-stat-ic.svelte-1j8k0si {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #10b98124;
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.blg-vis-stat-v.svelte-1j8k0si {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #059669;
}
.blg-vis-stat-l.svelte-1j8k0si {
  font-size: 10.5px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 1px;
}
.blg-vis-pill.svelte-1j8k0si {
  position: absolute;
  bottom: 14%;
  left: -2%;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px 8px 10px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.18);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--rose-dark, #c2185b);
  box-shadow: 0 10px 24px #2d124824;
  animation: svelte-1j8k0si-magFloat 7s ease-in-out infinite reverse;
  animation-delay: -3s;
}
.blg-vis-pill-dot.svelte-1j8k0si {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 3px #e91e8c33;
  animation: svelte-1j8k0si-blgPulse 2s ease-in-out infinite;
}
.blg-sec-head.svelte-1j8k0si {
  text-align: center;
  margin-bottom: 48px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.blg-sec-head-row.svelte-1j8k0si {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 28px;
}
.blg-eyebrow.svelte-1j8k0si {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--rose);
  margin-bottom: 16px;
}
.blg-eyebrow-line.svelte-1j8k0si {
  width: 30px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--rose));
}
.blg-eyebrow-line.svelte-1j8k0si:last-child {
  background: linear-gradient(90deg, var(--rose), transparent);
}
.blg-h2.svelte-1j8k0si {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.12;
  color: #1a0611;
  margin: 0 0 14px;
}
.blg-sub.svelte-1j8k0si {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 auto;
  max-width: 580px;
}
.blg-how-sec.svelte-1j8k0si {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background: radial-gradient(
      900px 500px at 0% 0%,
      rgba(233, 30, 140, 0.14) 0%,
      transparent 55%
    ),
    radial-gradient(
      900px 500px at 100% 0%,
      rgba(245, 158, 11, 0.14) 0%,
      transparent 55%
    ),
    radial-gradient(
      900px 500px at 50% 100%,
      rgba(251, 146, 60, 0.12) 0%,
      transparent 55%
    ),
    linear-gradient(180deg, #fff0f7, #fff5ec, #ffeadb);
}
.blg-how-sec.svelte-1j8k0si:before,
.blg-how-sec.svelte-1j8k0si:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.45;
  z-index: 0;
}
.blg-how-sec.svelte-1j8k0si:before {
  top: -120px;
  left: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.38),
    transparent 70%
  );
}
.blg-how-sec.svelte-1j8k0si:after {
  bottom: -120px;
  right: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.32),
    transparent 70%
  );
}
.blg-how-dots.svelte-1j8k0si {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: radial-gradient(
      circle,
      rgba(233, 30, 140, 0.18) 1.2px,
      transparent 1.5px
    ),
    linear-gradient(rgba(245, 158, 11, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 158, 11, 0.06) 1px, transparent 1px);
  background-size: 24px 24px, 48px 48px, 48px 48px;
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    #000 30%,
    transparent 85%
  );
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 85%);
  pointer-events: none;
  opacity: 0.9;
  z-index: 0;
}
.blg-how-sec.svelte-1j8k0si > .grid-container:where(.svelte-1j8k0si) {
  position: relative;
  z-index: 1;
}
.blg-how-flow.svelte-1j8k0si {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 0;
  align-items: center;
  max-width: 920px;
  margin: 0 auto 48px;
}
.blg-how-line.svelte-1j8k0si {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32%;
  height: 60px;
  pointer-events: none;
  z-index: 0;
}
.blg-how-line-left.svelte-1j8k0si {
  left: 18%;
}
.blg-how-line-right.svelte-1j8k0si {
  right: 18%;
}
.blg-how-node.svelte-1j8k0si {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.blg-how-circle.svelte-1j8k0si {
  position: relative;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid rgba(233, 30, 140, 0.16);
  box-shadow: 0 20px 48px #2d12481f, inset 0 2px #ffffffe6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blg-how-circle-main.svelte-1j8k0si {
  width: 220px;
  height: 220px;
  background: linear-gradient(135deg, #fff, #fff6fb);
  border-color: #e91e8c3d;
  box-shadow: 0 28px 60px #e91e8c38, inset 0 2px #ffffffe6;
  z-index: 2;
}
.blg-how-stack.svelte-1j8k0si {
  position: relative;
  width: 110px;
  height: 120px;
}
.blg-how-stack-sheet.svelte-1j8k0si {
  position: absolute;
  width: 84px;
  height: 108px;
  background: #fff;
  border: 1.5px solid rgba(233, 30, 140, 0.18);
  border-radius: 10px;
  box-shadow: 0 6px 16px #2d12481a;
}
.blg-how-sheet-1.svelte-1j8k0si {
  top: 0;
  left: 26px;
  transform: rotate(10deg);
  background: linear-gradient(135deg, #ffe4ef, #fff0db);
}
.blg-how-sheet-2.svelte-1j8k0si {
  top: 4px;
  left: 14px;
  transform: rotate(-6deg);
  background: linear-gradient(135deg, #fff0db, #ffe0b3);
}
.blg-how-sheet-3.svelte-1j8k0si {
  top: 8px;
  left: 0;
  transform: rotate(2deg);
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
}
.blg-how-sheet-line.svelte-1j8k0si {
  height: 4px;
  border-radius: 50px;
  background: linear-gradient(90deg, #e91e8c4d, #f59e0b4d);
  width: 100%;
}
.blg-how-sheet-line.w90.svelte-1j8k0si {
  width: 90%;
}
.blg-how-sheet-line.w80.svelte-1j8k0si {
  width: 80%;
}
.blg-how-sheet-line.w70.svelte-1j8k0si {
  width: 70%;
}
.blg-how-sheet-line.w60.svelte-1j8k0si {
  width: 60%;
}
.blg-how-avs.svelte-1j8k0si {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 10px;
  padding: 18px 10px 22px;
  position: relative;
  z-index: 2;
}
.blg-how-av.svelte-1j8k0si {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  border: 3px solid #fff;
  box-shadow: 0 8px 18px #2d124826;
}
.blg-how-av.svelte-1j8k0si svg:where(.svelte-1j8k0si) {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}
.blg-how-av-lbl.svelte-1j8k0si {
  position: absolute;
  bottom: -14px;
  padding: 2px 8px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.15);
  border-radius: 50px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #1a0611;
  white-space: nowrap;
  box-shadow: 0 4px 8px #2d12481a;
}
.blg-how-ring.svelte-1j8k0si {
  position: absolute;
  top: -14px;
  right: -14px;
  bottom: -14px;
  left: -14px;
  border: 2px dashed rgba(233, 30, 140, 0.22);
  border-radius: 50%;
  animation: svelte-1j8k0si-howSpin 30s linear infinite;
  pointer-events: none;
}
.blg-how-ring-2.svelte-1j8k0si {
  top: -28px;
  right: -28px;
  bottom: -28px;
  left: -28px;
  border-color: #f59e0b38;
  animation: svelte-1j8k0si-howSpin 45s linear infinite reverse;
}
@keyframes svelte-1j8k0si-howSpin {
  to {
    transform: rotate(360deg);
  }
}
.blg-how-article.svelte-1j8k0si {
  width: 110px;
  padding: 12px 10px;
  background: #fff;
  border: 1.5px solid rgba(233, 30, 140, 0.2);
  border-radius: 12px;
  box-shadow: 0 10px 22px #2d12481f;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.blg-how-article-head.svelte-1j8k0si {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.blg-how-article-cat.svelte-1j8k0si {
  width: 40px;
  height: 14px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
}
.blg-how-article-cta.svelte-1j8k0si {
  display: inline-block;
  margin-top: 4px;
  padding: 4px 10px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  border-radius: 50px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  width: fit-content;
}
.blg-how-steps.svelte-1j8k0si {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 920px;
  margin: 0 auto 48px;
}
.blg-how-step.svelte-1j8k0si {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.1);
  border-radius: 18px;
  box-shadow: 0 8px 22px #2d12480d;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.blg-how-step.svelte-1j8k0si:hover {
  transform: translateY(-4px);
  border-color: #e91e8c4d;
  box-shadow: 0 16px 34px #e91e8c24;
}
.blg-how-num.svelte-1j8k0si {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}
.blg-how-num-gold.svelte-1j8k0si {
  background: linear-gradient(135deg, #fbbf24, #d97706);
  -webkit-background-clip: text;
  background-clip: text;
}
.blg-how-num-peach.svelte-1j8k0si {
  background: linear-gradient(135deg, #fb923c, #ea580c);
  -webkit-background-clip: text;
  background-clip: text;
}
.blg-how-step.svelte-1j8k0si strong:where(.svelte-1j8k0si) {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #1a0611;
  margin-bottom: 4px;
}
.blg-how-step.svelte-1j8k0si p:where(.svelte-1j8k0si) {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}
.blg-how-feat.svelte-1j8k0si {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 760px;
  margin: 0 auto;
  padding: 12px 20px 12px 12px;
  background: #fff;
  border: 1.5px solid rgba(233, 30, 140, 0.18);
  border-radius: 20px;
  box-shadow: 0 16px 36px #2d124814;
  text-decoration: none;
  color: inherit;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}
.blg-how-feat.svelte-1j8k0si:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  opacity: 0;
  transition: opacity 0.3s;
}
.blg-how-feat.svelte-1j8k0si:hover {
  transform: translateY(-4px);
  border-color: var(--rose);
  box-shadow: 0 24px 54px #e91e8c33;
}
.blg-how-feat.svelte-1j8k0si:hover:before {
  opacity: 1;
}
.blg-how-feat-img.svelte-1j8k0si {
  width: 110px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
}
.blg-how-feat-body.svelte-1j8k0si {
  flex: 1;
  min-width: 0;
}
.blg-how-feat-badge.svelte-1j8k0si {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px 3px 7px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  border-radius: 50px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  box-shadow: 0 4px 10px #e91e8c59;
}
.blg-how-feat.svelte-1j8k0si h3:where(.svelte-1j8k0si) {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: #1a0611;
  margin: 0 0 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blg-how-feat-meta.svelte-1j8k0si {
  display: inline-flex;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
}
.blg-how-feat-cta.svelte-1j8k0si {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px 10px 14px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 700;
  box-shadow: 0 8px 18px #e91e8c59;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.blg-feat-sec.svelte-1j8k0si {
  padding: 0;
  display: none;
}
.blg-theme-rose.svelte-1j8k0si {
  --bt-grad: linear-gradient(135deg, #ff6b9d, #e91e8c 60%, #c21e6e);
  --bt-accent: #e91e8c;
  --bt-ring: rgba(233, 30, 140, 0.22);
  --bt-shadow: rgba(233, 30, 140, 0.25);
}
.blg-theme-gold.svelte-1j8k0si {
  --bt-grad: linear-gradient(135deg, #fcd34d, #f59e0b 60%, #d97706);
  --bt-accent: #d97706;
  --bt-ring: rgba(245, 158, 11, 0.25);
  --bt-shadow: rgba(245, 158, 11, 0.25);
}
.blg-theme-peach.svelte-1j8k0si {
  --bt-grad: linear-gradient(135deg, #fdba74, #f97316 60%, #ea580c);
  --bt-accent: #ea580c;
  --bt-ring: rgba(249, 115, 22, 0.25);
  --bt-shadow: rgba(249, 115, 22, 0.25);
}
.blg-feat.svelte-1j8k0si {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: #fff;
  border: 1.5px solid var(--bt-ring);
  border-radius: 28px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 18px 50px #2d124814;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s,
    border-color 0.45s;
}
.blg-feat.svelte-1j8k0si:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--bt-grad);
  z-index: 3;
}
.blg-feat.svelte-1j8k0si:hover {
  transform: translateY(-6px);
  border-color: var(--bt-accent);
  box-shadow: 0 30px 70px var(--bt-shadow);
}
.blg-feat-img.svelte-1j8k0si {
  position: relative;
  min-height: 340px;
  overflow: hidden;
}
.blg-feat-img.svelte-1j8k0si img:where(.svelte-1j8k0si) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.blg-feat-img-overlay.svelte-1j8k0si {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.1) 0%,
    transparent 30%,
    rgba(0, 0, 0, 0.4) 100%
  );
}
.blg-feat-cat.svelte-1j8k0si {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 6px 13px 6px 11px;
  background: #fffffff2;
  color: var(--bt-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 50px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 16px #0003;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  z-index: 2;
}
.blg-feat-cat.svelte-1j8k0si:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bt-accent);
}
.blg-feat-badge.svelte-1j8k0si {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px 6px 10px;
  background: var(--bt-grad);
  color: #fff;
  border-radius: 50px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: 0 8px 18px var(--bt-shadow);
  z-index: 2;
}
.blg-feat-body.svelte-1j8k0si {
  padding: 32px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blg-feat-meta.svelte-1j8k0si {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.blg-feat-meta-i.svelte-1j8k0si {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.blg-feat-meta-sep.svelte-1j8k0si {
  opacity: 0.4;
}
.blg-feat-title.svelte-1j8k0si {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #1a0611;
  margin: 0 0 12px;
}
.blg-feat-ex.svelte-1j8k0si {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 24px;
}
.blg-feat-foot.svelte-1j8k0si {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px dashed rgba(45, 18, 72, 0.12);
  flex-wrap: wrap;
  gap: 14px;
}
.blg-feat-author.svelte-1j8k0si {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blg-feat-av.svelte-1j8k0si {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 6px 14px #e91e8c4d;
}
.blg-feat-author.svelte-1j8k0si span:where(.svelte-1j8k0si) {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
}
.blg-feat-cta.svelte-1j8k0si {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  color: var(--bt-accent);
}
.blg-list-sec.svelte-1j8k0si {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background: linear-gradient(180deg, #fff7fb, #fffaf2);
}
.blg-list-orb.svelte-1j8k0si {
  position: absolute;
  top: -120px;
  right: -100px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.18),
    transparent 70%
  );
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.5;
}
.blg-list-sec.svelte-1j8k0si > .grid-container:where(.svelte-1j8k0si) {
  position: relative;
  z-index: 1;
}
.blg-tabs-wrap.svelte-1j8k0si {
  display: flex;
  justify-content: center;
  margin: 0 0 40px;
  padding: 8px 4px;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.blg-tabs-wrap.svelte-1j8k0si::-webkit-scrollbar {
  display: none;
}
.blg-tabs.svelte-1j8k0si {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 4px 0;
  background: transparent;
  border: none;
  box-shadow: none;
}
.blg-tab.svelte-1j8k0si {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px 8px 8px;
  background: #fff;
  border: 1.5px solid var(--border, #ead8f0);
  border-radius: 50px;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: #1a0611;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
  box-shadow: 0 4px 12px #2d12480d;
}
.blg-tab-ic.svelte-1j8k0si {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffe4ef, #fff0db);
  color: var(--rose-dark, #c2185b);
  transition: all 0.3s;
  flex-shrink: 0;
}
.blg-tab-n.svelte-1j8k0si {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 20px;
  padding: 0 7px;
  background: #2d12480f;
  color: #5a4668;
  border-radius: 50px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: all 0.3s;
}
.blg-tab.svelte-1j8k0si:hover {
  transform: translateY(-2px);
  border-color: var(--rose);
  color: var(--rose);
  box-shadow: 0 12px 26px #e91e8c2e;
}
.blg-tab.svelte-1j8k0si:hover .blg-tab-ic:where(.svelte-1j8k0si) {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  transform: scale(1.05);
}
.blg-tab.svelte-1j8k0si:hover .blg-tab-n:where(.svelte-1j8k0si) {
  background: #e91e8c1f;
  color: var(--rose);
}
.blg-tab.is-active.svelte-1j8k0si {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  border-color: transparent;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px #e91e8c47;
}
.blg-tab.is-active.svelte-1j8k0si .blg-tab-ic:where(.svelte-1j8k0si) {
  background: #ffffff38;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.blg-tab.is-active.svelte-1j8k0si .blg-tab-n:where(.svelte-1j8k0si) {
  background: #fffffff2;
  color: var(--rose);
  box-shadow: 0 3px 8px #00000026;
}
.blg-empty.svelte-1j8k0si {
  text-align: center;
  padding: 60px 20px;
  max-width: 360px;
  margin: 0 auto;
}
.blg-empty-ic.svelte-1j8k0si {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffe4ef, #fff0db);
  color: var(--rose);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.blg-empty.svelte-1j8k0si h3:where(.svelte-1j8k0si) {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a0611;
  margin: 0 0 6px;
}
.blg-empty.svelte-1j8k0si p:where(.svelte-1j8k0si) {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}
.blg-soon.svelte-1j8k0si {
  position: relative;
  max-width: 720px;
  margin: 40px auto;
  padding: 64px 44px 54px;
  text-align: center;
  background: radial-gradient(
      80% 60% at 50% 0%,
      rgba(233, 30, 140, 0.07),
      transparent 60%
    ),
    radial-gradient(
      60% 40% at 50% 100%,
      rgba(245, 158, 11, 0.08),
      transparent 60%
    ),
    linear-gradient(180deg, #fffaf3, #fff4fa);
  border-radius: 28px;
  border: 1px solid rgba(233, 30, 140, 0.12);
  box-shadow: 0 1px #ffffffe6 inset, 0 24px 60px -24px #c2185b38,
    0 8px 22px #2d12480d;
  overflow: hidden;
  isolation: isolate;
  animation: svelte-1j8k0si-blgSoonIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes svelte-1j8k0si-blgSoonIn {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.blg-soon.svelte-1j8k0si:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(135deg, #e91e8c, #fb7185 45%, #f59e0b);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.55;
  pointer-events: none;
}
.blg-soon-glow.svelte-1j8k0si {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(52px);
  opacity: 0.55;
  z-index: -1;
}
.blg-soon-glow-1.svelte-1j8k0si {
  top: -60px;
  left: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.35),
    transparent 70%
  );
  animation: svelte-1j8k0si-blgSoonOrb 9s ease-in-out infinite;
}
.blg-soon-glow-2.svelte-1j8k0si {
  bottom: -80px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.32),
    transparent 70%
  );
  animation: svelte-1j8k0si-blgSoonOrb 11s ease-in-out infinite -3s;
}
@keyframes svelte-1j8k0si-blgSoonOrb {
  0%,
  to {
    transform: translate(0) scale(1);
  }
  50% {
    transform: translate(14px, -10px) scale(1.08);
  }
}
.blg-soon-ring.svelte-1j8k0si {
  position: absolute;
  top: 20px;
  left: 50%;
  width: 180px;
  height: 180px;
  margin-left: -90px;
  border-radius: 50%;
  border: 1.5px dashed rgba(233, 30, 140, 0.22);
  animation: svelte-1j8k0si-blgSoonSpin 24s linear infinite;
  pointer-events: none;
  z-index: -1;
}
@keyframes svelte-1j8k0si-blgSoonSpin {
  to {
    transform: rotate(360deg);
  }
}
.blg-soon-badge.svelte-1j8k0si {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: #e91e8c1a;
  color: #be185d;
  border: 1px solid rgba(233, 30, 140, 0.22);
  border-radius: 50px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.blg-soon-badge-dot.svelte-1j8k0si {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b, #e91e8c);
  box-shadow: 0 0 0 3px #e91e8c2e;
  animation: svelte-1j8k0si-blgSoonPulse 1.8s ease-in-out infinite;
}
@keyframes svelte-1j8k0si-blgSoonPulse {
  0%,
  to {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.75);
    opacity: 0.6;
  }
}
.blg-soon-gem.svelte-1j8k0si {
  display: inline-flex;
  margin-bottom: 24px;
  filter: drop-shadow(0 18px 28px rgba(194, 24, 91, 0.28));
  animation: svelte-1j8k0si-blgSoonFloat 5.5s ease-in-out infinite;
}
@keyframes svelte-1j8k0si-blgSoonFloat {
  0%,
  to {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-8px) rotate(-2deg);
  }
}
.blg-soon-h.svelte-1j8k0si {
  font-size: clamp(1.8rem, 3.6vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #1a0611;
  margin: 0 0 14px;
  line-height: 1.15;
}
.blg-soon-grad.svelte-1j8k0si {
  background: linear-gradient(120deg, #ff6b9d, #e91e8c 45%, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.blg-soon-sub.svelte-1j8k0si {
  max-width: 520px;
  margin: 0 auto 28px;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-muted, #4a2870);
}
.blg-soon-list.svelte-1j8k0si {
  list-style: none;
  padding: 0;
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 22px;
  max-width: 560px;
  text-align: left;
}
.blg-soon-list.svelte-1j8k0si li:where(.svelte-1j8k0si) {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #2a0a1a;
  padding: 10px 14px;
  background: #ffffffb3;
  border: 1px solid rgba(233, 30, 140, 0.08);
  border-radius: 12px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.blg-soon-list.svelte-1j8k0si li:where(.svelte-1j8k0si):hover {
  transform: translateY(-2px);
  border-color: #e91e8c38;
}
.blg-soon-check.svelte-1j8k0si {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f59e0b, #e91e8c);
  color: #fff;
  font-size: 11px;
  box-shadow: 0 3px 10px #e91e8c52;
}
.blg-soon-cta-row.svelte-1j8k0si {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.blg-soon-cta.svelte-1j8k0si {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  background: linear-gradient(135deg, #e91e8c, #c2185b);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 12px 28px -10px #e91e8c73;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.blg-soon-cta.svelte-1j8k0si:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px -10px #e91e8c99;
}
.blg-soon-cta-ghost.svelte-1j8k0si {
  display: inline-flex;
  align-items: center;
  padding: 13px 24px;
  background: #fff;
  color: #be185d !important;
  border: 1px solid rgba(233, 30, 140, 0.28);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease;
}
.blg-soon-cta-ghost.svelte-1j8k0si:hover {
  background: #fff4fa;
  transform: translateY(-2px);
}
@media (max-width: 600px) {
  .blg-soon.svelte-1j8k0si {
    padding: 48px 20px 36px;
    border-radius: 22px;
  }
  .blg-soon-list.svelte-1j8k0si {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .blg-soon-ring.svelte-1j8k0si {
    width: 140px;
    height: 140px;
    margin-left: -70px;
    top: 16px;
  }
  .blg-soon-gem.svelte-1j8k0si svg:where(.svelte-1j8k0si) {
    width: 72px;
    height: 72px;
  }
}
.blg-list-layout.svelte-1j8k0si {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}
.blg-list-main.svelte-1j8k0si {
  min-width: 0;
}
.blg-grid.svelte-1j8k0si {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.sb.svelte-1j8k0si {
  position: sticky;
  top: 80px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.sb-search.svelte-1j8k0si {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px;
  background: #fff;
  border: 2px solid transparent;
  background-clip: padding-box;
  border-radius: 50px;
  box-shadow: 0 10px 24px #2d124814, inset 0 1px #fffc;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.sb-search.svelte-1j8k0si:before {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  bottom: -2px;
  left: -2px;
  z-index: -1;
  border-radius: 50px;
  background: linear-gradient(135deg, #e91e8c4d, #f59e0b4d);
  opacity: 0.6;
  transition: opacity 0.3s;
}
.sb-search.svelte-1j8k0si:focus-within {
  box-shadow: 0 16px 34px #e91e8c2e, 0 0 0 4px #e91e8c14, inset 0 1px #fffc;
}
.sb-search.svelte-1j8k0si:focus-within:before {
  opacity: 1;
}
.sb-search-ic.svelte-1j8k0si {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px #e91e8c4d;
}
.sb-search.svelte-1j8k0si input:where(.svelte-1j8k0si) {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  padding: 0;
  font-size: 13px;
  font-family: inherit;
  font-weight: 600;
  color: #1a0611;
}
.sb-search.svelte-1j8k0si input:where(.svelte-1j8k0si)::placeholder {
  color: var(--text-dim, #9b8aaf);
  font-weight: 500;
}
.sb-search-kbd.svelte-1j8k0si {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  background: #fff7fb;
  border: 1px solid rgba(233, 30, 140, 0.15);
  border-radius: 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--rose-dark, #c2185b);
  flex-shrink: 0;
  margin-right: 4px;
}
.sb-search-clear.svelte-1j8k0si {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e91e8c1a;
  color: var(--rose);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 2px;
  transition: all 0.25s;
}
.sb-search-clear.svelte-1j8k0si:hover {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  transform: rotate(90deg);
}
.sb-card.svelte-1j8k0si {
  padding: 20px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.12);
  border-radius: 20px;
  box-shadow: 0 10px 28px #2d12480f;
}
.sb-card-head.svelte-1j8k0si {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--rose);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(233, 30, 140, 0.15);
  width: 100%;
}
.sb-card-line.svelte-1j8k0si {
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), #f59e0b);
  border-radius: 2px;
}
.sb-live.svelte-1j8k0si {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px 2px 6px;
  background: #10b9811f;
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 50px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #059669;
}
.sb-live-dot.svelte-1j8k0si {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px #10b981;
  animation: svelte-1j8k0si-blgPulse 1.8s ease-in-out infinite;
}
.sb-badge.svelte-1j8k0si {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  background: linear-gradient(135deg, #fff1f5, #ffe4ef);
  border: 1px solid rgba(233, 30, 140, 0.22);
  border-radius: 50px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--rose-dark, #c2185b);
  margin-bottom: 16px;
}
.sb-fire.svelte-1j8k0si {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f97316, #dc2626);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px #f9731666;
}
.sb-trending-list.svelte-1j8k0si {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sb-trend.svelte-1j8k0si {
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 12px;
  align-items: stretch;
  padding: 10px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.1);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 3px 10px #2d12480a;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.sb-trend.svelte-1j8k0si:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--rose), #f59e0b);
  opacity: 0;
  transition: opacity 0.3s;
}
.sb-trend.svelte-1j8k0si:hover {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: 0 14px 30px #e91e8c2e;
}
.sb-trend.svelte-1j8k0si:hover:before {
  opacity: 1;
}
.sb-trend-img.svelte-1j8k0si {
  position: relative;
  width: 76px;
  height: 76px;
  flex-shrink: 0;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 6px 14px #2d124824;
  overflow: hidden;
}
.sb-trend-img.svelte-1j8k0si:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.45));
  pointer-events: none;
}
.sb-trend-n.svelte-1j8k0si {
  position: absolute;
  top: 6px;
  left: 6px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 20px;
  padding: 0 6px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: -0.01em;
  box-shadow: 0 4px 10px #e91e8c66;
  border: 1.5px solid #fff;
}
.sb-trend-body.svelte-1j8k0si {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.sb-trend-cat.svelte-1j8k0si {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px 2px 7px;
  background: #e91e8c14;
  color: var(--rose);
  border-radius: 50px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  width: fit-content;
}
.sb-trend-cat.svelte-1j8k0si:before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--rose);
}
.sb-trend-cat-gold.svelte-1j8k0si {
  background: #f59e0b1f;
  color: #b45309;
}
.sb-trend-cat-gold.svelte-1j8k0si:before {
  background: #d97706;
}
.sb-trend-cat-peach.svelte-1j8k0si {
  background: #f973161f;
  color: #c2410c;
}
.sb-trend-cat-peach.svelte-1j8k0si:before {
  background: #ea580c;
}
.sb-trend-t.svelte-1j8k0si {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: #1a0611;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.25s;
}
.sb-trend.svelte-1j8k0si:hover .sb-trend-t:where(.svelte-1j8k0si) {
  color: var(--rose);
}
.sb-trend-m.svelte-1j8k0si {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding-top: 4px;
  font-size: 10.5px;
  font-weight: 500;
  color: var(--text-muted);
  border-top: 1px dashed rgba(233, 30, 140, 0.12);
}
.sb-trend-m.svelte-1j8k0si svg:where(.svelte-1j8k0si) {
  color: var(--rose);
}
.sb-trend-dot.svelte-1j8k0si {
  opacity: 0.4;
  color: var(--text-dim, #9b8aaf);
}
.sb-concierge.svelte-1j8k0si {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border-radius: 20px;
  background: radial-gradient(
      280px 200px at 100% 0%,
      rgba(245, 158, 11, 0.16),
      transparent 60%
    ),
    radial-gradient(
      280px 200px at 0% 100%,
      rgba(233, 30, 140, 0.14),
      transparent 60%
    ),
    linear-gradient(180deg, #fff, #fff7fb);
  border: 1.5px solid rgba(233, 30, 140, 0.18);
  color: #1a0611;
  box-shadow: 0 18px 40px #e91e8c1a;
}
.sb-concierge.svelte-1j8k0si:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), #f59e0b);
}
.sb-concierge.svelte-1j8k0si
  > :where(.svelte-1j8k0si):not(.sb-concierge-bg):not(.sb-concierge-blob) {
  position: relative;
  z-index: 1;
}
.sb-concierge-bg.svelte-1j8k0si,
.sb-concierge-blob.svelte-1j8k0si {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}
.sb-concierge-bg.svelte-1j8k0si {
  top: -30px;
  right: -30px;
  width: 130px;
  height: 130px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.25),
    transparent 70%
  );
}
.sb-concierge-blob.svelte-1j8k0si {
  bottom: -30px;
  left: -30px;
  width: 130px;
  height: 130px;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.22),
    transparent 70%
  );
}
.sb-concierge-top.svelte-1j8k0si {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.sb-concierge-pill.svelte-1j8k0si {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px 4px 7px;
  background: #10b9811f;
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #059669;
}
.sb-concierge-dot.svelte-1j8k0si {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 2px #10b98140;
  animation: svelte-1j8k0si-blgPulse 2s ease-in-out infinite;
}
.sb-concierge-reply.svelte-1j8k0si {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  box-shadow: 0 4px 10px #e91e8c4d;
}
.sb-concierge-chat.svelte-1j8k0si {
  display: flex;
  align-items: stretch;
  gap: 10px;
  margin-bottom: 14px;
}
.sb-concierge-avs.svelte-1j8k0si {
  display: flex;
  flex-shrink: 0;
  align-items: flex-start;
  padding-top: 4px;
}
.sb-concierge-avs.svelte-1j8k0si span:where(.svelte-1j8k0si) {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  box-shadow: 0 3px 8px #2d12481f;
}
.sb-concierge-avs.svelte-1j8k0si
  span:where(.svelte-1j8k0si)
  + span:where(.svelte-1j8k0si) {
  margin-left: -10px;
}
.sb-concierge-more.svelte-1j8k0si {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark)) !important;
  font-size: 9px !important;
  letter-spacing: 0 !important;
}
.sb-concierge-bubble.svelte-1j8k0si {
  flex: 1;
  min-width: 0;
  padding: 9px 12px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.12);
  border-radius: 14px 14px 14px 4px;
  box-shadow: 0 4px 10px #2d12480d;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.sb-concierge-bubble-name.svelte-1j8k0si {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--rose);
}
.sb-concierge-bubble-msg.svelte-1j8k0si {
  font-size: 11.5px;
  line-height: 1.4;
  font-weight: 600;
  color: #1a0611;
}
.sb-concierge-typing.svelte-1j8k0si {
  display: inline-flex;
  gap: 3px;
  padding-top: 3px;
}
.sb-concierge-typing.svelte-1j8k0si span:where(.svelte-1j8k0si) {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--rose);
  animation: svelte-1j8k0si-typeBounce 1.3s ease-in-out infinite;
}
.sb-concierge-typing.svelte-1j8k0si span:where(.svelte-1j8k0si):nth-child(2) {
  animation-delay: 0.2s;
}
.sb-concierge-typing.svelte-1j8k0si span:where(.svelte-1j8k0si):nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes svelte-1j8k0si-typeBounce {
  0%,
  60%,
  to {
    transform: scale(0.7);
    opacity: 0.4;
  }
  30% {
    transform: scale(1.1);
    opacity: 1;
  }
}
.sb-concierge.svelte-1j8k0si strong:where(.svelte-1j8k0si) {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1a0611;
  margin-bottom: 4px;
}
.sb-concierge.svelte-1j8k0si p:where(.svelte-1j8k0si) {
  font-size: 12px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 14px;
}
.sb-concierge-btn.svelte-1j8k0si {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 11px 14px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border-radius: 12px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  justify-content: center;
  box-shadow: 0 10px 22px #25d36659, inset 0 1px #ffffff40;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.sb-concierge-btn-ic.svelte-1j8k0si {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff38;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sb-concierge-btn.svelte-1j8k0si:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px #25d36680, inset 0 1px #ffffff4d;
  color: #fff;
}
.sb-concierge-foot.svelte-1j8k0si {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(233, 30, 140, 0.15);
}
.sb-concierge-foot-i.svelte-1j8k0si {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
}
.sb-concierge-foot-i.svelte-1j8k0si svg:where(.svelte-1j8k0si) {
  color: #059669;
}
.sb-stats.svelte-1j8k0si {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.sb-stat.svelte-1j8k0si {
  padding: 14px 12px;
  background: #fff;
  border: 1px solid var(--border, #ead8f0);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}
.sb-stat.svelte-1j8k0si:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--sb-accent);
}
.sb-stat-rose.svelte-1j8k0si {
  --sb-accent: linear-gradient(90deg, #f472b6, #e91e8c);
}
.sb-stat-gold.svelte-1j8k0si {
  --sb-accent: linear-gradient(90deg, #fbbf24, #d97706);
}
.sb-stat-peach.svelte-1j8k0si {
  --sb-accent: linear-gradient(90deg, #fb923c, #ea580c);
}
.sb-stat-teal.svelte-1j8k0si {
  --sb-accent: linear-gradient(90deg, #34d399, #10b981);
}
.sb-stat-ic.svelte-1j8k0si {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}
.sb-stat-rose.svelte-1j8k0si .sb-stat-ic:where(.svelte-1j8k0si) {
  background: #e91e8c1f;
  color: var(--rose-dark, #c2185b);
}
.sb-stat-gold.svelte-1j8k0si .sb-stat-ic:where(.svelte-1j8k0si) {
  background: #f59e0b24;
  color: #b45309;
}
.sb-stat-peach.svelte-1j8k0si .sb-stat-ic:where(.svelte-1j8k0si) {
  background: #f9731624;
  color: #ea580c;
}
.sb-stat-teal.svelte-1j8k0si .sb-stat-ic:where(.svelte-1j8k0si) {
  background: #10b98124;
  color: #059669;
}
.sb-stat-v.svelte-1j8k0si {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #1a0611;
}
.sb-stat-v.svelte-1j8k0si span:where(.svelte-1j8k0si) {
  font-size: 0.85em;
  color: #9b8aaf;
}
.sb-stat-l.svelte-1j8k0si {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-dim, #7b6a90);
  margin-top: 4px;
  text-transform: uppercase;
}
.sb-cats.svelte-1j8k0si {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.sb-cat.svelte-1j8k0si {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 11px 6px 6px;
  background: #fff;
  border: 1.5px solid var(--border, #ead8f0);
  border-radius: 50px;
  font-family: inherit;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: #1a0611;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
  box-shadow: 0 2px 6px #2d12480a;
}
.sb-cat-ic.svelte-1j8k0si {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffe4ef, #fff0db);
  color: var(--rose-dark, #c2185b);
  transition: all 0.3s;
  flex-shrink: 0;
}
.sb-cat-n.svelte-1j8k0si {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 16px;
  padding: 0 5px;
  background: #2d12480f;
  color: #5a4668;
  border-radius: 50px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: all 0.3s;
}
.sb-cat.svelte-1j8k0si:hover {
  border-color: var(--rose);
  color: var(--rose);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px #e91e8c26;
}
.sb-cat.svelte-1j8k0si:hover .sb-cat-ic:where(.svelte-1j8k0si) {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
}
.sb-cat.svelte-1j8k0si:hover .sb-cat-n:where(.svelte-1j8k0si) {
  background: #e91e8c1f;
  color: var(--rose);
}
.sb-cat.is-active.svelte-1j8k0si {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 18px #e91e8c59;
}
.sb-cat.is-active.svelte-1j8k0si .sb-cat-ic:where(.svelte-1j8k0si) {
  background: #ffffff38;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.sb-cat.is-active.svelte-1j8k0si .sb-cat-n:where(.svelte-1j8k0si) {
  background: #fffffff2;
  color: var(--rose);
}
.sb-news.svelte-1j8k0si {
  position: relative;
  overflow: hidden;
  padding: 22px 20px 18px;
  background: radial-gradient(
      280px 200px at 100% 0%,
      rgba(245, 158, 11, 0.18),
      transparent 60%
    ),
    radial-gradient(
      280px 200px at 0% 100%,
      rgba(233, 30, 140, 0.16),
      transparent 60%
    ),
    linear-gradient(180deg, #fff, #fff7fb);
  border: 1.5px solid rgba(233, 30, 140, 0.18);
  color: #1a0611;
  border-radius: 20px;
  box-shadow: 0 18px 40px #e91e8c1f;
  text-align: center;
}
.sb-news.svelte-1j8k0si:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), #f59e0b);
}
.sb-news-blob.svelte-1j8k0si {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}
.sb-news-blob.blob-1.svelte-1j8k0si {
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(233, 30, 140, 0.3), transparent 70%);
}
.sb-news-blob.blob-2.svelte-1j8k0si {
  bottom: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.3), transparent 70%);
}
.sb-news-dots.svelte-1j8k0si {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.1) 1px,
    transparent 1.5px
  );
  background-size: 16px 16px;
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    #000 30%,
    transparent 80%
  );
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  pointer-events: none;
}
.sb-news.svelte-1j8k0si
  > :where(.svelte-1j8k0si):not(.sb-news-blob):not(.sb-news-dots) {
  position: relative;
  z-index: 1;
}
.sb-news-tag.svelte-1j8k0si {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px 4px 8px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.2);
  border-radius: 50px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--rose-dark, #c2185b);
  margin-bottom: 14px;
  box-shadow: 0 3px 8px #2d12480d;
}
.sb-news-tag.svelte-1j8k0si svg:where(.svelte-1j8k0si) {
  color: var(--rose);
}
.sb-news-ic.svelte-1j8k0si {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 28px #e91e8c66, inset 0 1px #ffffff4d;
}
.sb-news-ic-glow.svelte-1j8k0si {
  position: absolute;
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 30, 140, 0.4), transparent 70%);
  filter: blur(12px);
  z-index: -1;
  animation: svelte-1j8k0si-blgPulse 2.5s ease-in-out infinite;
}
.sb-news.svelte-1j8k0si strong:where(.svelte-1j8k0si) {
  display: block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1a0611;
  margin-bottom: 4px;
}
.sb-news.svelte-1j8k0si p:where(.svelte-1j8k0si) {
  font-size: 12px;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 240px;
  margin: 0 auto 14px;
}
.sb-news-perks.svelte-1j8k0si {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.sb-news-perks.svelte-1j8k0si li:where(.svelte-1j8k0si) {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  font-weight: 600;
  color: #1a0611;
}
.sb-news-perk-ic.svelte-1j8k0si {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sb-news-form.svelte-1j8k0si {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sb-news-input-wrap.svelte-1j8k0si {
  position: relative;
  display: flex;
  align-items: center;
}
.sb-news-input-wrap.svelte-1j8k0si svg:where(.svelte-1j8k0si) {
  position: absolute;
  left: 12px;
  color: var(--text-dim, #c9b8d8);
}
.sb-news-form.svelte-1j8k0si input:where(.svelte-1j8k0si) {
  width: 100%;
  padding: 11px 14px 11px 34px;
  background: #fff;
  border: 1.5px solid var(--border, #ead8f0);
  border-radius: 12px;
  font-family: inherit;
  font-size: 12.5px;
  color: #1a0611;
  transition: all 0.25s;
}
.sb-news-form.svelte-1j8k0si input:where(.svelte-1j8k0si)::placeholder {
  color: var(--text-dim, #c9b8d8);
}
.sb-news-form.svelte-1j8k0si input:where(.svelte-1j8k0si):focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px #e91e8c1a;
}
.sb-news-form.svelte-1j8k0si button:where(.svelte-1j8k0si) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 14px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  box-shadow: 0 12px 24px #e91e8c66, inset 0 1px #ffffff4d;
  transition: all 0.25s;
}
.sb-news-form.svelte-1j8k0si button:where(.svelte-1j8k0si):hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px #e91e8c8c;
}
.sb-news-ok.svelte-1j8k0si {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  border: 1.5px dashed rgba(16, 185, 129, 0.45);
  border-radius: 12px;
  text-align: left;
}
.sb-news-ok-ic.svelte-1j8k0si {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 14px #10b98166;
}
.sb-news-ok.svelte-1j8k0si strong:where(.svelte-1j8k0si) {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #059669;
  margin: 0;
}
.sb-news-ok.svelte-1j8k0si span:where(.svelte-1j8k0si) {
  display: block;
  font-size: 10px;
  color: #047857;
  font-weight: 500;
  margin-top: 1px;
}
.sb-news-social.svelte-1j8k0si {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed rgba(233, 30, 140, 0.15);
}
.sb-news-social-avs.svelte-1j8k0si {
  display: inline-flex;
}
.sb-news-social-avs.svelte-1j8k0si span:where(.svelte-1j8k0si) {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 4px #2d12481a;
}
.sb-news-social-avs.svelte-1j8k0si
  span:where(.svelte-1j8k0si)
  + span:where(.svelte-1j8k0si) {
  margin-left: -7px;
}
.sb-news-social-text.svelte-1j8k0si {
  display: flex;
  flex-direction: column;
}
.sb-news-social-text.svelte-1j8k0si strong:where(.svelte-1j8k0si) {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, var(--rose), #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  line-height: 1;
}
.sb-news-social-text.svelte-1j8k0si span:where(.svelte-1j8k0si) {
  font-size: 9px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 2px;
  letter-spacing: 0.04em;
}
.blg-side.svelte-1j8k0si {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.blg-side-card.svelte-1j8k0si {
  padding: 18px 18px 16px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.12);
  border-radius: 18px;
  box-shadow: 0 8px 22px #2d12480d;
}
.blg-side-head.svelte-1j8k0si {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px dashed rgba(233, 30, 140, 0.14);
}
.blg-side-head-ic.svelte-1j8k0si {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ffe4ef, #ffd1e3);
  color: var(--rose-dark, #c2185b);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.blg-side-head-ic-gold.svelte-1j8k0si {
  background: linear-gradient(135deg, #fff0db, #ffe0b3);
  color: #b45309;
}
.blg-side-head-ic-peach.svelte-1j8k0si {
  background: linear-gradient(135deg, #fff1ec, #ffd8c2);
  color: #ea580c;
}
.blg-side-t.svelte-1j8k0si {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #1a0611;
}
.blg-side-s.svelte-1j8k0si {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 1px;
}
.blg-side-list.svelte-1j8k0si {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blg-side-n.svelte-1j8k0si {
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--rose), #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
  flex-shrink: 0;
  padding-top: 2px;
}
.blg-side-item-body.svelte-1j8k0si {
  flex: 1;
  min-width: 0;
}
.blg-side-item-t.svelte-1j8k0si {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: #1a0611;
  transition: color 0.25s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blg-side-item-m.svelte-1j8k0si {
  display: inline-flex;
  gap: 5px;
  flex-wrap: wrap;
  font-size: 10px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 3px;
}
.blg-side-sep.svelte-1j8k0si {
  opacity: 0.5;
}
.blg-side-cta.svelte-1j8k0si {
  position: relative;
  overflow: hidden;
  padding: 18px 18px 16px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 18px;
  color: #fff;
  box-shadow: 0 14px 28px #25d3664d;
}
.blg-side-cta-blob.svelte-1j8k0si {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.2),
    transparent 70%
  );
  pointer-events: none;
}
.blg-side-cta-ic.svelte-1j8k0si {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #fff3;
  border: 1px solid rgba(255, 255, 255, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
}
.blg-side-cta-body.svelte-1j8k0si {
  position: relative;
  z-index: 1;
  max-width: 220px;
}
.blg-side-cta-pill.svelte-1j8k0si {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px 3px 7px;
  background: #ffffff2e;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.blg-side-cta-dot.svelte-1j8k0si {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a7f3d0;
  box-shadow: 0 0 6px #a7f3d0;
  animation: svelte-1j8k0si-blgPulse 2s ease-in-out infinite;
}
.blg-side-cta.svelte-1j8k0si p:where(.svelte-1j8k0si) {
  font-size: 12px;
  line-height: 1.5;
  color: #ffffffe0;
  margin: 0 0 12px;
}
.blg-side-cta-btn.svelte-1j8k0si {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  background: #fff;
  color: #0a5b45;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  box-shadow: 0 6px 14px #0000002e;
  transition: transform 0.25s;
}
.blg-side-cta-btn.svelte-1j8k0si:hover {
  transform: translate(3px);
  color: #0a5b45;
}
.blg-side-stats.svelte-1j8k0si {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.blg-side-stat.svelte-1j8k0si {
  padding: 10px;
  background: linear-gradient(135deg, #fff7fb, #fff5ec);
  border: 1px solid rgba(233, 30, 140, 0.08);
  border-radius: 12px;
  text-align: center;
}
.blg-side-stat-v.svelte-1j8k0si {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, var(--rose), #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.blg-side-stat-v.svelte-1j8k0si span:where(.svelte-1j8k0si) {
  font-size: 0.8em;
}
.blg-side-stat-l.svelte-1j8k0si {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-dim, #7b6a90);
  margin-top: 4px;
  text-transform: uppercase;
}
.blg-side-tags.svelte-1j8k0si {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.blg-side-tag.svelte-1j8k0si {
  padding: 5px 10px;
  background: #fff7fb;
  border: 1px solid rgba(233, 30, 140, 0.12);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 500;
  color: var(--rose-dark, #c2185b);
  text-decoration: none;
  transition: all 0.25s;
}
.blg-side-tag.svelte-1j8k0si:hover {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  border-color: transparent;
  color: #fff;
  transform: translateY(-1px);
}
.blg-side-news.svelte-1j8k0si {
  padding: 18px;
  background: linear-gradient(135deg, #fff7fb, #fff5ec);
  border: 1.5px dashed rgba(233, 30, 140, 0.2);
  border-radius: 18px;
  text-align: center;
}
.blg-side-news-ic.svelte-1j8k0si {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  margin: 0 auto 10px;
  background: linear-gradient(135deg, var(--rose), #f59e0b);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px #e91e8c4d;
}
.blg-side-news.svelte-1j8k0si p:where(.svelte-1j8k0si) {
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0 0 12px;
}
.blg-side-news-form.svelte-1j8k0si {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.blg-card.svelte-1j8k0si {
  position: relative;
  background: #fff;
  border: 1.5px solid var(--bt-ring);
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 24px #2d12480f;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s,
    border-color 0.45s;
  display: flex;
  flex-direction: column;
}
.blg-card.svelte-1j8k0si:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--bt-grad);
  z-index: 3;
}
.blg-card.svelte-1j8k0si:hover {
  transform: translateY(-6px);
  border-color: var(--bt-accent);
  box-shadow: 0 24px 54px var(--bt-shadow);
}
.blg-thumb.svelte-1j8k0si {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.blg-thumb.svelte-1j8k0si img:where(.svelte-1j8k0si) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.blg-card.svelte-1j8k0si:hover
  .blg-thumb:where(.svelte-1j8k0si)
  img:where(.svelte-1j8k0si) {
  transform: scale(1.06);
}
.blg-thumb-ov.svelte-1j8k0si {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.1),
    transparent 40%,
    rgba(0, 0, 0, 0.45) 100%
  );
}
.blg-cat-pill.svelte-1j8k0si {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 11px 5px 9px;
  background: #fffffff2;
  color: var(--bt-accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 50px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 12px #0000002e;
  z-index: 2;
}
.blg-cat-pill.svelte-1j8k0si:before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--bt-accent);
}
.blg-thumb-reads.svelte-1j8k0si {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px 4px 8px;
  background: #00000073;
  color: #fff;
  font-size: 10.5px;
  font-weight: 600;
  border-radius: 50px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  z-index: 2;
}
.blg-thumb-views.svelte-1j8k0si {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px 4px 8px;
  background: #fffffff2;
  color: var(--bt-accent);
  font-size: 10.5px;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 4px 12px #00000026;
  z-index: 2;
}
.blg-body.svelte-1j8k0si {
  padding: 18px 20px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blg-meta.svelte-1j8k0si {
  display: inline-flex;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.blg-meta-sep.svelte-1j8k0si {
  opacity: 0.4;
}
.blg-card.svelte-1j8k0si h3:where(.svelte-1j8k0si) {
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: #1a0611;
  margin: 0 0 8px;
}
.blg-card.svelte-1j8k0si p:where(.svelte-1j8k0si) {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blg-foot.svelte-1j8k0si {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed rgba(45, 18, 72, 0.12);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--bt-accent);
}
.blg-foot-dot.svelte-1j8k0si {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bt-accent);
  box-shadow: 0 0 0 3px #e91e8c24;
}
.blg-foot-l.svelte-1j8k0si {
  flex: 1;
}
.blg-foot-arr.svelte-1j8k0si {
  transition: transform 0.3s;
}
.blg-card.svelte-1j8k0si:hover .blg-foot-arr:where(.svelte-1j8k0si) {
  transform: translate(3px);
}
.blg-writers-sec.svelte-1j8k0si {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: radial-gradient(
      700px 400px at 0% 0%,
      rgba(233, 30, 140, 0.1),
      transparent 60%
    ),
    radial-gradient(
      700px 400px at 100% 100%,
      rgba(245, 158, 11, 0.12),
      transparent 60%
    ),
    linear-gradient(180deg, #fffaf2, #fff7fb);
}
.blg-writers-orb.svelte-1j8k0si {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.22),
    transparent 70%
  );
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.55;
}
.blg-writers-orb-2.svelte-1j8k0si {
  position: absolute;
  bottom: -140px;
  left: -100px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.18),
    transparent 70%
  );
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.5;
}
.blg-writers-sec.svelte-1j8k0si > .grid-container:where(.svelte-1j8k0si) {
  position: relative;
  z-index: 1;
}
.tm-layout.svelte-1j8k0si {
  display: grid;
  grid-template-columns: 1fr 0.8fr 1.1fr;
  gap: 40px;
  align-items: center;
}
.tm-head.svelte-1j8k0si {
  position: relative;
}
.tm-big-n.svelte-1j8k0si {
  position: absolute;
  top: -30px;
  left: -10px;
  font-size: 9rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.08em;
  background: linear-gradient(135deg, #e91e8c14, #f59e0b14);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  pointer-events: none;
  z-index: 0;
}
.tm-head.svelte-1j8k0si > :where(.svelte-1j8k0si):not(.tm-big-n) {
  position: relative;
  z-index: 1;
}
.tm-eyebrow.svelte-1j8k0si {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--rose);
  margin-bottom: 16px;
}
.tm-eyebrow-line.svelte-1j8k0si {
  width: 30px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--rose));
}
.tm-h2.svelte-1j8k0si {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.12;
  color: #1a0611;
  margin: 0 0 14px;
}
.tm-sub.svelte-1j8k0si {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 24px;
  max-width: 380px;
}
.tm-stats-mini.svelte-1j8k0si {
  display: inline-flex;
  align-items: stretch;
  gap: 10px;
  padding: 8px;
  background: #ffffffe6;
  border: 1px solid rgba(233, 30, 140, 0.14);
  border-radius: 18px;
  width: fit-content;
  box-shadow: 0 10px 24px #2d124814;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.tm-stats-mini-i.svelte-1j8k0si {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 8px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.1);
  border-radius: 12px;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.tm-stats-mini-i.svelte-1j8k0si:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px #e91e8c24;
  border-color: #e91e8c40;
}
.tm-stats-mini-ic.svelte-1j8k0si {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tm-stats-mini-ic-rose.svelte-1j8k0si {
  background: linear-gradient(135deg, #ffe4ef, #ffd1e3);
  color: var(--rose-dark, #c2185b);
}
.tm-stats-mini-ic-gold.svelte-1j8k0si {
  background: linear-gradient(135deg, #fff0db, #ffe0b3);
  color: #b45309;
}
.tm-stats-mini-sep.svelte-1j8k0si {
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(233, 30, 140, 0.14),
    transparent
  );
}
.tm-stats-mini-i.svelte-1j8k0si strong:where(.svelte-1j8k0si) {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--rose), #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.tm-stats-mini-plus.svelte-1j8k0si {
  font-size: 0.85em;
}
.tm-stats-mini-i.svelte-1j8k0si span:where(.svelte-1j8k0si) {
  display: block;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-dim, #7b6a90);
  margin-top: 3px;
  text-transform: uppercase;
}
.tm-center.svelte-1j8k0si {
  position: relative;
  aspect-ratio: 1/1.4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tm-paths.svelte-1j8k0si {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}
.tm-blob.svelte-1j8k0si {
  position: relative;
  width: 80%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: radial-gradient(
      circle at 30% 30%,
      rgba(233, 30, 140, 0.24),
      transparent 55%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(245, 158, 11, 0.24),
      transparent 55%
    ),
    linear-gradient(135deg, #fff7fb, #fff5ec);
  border: 2px dashed rgba(233, 30, 140, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 60px #e91e8c2e, inset 0 2px #fffc;
}
.tm-ring.svelte-1j8k0si {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(245, 158, 11, 0.22);
  pointer-events: none;
  animation: svelte-1j8k0si-tmSpin 40s linear infinite;
}
.tm-ring-1.svelte-1j8k0si {
  top: -18px;
  right: -18px;
  bottom: -18px;
  left: -18px;
}
.tm-ring-2.svelte-1j8k0si {
  top: -36px;
  right: -36px;
  bottom: -36px;
  left: -36px;
  border-color: #e91e8c1f;
  animation: svelte-1j8k0si-tmSpin 60s linear infinite reverse;
}
@keyframes svelte-1j8k0si-tmSpin {
  to {
    transform: rotate(360deg);
  }
}
.tm-core.svelte-1j8k0si {
  text-align: center;
  position: relative;
  z-index: 2;
}
.tm-avs.svelte-1j8k0si {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 12px;
}
.tm-av.svelte-1j8k0si {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  border: 3px solid #fff;
  box-shadow: 0 8px 20px #2d12482e;
}
.tm-av-0.svelte-1j8k0si {
  top: 0;
  left: 50%;
  transform: translate(-50%);
  z-index: 5;
}
.tm-av-1.svelte-1j8k0si {
  top: 25%;
  right: 0;
  z-index: 4;
}
.tm-av-2.svelte-1j8k0si {
  bottom: 0;
  right: 15%;
  z-index: 3;
}
.tm-av-3.svelte-1j8k0si {
  bottom: 0;
  left: 15%;
  z-index: 3;
}
.tm-av-4.svelte-1j8k0si {
  top: 25%;
  left: 0;
  z-index: 4;
}
.tm-core-label.svelte-1j8k0si {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px 4px 9px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.2);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--rose);
  box-shadow: 0 6px 14px #e91e8c26;
}
.tm-core-dot.svelte-1j8k0si {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: svelte-1j8k0si-blgPulse 2s ease-in-out infinite;
}
.tm-list.svelte-1j8k0si {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tm-row.svelte-1j8k0si {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.12);
  border-radius: 16px;
  box-shadow: 0 6px 18px #2d12480d;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.tm-row.svelte-1j8k0si:before {
  content: "";
  position: absolute;
  top: 33px;
  right: 100%;
  width: 56px;
  height: 2px;
  background-image: linear-gradient(
    90deg,
    rgba(233, 30, 140, 0.5) 50%,
    transparent 50%
  );
  background-size: 8px 2px;
  background-repeat: repeat-x;
  pointer-events: none;
}
.tm-row.svelte-1j8k0si:after {
  content: "";
  position: absolute;
  top: 29px;
  right: calc(100% + 52px);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 3px #e91e8c2e, 0 0 6px #e91e8c99;
  pointer-events: none;
}
.tm-row.svelte-1j8k0si:hover {
  transform: translate(4px);
  border-color: #e91e8c4d;
  box-shadow: 0 14px 30px #e91e8c26;
}
.tm-row-n.svelte-1j8k0si {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
  border: 3px solid #fff;
  box-shadow: 0 6px 14px #2d124826;
  flex-shrink: 0;
}
.tm-row-body.svelte-1j8k0si {
  flex: 1;
  min-width: 0;
}
.tm-row-head.svelte-1j8k0si {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.tm-row-av.svelte-1j8k0si {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: -0.02em;
  border: 2px solid #fff;
  box-shadow: 0 4px 10px #2d12481f;
  flex-shrink: 0;
}
.tm-row-name.svelte-1j8k0si {
  font-size: 13.5px;
  font-weight: 700;
  color: #1a0611;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.tm-row-role.svelte-1j8k0si {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-top: 2px;
  text-transform: uppercase;
}
.tm-row-footer.svelte-1j8k0si {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  border-top: 1px dashed rgba(233, 30, 140, 0.12);
}
.tm-row-posts.svelte-1j8k0si {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
}
.tm-row-posts.svelte-1j8k0si strong:where(.svelte-1j8k0si) {
  color: var(--rose);
  font-weight: 700;
}
.tm-row-posts.svelte-1j8k0si svg:where(.svelte-1j8k0si) {
  color: var(--rose);
}
.tm-row-live.svelte-1j8k0si {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px 3px 7px;
  background: #10b9811f;
  border-radius: 50px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #059669;
}
.tm-row-dot.svelte-1j8k0si {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 2px #10b98138;
  animation: svelte-1j8k0si-blgPulse 2s ease-in-out infinite;
}
.blg-tags-sec.svelte-1j8k0si {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: radial-gradient(
      800px 500px at 100% 0%,
      rgba(233, 30, 140, 0.12),
      transparent 55%
    ),
    radial-gradient(
      800px 500px at 0% 100%,
      rgba(245, 158, 11, 0.12),
      transparent 55%
    ),
    linear-gradient(180deg, #fff7fb, #fff5ec);
}
.tp-orb.svelte-1j8k0si {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  pointer-events: none;
}
.tp-orb-1.svelte-1j8k0si {
  top: -120px;
  left: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.32),
    transparent 70%
  );
}
.tp-orb-2.svelte-1j8k0si {
  bottom: -120px;
  right: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.28),
    transparent 70%
  );
}
.blg-tags-sec.svelte-1j8k0si > .grid-container:where(.svelte-1j8k0si) {
  position: relative;
  z-index: 1;
}
.tp-panel.svelte-1j8k0si {
  position: relative;
  overflow: visible;
  padding: 50px;
  border-radius: 32px;
  background: radial-gradient(
      600px 400px at 0% 100%,
      rgba(245, 158, 11, 0.12),
      transparent 60%
    ),
    radial-gradient(
      600px 400px at 100% 0%,
      rgba(233, 30, 140, 0.12),
      transparent 60%
    ),
    linear-gradient(135deg, #fff, #fff7fb);
  border: 1px solid rgba(233, 30, 140, 0.16);
  box-shadow: 0 30px 80px #2d12481f;
}
.tp-grid.svelte-1j8k0si {
  display: grid;
  grid-template-columns: 0.8fr 1.1fr;
  gap: 40px;
  align-items: center;
}
.tp-phone.svelte-1j8k0si {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  background: linear-gradient(135deg, #fff, #fff7fb);
  border: 1px solid rgba(233, 30, 140, 0.15);
  border-radius: 38px;
  padding: 12px 12px 14px;
  box-shadow: 0 40px 80px #2d12482e, 0 0 0 1px #fffc inset;
}
.tp-phone-notch.svelte-1j8k0si {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translate(-50%);
  width: 80px;
  height: 18px;
  background: #1a0611;
  border-radius: 50px;
  z-index: 3;
}
.tp-phone-screen.svelte-1j8k0si {
  position: relative;
  width: 100%;
  height: auto;
  background: linear-gradient(180deg, #fff7fb, #fff5ec);
  border-radius: 28px;
  padding: 30px 14px 18px;
  overflow: hidden;
}
.tp-phone-top.svelte-1j8k0si {
  position: absolute;
  top: 8px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}
.tp-phone-time.svelte-1j8k0si {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #1a0611;
}
.tp-phone-status.svelte-1j8k0si {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #1a0611;
}
.tp-phone-head.svelte-1j8k0si {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  padding: 0 4px;
}
.tp-phone-eye.svelte-1j8k0si {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--rose);
  text-transform: uppercase;
  margin-bottom: 3px;
}
.tp-phone-h.svelte-1j8k0si {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1a0611;
}
.tp-phone-ava.svelte-1j8k0si {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 4px 10px #2d124826;
  overflow: hidden;
}
.tp-phone-ava.svelte-1j8k0si img:where(.svelte-1j8k0si) {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tp-phone-search.svelte-1j8k0si {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.15);
  border-radius: 50px;
  color: var(--text-dim, #9b8aaf);
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 12px;
  box-shadow: 0 4px 10px #2d12480d;
}
.tp-phone-search.svelte-1j8k0si svg:where(.svelte-1j8k0si) {
  color: var(--rose);
}
.tp-phone-chips.svelte-1j8k0si {
  display: flex;
  gap: 5px;
  margin-bottom: 14px;
  overflow-x: auto;
  scrollbar-width: none;
}
.tp-phone-chips.svelte-1j8k0si::-webkit-scrollbar {
  display: none;
}
.tp-phone-chip.svelte-1j8k0si {
  padding: 4px 10px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.14);
  border-radius: 50px;
  font-size: 9.5px;
  font-weight: 600;
  color: #4a2d5e;
  white-space: nowrap;
  flex-shrink: 0;
}
.tp-phone-chip-a.svelte-1j8k0si {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 10px #e91e8c4d;
}
.tp-phone-list.svelte-1j8k0si {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}
.tp-phone-home.svelte-1j8k0si {
  width: 80px;
  height: 4px;
  border-radius: 50px;
  background: #2d124840;
  margin: 6px auto 0;
}
.tp-phone-item.svelte-1j8k0si {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px 10px 8px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.1);
  border-radius: 12px;
  box-shadow: 0 3px 8px #2d12480a;
}
.tp-phone-rank.svelte-1j8k0si {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), #f59e0b);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}
.tp-phone-item-body.svelte-1j8k0si {
  flex: 1;
  min-width: 0;
}
.tp-phone-item-t.svelte-1j8k0si {
  font-size: 11.5px;
  font-weight: 700;
  color: #1a0611;
  letter-spacing: -0.01em;
}
.tp-phone-item-s.svelte-1j8k0si {
  font-size: 9.5px;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 1px;
}
.tp-phone-trend.svelte-1j8k0si {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px 7px 3px 6px;
  background: #10b9811f;
  border-radius: 50px;
  font-size: 9px;
  font-weight: 700;
  color: #059669;
}
.tp-phone-trend.svelte-1j8k0si svg:where(.svelte-1j8k0si) {
  transform: rotate(-90deg);
}
.tp-phone-float.svelte-1j8k0si {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px 7px 9px;
  background: #fff;
  border: 1px solid rgba(45, 18, 72, 0.06);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #1a0611;
  box-shadow: 0 14px 28px #2d124826;
  z-index: 4;
  animation: svelte-1j8k0si-tpFloat 5s ease-in-out infinite;
}
.tp-phone-float-1.svelte-1j8k0si {
  top: 18%;
  right: -14%;
  animation-delay: -1s;
}
.tp-phone-float-2.svelte-1j8k0si {
  bottom: 14%;
  left: -16%;
  animation-delay: -3s;
  color: #b45309;
}
@keyframes svelte-1j8k0si-tpFloat {
  0%,
  to {
    translate: 0 0;
  }
  50% {
    translate: 0 -8px;
  }
}
.tp-phone-float-dot.svelte-1j8k0si {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px #10b98138;
  animation: svelte-1j8k0si-blgPulse 2s ease-in-out infinite;
}
.tp-copy.svelte-1j8k0si {
  max-width: 520px;
}
.tp-eye.svelte-1j8k0si {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px 5px 9px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.2);
  border-radius: 50px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--rose-dark, #c2185b);
  margin-bottom: 18px;
  box-shadow: 0 4px 10px #2d12480d;
}
.tp-eye.svelte-1j8k0si svg:where(.svelte-1j8k0si) {
  color: var(--rose);
}
.tp-grad.svelte-1j8k0si {
  background: linear-gradient(135deg, var(--rose), #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tp-h2.svelte-1j8k0si {
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #1a0611;
  margin: 0 0 14px;
}
.tp-desc.svelte-1j8k0si {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 24px;
  max-width: 460px;
}
.tp-tags.svelte-1j8k0si {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 26px;
}
.tp-tag.svelte-1j8k0si {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 7px 14px;
  background: #fff;
  border: 1.5px solid var(--border, #ead8f0);
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 600;
  color: #1a0611;
  text-decoration: none;
  box-shadow: 0 3px 8px #2d12480d;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.tp-tag.svelte-1j8k0si span:where(.svelte-1j8k0si) {
  color: var(--rose);
}
.tp-tag-0.svelte-1j8k0si:hover {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px #e91e8c59;
}
.tp-tag-1.svelte-1j8k0si:hover {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px #f59e0b59;
}
.tp-tag-2.svelte-1j8k0si:hover {
  background: linear-gradient(135deg, #f97316, #ea580c);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px #f9731659;
}
.tp-tag.svelte-1j8k0si:hover span:where(.svelte-1j8k0si) {
  color: #fff;
}
.tp-cta-row.svelte-1j8k0si {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.tp-cta.svelte-1j8k0si {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: #fff;
  border: 1.5px solid rgba(233, 30, 140, 0.25);
  border-radius: 50px;
  color: var(--rose-dark, #c2185b);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  box-shadow: 0 8px 18px #2d12480f;
  transition: all 0.25s;
}
.tp-cta.svelte-1j8k0si:hover {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px #e91e8c59;
}
.tp-cta-note.svelte-1j8k0si {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--text-muted);
  font-style: italic;
}
.blg-news-sec.svelte-1j8k0si {
  position: relative;
  overflow: hidden;
  padding: 80px 0 120px;
  background: radial-gradient(
      800px 500px at 0% 50%,
      rgba(233, 30, 140, 0.1),
      transparent 55%
    ),
    radial-gradient(
      800px 500px at 100% 50%,
      rgba(245, 158, 11, 0.12),
      transparent 55%
    ),
    linear-gradient(180deg, #fff7fb, #fff);
}
.nl-orb.svelte-1j8k0si {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  pointer-events: none;
}
.nl-orb-1.svelte-1j8k0si {
  top: -140px;
  left: -100px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(233, 30, 140, 0.3), transparent 70%);
}
.nl-orb-2.svelte-1j8k0si {
  bottom: -140px;
  right: -100px;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.28),
    transparent 70%
  );
}
.blg-news-sec.svelte-1j8k0si > .grid-container:where(.svelte-1j8k0si) {
  position: relative;
  z-index: 1;
}
.nl.svelte-1j8k0si {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  padding: 44px;
  border-radius: 32px;
  background: radial-gradient(
      600px 400px at 0% 100%,
      rgba(245, 158, 11, 0.12),
      transparent 60%
    ),
    radial-gradient(
      600px 400px at 100% 0%,
      rgba(233, 30, 140, 0.14),
      transparent 60%
    ),
    linear-gradient(135deg, #fff, #fff7fb);
  border: 1px solid rgba(233, 30, 140, 0.18);
  box-shadow: 0 40px 80px #2d124824;
  align-items: center;
}
.nl-main.svelte-1j8k0si {
  position: relative;
  z-index: 1;
}
.nl-pill.svelte-1j8k0si {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.2);
  border-radius: 50px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--rose-dark, #c2185b);
  margin-bottom: 18px;
  box-shadow: 0 4px 12px #2d12480d;
}
.nl-pill.svelte-1j8k0si svg:where(.svelte-1j8k0si) {
  color: #f59e0b;
}
.nl-pill-sep.svelte-1j8k0si {
  width: 1px;
  height: 12px;
  background: #2d124826;
}
.nl-pill-live.svelte-1j8k0si {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #059669;
}
.nl-pill-dot.svelte-1j8k0si {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px #10b981;
  animation: svelte-1j8k0si-blgPulse 2s ease-in-out infinite;
}
.nl-h2.svelte-1j8k0si {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #1a0611;
  margin: 0 0 12px;
}
.nl-sub.svelte-1j8k0si {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 22px;
  max-width: 480px;
}
.nl-perks.svelte-1j8k0si {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}
.nl-perk.svelte-1j8k0si {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--border, #ead8f0);
  border-radius: 14px;
  box-shadow: 0 4px 10px #2d12480d;
  transition: all 0.25s;
}
.nl-perk.svelte-1j8k0si:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px #e91e8c24;
  border-color: #e91e8c40;
}
.nl-perk-ic.svelte-1j8k0si {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nl-perk-rose.svelte-1j8k0si .nl-perk-ic:where(.svelte-1j8k0si) {
  background: linear-gradient(135deg, #ffe4ef, #ffd1e3);
  color: var(--rose-dark, #c2185b);
}
.nl-perk-gold.svelte-1j8k0si .nl-perk-ic:where(.svelte-1j8k0si) {
  background: linear-gradient(135deg, #fff0db, #ffe0b3);
  color: #b45309;
}
.nl-perk-peach.svelte-1j8k0si .nl-perk-ic:where(.svelte-1j8k0si) {
  background: linear-gradient(135deg, #fff1ec, #ffd8c2);
  color: #ea580c;
}
.nl-perk.svelte-1j8k0si strong:where(.svelte-1j8k0si) {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #1a0611;
}
.nl-perk.svelte-1j8k0si span:where(.svelte-1j8k0si) {
  display: block;
  font-size: 10.5px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 1px;
}
.nl-form.svelte-1j8k0si {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}
.nl-input-wrap.svelte-1j8k0si {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}
.nl-input-wrap.svelte-1j8k0si svg:where(.svelte-1j8k0si) {
  position: absolute;
  left: 14px;
  color: var(--text-dim, #c9b8d8);
}
.nl-form.svelte-1j8k0si input:where(.svelte-1j8k0si) {
  width: 100%;
  padding: 14px 16px 14px 38px;
  background: #fff;
  border: 1.5px solid var(--border, #ead8f0);
  border-radius: 14px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: #1a0611;
  box-shadow: 0 4px 10px #2d12480a;
  transition: all 0.25s;
}
.nl-form.svelte-1j8k0si input:where(.svelte-1j8k0si):focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 4px #e91e8c1a;
}
.nl-btn.svelte-1j8k0si {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  border: none;
  border-radius: 14px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  box-shadow: 0 14px 28px #e91e8c66, inset 0 1px #ffffff4d;
  transition: all 0.3s;
  white-space: nowrap;
}
.nl-btn.svelte-1j8k0si:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px #e91e8c8c;
}
.nl-success.svelte-1j8k0si {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 16px;
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  border: 1.5px dashed rgba(16, 185, 129, 0.4);
  border-radius: 14px;
}
.nl-success-ic.svelte-1j8k0si {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 18px #10b98159;
}
.nl-success.svelte-1j8k0si strong:where(.svelte-1j8k0si) {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: #059669;
}
.nl-success.svelte-1j8k0si span:where(.svelte-1j8k0si) {
  display: block;
  font-size: 11.5px;
  color: #047857;
  margin-top: 1px;
}
.nl-proof.svelte-1j8k0si {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px dashed rgba(233, 30, 140, 0.14);
}
.nl-proof-avs.svelte-1j8k0si {
  display: flex;
  flex-shrink: 0;
}
.nl-proof-avs.svelte-1j8k0si span:where(.svelte-1j8k0si) {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  box-shadow: 0 3px 8px #2d12481f;
}
.nl-proof-avs.svelte-1j8k0si
  span:where(.svelte-1j8k0si)
  + span:where(.svelte-1j8k0si) {
  margin-left: -10px;
}
.nl-proof-more.svelte-1j8k0si {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark)) !important;
  font-size: 9.5px !important;
}
.nl-proof-stars.svelte-1j8k0si {
  display: inline-flex;
  gap: 1px;
  margin-bottom: 2px;
}
.nl-proof-l.svelte-1j8k0si {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--text-muted);
}
.nl-proof-l.svelte-1j8k0si strong:where(.svelte-1j8k0si) {
  color: var(--rose);
  font-weight: 700;
}
.nl-preview.svelte-1j8k0si {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}
.nl-preview-email.svelte-1j8k0si {
  position: relative;
  width: 100%;
  max-width: 380px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.15);
  border-radius: 20px;
  box-shadow: 0 30px 60px #2d124833;
  overflow: hidden;
  transform: rotate(-2deg);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.nl-preview-email.svelte-1j8k0si:hover {
  transform: rotate(0) scale(1.02);
}
.nl-preview-bar.svelte-1j8k0si {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: linear-gradient(180deg, #fff5ec, #fff7fb);
  border-bottom: 1px solid rgba(233, 30, 140, 0.08);
}
.nl-preview-dot.svelte-1j8k0si {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e91e8c;
}
.nl-preview-url.svelte-1j8k0si {
  flex: 1;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: -0.005em;
}
.nl-preview-url.svelte-1j8k0si svg:where(.svelte-1j8k0si) {
  color: var(--rose);
}
.nl-preview-masthead.svelte-1j8k0si {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
}
.nl-preview-brand.svelte-1j8k0si {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nl-preview-logo.svelte-1j8k0si {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #ffffff38;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nl-preview-brand-t.svelte-1j8k0si {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.nl-preview-brand-s.svelte-1j8k0si {
  font-size: 10.5px;
  font-weight: 500;
  opacity: 0.85;
  margin-top: 1px;
}
.nl-preview-read.svelte-1j8k0si {
  padding: 4px 10px;
  background: #fff3;
  border-radius: 50px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.nl-preview-feat.svelte-1j8k0si {
  padding: 14px;
}
.nl-preview-feat-img.svelte-1j8k0si {
  width: 100%;
  aspect-ratio: 16/9;
  background-image: url(https://images.unsplash.com/photo-1591222204794-dfb528c6958f?w=600&amp;h=400&amp;fit=crop&amp;q=70&amp;auto=format);
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  margin-bottom: 10px;
  box-shadow: 0 6px 14px #2d12481f;
}
.nl-preview-feat-cat.svelte-1j8k0si {
  display: inline-block;
  padding: 3px 9px;
  background: #e91e8c1f;
  color: var(--rose-dark, #c2185b);
  border-radius: 50px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.nl-preview-feat-t.svelte-1j8k0si {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: #1a0611;
}
.nl-preview-label.svelte-1j8k0si {
  padding: 0 14px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--rose);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.nl-preview-pair.svelte-1j8k0si {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 0 14px;
  margin-bottom: 14px;
}
.nl-preview-profile.svelte-1j8k0si {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: #fff7fb;
  border: 1px solid rgba(233, 30, 140, 0.08);
  border-radius: 10px;
}
.nl-preview-ava.svelte-1j8k0si {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid #fff;
  box-shadow: 0 3px 6px #2d12481a;
}
.nl-preview-name.svelte-1j8k0si {
  font-size: 11px;
  font-weight: 700;
  color: #1a0611;
  letter-spacing: -0.01em;
}
.nl-preview-meta.svelte-1j8k0si {
  font-size: 9.5px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 1px;
}
.nl-preview-cta.svelte-1j8k0si {
  margin: 0 14px 14px;
  padding: 10px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  border-radius: 10px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-align: center;
  box-shadow: 0 8px 18px #e91e8c59;
}
.nl-preview-stamp.svelte-1j8k0si {
  position: absolute;
  top: 10%;
  right: -6%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 10px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.15);
  border-radius: 14px;
  box-shadow: 0 14px 28px #2d124826;
  transform: rotate(6deg);
  animation: svelte-1j8k0si-nlFloat 5s ease-in-out infinite;
}
.nl-preview-stamp.svelte-1j8k0si svg:where(.svelte-1j8k0si) {
  color: var(--rose);
}
.nl-preview-stamp.svelte-1j8k0si strong:where(.svelte-1j8k0si) {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #1a0611;
}
.nl-preview-stamp.svelte-1j8k0si span:where(.svelte-1j8k0si) {
  display: block;
  font-size: 9.5px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 1px;
}
@keyframes svelte-1j8k0si-nlFloat {
  0%,
  to {
    translate: 0 0;
  }
  50% {
    translate: 0 -6px;
  }
}
.blg-news.svelte-1j8k0si {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  padding: 44px 48px;
  border-radius: 30px;
  background: radial-gradient(
      600px 400px at 0% 100%,
      rgba(245, 158, 11, 0.15),
      transparent 60%
    ),
    radial-gradient(
      600px 400px at 100% 0%,
      rgba(233, 30, 140, 0.15),
      transparent 60%
    ),
    linear-gradient(135deg, #fff, #fff7fb);
  border: 1px solid rgba(233, 30, 140, 0.16);
  box-shadow: 0 30px 80px #2d12481a;
  align-items: center;
}
.blg-news-blob.svelte-1j8k0si {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.blg-news-blob-1.svelte-1j8k0si {
  top: -60px;
  left: 30%;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.25),
    transparent 70%
  );
}
.blg-news-blob-2.svelte-1j8k0si {
  bottom: -40px;
  right: 20%;
  width: 180px;
  height: 180px;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.25),
    transparent 70%
  );
}
.blg-news-text.svelte-1j8k0si {
  position: relative;
  z-index: 1;
}
.blg-news-pill.svelte-1j8k0si {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px 5px 10px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.2);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--rose-dark, #c2185b);
  margin-bottom: 14px;
}
.blg-news-pill.svelte-1j8k0si svg:where(.svelte-1j8k0si) {
  color: var(--rose);
}
.blg-news.svelte-1j8k0si p:where(.svelte-1j8k0si) {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 14px;
}
.blg-news-trust.svelte-1j8k0si {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}
.blg-news-trust.svelte-1j8k0si span:where(.svelte-1j8k0si) {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blg-news-dot.svelte-1j8k0si {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose);
}
.blg-news-form.svelte-1j8k0si {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blg-news-input-wrap.svelte-1j8k0si {
  position: relative;
  display: flex;
  align-items: center;
}
.blg-news-input-wrap.svelte-1j8k0si svg:where(.svelte-1j8k0si) {
  position: absolute;
  left: 14px;
  color: var(--text-dim, #c9b8d8);
}
.blg-news-btn.svelte-1j8k0si {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  border: none;
  border-radius: 14px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 14px 30px #e91e8c66, inset 0 1px #ffffff4d;
  transition: all 0.3s;
}
.blg-news-btn.svelte-1j8k0si:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px #e91e8c8c;
}
.blg-news-success.svelte-1j8k0si {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 16px;
  background: #10b9811a;
  border: 1px dashed rgba(16, 185, 129, 0.35);
  border-radius: 14px;
  color: #059669;
  text-align: center;
}
.blg-news-success-ic.svelte-1j8k0si {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  box-shadow: 0 10px 22px #10b98159;
}
.blg-news-success.svelte-1j8k0si span:where(.svelte-1j8k0si) {
  font-size: 12px;
  color: #047857;
  margin-top: 3px;
}
@media (max-width: 1024px) {
  .blg-hero-inner.svelte-1j8k0si {
    grid-template-columns: 1fr 0.9fr;
    gap: 28px;
  }
  .blg-hero-vis.svelte-1j8k0si {
    max-width: 380px;
  }
  .blg-mag.svelte-1j8k0si {
    width: 240px;
  }
  .blg-mag-2.svelte-1j8k0si {
    width: 190px;
  }
  .blg-mag-3.svelte-1j8k0si {
    width: 170px;
  }
  .blg-vis-stat.svelte-1j8k0si,
  .blg-vis-pill.svelte-1j8k0si {
    left: 0;
  }
  .blg-feat.svelte-1j8k0si {
    grid-template-columns: 1fr;
  }
  .blg-feat-img.svelte-1j8k0si {
    min-height: 280px;
  }
  .blg-how-flow.svelte-1j8k0si {
    max-width: 700px;
  }
  .blg-how-circle.svelte-1j8k0si {
    width: 150px;
    height: 150px;
  }
  .blg-how-circle-main.svelte-1j8k0si {
    width: 190px;
    height: 190px;
  }
  .blg-how-av.svelte-1j8k0si {
    width: 60px;
    height: 60px;
    font-size: 1.3rem;
  }
  .blg-how-stack.svelte-1j8k0si {
    width: 100px;
    height: 110px;
  }
  .blg-how-stack-sheet.svelte-1j8k0si {
    width: 76px;
    height: 98px;
  }
  .blg-how-article.svelte-1j8k0si {
    width: 100px;
    padding: 10px 8px;
  }
  .blg-how-steps.svelte-1j8k0si {
    gap: 16px;
  }
  .blg-how-step.svelte-1j8k0si {
    padding: 14px 16px;
    gap: 12px;
  }
  .blg-how-num.svelte-1j8k0si {
    font-size: 2rem;
  }
  .blg-list-layout.svelte-1j8k0si {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sb.svelte-1j8k0si {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    align-items: start;
  }
  .sb-search.svelte-1j8k0si,
  .sb-trending.svelte-1j8k0si {
    grid-column: 1 / -1;
  }
  .sb-trending-list.svelte-1j8k0si {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .blg-grid.svelte-1j8k0si,
  .blg-writers.svelte-1j8k0si {
    grid-template-columns: repeat(2, 1fr);
  }
  .tm-layout.svelte-1j8k0si {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .tm-center.svelte-1j8k0si {
    display: none;
  }
  .tm-head.svelte-1j8k0si {
    max-width: 100%;
    text-align: center;
  }
  .tm-head.svelte-1j8k0si .tm-eyebrow:where(.svelte-1j8k0si),
  .tm-head.svelte-1j8k0si .tm-h2:where(.svelte-1j8k0si),
  .tm-head.svelte-1j8k0si .tm-sub:where(.svelte-1j8k0si),
  .tm-head.svelte-1j8k0si .tm-stats-mini:where(.svelte-1j8k0si) {
    margin-left: auto;
    margin-right: auto;
  }
  .tm-sub.svelte-1j8k0si {
    max-width: 520px;
  }
  .tm-big-n.svelte-1j8k0si {
    font-size: 6rem;
    top: -20px;
    left: 50%;
    transform: translate(-50%);
  }
  .tm-list.svelte-1j8k0si {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    width: 100%;
    max-width: none;
    margin: 0;
  }
  .tm-row.svelte-1j8k0si:before,
  .tm-row.svelte-1j8k0si:after {
    display: none;
  }
  .tp-grid.svelte-1j8k0si {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .tp-panel.svelte-1j8k0si {
    padding: 36px 32px;
  }
  .tp-phone-float-1.svelte-1j8k0si {
    right: -6%;
  }
  .tp-phone-float-2.svelte-1j8k0si {
    left: -8%;
  }
  .blg-news.svelte-1j8k0si {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 36px 28px;
  }
  .nl.svelte-1j8k0si {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 36px 32px;
  }
  .nl-preview.svelte-1j8k0si {
    min-height: 0;
  }
  .nl-preview-stamp.svelte-1j8k0si {
    right: 2%;
  }
}
@media (max-width: 768px) {
  .blg-hero.svelte-1j8k0si {
    padding: 56px 0 60px;
  }
  .blg-hero-inner.svelte-1j8k0si {
    grid-template-columns: 1fr 0.85fr;
    gap: 20px;
  }
  .blg-hero-text.svelte-1j8k0si {
    max-width: 100%;
  }
  .blg-hero-vis.svelte-1j8k0si {
    max-width: 300px;
    aspect-ratio: 1/1;
  }
  .blg-mag.svelte-1j8k0si {
    width: 180px;
    padding: 8px;
  }
  .blg-mag-2.svelte-1j8k0si {
    width: 140px;
  }
  .blg-mag-3.svelte-1j8k0si {
    width: 130px;
  }
  .blg-mag-t.svelte-1j8k0si {
    font-size: 11.5px;
  }
  .blg-mag-2.svelte-1j8k0si .blg-mag-t:where(.svelte-1j8k0si),
  .blg-mag-3.svelte-1j8k0si .blg-mag-t:where(.svelte-1j8k0si) {
    font-size: 10px;
  }
  .blg-mag-ribbon.svelte-1j8k0si {
    font-size: 9px;
    padding: 4px 10px 4px 8px;
  }
  .blg-vis-stat.svelte-1j8k0si {
    top: 2%;
    left: 0;
    padding: 6px 10px 6px 6px;
  }
  .blg-vis-stat-v.svelte-1j8k0si {
    font-size: 12px;
  }
  .blg-vis-stat-l.svelte-1j8k0si {
    font-size: 9px;
  }
  .blg-vis-pill.svelte-1j8k0si {
    bottom: 6%;
    left: 0;
    font-size: 10px;
    padding: 6px 10px 6px 8px;
  }
  .blg-h1.svelte-1j8k0si {
    font-size: 1.5rem;
  }
  .blg-lead.svelte-1j8k0si {
    font-size: 0.9rem;
  }
  .blg-search.svelte-1j8k0si {
    max-width: 100%;
  }
  .blg-trending.svelte-1j8k0si {
    font-size: 11px;
  }
  .blg-trending-l.svelte-1j8k0si {
    font-size: 10px;
  }
  .blg-stats.svelte-1j8k0si {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    padding: 8px 14px;
    justify-content: flex-start;
  }
  .blg-how-sec.svelte-1j8k0si,
  .blg-list-sec.svelte-1j8k0si,
  .blg-writers-sec.svelte-1j8k0si,
  .blg-tags-sec.svelte-1j8k0si,
  .blg-news-sec.svelte-1j8k0si {
    padding: 64px 0;
  }
  .tm-big-n.svelte-1j8k0si {
    font-size: 5rem;
    top: -10px;
  }
  .tm-h2.svelte-1j8k0si {
    font-size: 1.5rem;
  }
  .tm-sub.svelte-1j8k0si {
    font-size: 13.5px;
    margin-bottom: 18px;
  }
  .tm-stats-mini.svelte-1j8k0si {
    padding: 10px 14px;
    gap: 12px;
  }
  .tm-stats-mini-i.svelte-1j8k0si strong:where(.svelte-1j8k0si) {
    font-size: 1rem;
  }
  .tm-stats-mini-i.svelte-1j8k0si span:where(.svelte-1j8k0si) {
    font-size: 9px;
  }
  .tm-row.svelte-1j8k0si {
    padding: 12px;
    gap: 10px;
  }
  .tm-row-n.svelte-1j8k0si {
    width: 34px;
    height: 34px;
    font-size: 11px;
  }
  .tm-row-av.svelte-1j8k0si {
    width: 28px;
    height: 28px;
    font-size: 10px;
  }
  .tm-row-name.svelte-1j8k0si {
    font-size: 13px;
  }
  .tm-row-role.svelte-1j8k0si {
    font-size: 9.5px;
  }
  .tm-row-posts.svelte-1j8k0si {
    font-size: 10.5px;
  }
  .tm-row-live.svelte-1j8k0si {
    font-size: 9px;
  }
  .blg-tabs-wrap.svelte-1j8k0si {
    justify-content: flex-start;
    padding: 8px 4px;
  }
  .sb-cats.svelte-1j8k0si {
    gap: 5px;
  }
  .sb-cat.svelte-1j8k0si {
    font-size: 11px;
    padding: 6px 10px 6px 5px;
  }
  .blg-how-flow.svelte-1j8k0si {
    grid-template-columns: 1fr 1.3fr 1fr;
    gap: 0;
    max-width: 620px;
    margin: 0 auto 40px;
  }
  .blg-how-circle.svelte-1j8k0si {
    width: 120px;
    height: 120px;
  }
  .blg-how-circle-main.svelte-1j8k0si {
    width: 150px;
    height: 150px;
  }
  .blg-how-avs.svelte-1j8k0si {
    width: 112px;
    height: 112px;
    padding: 12px 8px 16px;
    gap: 14px 8px;
  }
  .blg-how-av.svelte-1j8k0si {
    width: 48px;
    height: 48px;
  }
  .blg-how-av.svelte-1j8k0si svg:where(.svelte-1j8k0si) {
    width: 20px;
    height: 20px;
  }
  .blg-how-av-lbl.svelte-1j8k0si {
    font-size: 8px;
    bottom: -12px;
    padding: 2px 6px;
  }
  .blg-how-stack.svelte-1j8k0si {
    width: 84px;
    height: 92px;
  }
  .blg-how-stack-sheet.svelte-1j8k0si {
    width: 64px;
    height: 82px;
  }
  .blg-how-sheet-1.svelte-1j8k0si {
    left: 20px;
  }
  .blg-how-sheet-3.svelte-1j8k0si {
    padding: 8px;
  }
  .blg-how-article.svelte-1j8k0si {
    width: 84px;
    padding: 8px 6px;
  }
  .blg-how-steps.svelte-1j8k0si {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .blg-how-step.svelte-1j8k0si {
    padding: 14px;
    gap: 10px;
  }
  .blg-how-num.svelte-1j8k0si {
    font-size: 1.8rem;
  }
  .blg-how-step.svelte-1j8k0si strong:where(.svelte-1j8k0si) {
    font-size: 13px;
  }
  .blg-how-step.svelte-1j8k0si p:where(.svelte-1j8k0si) {
    font-size: 11.5px;
  }
  .blg-how-feat.svelte-1j8k0si {
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
  }
  .blg-how-feat-img.svelte-1j8k0si {
    width: 100%;
    height: 160px;
  }
  .blg-how-feat-cta.svelte-1j8k0si {
    width: 100%;
    justify-content: center;
  }
  .blg-feat-body.svelte-1j8k0si {
    padding: 24px;
  }
  .blg-news.svelte-1j8k0si {
    padding: 28px 22px;
  }
  .blg-tabs-wrap.svelte-1j8k0si {
    justify-content: flex-start;
    padding: 0 4px;
  }
  .blg-tabs.svelte-1j8k0si {
    flex-wrap: nowrap;
    padding: 8px;
    gap: 6px;
  }
  .blg-tab.svelte-1j8k0si {
    padding: 7px 10px;
    font-size: 11.5px;
    flex-shrink: 0;
  }
  .blg-tab-ic.svelte-1j8k0si {
    width: 20px;
    height: 20px;
  }
  .blg-tab-n.svelte-1j8k0si {
    min-width: 18px;
    height: 18px;
    font-size: 9.5px;
  }
}
@media (max-width: 600px) {
  .blg-hero.svelte-1j8k0si {
    padding: 44px 0;
  }
  .blg-hero-inner.svelte-1j8k0si {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .blg-hero-vis.svelte-1j8k0si {
    margin: 0 auto;
    max-width: 320px;
    aspect-ratio: 1/0.9;
  }
  .blg-h1.svelte-1j8k0si {
    font-size: 1.6rem;
    line-height: 1.15;
  }
  .blg-lead.svelte-1j8k0si {
    font-size: 0.95rem;
  }
  .blg-mag.svelte-1j8k0si {
    width: 200px;
    padding: 8px;
  }
  .blg-mag-2.svelte-1j8k0si {
    width: 155px;
  }
  .blg-mag-3.svelte-1j8k0si {
    width: 140px;
  }
  .blg-mag-t.svelte-1j8k0si {
    font-size: 11.5px;
  }
  .blg-mag-2.svelte-1j8k0si .blg-mag-t:where(.svelte-1j8k0si),
  .blg-mag-3.svelte-1j8k0si .blg-mag-t:where(.svelte-1j8k0si) {
    font-size: 10px;
  }
  .blg-mag-ribbon.svelte-1j8k0si {
    font-size: 9px;
    padding: 4px 10px 4px 8px;
  }
  .blg-stats.svelte-1j8k0si {
    gap: 8px 10px;
    padding: 8px 12px;
  }
  .blg-stat.svelte-1j8k0si {
    min-width: 0;
  }
  .blg-stat-v.svelte-1j8k0si {
    font-size: 1rem;
  }
  .blg-stat-l.svelte-1j8k0si {
    font-size: 9px;
    letter-spacing: 0.05em;
  }
  .blg-stat-sep.svelte-1j8k0si {
    display: none;
  }
  .blg-vis-stat.svelte-1j8k0si {
    padding: 6px 10px 6px 6px;
  }
  .blg-vis-stat-v.svelte-1j8k0si {
    font-size: 12px;
  }
  .blg-vis-stat-l.svelte-1j8k0si {
    font-size: 9px;
  }
  .blg-vis-pill.svelte-1j8k0si {
    font-size: 10px;
    padding: 6px 10px 6px 8px;
  }
  .blg-how-flow.svelte-1j8k0si {
    grid-template-columns: 1fr;
    gap: 60px;
    max-width: 320px;
    margin: 0 auto 32px;
  }
  .blg-how-line.svelte-1j8k0si {
    display: none;
  }
  .blg-how-node.svelte-1j8k0si {
    position: relative;
  }
  .blg-how-node-2.svelte-1j8k0si:before,
  .blg-how-node-3.svelte-1j8k0si:before {
    content: "";
    position: absolute;
    top: -58px;
    left: 50%;
    transform: translate(-50%);
    width: 2px;
    height: 54px;
    background-image: linear-gradient(
      180deg,
      rgba(233, 30, 140, 0.5) 50%,
      transparent 50%
    );
    background-size: 2px 10px;
    background-repeat: repeat-y;
  }
  .blg-how-node-3.svelte-1j8k0si:before {
    background-image: linear-gradient(
      180deg,
      rgba(245, 158, 11, 0.5) 50%,
      transparent 50%
    );
  }
  .blg-how-circle.svelte-1j8k0si {
    width: 130px;
    height: 130px;
  }
  .blg-how-circle-main.svelte-1j8k0si {
    width: 160px;
    height: 160px;
  }
  .blg-how-avs.svelte-1j8k0si {
    width: 110px;
    height: 110px;
    padding: 10px;
  }
  .blg-how-av.svelte-1j8k0si {
    width: 46px;
    height: 46px;
  }
  .blg-how-av-lbl.svelte-1j8k0si {
    font-size: 8px;
    padding: 2px 6px;
    bottom: -12px;
  }
  .blg-how-steps.svelte-1j8k0si {
    grid-template-columns: 1fr;
    max-width: 440px;
  }
  .blg-grid.svelte-1j8k0si {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .blg-card.svelte-1j8k0si h3:where(.svelte-1j8k0si) {
    font-size: 15px;
  }
  .blg-card.svelte-1j8k0si p:where(.svelte-1j8k0si) {
    font-size: 12.5px;
    -webkit-line-clamp: 2;
  }
  .sb.svelte-1j8k0si {
    grid-template-columns: 1fr;
  }
  .blg-h2.svelte-1j8k0si {
    font-size: 1.6rem;
    line-height: 1.15;
  }
  .blg-sub.svelte-1j8k0si {
    font-size: 13.5px;
  }
  .sb-card.svelte-1j8k0si {
    padding: 16px;
  }
  .sb-trend-img.svelte-1j8k0si {
    width: 64px;
    height: 64px;
    border-radius: 12px;
  }
  .sb-trend-t.svelte-1j8k0si {
    font-size: 12px;
  }
  .sb-stats.svelte-1j8k0si {
    gap: 8px;
  }
  .sb-stat.svelte-1j8k0si {
    padding: 10px;
  }
  .sb-stat-v.svelte-1j8k0si {
    font-size: 1rem;
  }
  .sb-concierge.svelte-1j8k0si {
    padding: 16px;
  }
  .sb-concierge-foot.svelte-1j8k0si {
    flex-wrap: wrap;
    gap: 6px;
  }
  .sb-concierge-foot-i.svelte-1j8k0si {
    font-size: 9.5px;
  }
  .blg-writers.svelte-1j8k0si {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .tm-layout.svelte-1j8k0si {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .tm-list.svelte-1j8k0si {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .tm-center.svelte-1j8k0si {
    display: none;
  }
  .tm-big-n.svelte-1j8k0si {
    font-size: 4.5rem;
    top: -6px;
  }
  .tm-h2.svelte-1j8k0si {
    font-size: 1.6rem;
  }
  .tm-sub.svelte-1j8k0si {
    font-size: 13.5px;
  }
  .tm-row.svelte-1j8k0si {
    padding: 12px;
    gap: 10px;
  }
  .tm-row-n.svelte-1j8k0si {
    width: 34px;
    height: 34px;
    font-size: 11px;
  }
  .tm-row-av.svelte-1j8k0si {
    width: 28px;
    height: 28px;
    font-size: 10px;
  }
  .tm-row-name.svelte-1j8k0si {
    font-size: 12.5px;
  }
  .tm-row-posts.svelte-1j8k0si {
    font-size: 10.5px;
  }
  .tm-row-live.svelte-1j8k0si {
    font-size: 9px;
  }
  .tm-row.svelte-1j8k0si:before,
  .tm-row.svelte-1j8k0si:after {
    display: none;
  }
  .tm-stats-mini-i.svelte-1j8k0si strong:where(.svelte-1j8k0si) {
    font-size: 1rem;
  }
  .tp-panel.svelte-1j8k0si {
    padding: 24px 18px;
    border-radius: 22px;
  }
  .tp-phone.svelte-1j8k0si {
    max-width: 260px;
    border-radius: 32px;
  }
  .tp-phone-float-1.svelte-1j8k0si {
    right: 0;
    top: 2%;
    font-size: 10px;
    padding: 6px 10px 6px 7px;
  }
  .tp-phone-float-2.svelte-1j8k0si {
    left: 0;
    bottom: 4%;
    font-size: 10px;
    padding: 6px 10px 6px 7px;
  }
  .tp-h2.svelte-1j8k0si {
    font-size: 1.55rem;
  }
  .tp-desc.svelte-1j8k0si {
    font-size: 13.5px;
  }
  .tp-tag.svelte-1j8k0si {
    font-size: 11.5px;
    padding: 6px 12px;
  }
  .tp-cta.svelte-1j8k0si {
    padding: 11px 18px;
    font-size: 12px;
  }
  .tp-cta-note.svelte-1j8k0si {
    font-size: 10.5px;
  }
  .nl.svelte-1j8k0si {
    padding: 24px 16px;
    border-radius: 22px;
  }
  .nl-h2.svelte-1j8k0si {
    font-size: 1.55rem;
  }
  .nl-sub.svelte-1j8k0si {
    font-size: 13.5px;
  }
  .nl-perks.svelte-1j8k0si {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .nl-form.svelte-1j8k0si {
    flex-direction: column;
  }
  .nl-btn.svelte-1j8k0si {
    width: 100%;
    justify-content: center;
  }
  .nl-preview.svelte-1j8k0si {
    min-height: 0;
  }
  .nl-preview-email.svelte-1j8k0si {
    transform: rotate(0);
    max-width: 100%;
  }
  .nl-preview-stamp.svelte-1j8k0si {
    right: 0;
    top: -12px;
    transform: rotate(0);
    padding: 6px 12px 6px 8px;
  }
  .nl-preview-stamp.svelte-1j8k0si strong:where(.svelte-1j8k0si) {
    font-size: 10px;
  }
  .nl-preview-stamp.svelte-1j8k0si span:where(.svelte-1j8k0si) {
    font-size: 9px;
  }
  .nl-preview-pair.svelte-1j8k0si {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .nl-proof.svelte-1j8k0si {
    flex-wrap: wrap;
  }
  .blg-search.svelte-1j8k0si {
    padding: 6px;
    max-width: 100%;
  }
  .blg-search-ic.svelte-1j8k0si {
    width: 32px;
    height: 32px;
  }
  .blg-search.svelte-1j8k0si input:where(.svelte-1j8k0si) {
    font-size: 13px;
  }
  .blg-search-count.svelte-1j8k0si {
    font-size: 10px;
    padding: 6px 10px 6px 6px;
  }
  .blg-feat-foot.svelte-1j8k0si {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 380px) {
  .blg-hero-vis.svelte-1j8k0si {
    max-width: 260px;
  }
  .blg-mag.svelte-1j8k0si {
    width: 160px;
  }
  .blg-mag-2.svelte-1j8k0si {
    width: 125px;
  }
  .blg-mag-3.svelte-1j8k0si {
    width: 110px;
  }
  .blg-h1.svelte-1j8k0si {
    font-size: 1.35rem;
  }
  .blg-h2.svelte-1j8k0si,
  .tp-h2.svelte-1j8k0si,
  .tm-h2.svelte-1j8k0si,
  .nl-h2.svelte-1j8k0si {
    font-size: 1.4rem;
  }
}



/*single style page*/


.logout-overlay.svelte-rfuq4y {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10002;
  background: radial-gradient(
      1100px 500px at 80% -10%,
      rgba(244, 63, 94, 0.18),
      transparent 60%
    ),
    radial-gradient(
      900px 450px at -10% 100%,
      rgba(124, 58, 237, 0.12),
      transparent 60%
    ),
    #fff0f7c7;
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(14px, 3vw, 40px);
  animation: svelte-rfuq4y-logoutFade 0.22s ease;
}
@keyframes svelte-rfuq4y-logoutFade {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.logout-card.svelte-rfuq4y {
  position: relative;
  width: min(400px, 100%);
  padding: 30px 26px 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, #fffafc);
  text-align: center;
  box-shadow: 0 40px 90px -28px #2d124857, 0 0 0 1px #fff9,
    inset 0 1px #ffffffe6;
  animation: svelte-rfuq4y-logoutPop 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes svelte-rfuq4y-logoutPop {
  0% {
    opacity: 0;
    transform: scale(0.92) translateY(12px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.logout-glow.svelte-rfuq4y {
  position: absolute;
  top: -2px;
  right: -2px;
  bottom: -2px;
  left: -2px;
  z-index: -1;
  border-radius: 26px;
  background: conic-gradient(from 0deg, #e91e8c, #f43f5e, #f59e0b, #e91e8c);
  opacity: 0.28;
  filter: blur(22px);
  animation: svelte-rfuq4y-logoutGlow 6s linear infinite;
  pointer-events: none;
}
@keyframes svelte-rfuq4y-logoutGlow {
  to {
    transform: rotate(360deg);
  }
}
.logout-close.svelte-rfuq4y {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fffffff2;
  color: var(--heading, #1e0b38);
  border: 1px solid rgba(233, 30, 140, 0.15);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px #2d12481f;
  transition: transform 0.2s, background 0.2s, color 0.2s;
}
.logout-close.svelte-rfuq4y:hover:not(:disabled) {
  background: linear-gradient(135deg, #e91e8c, #f43f5e);
  color: #fff;
  border-color: transparent;
  transform: rotate(90deg);
}
.logout-close.svelte-rfuq4y:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.logout-ic.svelte-rfuq4y {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  border-radius: 20px;
  background: linear-gradient(135deg, #fdf2f8, #fce7f3);
  color: #e91e8c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px -10px #e91e8c59, inset 0 2px #fff9;
  animation: svelte-rfuq4y-logoutIcIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes svelte-rfuq4y-logoutIcIn {
  0% {
    opacity: 0;
    transform: scale(0.5) rotate(-10deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}
.logout-title.svelte-rfuq4y {
  margin: 0 0 8px;
  font-size: 19px;
  font-weight: 700;
  color: var(--heading, #1e0b38);
  letter-spacing: -0.01em;
}
.logout-sub.svelte-rfuq4y {
  margin: 0 0 22px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted, #6b5876);
}
.logout-sub.svelte-rfuq4y strong:where(.svelte-rfuq4y) {
  color: var(--heading, #1e0b38);
  font-weight: 600;
}
.logout-actions.svelte-rfuq4y {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.logout-btn.svelte-rfuq4y {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 18px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.25s ease,
    color 0.2s;
}
.logout-btn.svelte-rfuq4y:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.logout-btn--cancel.svelte-rfuq4y {
  background: #faf6fa;
  color: var(--heading, #1e0b38);
  border-color: #e91e8c26;
}
.logout-btn--cancel.svelte-rfuq4y:hover:not(:disabled) {
  background: #fff;
  border-color: #e91e8c59;
  transform: translateY(-1px);
}
.logout-btn--confirm.svelte-rfuq4y {
  color: #fff;
  background: linear-gradient(135deg, #e91e8c, #f43f5e 60%, #f59e0b);
  background-size: 200% 100%;
  box-shadow: 0 10px 22px -8px #e91e8c80, inset 0 1px #ffffff40;
}
.logout-btn--confirm.svelte-rfuq4y:hover:not(:disabled) {
  transform: translateY(-2px);
  background-position: 100% 0;
  box-shadow: 0 14px 28px -8px #e91e8c99;
}
.logout-spin.svelte-rfuq4y {
  animation: svelte-rfuq4y-logoutSpin 0.9s linear infinite;
}
@keyframes svelte-rfuq4y-logoutSpin {
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 420px) {
  .logout-card.svelte-rfuq4y {
    padding: 26px 20px 20px;
  }
  .logout-title.svelte-rfuq4y {
    font-size: 17px;
  }
}
.navbar.svelte-rfuq4y {
  position: sticky;
  top: 0;
  z-index: 200;
}
.top-strip.svelte-rfuq4y {
  position: relative;
  background: linear-gradient(90deg, #fce7f3f2, #fef3c7d9, #fce7f3f2), #fff;
  border-bottom: 1px solid rgba(233, 30, 140, 0.1);
  padding: 7px 0;
  font-size: 11.5px;
  color: #6b4e63;
  overflow: hidden;
}
.top-strip.svelte-rfuq4y:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(233, 30, 140, 0.4),
    rgba(245, 158, 11, 0.4),
    rgba(233, 30, 140, 0.4),
    transparent
  );
}
.strip-inner.svelte-rfuq4y {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  min-height: 22px;
}
.strip-group.svelte-rfuq4y {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.strip-group--right.svelte-rfuq4y {
  flex-shrink: 0;
}
.strip-pill.svelte-rfuq4y {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 10px;
  background: #ffffffbf;
  border: 1px solid rgba(16, 185, 129, 0.22);
  border-radius: 999px;
  font-weight: 600;
  color: #065f46;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  white-space: nowrap;
}
.strip-pill.svelte-rfuq4y strong:where(.svelte-rfuq4y) {
  font-weight: 600;
  color: #047857;
}
.strip-live-dot.svelte-rfuq4y {
  position: relative;
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 #10b98199;
  animation: svelte-rfuq4y-stripPulse 1.8s ease-out infinite;
}
@keyframes svelte-rfuq4y-stripPulse {
  0% {
    box-shadow: 0 0 #10b98199;
  }
  70% {
    box-shadow: 0 0 0 6px #10b98100;
  }
  to {
    box-shadow: 0 0 #10b98100;
  }
}
.strip-chip.svelte-rfuq4y {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 11px;
  background: #ffffffb3;
  border: 1px solid rgba(233, 30, 140, 0.1);
  white-space: nowrap;
}
.strip-chip.svelte-rfuq4y svg:where(.svelte-rfuq4y) {
  flex-shrink: 0;
}
.strip-chip--verified.svelte-rfuq4y {
  color: #6d28d9;
  border-color: #7c3aed38;
}
.strip-chip--verified.svelte-rfuq4y svg:where(.svelte-rfuq4y) {
  color: #7c3aed;
}
.strip-chip--discreet.svelte-rfuq4y {
  color: #b45309;
  border-color: #d9770638;
}
.strip-chip--discreet.svelte-rfuq4y svg:where(.svelte-rfuq4y) {
  color: #d97706;
}
.strip-ticker.svelte-rfuq4y {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: 320px;
}
.strip-ticker__label.svelte-rfuq4y {
  color: #f59e0b;
  font-size: 12px;
  flex-shrink: 0;
}
.strip-ticker__viewport.svelte-rfuq4y {
  width: 280px;
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}
.strip-ticker__track.svelte-rfuq4y {
  display: inline-flex;
  gap: 28px;
  animation: svelte-rfuq4y-stripTicker 28s linear infinite;
  white-space: nowrap;
  will-change: transform;
}
.strip-ticker__item.svelte-rfuq4y {
  font-size: 11.5px;
  color: #6b4e63;
  font-weight: 600;
}
@keyframes svelte-rfuq4y-stripTicker {
  0% {
    transform: translate(0);
  }
  to {
    transform: translate(-50%);
  }
}
.strip-ticker.svelte-rfuq4y:hover .strip-ticker__track:where(.svelte-rfuq4y) {
  animation-play-state: paused;
}
.strip-quick.svelte-rfuq4y {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}
.strip-quick--call.svelte-rfuq4y {
  background: linear-gradient(135deg, #e91e8c, #f43f5e);
  color: #fff;
  box-shadow: 0 3px 10px -2px #e91e8c66;
}
.strip-quick--call.svelte-rfuq4y:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px -2px #e91e8c8c;
}
@media (max-width: 1180px) {
  .strip-chip--discreet.svelte-rfuq4y,
  .strip-ticker.svelte-rfuq4y {
    display: none;
  }
}
@media (max-width: 960px) {
  .strip-chip--verified.svelte-rfuq4y {
    display: none;
  }
}
.nav-body.svelte-rfuq4y {
  position: relative;
  background: #ffffffd9;
  border-bottom: 1px solid rgba(233, 30, 140, 0.1);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 4px 20px #2d12480a;
}
.nav-body.svelte-rfuq4y:before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(233, 30, 140, 0.25),
    rgba(245, 158, 11, 0.25),
    transparent
  );
  pointer-events: none;
}
.nav-inner.svelte-rfuq4y {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 20px;
}
.nav-logo.svelte-rfuq4y {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon.svelte-rfuq4y {
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s;
  filter: drop-shadow(0 8px 18px rgba(233, 30, 140, 0.35));
}
.nav-logo.svelte-rfuq4y:hover .logo-icon:where(.svelte-rfuq4y) {
  transform: scale(1.08) rotate(-4deg);
  filter: drop-shadow(0 10px 22px rgba(233, 30, 140, 0.5));
}
.logo-words.svelte-rfuq4y {
  display: flex;
  flex-direction: column;
}
.logo-main.svelte-rfuq4y {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #1a0611;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.logo-tagline.svelte-rfuq4y {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  font-weight: 600;
  color: var(--text-dim, #7b6a90);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-top: 3px;
}
.logo-dot.svelte-rfuq4y {
  color: var(--rose);
  font-size: 7px;
  line-height: 1;
}
.nav-links.svelte-rfuq4y {
  display: flex;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 4px;
  background: #fff9;
  border: 1px solid rgba(233, 30, 140, 0.1);
  border-radius: 50px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px #fffc;
}
.nav-links.svelte-rfuq4y a:where(.svelte-rfuq4y) {
  position: relative;
  color: #4a2d5e;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.nav-links.svelte-rfuq4y a:where(.svelte-rfuq4y):hover {
  color: var(--rose);
  background: #e91e8c14;
}
.nav-links.svelte-rfuq4y a.active:where(.svelte-rfuq4y) {
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  box-shadow: 0 6px 14px #e91e8c59;
}
.active-dot.svelte-rfuq4y {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 2px #ffffff59;
  display: inline-block;
  animation: svelte-rfuq4y-navPulse 2s ease-in-out infinite;
}
@keyframes svelte-rfuq4y-navPulse {
  0%,
  to {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.nav-actions.svelte-rfuq4y {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-fav.svelte-rfuq4y {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid rgba(233, 30, 140, 0.2);
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  text-decoration: none;
  box-shadow: 0 4px 10px #2d12480f;
}
.nav-fav.svelte-rfuq4y:hover {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px #e91e8c66;
}
.nav-fav.svelte-rfuq4y:hover svg:where(.svelte-rfuq4y) {
  fill: #fff;
  stroke: #fff;
}
.fav-badge.svelte-rfuq4y {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--rose);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 20px;
  padding: 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  line-height: 1;
  box-shadow: 0 2px 6px #e91e8c59;
}
.nav-fav.svelte-rfuq4y:hover .fav-badge:where(.svelte-rfuq4y) {
  background: #fff;
  color: var(--rose);
  border-color: var(--rose);
}
.fav-pop.svelte-rfuq4y {
  animation: svelte-rfuq4y-favBounce 0.6s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}
@keyframes svelte-rfuq4y-favBounce {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(1.35) rotate(-8deg);
  }
  40% {
    transform: scale(0.9) rotate(5deg);
  }
  60% {
    transform: scale(1.15) rotate(-3deg);
  }
  80% {
    transform: scale(0.97);
  }
  to {
    transform: scale(1);
  }
}
.nav-wa.svelte-rfuq4y {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 50px;
  border: none;
  background: linear-gradient(135deg, #25d366, #128c7e);
  text-decoration: none;
  box-shadow: 0 8px 18px #25d36659, inset 0 1px #ffffff40;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  letter-spacing: 0;
}
.nav-wa.svelte-rfuq4y:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px #25d36680, inset 0 1px #ffffff4d;
  color: #fff;
}
.nav-user-wrap.svelte-rfuq4y {
  position: relative;
}
.nav-user.svelte-rfuq4y {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 6px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.15);
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.nav-user.svelte-rfuq4y:hover {
  border-color: #e91e8c;
  box-shadow: 0 6px 14px -4px #e91e8c33;
}
.nav-user__avatar.svelte-rfuq4y {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e91e8c, #f43f5e);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 12px;
}
.nav-user__avatar--big.svelte-rfuq4y {
  width: 40px;
  height: 40px;
  font-size: 16px;
  flex-basis: 40px;
}
.nav-user__name.svelte-rfuq4y {
  font-size: 13px;
  font-weight: 500;
  color: var(--heading, #2a1218);
}
.nav-user__chev.svelte-rfuq4y {
  color: var(--text-dim, #6b5876);
  transition: transform 0.2s ease;
}
.nav-user__chev.up.svelte-rfuq4y {
  transform: rotate(180deg);
}
.nav-user-menu.svelte-rfuq4y {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: 240px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.12);
  border-radius: 14px;
  box-shadow: 0 20px 40px -10px #2d124833;
  overflow: hidden;
  z-index: 50;
  animation: svelte-rfuq4y-navMenuIn 0.2s ease;
}
@keyframes svelte-rfuq4y-navMenuIn {
  0% {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.nav-user-menu__head.svelte-rfuq4y {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  background: linear-gradient(135deg, #fff0f6, #fff8fa);
  border-bottom: 1px solid rgba(233, 30, 140, 0.08);
}
.nav-user-menu__info.svelte-rfuq4y {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
  flex: 1;
}
.nav-user-menu__info.svelte-rfuq4y strong:where(.svelte-rfuq4y) {
  font-size: 13.5px;
  color: var(--heading, #2a1218);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav-user-menu__info.svelte-rfuq4y span:where(.svelte-rfuq4y) {
  font-size: 11.5px;
  color: var(--text-dim, #6b5876);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav-user-menu__item.svelte-rfuq4y {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 14px;
  background: #fff;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--heading, #2a1218);
  transition: background 0.15s;
}
.nav-user-menu__logout.svelte-rfuq4y:hover {
  background: #fef2f2;
  color: #dc2626;
}
.nav-user-menu__logout.svelte-rfuq4y:hover svg:where(.svelte-rfuq4y) {
  color: #dc2626;
}
.nav-user-menu__logout.svelte-rfuq4y svg:where(.svelte-rfuq4y) {
  color: var(--text-dim, #6b5876);
}
.mob-auth.svelte-rfuq4y {
  display: flex;
  gap: 10px;
  padding: 14px 16px 12px;
  margin: 8px 0 4px;
  border-top: 1px dashed rgba(233, 30, 140, 0.15);
  border-bottom: 1px dashed rgba(233, 30, 140, 0.15);
}
.mob-btn.svelte-rfuq4y {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 14px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s;
}
.mob-btn--login.svelte-rfuq4y {
  background: #fff;
  color: #2a1218;
  border: 1.5px solid rgba(233, 30, 140, 0.25);
}
.mob-btn--login.svelte-rfuq4y:hover {
  border-color: #e91e8c;
  color: #e91e8c;
  background: #e91e8c0a;
}
.mob-btn--signup.svelte-rfuq4y {
  background: linear-gradient(135deg, #e91e8c, #f43f5e);
  color: #fff;
  border: none;
  box-shadow: 0 8px 18px -4px #e91e8c73;
}
.mob-btn--signup.svelte-rfuq4y:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px -4px #e91e8c8c;
}
.mob-user.svelte-rfuq4y {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  width: 100%;
  background: linear-gradient(135deg, #fff0f6, #fff8fa);
  border-radius: 12px;
}
.mob-user.svelte-rfuq4y > div:where(.svelte-rfuq4y) {
  flex: 1;
  min-width: 0;
}
.mob-user.svelte-rfuq4y strong:where(.svelte-rfuq4y) {
  display: block;
  font-size: 13.5px;
  color: var(--heading, #2a1218);
  font-weight: 500;
}
.mob-user.svelte-rfuq4y small:where(.svelte-rfuq4y) {
  font-size: 11.5px;
  color: var(--text-dim, #6b5876);
}
.mob-user.svelte-rfuq4y button:where(.svelte-rfuq4y) {
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 500;
  color: #dc2626;
  background: #fff;
  border: 1px solid rgba(220, 38, 38, 0.25);
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
}
.mob-user.svelte-rfuq4y button:where(.svelte-rfuq4y):hover {
  background: #fef2f2;
}
@media (max-width: 900px) {
  .nav-user-wrap.svelte-rfuq4y {
    display: none;
  }
  .mob-auth.svelte-rfuq4y {
    display: flex;
  }
}
@media (min-width: 901px) {
  .mob-auth.svelte-rfuq4y {
    display: none;
  }
}
.hamburger.svelte-rfuq4y {
  display: none;
  cursor: pointer;
  width: 42px;
  height: 42px;
  background: #fff;
  border: 1.5px solid rgba(233, 30, 140, 0.2);
  color: var(--rose);
  padding: 0;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px #2d12480f;
}
.hamburger.svelte-rfuq4y:hover {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px #e91e8c66;
}
.mob-overlay.svelte-rfuq4y {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #00000073;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  z-index: 299;
  animation: svelte-rfuq4y-fadeIn 0.2s ease;
}
@keyframes svelte-rfuq4y-fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.mob-drawer.svelte-rfuq4y {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 90vw);
  background: radial-gradient(
      800px 400px at 100% 0%,
      rgba(233, 30, 140, 0.08),
      transparent 60%
    ),
    radial-gradient(
      600px 400px at 0% 100%,
      rgba(245, 158, 11, 0.08),
      transparent 60%
    ),
    linear-gradient(180deg, #fff, #fff7fb);
  box-shadow: -20px 0 60px #e91e8c2e, -2px 0 16px #00000014;
  z-index: 300;
  display: flex;
  flex-direction: column;
  animation: svelte-rfuq4y-slideIn 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
  border-left: 1px solid rgba(233, 30, 140, 0.12);
}
@keyframes svelte-rfuq4y-slideIn {
  0% {
    transform: translate(100%);
    opacity: 0;
  }
  to {
    transform: translate(0);
    opacity: 1;
  }
}
.mob-header.svelte-rfuq4y {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 18px;
  border-bottom: 1px solid rgba(233, 30, 140, 0.12);
  background: linear-gradient(135deg, #e91e8c0f, #f59e0b0a);
  position: sticky;
  top: 0;
  z-index: 2;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.mob-logo.svelte-rfuq4y {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 700;
  color: #1a0611;
  text-decoration: none;
  letter-spacing: -0.02em;
}
.mob-logo.svelte-rfuq4y svg:where(.svelte-rfuq4y) {
  filter: drop-shadow(0 6px 14px rgba(233, 30, 140, 0.35));
}
.mob-close.svelte-rfuq4y {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #fff;
  border: 1.5px solid rgba(233, 30, 140, 0.15);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 4px 10px #2d12480d;
}
.mob-close.svelte-rfuq4y:hover {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  border-color: transparent;
  color: #fff;
  transform: rotate(90deg);
  box-shadow: 0 8px 18px #e91e8c59;
}
.mob-nav.svelte-rfuq4y {
  display: flex;
  flex-direction: column;
  padding: 14px 12px;
  flex: 1;
  gap: 4px;
}
.mob-link.svelte-rfuq4y {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.08);
  border-radius: 14px;
  text-decoration: none;
  color: #1a0611;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 2px 6px #2d12480a;
}
.mob-link.mob-active.svelte-rfuq4y .mob-link-text:where(.svelte-rfuq4y) {
  font-weight: 500;
}
.mob-link-ic.svelte-rfuq4y {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #ffe4ef, #fff0db);
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.mob-link-text.svelte-rfuq4y {
  flex: 1;
  min-width: 0;
}
.mob-link-arr.svelte-rfuq4y {
  color: var(--text-dim, #c9b8d8);
  flex-shrink: 0;
  transition: all 0.3s;
}
.mob-link.svelte-rfuq4y:hover {
  border-color: #e91e8c4d;
  transform: translate(4px);
  box-shadow: 0 8px 18px #e91e8c24;
}
.mob-link.svelte-rfuq4y:hover .mob-link-ic:where(.svelte-rfuq4y) {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  transform: scale(1.05);
}
.mob-link.svelte-rfuq4y:hover .mob-link-arr:where(.svelte-rfuq4y) {
  color: var(--rose);
  transform: translate(3px);
}
.mob-link.mob-active.svelte-rfuq4y {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 12px 26px #e91e8c66;
}
.mob-link.mob-active.svelte-rfuq4y .mob-link-ic:where(.svelte-rfuq4y) {
  background: #ffffff38;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}
.mob-active-pill.svelte-rfuq4y {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: #ffffff38;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 3px 10px 3px 8px;
  border-radius: 50px;
}
.mob-active-pill-dot.svelte-rfuq4y {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a7f3d0;
  box-shadow: 0 0 0 2px #a7f3d059, 0 0 6px #a7f3d0;
  animation: svelte-rfuq4y-navPulse 2s ease-in-out infinite;
}
.mob-ctas.svelte-rfuq4y {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 16px 10px;
  border-top: 1px solid rgba(233, 30, 140, 0.12);
}
.mob-cta-wa.svelte-rfuq4y {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border: none;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 28px #25d36659, inset 0 1px #ffffff40;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.mob-cta-wa.svelte-rfuq4y:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px #25d36680;
  color: #fff;
}
.mob-footer.svelte-rfuq4y {
  padding: 12px 20px 22px;
  text-align: center;
}
.mob-avail.svelte-rfuq4y {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px 8px 10px;
  background: #10b9811a;
  border: 1px dashed rgba(16, 185, 129, 0.3);
  border-radius: 50px;
  font-size: 11.5px;
  font-weight: 600;
  color: #059669;
  letter-spacing: -0.01em;
}
.mob-dot.svelte-rfuq4y {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px #10b98140;
  flex-shrink: 0;
  animation: svelte-rfuq4y-navPulse 2s ease-in-out infinite;
}
@media (max-width: 1100px) {
  .nav-links.svelte-rfuq4y a:where(.svelte-rfuq4y) {
    padding: 8px 12px;
    font-size: 12.5px;
  }
  .nav-wa.svelte-rfuq4y {
    padding: 9px 14px;
    font-size: 12px;
  }
}
@media (max-width: 1024px) {
  .top-strip.svelte-rfuq4y,
  .nav-links.svelte-rfuq4y {
    display: none;
  }
  .hamburger.svelte-rfuq4y {
    display: flex;
  }
}
@media (max-width: 768px) {
  .nav-inner.svelte-rfuq4y {
    height: 64px;
    gap: 10px;
  }
  .nav-wa.svelte-rfuq4y {
    display: none;
  }
  .nav-fav.svelte-rfuq4y,
  .hamburger.svelte-rfuq4y {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 600px) {
  .logo-main.svelte-rfuq4y {
    font-size: 15px;
    line-height: 1.1;
  }
  .logo-tagline.svelte-rfuq4y {
    display: inline-flex;
    font-size: 8px;
    letter-spacing: 0.14em;
    margin-top: 2px;
  }
  .logo-dot.svelte-rfuq4y {
    font-size: 6px;
  }
}
.ft.svelte-jz8lnl {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff7fb, #fffaf2, #fff);
  border-top: 1px solid rgba(233, 30, 140, 0.12);
  padding-top: 56px;
}
.ft-orb.svelte-jz8lnl {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.4;
  z-index: 0;
}
.ft-orb-1.svelte-jz8lnl {
  top: -100px;
  left: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(233, 30, 140, 0.3), transparent 70%);
}
.ft-orb-2.svelte-jz8lnl {
  bottom: -100px;
  right: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.25),
    transparent 70%
  );
}
.ft-line.svelte-jz8lnl {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(233, 30, 140, 0.5),
    rgba(245, 158, 11, 0.5),
    transparent
  );
}
.ft.svelte-jz8lnl > .grid-container:where(.svelte-jz8lnl) {
  position: relative;
  z-index: 1;
}
.ft-grad.svelte-jz8lnl {
  background: linear-gradient(135deg, var(--rose), #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ft-cta.svelte-jz8lnl {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 36px 40px;
  border-radius: 26px;
  background: radial-gradient(
      600px 400px at 0% 100%,
      rgba(245, 158, 11, 0.18),
      transparent 60%
    ),
    radial-gradient(
      600px 400px at 100% 0%,
      rgba(233, 30, 140, 0.18),
      transparent 60%
    ),
    linear-gradient(135deg, #fff, #fff6fb);
  border: 1px solid rgba(233, 30, 140, 0.16);
  box-shadow: 0 24px 60px #2d12481a;
  margin-bottom: 56px;
}
.ft-cta-bg.svelte-jz8lnl {
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.ft-cta-text.svelte-jz8lnl {
  position: relative;
  z-index: 1;
  max-width: 560px;
}
.ft-cta-pill.svelte-jz8lnl {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px 5px 9px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.2);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--rose-dark, #c2185b);
  margin-bottom: 12px;
}
.ft-cta-pill-dot.svelte-jz8lnl {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px #10b98138;
  animation: svelte-jz8lnl-ftPulse 2s ease-in-out infinite;
}
@keyframes svelte-jz8lnl-ftPulse {
  0%,
  to {
    box-shadow: 0 0 0 3px #10b98138;
  }
  50% {
    box-shadow: 0 0 0 5px #10b98114, 0 0 10px #10b98199;
  }
}
.ft-cta.svelte-jz8lnl h3:where(.svelte-jz8lnl) {
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: #1a0611;
  margin: 0 0 8px;
}
.ft-cta.svelte-jz8lnl p:where(.svelte-jz8lnl) {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}
.ft-cta-actions.svelte-jz8lnl {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ft-cta-btn.svelte-jz8lnl {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
}
.ft-cta-btn-wa.svelte-jz8lnl {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 12px 28px #25d36659;
}
.ft-cta-btn-wa.svelte-jz8lnl:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px #25d36680;
  color: #fff;
}
.ft-cta-btn-ghost.svelte-jz8lnl {
  background: #fff;
  border: 1.5px solid rgba(233, 30, 140, 0.2);
  color: var(--rose);
}
.ft-cta-btn-ghost.svelte-jz8lnl:hover {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px #e91e8c66;
}
.ft-grid.svelte-jz8lnl {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 48px;
}
.ft-logo.svelte-jz8lnl {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 16px;
}
.ft-logo-mark.svelte-jz8lnl {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px #e91e8c59;
}
.ft-logo-t.svelte-jz8lnl {
  font-size: 18px;
  font-weight: 700;
  color: #1a0611;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.ft-logo-accent.svelte-jz8lnl {
  background: linear-gradient(135deg, var(--rose), #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ft-logo-s.svelte-jz8lnl {
  font-size: 9.5px;
  letter-spacing: 0.18em;
  color: var(--text-dim, #7b6a90);
  margin-top: 4px;
  font-weight: 500;
}
.ft-desc.svelte-jz8lnl {
  font-size: 13px;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0 0 16px;
  max-width: 380px;
}
.ft-trust.svelte-jz8lnl {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}
.ft-trust-i.svelte-jz8lnl {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px 5px 8px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.15);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  color: #1a0611;
  box-shadow: 0 3px 8px #2d12480d;
}
.ft-trust-i.svelte-jz8lnl svg:where(.svelte-jz8lnl) {
  color: var(--rose);
}
.ft-social.svelte-jz8lnl {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 340px;
}
.ft-social-btn.svelte-jz8lnl {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  border: 1px solid transparent;
}
.ft-sb-wa.svelte-jz8lnl {
  background: #25d3661a;
  color: #22c55e;
  border-color: #25d36633;
}
.ft-sb-wa.svelte-jz8lnl:hover {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px #25d36666;
}
.ft-sb-tg.svelte-jz8lnl {
  background: #29b6f61a;
  color: #0284c7;
  border-color: #29b6f633;
}
.ft-sb-tg.svelte-jz8lnl:hover {
  background: linear-gradient(135deg, #29b6f6, #0284c7);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px #29b6f666;
}
.ft-sb-ig.svelte-jz8lnl {
  background: #e91e8c1a;
  color: var(--rose);
  border-color: #e91e8c33;
}
.ft-sb-ig.svelte-jz8lnl:hover {
  background: linear-gradient(135deg, #fb923c, #ec4899, #a855f7);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px #e91e8c66;
}
.ft-sb-fb.svelte-jz8lnl {
  background: #4267b21a;
  color: #4267b2;
  border-color: #4267b238;
}
.ft-sb-fb.svelte-jz8lnl:hover {
  background: linear-gradient(135deg, #4267b2, #355896);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px #4267b266;
}
.ft-sb-tw.svelte-jz8lnl {
  background: #0f172a14;
  color: #0f172a;
  border-color: #0f172a33;
}
.ft-sb-tw.svelte-jz8lnl:hover {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px #0f172a59;
}
.ft-sb-yt.svelte-jz8lnl {
  background: #ef44441a;
  color: #dc2626;
  border-color: #ef444438;
}
.ft-sb-yt.svelte-jz8lnl:hover {
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px #ef444466;
}
.ft-sb-in.svelte-jz8lnl {
  background: #0a66c21a;
  color: #0a66c2;
  border-color: #0a66c238;
}
.ft-sb-in.svelte-jz8lnl:hover {
  background: linear-gradient(135deg, #0a66c2, #004182);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px #0a66c266;
}
.ft-sb-gr.svelte-jz8lnl {
  background: #78522f1a;
  color: #78522f;
  border-color: #78522f38;
}
.ft-sb-gr.svelte-jz8lnl:hover {
  background: linear-gradient(135deg, #78522f, #4d3a26);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px #78522f66;
}
.ft-sb-pi.svelte-jz8lnl {
  background: #e600231a;
  color: #e60023;
  border-color: #e6002338;
}
.ft-sb-pi.svelte-jz8lnl:hover {
  background: linear-gradient(135deg, #e60023, #ad001a);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px #e6002366;
}
.ft-sb-rd.svelte-jz8lnl {
  background: #ff45001a;
  color: #ff4500;
  border-color: #ff450040;
}
.ft-sb-rd.svelte-jz8lnl:hover {
  background: linear-gradient(135deg, #ff4500, #cc3700);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px #ff450066;
}
.ft-sb-qu.svelte-jz8lnl {
  background: #b92b271a;
  color: #b92b27;
  border-color: #b92b2738;
}
.ft-sb-qu.svelte-jz8lnl:hover {
  background: linear-gradient(135deg, #b92b27, #7d1c19);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px #b92b2766;
}
.ft-sb-vi.svelte-jz8lnl {
  background: #1ab7ea1a;
  color: #1ab7ea;
  border-color: #1ab7ea38;
}
.ft-sb-vi.svelte-jz8lnl:hover {
  background: linear-gradient(135deg, #1ab7ea, #0b87b0);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px #1ab7ea66;
}
.ft-sb-tl.svelte-jz8lnl {
  background: #354a611a;
  color: #36465d;
  border-color: #354a6138;
}
.ft-sb-tl.svelte-jz8lnl:hover {
  background: linear-gradient(135deg, #36465d, #202b3a);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px #354a6166;
}
.ft-sb-lb.svelte-jz8lnl {
  background: #00c3601a;
  color: #00c360;
  border-color: #00c36038;
}
.ft-sb-lb.svelte-jz8lnl:hover {
  background: linear-gradient(135deg, #00c360, #008f47);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px #00c36066;
}
.ft-sb-ma.svelte-jz8lnl {
  background: #6364ff1a;
  color: #6364ff;
  border-color: #6364ff38;
}
.ft-sb-ma.svelte-jz8lnl:hover {
  background: linear-gradient(135deg, #6364ff, #4143d6);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px #6364ff66;
}
.ft-sb-mx.svelte-jz8lnl {
  background: #ff81001a;
  color: #ff8100;
  border-color: #ff810038;
}
.ft-sb-mx.svelte-jz8lnl:hover {
  background: linear-gradient(135deg, #ff8100, #cc6700);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px #ff810066;
}
.ft-sb-me.svelte-jz8lnl {
  background: #12121214;
  color: #121212;
  border-color: #12121233;
}
.ft-sb-me.svelte-jz8lnl:hover {
  background: linear-gradient(135deg, #121212, #2d2d2d);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px #12121259;
}
.ft-sb-vk.svelte-jz8lnl {
  background: #4c75a31a;
  color: #4c75a3;
  border-color: #4c75a338;
}
.ft-sb-vk.svelte-jz8lnl:hover {
  background: linear-gradient(135deg, #4c75a3, #365579);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px #4c75a366;
}
.ft-sb-dm.svelte-jz8lnl {
  background: #00bafc1a;
  color: #00bafc;
  border-color: #00bafc38;
}
.ft-sb-dm.svelte-jz8lnl:hover {
  background: linear-gradient(135deg, #00bafc, #008dc2);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px #00bafc66;
}
.ft-sb-bh.svelte-jz8lnl {
  background: #0534ff1a;
  color: #0057ff;
  border-color: #0534ff38;
}
.ft-sb-bh.svelte-jz8lnl:hover {
  background: linear-gradient(135deg, #0057ff, #04c);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px #0534ff66;
}
.ft-sb-dr.svelte-jz8lnl {
  background: #ea4c891a;
  color: #ea4c89;
  border-color: #ea4c8938;
}
.ft-sb-dr.svelte-jz8lnl:hover {
  background: linear-gradient(135deg, #ea4c89, #c23469);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px #ea4c8966;
}
.ft-sb-ss.svelte-jz8lnl {
  background: #0077b51a;
  color: #0077b5;
  border-color: #0077b538;
}
.ft-sb-ss.svelte-jz8lnl:hover {
  background: linear-gradient(135deg, #0077b5, #005582);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px #0077b566;
}
.ft-sb-fl.svelte-jz8lnl {
  background: #ff00841a;
  color: #ff0084;
  border-color: #ff008438;
}
.ft-sb-fl.svelte-jz8lnl:hover {
  background: linear-gradient(135deg, #ff0084, #0063dc);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px #ff008466;
}
.ft-sb-sc.svelte-jz8lnl {
  background: #ff55001a;
  color: #f50;
  border-color: #ff550038;
}
.ft-sb-sc.svelte-jz8lnl:hover {
  background: linear-gradient(135deg, #f50, #c40);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px #f506;
}
.ft-sb-my.svelte-jz8lnl {
  background: #0033661a;
  color: #036;
  border-color: #00336638;
}
.ft-sb-my.svelte-jz8lnl:hover {
  background: linear-gradient(135deg, #036, #024);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px #0366;
}
.ft-sb-pa.svelte-jz8lnl {
  background: #ff424d1a;
  color: #ff424d;
  border-color: #ff424d38;
}
.ft-sb-pa.svelte-jz8lnl:hover {
  background: linear-gradient(135deg, #ff424d, #d6333c);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px #ff424d66;
}
.ft-fine.svelte-jz8lnl {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed rgba(233, 30, 140, 0.18);
}
.ft-fine.svelte-jz8lnl p:where(.svelte-jz8lnl) {
  margin: 0 0 6px;
  font-size: 11.5px;
  color: #6b5876;
  line-height: 1.6;
}
.ft-fine__note.svelte-jz8lnl {
  color: #9a7fb8;
  font-style: italic;
}
.ft-col.svelte-jz8lnl h4:where(.svelte-jz8lnl) {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #1a0611;
  text-transform: uppercase;
  margin: 4px 0 18px;
}
.ft-col-dash.svelte-jz8lnl {
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), #f59e0b);
  border-radius: 2px;
}
.ft-col.svelte-jz8lnl ul:where(.svelte-jz8lnl) {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.ft-col.svelte-jz8lnl ul:where(.svelte-jz8lnl) a:where(.svelte-jz8lnl) {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  width: fit-content;
}
.ft-col.svelte-jz8lnl ul:where(.svelte-jz8lnl) a:where(.svelte-jz8lnl):before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #e91e8c4d;
  transition: all 0.25s;
}
.ft-col.svelte-jz8lnl ul:where(.svelte-jz8lnl) a:where(.svelte-jz8lnl):hover {
  color: var(--rose);
  transform: translate(4px);
}
.ft-col.svelte-jz8lnl
  ul:where(.svelte-jz8lnl)
  a:where(.svelte-jz8lnl):hover:before {
  background: var(--rose);
  box-shadow: 0 0 0 3px #e91e8c33;
}
.ft-col-contact.svelte-jz8lnl {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ft-col-contact.svelte-jz8lnl h4:where(.svelte-jz8lnl) {
  margin-bottom: 8px;
}
.ft-contact.svelte-jz8lnl {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px 12px 12px;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.ft-contact-wa.svelte-jz8lnl {
  background: linear-gradient(120deg, #25d36614, #25d3660a);
  border: 1px solid rgba(37, 211, 102, 0.22);
  color: inherit;
}
.ft-contact-wa.svelte-jz8lnl:hover {
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px #25d36659;
  color: #fff;
}
.ft-contact-wa.svelte-jz8lnl:hover .ft-contact-l:where(.svelte-jz8lnl),
.ft-contact-wa.svelte-jz8lnl:hover .ft-contact-v:where(.svelte-jz8lnl) {
  color: #fff;
}
.ft-contact-wa.svelte-jz8lnl:hover .ft-contact-ic:where(.svelte-jz8lnl) {
  background: #fff3;
  color: #fff;
  border-color: #ffffff4d;
}
.ft-contact-wa.svelte-jz8lnl:hover .ft-contact-arr:where(.svelte-jz8lnl) {
  color: #fff;
}
.ft-contact-ph.svelte-jz8lnl {
  background: linear-gradient(120deg, #e91e8c0f, #f59e0b0a);
  border: 1px solid rgba(233, 30, 140, 0.18);
  color: inherit;
}
.ft-contact-ph.svelte-jz8lnl:hover {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px #e91e8c59;
  color: #fff;
}
.ft-contact-ph.svelte-jz8lnl:hover .ft-contact-l:where(.svelte-jz8lnl),
.ft-contact-ph.svelte-jz8lnl:hover .ft-contact-v:where(.svelte-jz8lnl) {
  color: #fff;
}
.ft-contact-ph.svelte-jz8lnl:hover .ft-contact-ic:where(.svelte-jz8lnl) {
  background: #fff3;
  color: #fff;
  border-color: #ffffff4d;
}
.ft-contact-ph.svelte-jz8lnl:hover .ft-contact-arr:where(.svelte-jz8lnl) {
  color: #fff;
}
.ft-contact-ic.svelte-jz8lnl {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}
.ft-contact-wa.svelte-jz8lnl .ft-contact-ic:where(.svelte-jz8lnl) {
  background: #25d36629;
  color: #22c55e;
  border: 1px solid rgba(37, 211, 102, 0.25);
}
.ft-contact-ph.svelte-jz8lnl .ft-contact-ic:where(.svelte-jz8lnl) {
  background: #e91e8c24;
  color: var(--rose);
  border: 1px solid rgba(233, 30, 140, 0.22);
}
.ft-contact-body.svelte-jz8lnl {
  flex: 1;
  min-width: 0;
}
.ft-contact-l.svelte-jz8lnl {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-dim, #7b6a90);
  text-transform: uppercase;
  transition: color 0.3s;
}
.ft-contact-v.svelte-jz8lnl {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #1a0611;
  margin-top: 2px;
  transition: color 0.3s;
}
.ft-contact-arr.svelte-jz8lnl {
  color: var(--text-dim, #c9b8d8);
  flex-shrink: 0;
  transition: transform 0.3s, color 0.3s;
}
.ft-contact.svelte-jz8lnl:hover .ft-contact-arr:where(.svelte-jz8lnl) {
  transform: translate(4px);
}
.ft-avail.svelte-jz8lnl {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #10b98114;
  border: 1px dashed rgba(16, 185, 129, 0.3);
  border-radius: 12px;
}
.ft-avail-dot.svelte-jz8lnl {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px #10b98140;
  animation: svelte-jz8lnl-ftPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
.ft-avail.svelte-jz8lnl strong:where(.svelte-jz8lnl) {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #059669;
}
.ft-avail.svelte-jz8lnl span:where(.svelte-jz8lnl) {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 1px;
}
.ft-bottom.svelte-jz8lnl {
  background: #ffffffb3;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(233, 30, 140, 0.08);
  padding: 18px 0;
  position: relative;
  z-index: 1;
}
.ft-bottom-inner.svelte-jz8lnl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.ft-bottom-inner.svelte-jz8lnl p:where(.svelte-jz8lnl) {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  margin: 0;
}
.ft-sep.svelte-jz8lnl {
  color: var(--text-dim, #c9b8d8);
}
.ft-bottom-links.svelte-jz8lnl {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ft-bottom-links.svelte-jz8lnl a:where(.svelte-jz8lnl) {
  font-size: 11.5px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  color: var(--rose-dark, #c2185b);
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.2);
  text-decoration: none;
  box-shadow: 0 3px 8px #2d12480f;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.ft-bottom-links.svelte-jz8lnl a:where(.svelte-jz8lnl):hover {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px #e91e8c59;
}
@media (max-width: 1024px) {
  .ft-grid.svelte-jz8lnl {
    grid-template-columns: 1.2fr 1fr;
    gap: 36px 40px;
  }
  .ft-brand.svelte-jz8lnl {
    grid-column: 1;
    grid-row: 1;
  }
  .ft-col-contact.svelte-jz8lnl {
    grid-column: 2;
    grid-row: 1;
  }
  .ft-col.svelte-jz8lnl:nth-of-type(2) {
    grid-column: 1;
    grid-row: 2;
  }
  .ft-col.svelte-jz8lnl:nth-of-type(3) {
    grid-column: 2;
    grid-row: 2;
  }
  .ft-cta.svelte-jz8lnl {
    padding: 28px;
  }
  .ft-contact.svelte-jz8lnl {
    padding: 10px 12px;
  }
  .ft-contact-ic.svelte-jz8lnl {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }
  .ft-desc.svelte-jz8lnl {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .ft.svelte-jz8lnl {
    padding-top: 40px;
  }
  .ft-cta.svelte-jz8lnl {
    padding: 24px 22px;
    gap: 20px;
    margin-bottom: 40px;
  }
  .ft-cta.svelte-jz8lnl h3:where(.svelte-jz8lnl) {
    font-size: 1.3rem;
  }
  .ft-cta.svelte-jz8lnl p:where(.svelte-jz8lnl) {
    font-size: 12.5px;
  }
  .ft-cta-actions.svelte-jz8lnl {
    flex: 0 0 auto;
  }
  .ft-cta-btn.svelte-jz8lnl {
    padding: 10px 16px;
    font-size: 12.5px;
  }
  .ft-grid.svelte-jz8lnl {
    grid-template-columns: 1fr 1fr;
    gap: 28px 24px;
  }
  .ft-brand.svelte-jz8lnl {
    grid-column: 1;
    grid-row: 1;
    text-align: left;
  }
  .ft-col-contact.svelte-jz8lnl {
    grid-column: 2;
    grid-row: 1;
  }
  .ft-col.svelte-jz8lnl:nth-of-type(2) {
    grid-column: 1;
    grid-row: 2;
  }
  .ft-col.svelte-jz8lnl:nth-of-type(3) {
    grid-column: 2;
    grid-row: 2;
  }
  .ft-logo.svelte-jz8lnl {
    margin-left: 0;
    margin-right: auto;
  }
  .ft-desc.svelte-jz8lnl {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
    font-size: 12.5px;
  }
  .ft-trust.svelte-jz8lnl,
  .ft-social.svelte-jz8lnl {
    justify-content: flex-start;
  }
  .ft-logo-t.svelte-jz8lnl {
    font-size: 16px;
  }
  .ft-logo-s.svelte-jz8lnl {
    font-size: 9px;
  }
  .ft-bottom-inner.svelte-jz8lnl {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }
  .ft-bottom-inner.svelte-jz8lnl p:where(.svelte-jz8lnl) {
    font-size: 11.5px;
    padding: 10px 16px;
    background: #ffffffd9;
    border: 1px solid rgba(233, 30, 140, 0.1);
    border-radius: 14px;
    box-shadow: 0 4px 12px #2d12480a;
  }
  .ft-bottom-links.svelte-jz8lnl {
    justify-content: center;
    width: 100%;
    gap: 8px;
  }
  .ft-bottom-links.svelte-jz8lnl a:where(.svelte-jz8lnl) {
    flex: 1 1 auto;
    min-width: 0;
    text-align: center;
    padding: 9px 10px;
    font-size: 11.5px;
    white-space: nowrap;
  }
}
@media (max-width: 600px) {
  .ft-cta.svelte-jz8lnl {
    flex-direction: column;
    align-items: stretch;
    padding: 22px 18px;
  }
  .ft-cta-text.svelte-jz8lnl {
    text-align: center;
  }
  .ft-cta-pill.svelte-jz8lnl {
    margin-left: auto;
    margin-right: auto;
  }
  .ft-cta-actions.svelte-jz8lnl {
    flex-direction: column;
    width: 100%;
  }
  .ft-cta-btn.svelte-jz8lnl {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
  }
  .ft-grid.svelte-jz8lnl {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .ft-brand.svelte-jz8lnl {
    grid-column: 1;
    grid-row: auto;
    text-align: center;
  }
  .ft-col-contact.svelte-jz8lnl {
    grid-column: 1;
    grid-row: auto;
  }
  .ft-col.svelte-jz8lnl:nth-of-type(2),
  .ft-col.svelte-jz8lnl:nth-of-type(3) {
    grid-column: 1;
    grid-row: auto;
  }
  .ft-logo.svelte-jz8lnl {
    margin-left: auto;
    margin-right: auto;
  }
  .ft-desc.svelte-jz8lnl {
    margin-left: auto;
    margin-right: auto;
    max-width: 420px;
  }
  .ft-trust.svelte-jz8lnl,
  .ft-social.svelte-jz8lnl {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .ft-grid.svelte-jz8lnl {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .ft-cta.svelte-jz8lnl h3:where(.svelte-jz8lnl) {
    font-size: 1.4rem;
  }
}
.toast.svelte-1cpok13 {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translate(-50%);
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 16px;
  min-width: 300px;
  max-width: 480px;
  box-shadow: 0 8px 40px #0000002e, 0 2px 8px #00000014;
  white-space: nowrap;
}
.toast-add.svelte-1cpok13 {
  background: linear-gradient(135deg, #e91e8c, #c2185b);
  color: #fff;
}
.toast-remove.svelte-1cpok13 {
  background: #fff;
  color: #333;
  border: 1.5px solid #e8d8e4;
}
.toast-icon.svelte-1cpok13 {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #fff3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.toast-remove.svelte-1cpok13 .toast-icon:where(.svelte-1cpok13) {
  background: #e91e8c14;
  color: var(--rose);
}
.toast-body.svelte-1cpok13 {
  flex: 1;
  min-width: 0;
}
.toast-title.svelte-1cpok13 {
  font-size: 13px;
  font-weight: 500;
}
.toast-sub.svelte-1cpok13 {
  font-size: 11px;
  opacity: 0.8;
  margin-top: 1px;
}
.toast-remove.svelte-1cpok13 .toast-sub:where(.svelte-1cpok13) {
  color: #888;
}
.toast-action.svelte-1cpok13 {
  font-size: 12px;
  font-weight: 600;
  background: #ffffff38;
  color: #fff;
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
  transition: background 0.2s;
}
.toast-action.svelte-1cpok13:hover {
  background: #ffffff59;
  color: #fff;
}
.toast-close.svelte-1cpok13 {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #ffffff26;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  transition: background 0.2s;
}
.toast-remove.svelte-1cpok13 .toast-close:where(.svelte-1cpok13) {
  color: #666;
  background: #0000000f;
}
.toast-close.svelte-1cpok13:hover {
  background: #ffffff4d;
}
@media (max-width: 480px) {
  .toast.svelte-1cpok13 {
    min-width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    bottom: 20px;
  }
}
.maint-banner.svelte-1l0quee {
  position: sticky;
  top: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #854d0e;
  border-bottom: 1px solid rgba(217, 119, 6, 0.35);
  font-size: 12.5px;
  font-weight: 600;
}
.maint-banner.svelte-1l0quee strong:where(.svelte-1l0quee) {
  font-weight: 600;
}
.maint-banner.svelte-1l0quee em:where(.svelte-1l0quee) {
  font-style: normal;
  opacity: 0.85;
}
.maint-banner.svelte-1l0quee svg:where(.svelte-1l0quee) {
  color: #d97706;
  flex-shrink: 0;
}
.age-overlay.svelte-1l0quee {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #fff0f7c7;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}
.age-box.svelte-1l0quee {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px #e91e8c2e;
  animation: svelte-1l0quee-ageIn 0.35s ease;
}
@keyframes svelte-1l0quee-ageIn {
  0% {
    opacity: 0;
    transform: scale(0.94) translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.age-logo.svelte-1l0quee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin-bottom: 24px;
  filter: drop-shadow(0 4px 12px rgba(233, 30, 140, 0.3));
}
.age-icon-wrap.svelte-1l0quee {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: var(--rose-subtle);
  border: 1px solid rgba(233, 30, 140, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.age-box.svelte-1l0quee h2:where(.svelte-1l0quee) {
  font-size: 1.7rem;
  color: var(--heading);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.age-box.svelte-1l0quee > p:where(.svelte-1l0quee) {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 14px;
  line-height: 1.7;
}
.age-btns.svelte-1l0quee {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.age-enter.svelte-1l0quee {
  justify-content: center;
  padding: 15px 36px;
  font-size: 15px;
}
.age-exit.svelte-1l0quee {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  padding: 13px 36px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}
.age-exit.svelte-1l0quee:hover {
  border-color: var(--rose);
  color: var(--rose);
}
.age-disclaimer.svelte-1l0quee {
  font-size: 11px;
  color: var(--text-dim);
}
.age-disclaimer.svelte-1l0quee a:where(.svelte-1l0quee) {
  color: var(--text-muted);
  text-decoration: underline;
}
.scroll-top-float.svelte-1l0quee {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px #e91e8c66;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: svelte-1l0quee-fadeInUp 0.25s ease;
}
.scroll-top-float.svelte-1l0quee:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px #e91e8c80;
}
@keyframes svelte-1l0quee-fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bd.svelte-1dhk7is {
  background: linear-gradient(180deg, #fff, #fdf6fb);
  min-height: 100vh;
  color: #1e0b38;
}
.bd-container.svelte-1dhk7is {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.bd-progress.svelte-1dhk7is {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #e91e8c14;
  z-index: 201;
  pointer-events: none;
}
.bd-progress__fill.svelte-1dhk7is {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #e91e8c, #f43f5e 50%, #f59e0b);
  box-shadow: 0 0 14px #e91e8c80;
  transition: width 0.12s linear;
}
.bd-hero.svelte-1dhk7is {
  position: relative;
  overflow: hidden;
  padding: 48px 0 64px;
  background: radial-gradient(
      1100px 700px at 85% 10%,
      rgba(233, 30, 140, 0.14) 0%,
      transparent 55%
    ),
    radial-gradient(
      900px 600px at 10% 90%,
      rgba(245, 158, 11, 0.12) 0%,
      transparent 55%
    ),
    radial-gradient(
      700px 500px at 55% 55%,
      rgba(244, 63, 94, 0.1) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #fff8fc, #fdf1f8, #fff5ec);
  border-bottom: 1px solid rgba(233, 30, 140, 0.1);
}
.bd-hero.svelte-1dhk7is:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  background-image: linear-gradient(
      to right,
      rgba(233, 30, 140, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(233, 30, 140, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(
    ellipse 70% 70% at 50% 50%,
    #000 30%,
    transparent 90%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 70% 70% at 50% 50%,
    #000 30%,
    transparent 90%
  );
}
.bd-hero__orb.svelte-1dhk7is {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}
.bd-hero__orb--1.svelte-1dhk7is {
  top: -120px;
  right: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.28),
    transparent 70%
  );
}
.bd-hero__orb--2.svelte-1dhk7is {
  bottom: -140px;
  left: -100px;
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.22),
    transparent 70%
  );
}
.bd-hero__orb--3.svelte-1dhk7is {
  top: 50%;
  left: 55%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.18),
    transparent 70%
  );
}
.bd-crumbs.svelte-1dhk7is {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 24px;
  padding: 7px 14px;
  background: #ffffffb3;
  border: 1px solid rgba(233, 30, 140, 0.12);
  border-radius: 999px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 600;
  color: #6b5876;
  position: relative;
  z-index: 1;
}
.bd-crumbs.svelte-1dhk7is a:where(.svelte-1dhk7is) {
  color: #6b5876;
  text-decoration: none;
  transition: color 0.2s;
}
.bd-crumbs.svelte-1dhk7is a:where(.svelte-1dhk7is):hover {
  color: #e91e8c;
}
.bd-crumbs.svelte-1dhk7is span:where(.svelte-1dhk7is) {
  color: #1e0b38;
  font-weight: 600;
  max-width: 320px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bd-crumbs.svelte-1dhk7is svg:where(.svelte-1dhk7is) {
  color: #c9b8d8;
  flex-shrink: 0;
}
.bd-hero__inner.svelte-1dhk7is {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}
.bd-hero__tag.svelte-1dhk7is {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  background: linear-gradient(135deg, #e91e8c1f, #f59e0b1a);
  color: #c2185b;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid rgba(233, 30, 140, 0.2);
  margin-bottom: 18px;
}
.bd-hero__tag-dot.svelte-1dhk7is {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e91e8c;
  box-shadow: 0 0 0 3px #e91e8c38;
  animation: svelte-1dhk7is-bdDot 1.8s ease-in-out infinite;
}
@keyframes svelte-1dhk7is-bdDot {
  0%,
  to {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.bd-hero__title.svelte-1dhk7is {
  margin: 0 0 18px;
  font-size: clamp(30px, 4.4vw, 52px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #110520;
  background: linear-gradient(135deg, #110520, #1e0b38 40%, #c2185b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bd-hero__lede.svelte-1dhk7is {
  margin: 0 0 26px;
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.65;
  color: #4a2870;
  max-width: 580px;
}
.bd-hero__meta.svelte-1dhk7is {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 18px;
}
.bd-author.svelte-1dhk7is {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 8px 14px 8px 8px;
  background: #ffffffd9;
  border: 1px solid rgba(233, 30, 140, 0.12);
  border-radius: 999px;
  box-shadow: 0 8px 20px -8px #2d12481f;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.bd-author__avatar.svelte-1dhk7is {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  box-shadow: inset 0 2px #ffffff4d;
}
.bd-author__info.svelte-1dhk7is {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.1;
}
.bd-author__label.svelte-1dhk7is {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9a7fb8;
  font-weight: 600;
}
.bd-author__info.svelte-1dhk7is strong:where(.svelte-1dhk7is) {
  font-size: 13px;
  color: #1e0b38;
  font-weight: 600;
}
.bd-meta-chips.svelte-1dhk7is {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
}
.bd-chip.svelte-1dhk7is {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.1);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: #4a2870;
  box-shadow: 0 4px 10px -4px #2d124814;
}
.bd-chip.svelte-1dhk7is svg:where(.svelte-1dhk7is) {
  color: #e91e8c;
  opacity: 0.8;
}
.bd-hero__media.svelte-1dhk7is {
  position: relative;
  padding: 40px 30px;
  z-index: 1;
  animation: svelte-1dhk7is-bdFloat 6s ease-in-out infinite;
}
@keyframes svelte-1dhk7is-bdFloat {
  0%,
  to {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-14px) rotate(0.4deg);
  }
}
.bd-hero__pulse.svelte-1dhk7is {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.bd-hero__pulse--1.svelte-1dhk7is {
  top: 30px;
  right: 30px;
  bottom: 30px;
  left: 30px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.28),
    transparent 65%
  );
  filter: blur(30px);
  animation: svelte-1dhk7is-bdPulse 4s ease-in-out infinite;
}
.bd-hero__pulse--2.svelte-1dhk7is {
  top: 60px;
  right: 60px;
  bottom: 60px;
  left: 60px;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.22),
    transparent 65%
  );
  filter: blur(28px);
  animation: svelte-1dhk7is-bdPulse 4s ease-in-out infinite 2s;
}
@keyframes svelte-1dhk7is-bdPulse {
  0%,
  to {
    transform: scale(0.9);
    opacity: 0.55;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.95;
  }
}
.bd-orbit.svelte-1dhk7is {
  position: absolute;
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: svelte-1dhk7is-bdSpin 22s linear infinite;
}
.bd-orbit.svelte-1dhk7is:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: inherit;
  border: 1.5px dashed rgba(233, 30, 140, 0.25);
}
.bd-orbit__dot.svelte-1dhk7is {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  box-shadow: 0 0 14px #e91e8c8c;
}
.bd-orbit__dot--1.svelte-1dhk7is {
  top: -7px;
  left: 50%;
  transform: translate(-50%);
  background: linear-gradient(135deg, #e91e8c, #f43f5e);
}
.bd-orbit__dot--2.svelte-1dhk7is {
  top: 50%;
  right: -7px;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 0 14px #f59e0b8c;
}
.bd-orbit__dot--3.svelte-1dhk7is {
  bottom: -7px;
  left: 50%;
  transform: translate(-50%);
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  box-shadow: 0 0 14px #7c3aed8c;
}
.bd-orbit__dot--4.svelte-1dhk7is {
  top: 50%;
  left: -7px;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #34d399, #10b981);
  box-shadow: 0 0 14px #10b9818c;
}
.bd-spark.svelte-1dhk7is {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 0 6px currentColor);
  animation: svelte-1dhk7is-bdSparkle 3s ease-in-out infinite;
}
.bd-spark--1.svelte-1dhk7is {
  top: 8%;
  right: 6%;
  animation-delay: 0s;
}
.bd-spark--2.svelte-1dhk7is {
  bottom: 12%;
  left: 4%;
  animation-delay: 0.8s;
}
.bd-spark--3.svelte-1dhk7is {
  top: 38%;
  left: -2%;
  animation-delay: 1.6s;
}
.bd-spark--4.svelte-1dhk7is {
  bottom: 30%;
  right: -2%;
  animation-delay: 2.3s;
}
@keyframes svelte-1dhk7is-bdSparkle {
  0%,
  to {
    opacity: 0;
    transform: scale(0.4) rotate(0);
  }
  25% {
    opacity: 1;
    transform: scale(1.2) rotate(90deg);
  }
  50% {
    opacity: 0.8;
    transform: scale(1) rotate(180deg);
  }
  75% {
    opacity: 0.4;
    transform: scale(0.8) rotate(270deg);
  }
}
.bd-hero__media-frame.svelte-1dhk7is {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(135deg, #fff0f7, #f5f0ff);
  padding: 10px;
  box-shadow: 0 40px 80px -30px #e91e8c66, 0 20px 40px -20px #7c3aed40,
    0 0 0 1px #fffc, inset 0 1px #ffffffe6;
  z-index: 2;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.bd-hero__media-frame.svelte-1dhk7is:before {
  content: "";
  position: absolute;
  top: -3px;
  right: -3px;
  bottom: -3px;
  left: -3px;
  border-radius: 29px;
  background: conic-gradient(
    from 0deg,
    #e91e8c,
    #f43f5e,
    #f59e0b,
    #7c3aed,
    #34d399,
    #e91e8c
  );
  opacity: 0.55;
  filter: blur(20px);
  z-index: -1;
  animation: svelte-1dhk7is-bdSpin 8s linear infinite;
}
.bd-hero__media.svelte-1dhk7is:hover
  .bd-hero__media-frame:where(.svelte-1dhk7is) {
  transform: scale(1.02) rotate(-0.5deg);
}
.bd-hero__media.svelte-1dhk7is img:where(.svelte-1dhk7is) {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.bd-hero__media.svelte-1dhk7is:hover img:where(.svelte-1dhk7is) {
  transform: scale(1.04);
}
.bd-hero__media-shine.svelte-1dhk7is {
  position: absolute;
  top: 10px;
  left: 10%;
  right: 10%;
  height: 30%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), transparent);
  border-radius: 18px 18px 50% 50%/18px 18px 100% 100%;
  pointer-events: none;
  mix-blend-mode: overlay;
  z-index: 3;
}
.bd-hero__media-shimmer.svelte-1dhk7is {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 10px;
  right: 10px;
  border-radius: 18px;
  overflow: hidden;
  pointer-events: none;
  z-index: 3;
}
.bd-hero__media-shimmer.svelte-1dhk7is:before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    110deg,
    transparent 35%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 65%
  );
  transform: skew(-20deg);
  animation: svelte-1dhk7is-bdShimmer 4.5s ease-in-out infinite;
}
@keyframes svelte-1dhk7is-bdShimmer {
  0%,
  20% {
    left: -150%;
  }
  60%,
  to {
    left: 180%;
  }
}
.bd-badge.svelte-1dhk7is {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px 9px 10px;
  background: #fffffff2;
  border: 1px solid rgba(233, 30, 140, 0.14);
  border-radius: 14px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 34px -10px #2d124840, inset 0 1px #ffffffe6;
  z-index: 4;
}
.bd-badge__ic.svelte-1dhk7is {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: inline-grid;
  place-items: center;
  color: #fff;
}
.bd-badge__txt.svelte-1dhk7is {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.bd-badge__txt.svelte-1dhk7is strong:where(.svelte-1dhk7is) {
  font-size: 12.5px;
  font-weight: 700;
  color: #110520;
  letter-spacing: -0.01em;
}
.bd-badge__txt.svelte-1dhk7is span:where(.svelte-1dhk7is) {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9a7fb8;
  margin-top: 2px;
}
.bd-badge--read.svelte-1dhk7is {
  top: 8%;
  left: -4%;
  animation: svelte-1dhk7is-bdBadgeFloat 5s ease-in-out infinite;
}
.bd-badge--read.svelte-1dhk7is .bd-badge__ic:where(.svelte-1dhk7is) {
  background: linear-gradient(135deg, #e91e8c, #c2185b);
  box-shadow: 0 6px 14px -4px #e91e8c80;
}
.bd-badge--cat.svelte-1dhk7is {
  top: 48%;
  right: -6%;
  animation: svelte-1dhk7is-bdBadgeFloat 5s ease-in-out infinite 1.2s;
}
.bd-badge--cat.svelte-1dhk7is .bd-badge__ic:where(.svelte-1dhk7is) {
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  box-shadow: 0 6px 14px -4px #7c3aed80;
}
.bd-badge--rating.svelte-1dhk7is {
  bottom: 8%;
  left: -2%;
  padding: 10px 14px;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  animation: svelte-1dhk7is-bdBadgeFloat 5s ease-in-out infinite 2.4s;
}
.bd-badge--rating.svelte-1dhk7is .bd-badge__stars:where(.svelte-1dhk7is) {
  display: inline-flex;
  gap: 2px;
}
.bd-badge--rating.svelte-1dhk7is
  .bd-badge__stars:where(.svelte-1dhk7is)
  svg:where(.svelte-1dhk7is) {
  animation: svelte-1dhk7is-bdStarPulse 2s ease-in-out infinite;
}
.bd-badge--rating.svelte-1dhk7is > span:where(.svelte-1dhk7is) {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b45309;
}
@keyframes svelte-1dhk7is-bdBadgeFloat {
  0%,
  to {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}
@keyframes svelte-1dhk7is-bdStarPulse {
  0%,
  to {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}
.bd-ribbon.svelte-1dhk7is {
  position: absolute;
  top: 2%;
  right: 4%;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 10px 22px -6px #d977068c, inset 0 1px #ffffff4d;
  z-index: 4;
  animation: svelte-1dhk7is-bdRibbonBob 3.5s ease-in-out infinite;
}
.bd-ribbon.svelte-1dhk7is svg:where(.svelte-1dhk7is) {
  animation: svelte-1dhk7is-bdStarPulse 2s ease-in-out infinite;
}
@keyframes svelte-1dhk7is-bdRibbonBob {
  0%,
  to {
    transform: translateY(0) rotate(8deg);
  }
  50% {
    transform: translateY(-6px) rotate(-3deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .bd-hero__media.svelte-1dhk7is,
  .bd-hero__pulse--1.svelte-1dhk7is,
  .bd-hero__pulse--2.svelte-1dhk7is,
  .bd-orbit.svelte-1dhk7is,
  .bd-spark.svelte-1dhk7is,
  .bd-hero__media-frame.svelte-1dhk7is:before,
  .bd-hero__media-shimmer.svelte-1dhk7is:before,
  .bd-badge--read.svelte-1dhk7is,
  .bd-badge--cat.svelte-1dhk7is,
  .bd-badge--rating.svelte-1dhk7is,
  .bd-badge--rating.svelte-1dhk7is
    .bd-badge__stars:where(.svelte-1dhk7is)
    svg:where(.svelte-1dhk7is),
  .bd-ribbon.svelte-1dhk7is,
  .bd-ribbon.svelte-1dhk7is svg:where(.svelte-1dhk7is) {
    animation: none;
  }
}
.bd-layout.svelte-1dhk7is {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 300px;
  gap: 28px;
  padding: 40px 24px;
  max-width: 1260px;
  margin: 0 auto;
}
.bd-share.svelte-1dhk7is {
  position: sticky;
  top: 100px;
  align-self: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 14px 8px;
  background: #fffc;
  border: 1px solid rgba(233, 30, 140, 0.12);
  border-radius: 20px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px -10px #2d124824;
}
.bd-share__label.svelte-1dhk7is {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9a7fb8;
  padding: 0 4px 4px;
  border-bottom: 1px dashed rgba(233, 30, 140, 0.18);
}
.bd-share__btn.svelte-1dhk7is {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  border: 1px solid transparent;
  background: #fff;
  color: #4a2870;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s,
    background 0.25s, color 0.25s;
}
.bd-share__btn.svelte-1dhk7is:hover {
  transform: translateY(-3px) scale(1.06);
  color: #fff;
  box-shadow: 0 12px 22px -8px #2d124859;
}
.bd-share__btn--wa.svelte-1dhk7is:hover {
  background: linear-gradient(135deg, #25d366, #128c7e);
}
.bd-share__btn--tw.svelte-1dhk7is:hover {
  background: linear-gradient(135deg, #1a1a1a, #000);
}
.bd-share__btn--fb.svelte-1dhk7is:hover {
  background: linear-gradient(135deg, #4267b2, #355896);
}
.bd-share__btn--tg.svelte-1dhk7is:hover {
  background: linear-gradient(135deg, #29b6f6, #0288d1);
}
.bd-share__btn--copy.svelte-1dhk7is:hover {
  background: linear-gradient(135deg, #e91e8c, #f43f5e);
}
.bd-share__copied.svelte-1dhk7is {
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  padding: 6px 10px;
  background: #1e0b38;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  border-radius: 8px;
  white-space: nowrap;
  animation: svelte-1dhk7is-bdFade 0.25s ease;
}
@keyframes svelte-1dhk7is-bdFade {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.bd-main.svelte-1dhk7is {
  min-width: 0;
}
.bd-body.svelte-1dhk7is {
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.08);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 56px);
  box-shadow: 0 20px 50px -20px #2d12481f;
  position: relative;
}
.bd-body.svelte-1dhk7is h1,
.bd-body.svelte-1dhk7is h2,
.bd-body.svelte-1dhk7is h3,
.bd-body.svelte-1dhk7is h4 {
  color: #110520;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 40px 0 16px;
}
.bd-body.svelte-1dhk7is h1 {
  font-size: 32px;
}
.bd-body.svelte-1dhk7is h2 {
  font-size: 26px;
  position: relative;
  padding-left: 18px;
}
.bd-body.svelte-1dhk7is h2:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  width: 5px;
  height: 80%;
  background: linear-gradient(180deg, #e91e8c, #f59e0b);
  border-radius: 5px;
}
.bd-body.svelte-1dhk7is h3 {
  font-size: 20px;
  color: #1e0b38;
}
.bd-body.svelte-1dhk7is h4 {
  font-size: 17px;
  color: #4a2870;
}
.bd-body.svelte-1dhk7is p {
  margin: 0 0 20px;
  font-size: 16.5px;
  line-height: 1.85;
  color: #3f1f5e;
}
.bd-body.svelte-1dhk7is > p:first-of-type:first-letter {
  float: left;
  font-size: 64px;
  line-height: 0.9;
  font-weight: 700;
  padding: 6px 12px 0 0;
  background: linear-gradient(135deg, #e91e8c, #c2185b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Georgia, serif;
}
.bd-body.svelte-1dhk7is a {
  color: #e91e8c;
  text-decoration: none;
  background: linear-gradient(90deg, #e91e8c, #f43f5e);
  background-size: 100% 1.5px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  padding-bottom: 1px;
  font-weight: 500;
  transition: background-size 0.3s;
}
.bd-body.svelte-1dhk7is a:hover {
  background: linear-gradient(90deg, #e91e8c1f, #f43f5e1f);
  background-size: 100% 100%;
  border-radius: 3px;
}
.bd-body.svelte-1dhk7is strong {
  color: #110520;
  font-weight: 600;
}
.bd-body.svelte-1dhk7is em {
  color: #6b5876;
}
.bd-body.svelte-1dhk7is code {
  background: linear-gradient(135deg, #fdf2f8, #fef3c7);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.9em;
  color: #be185d;
  border: 1px solid rgba(233, 30, 140, 0.15);
  font-family: ui-monospace, SF Mono, Consolas, monospace;
}
.bd-body.svelte-1dhk7is pre {
  margin: 22px 0;
  padding: 18px 20px;
  background: linear-gradient(135deg, #fdf6fb, #f5f0ff);
  border: 1px solid rgba(124, 58, 237, 0.18);
  border-radius: 14px;
  overflow-x: auto;
  font-size: 13.5px;
  line-height: 1.7;
}
.bd-body.svelte-1dhk7is pre code {
  background: none;
  border: none;
  padding: 0;
  color: #3f1f5e;
}
.bd-body.svelte-1dhk7is ul,
.bd-body.svelte-1dhk7is ol {
  margin: 0 0 22px;
  padding-left: 26px;
  color: #3f1f5e;
  line-height: 1.85;
}
.bd-body.svelte-1dhk7is li {
  margin-bottom: 8px;
}
.bd-body.svelte-1dhk7is ul li::marker {
  color: #e91e8c;
}
.bd-body.svelte-1dhk7is ol li::marker {
  color: #e91e8c;
  font-weight: 600;
}
.bd-body.svelte-1dhk7is blockquote {
  position: relative;
  margin: 30px 0;
  padding: 22px 28px 22px 52px;
  background: linear-gradient(135deg, #fff0f7, #fff);
  border: 1px solid rgba(233, 30, 140, 0.15);
  border-radius: 16px;
  font-size: 17px;
  line-height: 1.7;
  color: #4a2870;
  font-style: italic;
}
.bd-body.svelte-1dhk7is blockquote:before {
  content: "“";
  position: absolute;
  top: 2px;
  left: 16px;
  font-size: 68px;
  line-height: 1;
  font-family: Georgia, serif;
  color: #e91e8c;
  opacity: 0.4;
}
.bd-body.svelte-1dhk7is blockquote p {
  margin: 0;
}
.bd-body.svelte-1dhk7is hr {
  border: none;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(233, 30, 140, 0.3),
    transparent
  );
  margin: 40px 0;
}
.bd-body.svelte-1dhk7is img {
  max-width: 100%;
  border-radius: 16px;
  margin: 24px 0;
  box-shadow: 0 20px 40px -20px #2d12484d;
}
.bd-body.svelte-1dhk7is table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 20px -10px #2d124826;
}
.bd-body.svelte-1dhk7is th,
.bd-body.svelte-1dhk7is td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid #f0e4f5;
}
.bd-body.svelte-1dhk7is th {
  background: linear-gradient(135deg, #fdf2f8, #f5f0ff);
  color: #110520;
  font-weight: 600;
}
.bd-share-mob.svelte-1dhk7is {
  display: none;
  margin-top: 22px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.1);
  border-radius: 16px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.bd-share-mob.svelte-1dhk7is > span:where(.svelte-1dhk7is) {
  font-size: 12px;
  font-weight: 600;
  color: #4a2870;
  letter-spacing: 0.04em;
}
.bd-share-mob__btns.svelte-1dhk7is {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
}
.bd-smob.svelte-1dhk7is {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(233, 30, 140, 0.15);
  background: #fff;
  color: #4a2870;
  cursor: pointer;
  display: inline-grid;
  place-items: center;
  transition: transform 0.2s, background 0.2s, color 0.2s;
}
.bd-smob.svelte-1dhk7is:hover {
  transform: translateY(-2px);
  color: #fff;
}
.bd-smob--wa.svelte-1dhk7is:hover {
  background: linear-gradient(135deg, #25d366, #128c7e);
}
.bd-smob--tw.svelte-1dhk7is:hover {
  background: #000;
}
.bd-smob--fb.svelte-1dhk7is:hover {
  background: #4267b2;
}
.bd-smob--copy.svelte-1dhk7is {
  width: auto;
  padding: 0 12px;
  font-size: 11.5px;
  font-weight: 600;
}
.bd-smob--copy.svelte-1dhk7is:hover {
  background: linear-gradient(135deg, #e91e8c, #f43f5e);
}
.bd-comments.svelte-1dhk7is {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px dashed rgba(233, 30, 140, 0.18);
}
.bd-comments.bd-comments--standalone.svelte-1dhk7is {
  margin-top: 0;
  padding: 56px 0 80px;
  border-top: none;
  background: radial-gradient(
      900px 440px at 0% 10%,
      rgba(124, 58, 237, 0.06),
      transparent 60%
    ),
    radial-gradient(
      700px 380px at 100% 90%,
      rgba(233, 30, 140, 0.06),
      transparent 60%
    ),
    linear-gradient(180deg, rgba(245, 158, 11, 0.04), transparent);
  border-top: 1px dashed rgba(233, 30, 140, 0.18);
}
.bd-comments__inner.svelte-1dhk7is {
  max-width: 1180px;
}
.bd-comments__layout.svelte-1dhk7is {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
  margin-bottom: 32px;
}
.bd-comments__col.svelte-1dhk7is {
  min-width: 0;
}
.bd-guide.svelte-1dhk7is {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: 92px;
}
.bd-guide__card.svelte-1dhk7is {
  position: relative;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.1);
  border-radius: 18px;
  box-shadow: 0 8px 22px -12px #2d124824;
  overflow: hidden;
}
.bd-guide__card--rules.svelte-1dhk7is {
  background: linear-gradient(160deg, #fff, #fff7fb);
}
.bd-guide__card--flow.svelte-1dhk7is {
  background: linear-gradient(160deg, #fff, #faf5ff);
}
.bd-guide__card--blocked.svelte-1dhk7is {
  background: linear-gradient(160deg, #fff, #fff5f5);
}
.bd-guide__card--tips.svelte-1dhk7is {
  background: linear-gradient(160deg, #fff, #fffbeb);
}
.bd-guide__halo.svelte-1dhk7is {
  position: absolute;
  top: -50%;
  right: -40%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.12),
    transparent 70%
  );
  filter: blur(30px);
  pointer-events: none;
  z-index: 0;
}
.bd-guide__head.svelte-1dhk7is {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 12px;
}
.bd-guide__ic.svelte-1dhk7is {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: inset 0 1px #ffffff4d;
}
.bd-guide__ic--rose.svelte-1dhk7is {
  background: linear-gradient(135deg, #e91e8c, #c2185b);
  box-shadow: 0 6px 14px -4px #e91e8c73, inset 0 1px #ffffff4d;
}
.bd-guide__ic--violet.svelte-1dhk7is {
  background: linear-gradient(135deg, #a78bfa, #7c3aed);
  box-shadow: 0 6px 14px -4px #7c3aed73, inset 0 1px #ffffff4d;
}
.bd-guide__ic--coral.svelte-1dhk7is {
  background: linear-gradient(135deg, #fb7185, #e11d48);
  box-shadow: 0 6px 14px -4px #e11d4873, inset 0 1px #ffffff4d;
}
.bd-guide__ic--gold.svelte-1dhk7is {
  background: linear-gradient(135deg, #fbbf24, #d97706);
  box-shadow: 0 6px 14px -4px #d9770673, inset 0 1px #ffffff4d;
}
.bd-guide__head.svelte-1dhk7is strong:where(.svelte-1dhk7is) {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #1e0b38;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.bd-guide__head.svelte-1dhk7is span:where(.svelte-1dhk7is) {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9a7fb8;
}
.bd-guide__list.svelte-1dhk7is {
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.bd-guide__list.svelte-1dhk7is li:where(.svelte-1dhk7is) {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.55;
  color: #4a2870;
}
.bd-guide__list.svelte-1dhk7is strong:where(.svelte-1dhk7is) {
  color: #1e0b38;
  font-weight: 600;
}
.bd-guide__bullet.svelte-1dhk7is {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 7px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  color: #059669;
  margin-top: 1px;
}
.bd-guide__bullet--x.svelte-1dhk7is {
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
  color: #dc2626;
}
.bd-flow.svelte-1dhk7is {
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bd-flow__n.svelte-1dhk7is {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a78bfa, #7c3aed);
  color: #fff;
  display: inline-grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 6px 14px -4px #7c3aed80;
  z-index: 1;
}
.bd-flow.svelte-1dhk7is span:where(.svelte-1dhk7is) {
  font-size: 11.5px;
  color: #6b5876;
  font-weight: 400;
  line-height: 1.5;
}
.bd-guide__chips.svelte-1dhk7is {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.bd-guide__chip.svelte-1dhk7is {
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
  color: #b91c1c;
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.bd-guide__chip.svelte-1dhk7is:before {
  content: "×";
  font-weight: 700;
  margin-right: 5px;
  color: #dc2626;
}
.bd-guide__tips.svelte-1dhk7is {
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.bd-guide__help.svelte-1dhk7is {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 14px;
  background: linear-gradient(135deg, #fff, #fff0f7);
  border: 1px dashed rgba(233, 30, 140, 0.28);
  border-radius: 14px;
  color: #4a2870;
}
.bd-guide__help.svelte-1dhk7is svg:where(.svelte-1dhk7is) {
  flex-shrink: 0;
  color: #e91e8c;
}
.bd-comments__head.svelte-1dhk7is {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.bd-comments__head-ic.svelte-1dhk7is {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, #e91e8c, #f43f5e 60%, #f59e0b);
  color: #fff;
  display: inline-grid;
  place-items: center;
  box-shadow: 0 12px 24px -8px #e91e8c80, inset 0 2px #ffffff4d;
}
.bd-comments__head.svelte-1dhk7is h2:where(.svelte-1dhk7is) {
  margin: 0 0 4px;
  font-size: 22px;
  font-weight: 700;
  color: #110520;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.bd-comments__count.svelte-1dhk7is {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  background: linear-gradient(135deg, #e91e8c1f, #f59e0b1a);
  color: #c2185b;
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid rgba(233, 30, 140, 0.2);
}
.bd-comments__head.svelte-1dhk7is p:where(.svelte-1dhk7is) {
  margin: 0;
  font-size: 13px;
  color: #6b5876;
  line-height: 1.55;
}
.bd-cform.svelte-1dhk7is {
  position: relative;
  padding: 22px;
  background: linear-gradient(180deg, #fff, #fffafc);
  border: 1px solid rgba(233, 30, 140, 0.1);
  border-radius: 20px;
  box-shadow: 0 14px 34px -14px #2d124824;
  margin-bottom: 28px;
  overflow: hidden;
}
.bd-cform__glow.svelte-1dhk7is {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  z-index: -1;
  border-radius: 22px;
  background: conic-gradient(
    from 0deg,
    #e91e8c40,
    #f59e0b33,
    #7c3aed33,
    #e91e8c40
  );
  opacity: 0.3;
  filter: blur(16px);
  animation: bdHalo 10s linear infinite;
}
.bd-cform__grid.svelte-1dhk7is {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.bd-field.svelte-1dhk7is {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}
.bd-field.svelte-1dhk7is > span:where(.svelte-1dhk7is) {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a4fa0;
}
.bd-cform.svelte-1dhk7is textarea:where(.svelte-1dhk7is) {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  font-size: 14px;
  color: #1e0b38;
  background: #fdf6fb;
  border: 1px solid rgba(233, 30, 140, 0.15);
  border-radius: 12px;
  outline: none;
  resize: vertical;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.bd-cform.svelte-1dhk7is textarea:where(.svelte-1dhk7is) {
  min-height: 120px;
  line-height: 1.6;
}
.bd-cform.svelte-1dhk7is textarea:where(.svelte-1dhk7is):focus {
  border-color: #e91e8c;
  background: #fff;
  box-shadow: 0 0 0 4px #e91e8c1f;
}
.bd-cform.svelte-1dhk7is textarea:where(.svelte-1dhk7is)::placeholder {
  color: #b59ec8;
}
.bd-cform__who.svelte-1dhk7is {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #fff0f7, #fff7ed);
  border: 1px solid rgba(233, 30, 140, 0.14);
  border-radius: 12px;
}
.bd-cform__avatar.svelte-1dhk7is {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
  box-shadow: inset 0 2px #ffffff4d;
}
.bd-cform__who-meta.svelte-1dhk7is {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}
.bd-cform__who-label.svelte-1dhk7is {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9a7fb8;
}
.bd-cform__who-meta.svelte-1dhk7is strong:where(.svelte-1dhk7is) {
  font-size: 13px;
  color: #110520;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bd-cform__verified.svelte-1dhk7is {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 9px;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  color: #047857;
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.bd-cgate.svelte-1dhk7is {
  position: relative;
  padding: 28px 24px 24px;
  background: linear-gradient(160deg, #fff, #fff8fb, #fff0f7);
  border: 1px solid rgba(233, 30, 140, 0.12);
  border-radius: 20px;
  box-shadow: 0 14px 34px -14px #2d124824;
  margin-bottom: 28px;
  text-align: center;
  overflow: hidden;
}
.bd-cgate__glow.svelte-1dhk7is {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  z-index: -1;
  border-radius: 22px;
  background: conic-gradient(
    from 0deg,
    #e91e8c40,
    #f59e0b33,
    #7c3aed33,
    #e91e8c40
  );
  opacity: 0.35;
  filter: blur(16px);
  animation: svelte-1dhk7is-bdSpin 10s linear infinite;
}
.bd-cgate__ic.svelte-1dhk7is {
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
  border-radius: 18px;
  background: linear-gradient(135deg, #e91e8c, #f43f5e 60%, #f59e0b);
  color: #fff;
  display: inline-grid;
  place-items: center;
  box-shadow: 0 16px 30px -8px #e91e8c73, inset 0 2px #ffffff4d;
}
.bd-cgate.svelte-1dhk7is h3:where(.svelte-1dhk7is) {
  margin: 0 0 6px;
  font-size: 19px;
  font-weight: 700;
  color: #110520;
  letter-spacing: -0.02em;
}
.bd-cgate.svelte-1dhk7is p:where(.svelte-1dhk7is) {
  margin: 0 auto 18px;
  max-width: 440px;
  font-size: 13.5px;
  line-height: 1.6;
  color: #6b5876;
}
.bd-cgate__actions.svelte-1dhk7is {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 14px;
}
.bd-cgate__btn.svelte-1dhk7is {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 12px 22px;
  border-radius: 12px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s, background 0.3s, color 0.2s;
}
.bd-cgate__btn--primary.svelte-1dhk7is {
  color: #fff;
  background: linear-gradient(135deg, #e91e8c, #f43f5e 55%, #f59e0b);
  background-size: 200% 100%;
  box-shadow: 0 14px 28px -10px #e91e8c80, inset 0 1px #ffffff40;
}
.bd-cgate__btn--primary.svelte-1dhk7is:hover {
  transform: translateY(-2px);
  background-position: 100% 0;
  box-shadow: 0 18px 34px -10px #e91e8c99;
}
.bd-cgate__btn--ghost.svelte-1dhk7is {
  background: #fff;
  color: #4a2870;
  border-color: #e91e8c33;
}
.bd-cgate__btn--ghost.svelte-1dhk7is:hover {
  border-color: #e91e8c;
  color: #e91e8c;
  background: #fff0f7;
  transform: translateY(-1px);
}
.bd-cgate__hint.svelte-1dhk7is {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #9a7fb8;
}
.bd-cgate__hint.svelte-1dhk7is svg:where(.svelte-1dhk7is) {
  color: #10b981;
}
.bd-cform.svelte-1dhk7is textarea.is-invalid:where(.svelte-1dhk7is) {
  border-color: #dc262680;
  background: #fff5f5;
  box-shadow: 0 0 0 4px #dc262614;
}
.bd-cform.svelte-1dhk7is textarea.is-invalid:where(.svelte-1dhk7is):focus {
  border-color: #dc2626;
  box-shadow: 0 0 0 4px #dc262626;
}
.bd-cform__warn.svelte-1dhk7is {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  margin: 8px 0 10px;
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
  color: #b91c1c;
  border: 1px solid rgba(220, 38, 38, 0.25);
  border-radius: 10px;
  font-size: 12.5px;
  font-weight: 500;
  animation: svelte-1dhk7is-bdWarnIn 0.2s ease;
}
.bd-cform__warn.svelte-1dhk7is svg:where(.svelte-1dhk7is) {
  flex-shrink: 0;
}
@keyframes svelte-1dhk7is-bdWarnIn {
  0% {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.bd-cform__rules.svelte-1dhk7is {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0 14px;
}
.bd-cform__rule.svelte-1dhk7is {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: #fdf6fb;
  color: #7a4fa0;
  border: 1px solid rgba(233, 30, 140, 0.14);
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.bd-cform__rule.svelte-1dhk7is svg:where(.svelte-1dhk7is) {
  color: #b59ec8;
  transition: color 0.2s;
}
.bd-cform__rule.is-bad.svelte-1dhk7is {
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
  color: #b91c1c;
  border-color: #dc262659;
  transform: translateY(-1px);
}
.bd-cform__rule.is-bad.svelte-1dhk7is svg:where(.svelte-1dhk7is) {
  color: #dc2626;
}
.bd-cform__err.svelte-1dhk7is {
  display: inline-flex;
  padding: 10px 14px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
  color: #b91c1c;
  border: 1px solid rgba(220, 38, 38, 0.25);
  border-radius: 12px;
  font-size: 12.5px;
  font-weight: 500;
}
.bd-cform__ok.svelte-1dhk7is {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  color: #047857;
  border: 1px solid rgba(16, 185, 129, 0.28);
  border-radius: 12px;
  font-size: 12.5px;
  font-weight: 500;
}
.bd-cform__foot.svelte-1dhk7is {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.bd-cform__count.svelte-1dhk7is {
  font-size: 11.5px;
  color: #6b5876;
  font-weight: 500;
  font-family: ui-monospace, monospace;
}
.bd-cform__count.svelte-1dhk7is em:where(.svelte-1dhk7is) {
  color: #b59ec8;
  font-style: normal;
  font-weight: 600;
}
.bd-cform__btn.svelte-1dhk7is {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 12px 22px;
  border: none;
  border-radius: 12px;
  color: #fff;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(135deg, #e91e8c, #f43f5e 55%, #f59e0b);
  background-size: 200% 100%;
  background-position: 0% 0;
  box-shadow: 0 14px 28px -10px #e91e8c80, inset 0 1px #ffffff4d;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s, background-position 0.5s;
}
.bd-cform__btn.svelte-1dhk7is:hover:not(:disabled) {
  transform: translateY(-2px);
  background-position: 100% 0;
  box-shadow: 0 20px 34px -10px #e91e8c99;
}
.bd-cform__btn.svelte-1dhk7is:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}
.bd-cform__btn-shine.svelte-1dhk7is {
  position: absolute;
  top: 0;
  left: -120%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 70%
  );
  transform: skew(-18deg);
  pointer-events: none;
  transition: left 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.bd-cform__btn.svelte-1dhk7is:hover:not(:disabled)
  .bd-cform__btn-shine:where(.svelte-1dhk7is) {
  left: 140%;
}
.bd-spin.svelte-1dhk7is {
  animation: svelte-1dhk7is-bdSpin 0.9s linear infinite;
}
@keyframes svelte-1dhk7is-bdSpin {
  to {
    transform: rotate(360deg);
  }
}
.bd-cempty.svelte-1dhk7is {
  padding: 32px 20px;
  text-align: center;
  background: linear-gradient(135deg, #fff, #fff0f7);
  border: 1px dashed rgba(233, 30, 140, 0.25);
  border-radius: 18px;
}
.bd-cempty__ic.svelte-1dhk7is {
  width: 48px;
  height: 48px;
  margin: 0 auto 10px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fdf2f8, #fce7f3);
  color: #e91e8c;
  display: inline-grid;
  place-items: center;
}
.bd-cempty.svelte-1dhk7is strong:where(.svelte-1dhk7is) {
  display: block;
  font-size: 15px;
  color: #110520;
  font-weight: 600;
  margin-bottom: 4px;
}
.bd-cempty.svelte-1dhk7is p:where(.svelte-1dhk7is) {
  margin: 0;
  font-size: 13px;
  color: #6b5876;
}
.bd-clist.svelte-1dhk7is {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bd-citem.svelte-1dhk7is {
  position: relative;
  display: flex;
  gap: 14px;
  padding: 18px 20px 14px 22px;
  background: linear-gradient(180deg, #fff, #fffafc);
  border: 1px solid rgba(233, 30, 140, 0.1);
  border-radius: 18px;
  box-shadow: 0 6px 18px -10px #2d12481a;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s,
    border-color 0.3s;
}
.bd-citem.svelte-1dhk7is:hover {
  transform: translateY(-3px);
  border-color: #e91e8c47;
  box-shadow: 0 22px 44px -16px #e91e8c38;
}
.bd-citem__accent.svelte-1dhk7is {
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 0;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, #e91e8c, #f43f5e, #f59e0b);
  opacity: 0.6;
  transition: opacity 0.3s, transform 0.3s;
}
.bd-citem.svelte-1dhk7is:hover .bd-citem__accent:where(.svelte-1dhk7is) {
  opacity: 1;
  transform: scaleY(1.05);
}
.bd-citem__halo.svelte-1dhk7is {
  position: absolute;
  top: -40%;
  right: -20%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.08),
    transparent 70%
  );
  pointer-events: none;
  z-index: -1;
}
.bd-citem__avatar-wrap.svelte-1dhk7is {
  position: relative;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
}
.bd-citem__avatar.svelte-1dhk7is {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 10px 20px -6px #2d124840, inset 0 2px #ffffff59,
    inset 0 -6px 12px -6px #00000026;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.bd-citem.svelte-1dhk7is:hover .bd-citem__avatar:where(.svelte-1dhk7is) {
  transform: rotate(-4deg) scale(1.05);
}
.bd-citem__verified.svelte-1dhk7is {
  position: absolute;
  bottom: -3px;
  right: -3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  display: inline-grid;
  place-items: center;
  border: 2px solid #fff;
  box-shadow: 0 3px 8px #10b98166;
}
.bd-citem__body.svelte-1dhk7is {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bd-citem__head.svelte-1dhk7is {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.bd-citem__who.svelte-1dhk7is {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex-wrap: wrap;
}
.bd-citem__who.svelte-1dhk7is strong:where(.svelte-1dhk7is) {
  font-size: 14px;
  color: #110520;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.bd-citem__role.svelte-1dhk7is {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  background: linear-gradient(135deg, #faf5ff, #f3e8ff);
  color: #7c3aed;
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 999px;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.bd-citem__new.svelte-1dhk7is {
  padding: 2px 8px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  box-shadow: 0 4px 10px -2px #10b98173;
  animation: svelte-1dhk7is-bdNewPulse 2s ease-in-out infinite;
}
@keyframes svelte-1dhk7is-bdNewPulse {
  0%,
  to {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}
.bd-citem__time.svelte-1dhk7is {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  background: #fdf6fb;
  color: #7a4fa0;
  border: 1px solid rgba(233, 30, 140, 0.1);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
}
.bd-citem__time.svelte-1dhk7is svg:where(.svelte-1dhk7is) {
  color: #e91e8c;
  opacity: 0.75;
}
.bd-citem__quote.svelte-1dhk7is {
  position: relative;
  padding: 10px 14px 10px 36px;
  background: linear-gradient(135deg, #e91e8c0a, #f59e0b08);
  border: 1px solid rgba(233, 30, 140, 0.07);
  border-radius: 12px;
  margin-top: 2px;
}
.bd-citem__quote-ic.svelte-1dhk7is {
  position: absolute;
  top: 8px;
  left: 10px;
  color: #e91e8c4d;
  transition: color 0.3s;
}
.bd-citem.svelte-1dhk7is:hover .bd-citem__quote-ic:where(.svelte-1dhk7is) {
  color: #e91e8c8c;
}
.bd-citem__quote.svelte-1dhk7is p:where(.svelte-1dhk7is) {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #3f1f5e;
  white-space: pre-wrap;
  word-break: break-word;
}
.bd-citem__foot.svelte-1dhk7is {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}
.bd-citem__act.svelte-1dhk7is {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 11px;
  background: transparent;
  border: 1px solid rgba(233, 30, 140, 0.14);
  border-radius: 999px;
  font-family: inherit;
  font-size: 11.5px;
  font-weight: 500;
  color: #6b5876;
  cursor: pointer;
  transition: transform 0.2s, background 0.25s, border-color 0.25s, color 0.25s;
}
.bd-citem__act.svelte-1dhk7is:hover {
  transform: translateY(-1px);
  border-color: #e91e8c59;
}
.bd-citem__act--like.svelte-1dhk7is:hover {
  color: #e91e8c;
  background: #fff0f7;
}
.bd-citem__act--like.is-on.svelte-1dhk7is {
  background: linear-gradient(135deg, #e91e8c, #f43f5e 55%, #f59e0b);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 18px -6px #e91e8c8c, inset 0 1px #ffffff4d;
  animation: svelte-1dhk7is-bdLikePop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.bd-citem__act--like.is-on.svelte-1dhk7is:hover {
  background: linear-gradient(135deg, #e91e8c, #f43f5e 55%, #f59e0b);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 22px -6px #e91e8ca6, inset 0 1px #ffffff4d;
}
.bd-citem__act.is-busy.svelte-1dhk7is {
  opacity: 0.7;
  cursor: wait;
}
.bd-citem__act-n.svelte-1dhk7is {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  padding: 0 5px;
  margin-left: 2px;
  background: #0000001f;
  border-radius: 999px;
  font-style: normal;
  font-size: 10.5px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  line-height: 1.5;
}
.bd-citem__act--like.is-on.svelte-1dhk7is
  .bd-citem__act-n:where(.svelte-1dhk7is) {
  background: #ffffff4d;
  color: #fff;
}
@keyframes svelte-1dhk7is-bdLikePop {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.15);
  }
  to {
    transform: scale(1);
  }
}
.bd-citem__act--reply.svelte-1dhk7is:hover {
  color: #7c3aed;
  background: #faf5ff;
  border-color: #7c3aed4d;
}
.bd-citem__n.svelte-1dhk7is {
  margin-left: auto;
  font-family: ui-monospace, SF Mono, Consolas, monospace;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: transparent;
  background: linear-gradient(135deg, #e91e8c, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 0.7;
}
.bd-related.svelte-1dhk7is {
  padding: 60px 0 80px;
  background: radial-gradient(
      900px 440px at 50% 0%,
      rgba(233, 30, 140, 0.06),
      transparent 60%
    ),
    linear-gradient(180deg, transparent, rgba(245, 158, 11, 0.05));
  border-top: 1px dashed rgba(233, 30, 140, 0.18);
  margin-top: 40px;
}
.bd-related__head.svelte-1dhk7is {
  text-align: center;
  margin-bottom: 40px;
}
.bd-related__tag.svelte-1dhk7is {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  background: linear-gradient(135deg, #e91e8c1f, #f59e0b1a);
  color: #c2185b;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid rgba(233, 30, 140, 0.2);
  margin-bottom: 12px;
}
.bd-related__tag-dot.svelte-1dhk7is {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e91e8c;
  box-shadow: 0 0 0 3px #e91e8c38;
  animation: svelte-1dhk7is-bdDot 1.8s ease-in-out infinite;
}
.bd-related__head.svelte-1dhk7is h3:where(.svelte-1dhk7is) {
  margin: 0 0 8px;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: #110520;
  letter-spacing: -0.02em;
}
.bd-related__head.svelte-1dhk7is p:where(.svelte-1dhk7is) {
  margin: 0;
  color: #6b5876;
  font-size: 14px;
}
.blg-theme-rose.svelte-1dhk7is {
  --bt-grad: linear-gradient(135deg, #ff6b9d, #e91e8c 60%, #c21e6e);
  --bt-accent: #e91e8c;
  --bt-ring: rgba(233, 30, 140, 0.22);
  --bt-shadow: rgba(233, 30, 140, 0.25);
}
.blg-theme-gold.svelte-1dhk7is {
  --bt-grad: linear-gradient(135deg, #fcd34d, #f59e0b 60%, #d97706);
  --bt-accent: #d97706;
  --bt-ring: rgba(245, 158, 11, 0.25);
  --bt-shadow: rgba(245, 158, 11, 0.25);
}
.blg-theme-peach.svelte-1dhk7is {
  --bt-grad: linear-gradient(135deg, #fdba74, #f97316 60%, #ea580c);
  --bt-accent: #ea580c;
  --bt-ring: rgba(249, 115, 22, 0.25);
  --bt-shadow: rgba(249, 115, 22, 0.25);
}
.blg-theme-violet.svelte-1dhk7is {
  --bt-grad: linear-gradient(135deg, #c4b5fd, #7c3aed 60%, #5b21b6);
  --bt-accent: #7c3aed;
  --bt-ring: rgba(124, 58, 237, 0.22);
  --bt-shadow: rgba(124, 58, 237, 0.25);
}
.blg-theme-teal.svelte-1dhk7is {
  --bt-grad: linear-gradient(135deg, #5eead4, #0ea5e9 60%, #0369a1);
  --bt-accent: #0ea5e9;
  --bt-ring: rgba(14, 165, 233, 0.22);
  --bt-shadow: rgba(14, 165, 233, 0.25);
}
.blg-grid.svelte-1dhk7is {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.blg-card.svelte-1dhk7is {
  position: relative;
  background: #fff;
  border: 1.5px solid var(--bt-ring, rgba(233, 30, 140, 0.22));
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 24px #2d12480f;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s,
    border-color 0.45s;
  display: flex;
  flex-direction: column;
}
.blg-card.svelte-1dhk7is:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--bt-grad, linear-gradient(135deg, #ff6b9d, #e91e8c));
  z-index: 3;
}
.blg-card.svelte-1dhk7is:hover {
  transform: translateY(-6px);
  border-color: var(--bt-accent, #e91e8c);
  box-shadow: 0 24px 54px var(--bt-shadow, rgba(233, 30, 140, 0.25));
}
.blg-thumb.svelte-1dhk7is {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: linear-gradient(135deg, #fdf2f8, #f5f0ff, #fef3c7);
}
.blg-thumb.svelte-1dhk7is img:where(.svelte-1dhk7is) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.blg-thumb-ph.svelte-1dhk7is {
  width: 100%;
  height: 100%;
  background: inherit;
}
.blg-card.svelte-1dhk7is:hover
  .blg-thumb:where(.svelte-1dhk7is)
  img:where(.svelte-1dhk7is) {
  transform: scale(1.06);
}
.blg-thumb-ov.svelte-1dhk7is {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.1),
    transparent 40%,
    rgba(0, 0, 0, 0.45) 100%
  );
}
.blg-cat-pill.svelte-1dhk7is {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 11px 5px 9px;
  background: #fffffff2;
  color: var(--bt-accent, #e91e8c);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 50px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 12px #0000002e;
  z-index: 2;
}
.blg-cat-pill.svelte-1dhk7is:before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--bt-accent, #e91e8c);
}
.blg-thumb-reads.svelte-1dhk7is {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px 4px 8px;
  background: #00000073;
  color: #fff;
  font-size: 10.5px;
  font-weight: 600;
  border-radius: 50px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  z-index: 2;
}
.blg-thumb-views.svelte-1dhk7is {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px 4px 8px;
  background: #fffffff2;
  color: var(--bt-accent, #e91e8c);
  font-size: 10.5px;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 4px 12px #00000026;
  z-index: 2;
}
.blg-body.svelte-1dhk7is {
  padding: 18px 20px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blg-meta.svelte-1dhk7is {
  display: inline-flex;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 11px;
  font-weight: 500;
  color: #6b5876;
  margin-bottom: 10px;
}
.blg-meta-sep.svelte-1dhk7is {
  opacity: 0.4;
}
.blg-card.svelte-1dhk7is h3:where(.svelte-1dhk7is) {
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: #1a0611;
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}
.blg-card.svelte-1dhk7is p:where(.svelte-1dhk7is) {
  font-size: 13px;
  line-height: 1.6;
  color: #6b5876;
  margin: 0 0 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}
.blg-foot.svelte-1dhk7is {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed rgba(45, 18, 72, 0.12);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--bt-accent, #e91e8c);
}
.blg-foot-dot.svelte-1dhk7is {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bt-accent, #e91e8c);
  box-shadow: 0 0 0 3px #e91e8c24;
}
.blg-foot-l.svelte-1dhk7is {
  flex: 1;
}
.blg-foot-arr.svelte-1dhk7is {
  transition: transform 0.3s;
}
.blg-card.svelte-1dhk7is:hover .blg-foot-arr:where(.svelte-1dhk7is) {
  transform: translate(3px);
}
.bd-toolbar.svelte-1dhk7is {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 14px 18px;
  margin-bottom: 18px;
  background: #fffc;
  border: 1px solid rgba(233, 30, 140, 0.1);
  border-radius: 16px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 16px -10px #2d12481f;
}
.bd-toolbar__stats.svelte-1dhk7is {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
}
.bd-toolbar__stat.svelte-1dhk7is {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #6b5876;
}
.bd-toolbar__stat.svelte-1dhk7is em:where(.svelte-1dhk7is) {
  color: #e91e8c;
  font-weight: 700;
  font-style: normal;
  font-size: 13px;
}
.bd-toolbar__stat.svelte-1dhk7is svg:where(.svelte-1dhk7is) {
  color: #e91e8c;
  opacity: 0.8;
}
.bd-toolbar__actions.svelte-1dhk7is {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
}
.bd-toolbar__btn.svelte-1dhk7is {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.15);
  border-radius: 10px;
  font: inherit;
  font-size: 12px;
  font-weight: 500;
  color: #4a2870;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
}
.bd-toolbar__btn.svelte-1dhk7is:hover {
  transform: translateY(-1px);
  border-color: #e91e8c66;
  color: #e91e8c;
  background: linear-gradient(135deg, #fff, #fff0f7);
}
.bd-toolbar__btn.is-on.svelte-1dhk7is {
  background: linear-gradient(135deg, #e91e8c, #f43f5e);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 14px -4px #e91e8c80;
}
.bd-side.svelte-1dhk7is {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: start;
}
.bd-side-card.svelte-1dhk7is {
  position: relative;
  flex-shrink: 0;
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.1);
  border-radius: 18px;
  box-shadow: 0 8px 22px -10px #2d124824;
  overflow: hidden;
}
.bd-side-halo.svelte-1dhk7is {
  position: absolute;
  top: -50%;
  right: -40%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.14),
    transparent 70%
  );
  filter: blur(30px);
  pointer-events: none;
  z-index: 0;
}
.bd-side-head.svelte-1dhk7is {
  position: relative;
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 14px;
  z-index: 1;
}
.bd-side-head__ic.svelte-1dhk7is {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: inset 0 1px #ffffff4d;
}
.bd-side-head__ic--rose.svelte-1dhk7is {
  background: linear-gradient(135deg, #e91e8c, #c2185b);
  box-shadow: 0 6px 14px -4px #e91e8c73, inset 0 1px #ffffff4d;
}
.bd-side-head__ic--violet.svelte-1dhk7is {
  background: linear-gradient(135deg, #a78bfa, #7c3aed);
  box-shadow: 0 6px 14px -4px #7c3aed73, inset 0 1px #ffffff4d;
}
.bd-side-head__ic--gold.svelte-1dhk7is {
  background: linear-gradient(135deg, #fbbf24, #d97706);
  box-shadow: 0 6px 14px -4px #d9770673, inset 0 1px #ffffff4d;
}
.bd-side-head__ic--coral.svelte-1dhk7is {
  background: linear-gradient(135deg, #fb7185, #e11d48);
  box-shadow: 0 6px 14px -4px #e11d4873, inset 0 1px #ffffff4d;
}
.bd-side-head.svelte-1dhk7is strong:where(.svelte-1dhk7is) {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: #110520;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.bd-side-head.svelte-1dhk7is span:where(.svelte-1dhk7is) {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9a7fb8;
}
.bd-side-card--progress.svelte-1dhk7is {
  background: linear-gradient(160deg, #fff, #fff0f7);
}
.bd-progress-ring.svelte-1dhk7is {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 4px auto 14px;
  z-index: 1;
}
.bd-progress-ring__svg.svelte-1dhk7is {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.bd-progress-ring__bg.svelte-1dhk7is,
.bd-progress-ring__fill.svelte-1dhk7is {
  fill: none;
  stroke-width: 10;
  stroke-linecap: round;
}
.bd-progress-ring__bg.svelte-1dhk7is {
  stroke: #e91e8c1f;
}
.bd-progress-ring__fill.svelte-1dhk7is {
  stroke: url(#bdProgGrad);
  stroke-dasharray: 326;
  transition: stroke-dashoffset 0.2s linear;
  filter: drop-shadow(0 0 6px rgba(233, 30, 140, 0.45));
}
.bd-progress-ring__val.svelte-1dhk7is {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.bd-progress-ring__val.svelte-1dhk7is strong:where(.svelte-1dhk7is) {
  font-size: 26px;
  font-weight: 700;
  color: #110520;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #e91e8c, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bd-progress-ring__val.svelte-1dhk7is span:where(.svelte-1dhk7is) {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9a7fb8;
  margin-top: 3px;
}
.bd-side-meta.svelte-1dhk7is {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  z-index: 1;
}
.bd-side-meta.svelte-1dhk7is > div:where(.svelte-1dhk7is) {
  padding: 8px 6px;
  text-align: center;
  background: #ffffffb3;
  border: 1px solid rgba(233, 30, 140, 0.1);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bd-side-meta.svelte-1dhk7is em:where(.svelte-1dhk7is) {
  font-size: 15px;
  font-weight: 700;
  color: #110520;
  font-style: normal;
}
.bd-side-meta.svelte-1dhk7is span:where(.svelte-1dhk7is) {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9a7fb8;
}
.bd-toc.svelte-1dhk7is {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  z-index: 1;
}
.bd-toc__item.svelte-1dhk7is {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  padding: 9px 12px;
  background: transparent;
  border: none;
  border-radius: 10px;
  font: inherit;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.4;
  color: #4a2870;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.bd-toc__item--l3.svelte-1dhk7is {
  padding-left: 24px;
  font-size: 12px;
  color: #6b5876;
}
.bd-toc__dot.svelte-1dhk7is {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e91e8c40;
  flex-shrink: 0;
  margin-top: 6px;
  transition: background 0.2s, transform 0.2s;
}
.bd-toc__txt.svelte-1dhk7is {
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}
.bd-toc__item.svelte-1dhk7is:hover {
  background: #fdf2f8;
  color: #e91e8c;
  transform: translate(3px);
}
.bd-toc__item.svelte-1dhk7is:hover .bd-toc__dot:where(.svelte-1dhk7is) {
  background: #e91e8c;
  transform: scale(1.3);
}
.bd-toc__item.is-active.svelte-1dhk7is {
  background: linear-gradient(135deg, #fdf2f8, #fff7ed);
  color: #e91e8c;
  font-weight: 600;
  box-shadow: inset 3px 0 #e91e8c;
}
.bd-toc__item.is-active.svelte-1dhk7is .bd-toc__dot:where(.svelte-1dhk7is) {
  background: #e91e8c;
  box-shadow: 0 0 0 3px #e91e8c33;
}
.bd-side-card--author.svelte-1dhk7is {
  background: linear-gradient(160deg, #fff, #fff8fb 60%, #fff0f7);
  text-align: center;
  padding: 22px 18px 18px;
}
.bd-author-card.svelte-1dhk7is {
  position: relative;
  z-index: 1;
}
.bd-author-card__avatar-wrap.svelte-1dhk7is {
  position: relative;
  width: 84px;
  height: 84px;
  margin: 0 auto 12px;
}
.bd-author-card__avatar.svelte-1dhk7is {
  position: relative;
  width: 74px;
  height: 74px;
  margin: 5px auto 0;
  border-radius: 50%;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 28px -8px #e91e8c66, inset 0 2px #ffffff4d;
}
.bd-author-card__ring.svelte-1dhk7is {
  position: absolute;
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
  border-radius: 50%;
  border: 1.5px dashed rgba(233, 30, 140, 0.4);
  animation: svelte-1dhk7is-bdSpin 18s linear infinite;
}
.bd-author-card__badge.svelte-1dhk7is {
  position: absolute;
  bottom: 2px;
  right: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  display: inline-grid;
  place-items: center;
  border: 2.5px solid #fff;
  box-shadow: 0 4px 10px #10b98173;
  z-index: 2;
}
.bd-author-card__name.svelte-1dhk7is {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #110520;
  margin-top: 4px;
}
.bd-author-card__role.svelte-1dhk7is {
  display: block;
  font-size: 11px;
  color: #9a7fb8;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 2px;
}
.bd-author-card__bio.svelte-1dhk7is {
  margin: 10px 0 14px;
  font-size: 12px;
  line-height: 1.55;
  color: #6b5876;
}
.bd-author-card__stats.svelte-1dhk7is {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 10px 0;
  margin-bottom: 12px;
  border-top: 1px dashed rgba(233, 30, 140, 0.18);
  border-bottom: 1px dashed rgba(233, 30, 140, 0.18);
}
.bd-author-card__stats.svelte-1dhk7is > div:where(.svelte-1dhk7is) {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bd-author-card__stats.svelte-1dhk7is strong:where(.svelte-1dhk7is) {
  font-size: 14px;
  color: #110520;
  font-weight: 700;
}
.bd-author-card__stats.svelte-1dhk7is span:where(.svelte-1dhk7is) {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9a7fb8;
}
.bd-author-card__btn.svelte-1dhk7is {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 22px;
  background: linear-gradient(135deg, #e91e8c, #f43f5e);
  color: #fff;
  border: none;
  border-radius: 999px;
  font: inherit;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 22px -6px #e91e8c80, inset 0 1px #ffffff4d;
  transition: transform 0.2s, box-shadow 0.2s;
}
.bd-author-card__btn.svelte-1dhk7is:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -6px #e91e8c99;
}
.bd-tagcloud.svelte-1dhk7is {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  position: relative;
  z-index: 1;
}
.bd-tagpill.svelte-1dhk7is {
  display: inline-block;
  padding: 5px 11px;
  font-size: 11.5px;
  font-weight: 500;
  color: #4a2870;
  background: #fdf6fb;
  border: 1px solid rgba(233, 30, 140, 0.15);
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
}
.bd-tagpill.svelte-1dhk7is:hover {
  transform: translateY(-1px);
  color: #fff;
  border-color: transparent;
}
.bd-tagpill--0.svelte-1dhk7is:hover {
  background: linear-gradient(135deg, #e91e8c, #c2185b);
}
.bd-tagpill--1.svelte-1dhk7is:hover {
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
}
.bd-tagpill--2.svelte-1dhk7is:hover {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}
.bd-tagpill--3.svelte-1dhk7is:hover {
  background: linear-gradient(135deg, #10b981, #059669);
}
.bd-side-card--nl.svelte-1dhk7is {
  background: radial-gradient(
      400px 200px at 90% -10%,
      rgba(233, 30, 140, 0.14),
      transparent 60%
    ),
    linear-gradient(160deg, #fff, #fff7fb);
  text-align: center;
  padding: 20px 18px;
}
.bd-nl__glow.svelte-1dhk7is {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  z-index: -1;
  border-radius: 20px;
  background: conic-gradient(
    from 0deg,
    #e91e8c33,
    #f59e0b2e,
    #7c3aed2e,
    #e91e8c33
  );
  opacity: 0.4;
  filter: blur(14px);
  animation: svelte-1dhk7is-bdSpin 12s linear infinite;
}
.bd-nl__ic.svelte-1dhk7is {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
  border-radius: 14px;
  background: linear-gradient(135deg, #e91e8c, #f43f5e 60%, #f59e0b);
  color: #fff;
  box-shadow: 0 12px 22px -6px #e91e8c80, inset 0 2px #ffffff4d;
}
.bd-side-card--nl.svelte-1dhk7is h4:where(.svelte-1dhk7is) {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  color: #110520;
  letter-spacing: -0.02em;
}
.bd-side-card--nl.svelte-1dhk7is p:where(.svelte-1dhk7is) {
  margin: 0 0 14px;
  font-size: 12px;
  color: #6b5876;
  line-height: 1.5;
}
.bd-nl__form.svelte-1dhk7is {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px;
  margin-bottom: 8px;
}
.bd-nl__form.svelte-1dhk7is input:where(.svelte-1dhk7is) {
  padding: 10px 12px;
  font: inherit;
  font-size: 12.5px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.2);
  border-radius: 10px;
  outline: none;
  color: #1e0b38;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.bd-nl__form.svelte-1dhk7is input:where(.svelte-1dhk7is):focus {
  border-color: #e91e8c;
  box-shadow: 0 0 0 3px #e91e8c1f;
}
.bd-nl__form.svelte-1dhk7is button:where(.svelte-1dhk7is) {
  width: 40px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, #e91e8c, #f43f5e);
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 8px 16px -4px #e91e8c80;
  transition: transform 0.2s, box-shadow 0.2s;
}
.bd-nl__form.svelte-1dhk7is button:where(.svelte-1dhk7is):hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px -4px #e91e8c99;
}
.bd-nl__ok.svelte-1dhk7is {
  display: block;
  font-size: 11.5px;
  color: #047857;
  font-weight: 600;
  margin-bottom: 6px;
}
.bd-nl__trust.svelte-1dhk7is {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #b59ec8;
}
.bd-mini.svelte-1dhk7is {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  z-index: 1;
}
.bd-mini__item.svelte-1dhk7is {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: #fdf6fb;
  border: 1px solid rgba(233, 30, 140, 0.08);
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.bd-mini__item.svelte-1dhk7is:hover {
  transform: translate(4px);
  border-color: #e91e8c4d;
  background: linear-gradient(135deg, #fff, #fff0f7);
}
.bd-mini__n.svelte-1dhk7is {
  font-size: 15px;
  font-weight: 700;
  color: transparent;
  background: linear-gradient(135deg, #e91e8c, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: ui-monospace, monospace;
  flex-shrink: 0;
  line-height: 1;
}
.bd-mini__body.svelte-1dhk7is {
  flex: 1;
  min-width: 0;
}
.bd-mini__body.svelte-1dhk7is strong:where(.svelte-1dhk7is) {
  display: block;
  font-size: 12px;
  line-height: 1.3;
  color: #110520;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bd-mini__cat.svelte-1dhk7is {
  display: inline-block;
  margin-top: 3px;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #c2185b;
}
.bd-mini__arr.svelte-1dhk7is {
  color: #b59ec8;
  flex-shrink: 0;
  transition: transform 0.2s, color 0.2s;
}
.bd-mini__item.svelte-1dhk7is:hover .bd-mini__arr:where(.svelte-1dhk7is) {
  color: #e91e8c;
  transform: translate(3px);
}
.bd-side-card--profiles.svelte-1dhk7is {
  background: linear-gradient(165deg, #fff, #fff7fb 55%, #fff0db);
}
.bd-profiles-halo.svelte-1dhk7is {
  position: absolute;
  top: -60%;
  right: -40%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.15),
    transparent 70%
  );
  filter: blur(30px);
  pointer-events: none;
  z-index: 0;
}
.bd-profiles.svelte-1dhk7is {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.bd-profile-card.svelte-1dhk7is {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.1);
  box-shadow: 0 6px 14px -8px #2d12482e;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s,
    border-color 0.3s;
}
.bd-profile-card.svelte-1dhk7is:hover {
  transform: translateY(-4px);
  border-color: #e91e8c59;
  box-shadow: 0 22px 34px -14px #e91e8c59;
}
.bd-profile-card__img.svelte-1dhk7is {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: linear-gradient(135deg, #fdf2f8, #f5f0ff);
}
.bd-profile-card__img.svelte-1dhk7is img:where(.svelte-1dhk7is) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.bd-profile-card.svelte-1dhk7is:hover
  .bd-profile-card__img:where(.svelte-1dhk7is)
  img:where(.svelte-1dhk7is) {
  transform: scale(1.08);
}
.bd-profile-card__ov.svelte-1dhk7is {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.12) 0%,
    transparent 35%,
    rgba(0, 0, 0, 0.7) 100%
  );
  pointer-events: none;
}
.bd-profile-card__verified.svelte-1dhk7is,
.bd-profile-card__featured.svelte-1dhk7is {
  position: absolute;
  top: 8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 10px #00000040;
  z-index: 2;
}
.bd-profile-card__verified.svelte-1dhk7is {
  left: 8px;
  background: linear-gradient(135deg, #10b981, #059669);
}
.bd-profile-card__featured.svelte-1dhk7is {
  right: 8px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
}
.bd-profile-card__rating.svelte-1dhk7is {
  position: absolute;
  top: 8px;
  right: 8px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 2px 7px;
  background: #0000008c;
  color: #fff;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 2;
}
.bd-profile-card__featured.svelte-1dhk7is
  ~ .bd-profile-card__rating:where(.svelte-1dhk7is) {
  top: 32px;
}
.bd-profile-card__name.svelte-1dhk7is {
  position: absolute;
  bottom: 6px;
  left: 6px;
  right: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: #fff;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}
.bd-profile-card__name.svelte-1dhk7is strong:where(.svelte-1dhk7is) {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bd-profile-card__name.svelte-1dhk7is
  strong:where(.svelte-1dhk7is)
  em:where(.svelte-1dhk7is) {
  font-style: normal;
  font-weight: 500;
  opacity: 0.85;
}
.bd-profile-card__loc.svelte-1dhk7is {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 9.5px;
  font-weight: 500;
  opacity: 0.9;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bd-profile-card__foot.svelte-1dhk7is {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 7px 10px 8px;
  background: #fff;
}
.bd-profile-card__price.svelte-1dhk7is {
  font-size: 12px;
  font-weight: 700;
  color: transparent;
  background: linear-gradient(135deg, #e91e8c, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1;
}
.bd-profile-card__price.svelte-1dhk7is em:where(.svelte-1dhk7is) {
  font-style: normal;
  font-weight: 500;
  font-size: 9.5px;
  color: #9a7fb8;
  background: none;
  -webkit-text-fill-color: #9a7fb8;
  margin-left: 2px;
}
.bd-profile-card__go.svelte-1dhk7is {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, #e91e8c, #f43f5e);
  color: #fff;
  box-shadow: 0 4px 10px -3px #e91e8c80;
  transition: transform 0.25s;
}
.bd-profile-card.svelte-1dhk7is:hover
  .bd-profile-card__go:where(.svelte-1dhk7is) {
  transform: translate(2px) scale(1.08);
}
.bd-profiles-cta.svelte-1dhk7is {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  padding: 10px 14px;
  background: #fffc;
  border: 1px dashed rgba(233, 30, 140, 0.28);
  border-radius: 12px;
  color: #c2185b;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.25s;
}
.bd-profiles-cta.svelte-1dhk7is:hover {
  background: linear-gradient(135deg, #e91e8c, #f43f5e);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px -6px #e91e8c8c;
}
.bd-profiles-cta.svelte-1dhk7is svg:where(.svelte-1dhk7is) {
  transition: transform 0.25s;
}
.bd-profiles-cta.svelte-1dhk7is:hover svg:where(.svelte-1dhk7is) {
  transform: translate(3px);
}
@media (max-width: 1180px) {
  .bd-side-card--profiles.svelte-1dhk7is {
    grid-column: 1 / -1;
  }
  .bd-profiles.svelte-1dhk7is {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .bd-profiles.svelte-1dhk7is {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 420px) {
  .bd-profile-card__name.svelte-1dhk7is strong:where(.svelte-1dhk7is) {
    font-size: 11.5px;
  }
  .bd-profile-card__loc.svelte-1dhk7is {
    font-size: 9px;
  }
}
@media (max-width: 960px) {
  .bd-comments__layout.svelte-1dhk7is {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .bd-guide.svelte-1dhk7is {
    position: static;
  }
}
@media (max-width: 1180px) {
  .bd-layout.svelte-1dhk7is {
    grid-template-columns: 72px minmax(0, 1fr);
  }
  .bd-side.svelte-1dhk7is {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 16px;
    margin-top: 8px;
  }
}
@media (max-width: 1000px) {
  .bd-hero__inner.svelte-1dhk7is {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .bd-hero__media.svelte-1dhk7is {
    max-width: 560px;
    margin: 0 auto;
    padding: 30px 20px;
  }
  .bd-badge--read.svelte-1dhk7is {
    left: 2%;
    top: 4%;
  }
  .bd-badge--cat.svelte-1dhk7is {
    right: 2%;
  }
  .bd-badge--rating.svelte-1dhk7is {
    left: 4%;
  }
}
@media (max-width: 820px) {
  .bd-layout.svelte-1dhk7is {
    grid-template-columns: 1fr;
    padding: 28px 16px;
  }
  .bd-share.svelte-1dhk7is {
    display: none;
  }
  .bd-share-mob.svelte-1dhk7is {
    display: flex;
  }
  .bd-side.svelte-1dhk7is {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .bd-toolbar.svelte-1dhk7is {
    padding: 12px 14px;
  }
  .bd-toolbar__stats.svelte-1dhk7is {
    width: 100%;
    justify-content: space-between;
  }
}
@media (max-width: 640px) {
  .bd-container.svelte-1dhk7is {
    padding: 0 16px;
  }
  .bd-hero.svelte-1dhk7is {
    padding: 24px 0 44px;
  }
  .bd-crumbs.svelte-1dhk7is {
    font-size: 11px;
    padding: 6px 12px;
  }
  .bd-crumbs.svelte-1dhk7is span:where(.svelte-1dhk7is) {
    max-width: 160px;
  }
  .bd-hero__meta.svelte-1dhk7is {
    gap: 12px;
  }
  .bd-hero__media.svelte-1dhk7is {
    padding: 24px 14px;
  }
  .bd-orbit.svelte-1dhk7is,
  .bd-spark--3.svelte-1dhk7is,
  .bd-spark--4.svelte-1dhk7is,
  .bd-badge--rating.svelte-1dhk7is {
    display: none;
  }
  .bd-badge.svelte-1dhk7is {
    padding: 7px 10px 7px 7px;
  }
  .bd-badge__ic.svelte-1dhk7is {
    width: 26px;
    height: 26px;
  }
  .bd-badge__txt.svelte-1dhk7is strong:where(.svelte-1dhk7is) {
    font-size: 11.5px;
  }
  .bd-badge__txt.svelte-1dhk7is span:where(.svelte-1dhk7is) {
    font-size: 8.5px;
  }
  .bd-ribbon.svelte-1dhk7is {
    font-size: 9.5px;
    padding: 5px 10px;
  }
  .bd-body.svelte-1dhk7is {
    padding: 22px;
    border-radius: 18px;
  }
  .bd-body.svelte-1dhk7is h2 {
    font-size: 22px;
  }
  .bd-body.svelte-1dhk7is > p:first-of-type:first-letter {
    font-size: 50px;
  }
  .bd-cform__grid.svelte-1dhk7is {
    grid-template-columns: 1fr;
  }
  .bd-related.svelte-1dhk7is {
    padding: 44px 0 60px;
  }
  .bd-comments.bd-comments--standalone.svelte-1dhk7is {
    padding: 40px 0 56px;
  }
  .bd-comments__layout.svelte-1dhk7is {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .bd-guide.svelte-1dhk7is {
    position: static;
  }
  .blg-card.svelte-1dhk7is h3:where(.svelte-1dhk7is) {
    font-size: 15px;
  }
  .blg-card.svelte-1dhk7is p:where(.svelte-1dhk7is) {
    font-size: 12.5px;
  }
  .blg-grid.svelte-1dhk7is {
    gap: 18px;
  }
  .bd-side.svelte-1dhk7is {
    grid-template-columns: 1fr;
  }
  .bd-toolbar.svelte-1dhk7is {
    flex-direction: column;
    align-items: stretch;
  }
  .bd-toolbar__actions.svelte-1dhk7is {
    justify-content: space-between;
  }
  .bd-toolbar__btn.svelte-1dhk7is {
    flex: 1;
    justify-content: center;
  }
}
@media (max-width: 420px) {
  .bd-hero__title.svelte-1dhk7is {
    font-size: 28px;
  }
  .bd-hero__lede.svelte-1dhk7is {
    font-size: 14.5px;
  }
  .bd-author.svelte-1dhk7is {
    padding: 6px 12px 6px 6px;
  }
  .bd-author__avatar.svelte-1dhk7is {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
  .bd-progress-ring.svelte-1dhk7is {
    width: 120px;
    height: 120px;
  }
  .bd-progress-ring__val.svelte-1dhk7is strong:where(.svelte-1dhk7is) {
    font-size: 22px;
  }
}

/*single profile*/


.pcard.svelte-1j7scqf {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  transition: all 0.28s ease;
  box-shadow: var(--shadow-card);
  position: relative;
}
.pcard.svelte-1j7scqf:hover {
  transform: translateY(-5px);
  border-color: #e91e8c38;
  box-shadow: 0 14px 36px #e91e8c1f;
}
.pcard-media.svelte-1j7scqf {
  position: relative;
  height: 260px;
  overflow: hidden;
  flex-shrink: 0;
  order: -1;
  background: var(--ph-gradient);
}
.pcard-photo.svelte-1j7scqf {
  position: relative;
  width: 100%;
  height: 100%;
}
.pcard-img.svelte-1j7scqf {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.pcard-img-primary.svelte-1j7scqf {
  opacity: 1;
  z-index: 1;
}
.pcard-img-hover.svelte-1j7scqf {
  opacity: 0;
  z-index: 2;
  pointer-events: none;
}
.pcard.svelte-1j7scqf:hover .pcard-img-primary:where(.svelte-1j7scqf) {
  opacity: 0;
  transform: scale(1.04);
}
.pcard.svelte-1j7scqf:hover .pcard-img-hover:where(.svelte-1j7scqf) {
  opacity: 1;
  transform: scale(1.04);
}
.pbadge.svelte-1j7scqf {
  position: absolute;
  top: 10px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 5px 11px 5px 8px;
  border-radius: 30px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px #00000024, inset 0 1px #ffffff40;
}
.pbadge-gold.svelte-1j7scqf {
  left: 10px;
  background: linear-gradient(135deg, #f59e0beb, #b46400e0);
  color: #fff;
  border: 1px solid rgba(255, 210, 90, 0.35);
}
.badge-dot.svelte-1j7scqf {
  display: none;
}
.pbadge-teal.svelte-1j7scqf {
  right: 10px;
  background: linear-gradient(135deg, #10b981e0, #059669d6);
  color: #fff;
  border: 1px solid rgba(110, 231, 183, 0.3);
}
.rating-chip.svelte-1j7scqf {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #ffffffe0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #92400e;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 30px;
  box-shadow: 0 2px 12px #0000001a, inset 0 1px #fffc;
}
.pcard-body.svelte-1j7scqf {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pcard-name.svelte-1j7scqf {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: -0.02em;
}
.pcard-meta.svelte-1j7scqf {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 14px;
}
.meta-pill.svelte-1j7scqf {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: var(--bg-3);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 20px;
  border: 1px solid var(--border);
}
.meta-loc.svelte-1j7scqf {
  color: var(--rose);
  background: var(--rose-subtle);
  border-color: #e91e8c26;
}
.meta-cat.svelte-1j7scqf {
  color: var(--purple);
  background: #7c3aed0f;
  border-color: #7c3aed26;
}
.pcard-stats.svelte-1j7scqf {
  display: flex;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-bottom: 14px;
}
.pstat.svelte-1j7scqf {
  flex: 1;
  text-align: center;
  padding: 2px 0;
}
.pstat-divider.svelte-1j7scqf {
  width: 1px;
  height: 28px;
  background: var(--border);
  flex-shrink: 0;
}
.pstat-val.svelte-1j7scqf {
  font-size: 13px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 2px;
}
.pstat-val.price.svelte-1j7scqf {
  color: var(--rose);
  font-size: 14px;
}
.pstat-lbl.svelte-1j7scqf {
  font-size: 10px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.fav-btn.svelte-1j7scqf {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--bg-3);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.22s ease;
  margin: 0 auto 2px;
}
.fav-btn.svelte-1j7scqf:hover {
  border-color: var(--rose);
  background: var(--rose-subtle);
  color: var(--rose);
  transform: scale(1.12);
}
.fav-btn.fav-active.svelte-1j7scqf {
  border-color: var(--rose);
  background: var(--rose-subtle);
  color: var(--rose);
}
.fav-btn.fav-anim.svelte-1j7scqf {
  animation: svelte-1j7scqf-heartPop 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}
@keyframes svelte-1j7scqf-heartPop {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.4);
  }
  60% {
    transform: scale(0.9);
  }
  to {
    transform: scale(1);
  }
}
.pcard-cta.svelte-1j7scqf {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--rose-subtle);
  color: var(--rose);
  border: 1px solid rgba(233, 30, 140, 0.2);
  border-radius: var(--radius-sm);
  padding: 11px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  margin-top: auto;
  overflow: hidden;
  isolation: isolate;
}
.pcard-cta.svelte-1j7scqf:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  transform: skew(-20deg);
  transition: left 0.7s ease;
  z-index: 1;
}
.pcard-cta.svelte-1j7scqf svg:where(.svelte-1j7scqf) {
  transition: transform 0.3s ease;
}
.pcard.svelte-1j7scqf:hover .pcard-cta:where(.svelte-1j7scqf) {
  background: linear-gradient(
    135deg,
    #ff5ba8 0%,
    var(--rose) 50%,
    var(--rose-dark) 100%
  );
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 22px #e91e8c59, inset 0 1px #ffffff40;
}
.pcard.svelte-1j7scqf:hover .pcard-cta:where(.svelte-1j7scqf):before {
  left: 130%;
}
.pcard.svelte-1j7scqf:hover
  .pcard-cta:where(.svelte-1j7scqf)
  svg:where(.svelte-1j7scqf) {
  transform: translate(4px);
}
@media (max-width: 480px) {
  .pcard-media.svelte-1j7scqf {
    height: 150px;
  }
  .pbadge.svelte-1j7scqf {
    font-size: 0;
    gap: 0;
    padding: 5px;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    justify-content: center;
  }
  .pbadge.svelte-1j7scqf svg:where(.svelte-1j7scqf) {
    width: 11px;
    height: 11px;
    flex-shrink: 0;
  }
  .badge-dot.svelte-1j7scqf {
    display: none;
  }
  .rating-chip.svelte-1j7scqf {
    font-size: 10px;
    padding: 4px 8px;
    gap: 3px;
    bottom: 7px;
    right: 7px;
  }
  .rating-chip.svelte-1j7scqf svg:where(.svelte-1j7scqf) {
    width: 9px;
    height: 9px;
  }
  .pcard-body.svelte-1j7scqf {
    padding: 9px 9px 10px;
  }
  .pcard-name.svelte-1j7scqf {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
  }
  .pcard-name.svelte-1j7scqf svg:where(.svelte-1j7scqf) {
    display: none;
  }
  .pcard-meta.svelte-1j7scqf {
    gap: 3px;
    margin-bottom: 7px;
    flex-wrap: nowrap;
    overflow: hidden;
  }
  .meta-pill.svelte-1j7scqf {
    font-size: 9px;
    padding: 2px 6px;
    white-space: nowrap;
  }
  .meta-pill.svelte-1j7scqf svg:where(.svelte-1j7scqf) {
    width: 8px;
    height: 8px;
  }
  .meta-cat.svelte-1j7scqf {
    display: none;
  }
  .pcard-stats.svelte-1j7scqf {
    padding-top: 7px;
    margin-bottom: 7px;
  }
  .pstat-views.svelte-1j7scqf {
    display: none;
  }
  .pstat-divider.svelte-1j7scqf:last-of-type {
    display: none !important;
  }
  .pstat-val.svelte-1j7scqf {
    font-size: 11px;
  }
  .pstat-val.price.svelte-1j7scqf {
    font-size: 12px;
  }
  .pstat-lbl.svelte-1j7scqf {
    font-size: 8px;
    letter-spacing: 0;
  }
  .fav-btn.svelte-1j7scqf {
    width: 28px;
    height: 28px;
  }
  .fav-btn.svelte-1j7scqf svg:where(.svelte-1j7scqf) {
    width: 14px;
    height: 14px;
  }
  .pcard-cta.svelte-1j7scqf {
    padding: 7px 6px;
    font-size: 11px;
    font-weight: 500;
    border-radius: 7px;
  }
  .pcard-cta.svelte-1j7scqf svg:where(.svelte-1j7scqf) {
    display: none;
  }
  .pcard.svelte-1j7scqf:hover {
    transform: none;
  }
}

.cdp-hero.svelte-eghqz5 {
  position: relative;
  overflow: hidden;
  padding: 72px 0 80px;
  background: radial-gradient(
      900px 500px at 50% 0%,
      rgba(245, 158, 11, 0.1) 0%,
      transparent 55%
    ),
    radial-gradient(
      900px 500px at 0% 50%,
      rgba(233, 30, 140, 0.09) 0%,
      transparent 55%
    ),
    radial-gradient(
      900px 500px at 100% 50%,
      rgba(245, 158, 11, 0.09) 0%,
      transparent 55%
    ),
    linear-gradient(180deg, #fff0f7, #fdf4ff);
}
.cdp-hero.svelte-eghqz5:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(
      rgba(233, 30, 140, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(233, 30, 140, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, #000 40%, transparent 75%);
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    #000 40%,
    transparent 75%
  );
  pointer-events: none;
}
.cdp-hero.svelte-eghqz5 > .grid-container:where(.svelte-eghqz5) {
  position: relative;
  z-index: 1;
}
.cdp-orb.svelte-eghqz5 {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.55;
}
.cdp-orb-1.svelte-eghqz5 {
  top: -120px;
  left: -100px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(233, 30, 140, 0.4), transparent 70%);
}
.cdp-orb-2.svelte-eghqz5 {
  top: 40px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.35),
    transparent 70%
  );
}
.cdp-orb-3.svelte-eghqz5 {
  bottom: -120px;
  left: 30%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.3), transparent 70%);
}
.cdp-hero-inner.svelte-eghqz5 {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.cdp-hero-text.svelte-eghqz5 {
  max-width: 620px;
}
.cdp-crumb.svelte-eghqz5 {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  margin-bottom: 14px;
  background: #ffffffd9;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 14px #2d12480f;
}
.cdp-crumb.svelte-eghqz5 a:where(.svelte-eghqz5) {
  color: var(--rose);
  text-decoration: none;
  font-weight: 500;
}
.cdp-crumb.svelte-eghqz5 a:where(.svelte-eghqz5):hover {
  text-decoration: underline;
}
.cdp-crumb.svelte-eghqz5 span:where(.svelte-eghqz5):last-child {
  color: var(--heading);
  font-weight: 500;
}
.cdp-crumb.svelte-eghqz5 svg:where(.svelte-eghqz5) {
  color: var(--text-dim);
}
.cdp-chip.svelte-eghqz5 {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 12px;
  margin-bottom: 20px;
  background: #ffffffd9;
  border: 1px solid rgba(245, 196, 107, 0.4);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: #b45309;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 18px #f59e0b26;
}
.cdp-chip-dot.svelte-eghqz5 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px #10b98133, 0 0 10px #10b98199;
  animation: svelte-eghqz5-cdpPulse 2.2s ease-in-out infinite;
}
@keyframes svelte-eghqz5-cdpPulse {
  0%,
  to {
    box-shadow: 0 0 0 3px #10b98133, 0 0 10px #10b98199;
  }
  50% {
    box-shadow: 0 0 0 6px #10b9810d, 0 0 18px #10b981cc;
  }
}
.cdp-h1.svelte-eghqz5 {
  font-size: clamp(1.45rem, 2.4vw, 2.05rem);
  font-weight: 700 !important;
  line-height: 1.22;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  max-width: 620px;
  background: linear-gradient(135deg, #0f172a, #d97706 55%, #e91e8c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cdp-subtitle.svelte-eghqz5 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 7px 14px 7px 12px;
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 500;
  line-height: 1.4;
  color: #831843;
  background: linear-gradient(135deg, #fdf2f8, #fce7f3);
  border: 1px solid rgba(233, 30, 140, 0.2);
  border-radius: 18px;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 14px -6px #e91e8c40;
  max-width: 100%;
  white-space: normal;
}
.cdp-subtitle.svelte-eghqz5:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e91e8c, #f43f5e);
  box-shadow: 0 0 10px #e91e8c99;
  flex-shrink: 0;
}
.cdp-lead.svelte-eghqz5 {
  max-width: 580px;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 28px;
}
.cdp-meta.svelte-eghqz5 {
  display: inline-flex;
  align-items: stretch;
  flex-wrap: wrap;
  padding: 10px 6px;
  background: #ffffffd9;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 36px #e91e8c14;
  margin-bottom: 28px;
}
.cdp-meta-item.svelte-eghqz5 {
  padding: 6px 22px;
  text-align: center;
  min-width: 82px;
}
.cdp-meta-item.svelte-eghqz5 + .cdp-meta-item:where(.svelte-eghqz5) {
  border-left: 1px solid rgba(45, 18, 72, 0.08);
}
.cdp-meta-val.svelte-eghqz5 {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.cdp-meta-val.svelte-eghqz5 span:where(.svelte-eghqz5) {
  font-size: 0.85em;
}
.cdp-live-dot.svelte-eghqz5 {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px #10b98133;
  animation: svelte-eghqz5-cdpPulse 2.2s ease-in-out infinite;
  -webkit-text-fill-color: initial;
}
.cdp-meta-lbl.svelte-eghqz5 {
  margin-top: 4px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.cdp-actions.svelte-eghqz5 {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cdp-btn-wa.svelte-eghqz5 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25d366, #1aab52);
  color: #fff !important;
  border: none;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  box-shadow: 0 4px 18px #25d3664d;
  text-decoration: none;
}
.cdp-btn-wa.svelte-eghqz5:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px #25d36666;
  color: #fff !important;
}
.hv.svelte-eghqz5 {
  position: relative;
  width: 100%;
  max-width: 420px;
  min-height: 400px;
  margin-left: auto;
  perspective: 1200px;
}
.hv-back.svelte-eghqz5 {
  position: absolute;
  z-index: 0;
  top: 10px;
  left: 50%;
  width: 290px;
  height: 370px;
  transform: translate(-50%) rotateY(6deg) rotateX(-2deg) rotate(3deg);
  border-radius: 24px;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  animation: svelte-eghqz5-hvBackFloat 10s ease-in-out infinite;
}
.hv.svelte-eghqz5:hover .hv-back:where(.svelte-eghqz5) {
  transform: translate(-50%) rotateY(3deg) rotateX(-1deg) rotate(1.5deg)
    scale(0.98);
}
.hv-back__inner.svelte-eghqz5 {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background: linear-gradient(145deg, #e91e8c0f, #7c3aed0d 40%, #f59e0b0a);
  border: 1.5px solid rgba(233, 30, 140, 0.08);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 32px #2d12480a, 0 2px 8px #e91e8c08;
}
@keyframes svelte-eghqz5-hvBackFloat {
  0%,
  to {
    transform: translate(-50%) rotateY(6deg) rotateX(-2deg) rotate(3deg);
  }
  50% {
    transform: translate(-50%) rotateY(4deg) rotateX(-1deg) rotate(2deg)
      translateY(-6px);
  }
}
.hv-main.svelte-eghqz5 {
  position: relative;
  z-index: 2;
  width: 280px;
  margin: 18px auto 0;
  border-radius: 22px;
  background: #fff;
  overflow: hidden;
  transform: rotateY(-3deg) rotateX(1deg);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.7s ease;
  box-shadow: 0 4px 8px #2d124808, 0 12px 28px #2d12480f, 0 28px 56px #2d12480d;
  animation: svelte-eghqz5-hvMainFloat 8s ease-in-out infinite;
}
.hv.svelte-eghqz5:hover .hv-main:where(.svelte-eghqz5) {
  transform: rotateY(0) rotateX(0) translateY(-8px);
  box-shadow: 0 8px 16px #2d12480a, 0 20px 40px #2d124814, 0 40px 80px #2d12480f;
}
@keyframes svelte-eghqz5-hvMainFloat {
  0%,
  to {
    transform: rotateY(-3deg) rotateX(1deg) translateY(0);
  }
  50% {
    transform: rotateY(-1.5deg) rotateX(0.5deg) translateY(-8px);
  }
}
.hv-main__photo.svelte-eghqz5 {
  width: 100%;
  aspect-ratio: 4 / 4.5;
  overflow: hidden;
  background: radial-gradient(
      ellipse at 50% 40%,
      rgba(233, 30, 140, 0.06) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 30% 80%,
      rgba(124, 58, 237, 0.04) 0%,
      transparent 50%
    ),
    linear-gradient(160deg, #fff5f9, #fef0ff 40%, #f8f5ff);
}
.hv-main__photo.svelte-eghqz5 img:where(.svelte-eghqz5) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.hv.svelte-eghqz5:hover
  .hv-main__photo:where(.svelte-eghqz5)
  img:where(.svelte-eghqz5) {
  transform: scale(1.04);
}
.hv-main__placeholder.svelte-eghqz5 {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hv-main__bar.svelte-eghqz5 {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #fff;
  border-top: 1px solid rgba(45, 18, 72, 0.04);
}
.hv-main__info.svelte-eghqz5 {
  flex: 1;
  min-width: 0;
}
.hv-main__name.svelte-eghqz5 {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--heading);
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hv-main__sub.svelte-eghqz5 {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.01em;
  margin-top: 2px;
}
.hv-main__arrow.svelte-eghqz5 {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f3f0f8, #ece8f4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--heading);
  flex-shrink: 0;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.hv.svelte-eghqz5:hover .hv-main__arrow:where(.svelte-eghqz5) {
  background: linear-gradient(135deg, var(--rose), #d4167f);
  color: #fff;
  transform: rotate(-45deg) scale(1.05);
  box-shadow: 0 4px 16px #e91e8c40;
}
.hv-accent.svelte-eghqz5 {
  position: absolute;
  z-index: 3;
  bottom: 10px;
  right: -5px;
  width: 150px;
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  transform: rotateY(4deg) rotateX(-2deg) rotate(-2deg);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.7s ease;
  box-shadow: 0 6px 16px #2d12480d, 0 16px 36px #2d12480f;
  animation: svelte-eghqz5-hvAccentFloat 9s ease-in-out infinite;
}
.hv.svelte-eghqz5:hover .hv-accent:where(.svelte-eghqz5) {
  transform: rotateY(1deg) rotateX(0) rotate(0) translateY(-6px);
  box-shadow: 0 10px 24px #2d12480f, 0 24px 48px #2d124814;
}
@keyframes svelte-eghqz5-hvAccentFloat {
  0%,
  to {
    transform: rotateY(4deg) rotateX(-2deg) rotate(-2deg) translateY(0);
  }
  50% {
    transform: rotateY(2deg) rotateX(-1deg) rotate(-1deg) translateY(-6px);
  }
}
.hv-accent__inner.svelte-eghqz5 {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: radial-gradient(
      ellipse at 50% 50%,
      rgba(124, 58, 237, 0.05) 0%,
      transparent 60%
    ),
    linear-gradient(160deg, #f8f5ff, #fff5f9);
}
.hv-accent__img.svelte-eghqz5 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.hv.svelte-eghqz5:hover .hv-accent__img:where(.svelte-eghqz5) {
  transform: scale(1.05);
}
.hv-accent__placeholder.svelte-eghqz5 {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hv-accent__btn.svelte-eghqz5 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), #d4167f);
  color: #fff;
  position: absolute;
  bottom: 10px;
  right: 10px;
  box-shadow: 0 4px 14px #e91e8c4d;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.hv.svelte-eghqz5:hover .hv-accent__btn:where(.svelte-eghqz5) {
  transform: scale(1.1);
  box-shadow: 0 6px 20px #e91e8c66;
}
.hv-badge.svelte-eghqz5 {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  border-radius: 50px;
  background: #fffffff0;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 14px #2d12480d, 0 1px 3px #2d12480a;
  font-size: 12.5px;
  font-weight: 500;
  white-space: nowrap;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hv-badge.svelte-eghqz5:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px #2d124814;
}
.hv-badge--top.svelte-eghqz5 {
  top: 0;
  right: 20px;
  color: #b45309;
  border-color: #f59e0b1a;
  animation: svelte-eghqz5-hvBadgeBob 7s ease-in-out infinite;
}
.hv-badge--verified.svelte-eghqz5 {
  bottom: 60px;
  left: -8px;
  color: #059669;
  border-color: #10b9811a;
  animation: svelte-eghqz5-hvBadgeBob 8s ease-in-out infinite reverse;
  animation-delay: -2s;
}
@keyframes svelte-eghqz5-hvBadgeBob {
  0%,
  to {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}
@media (max-width: 768px) {
  .cdp-hero.svelte-eghqz5 {
    padding: 48px 0 56px;
  }
  .cdp-hero-inner.svelte-eghqz5 {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
  }
  .cdp-h1.svelte-eghqz5 {
    font-size: 1.7rem;
  }
  .cdp-lead.svelte-eghqz5 {
    font-size: 13px;
  }
  .cdp-meta-item.svelte-eghqz5 {
    padding: 5px 14px;
    min-width: 70px;
  }
  .cdp-meta-val.svelte-eghqz5 {
    font-size: 1.15rem;
  }
  .hv.svelte-eghqz5 {
    max-width: 340px;
    min-height: 350px;
  }
  .hv-main.svelte-eghqz5 {
    width: 240px;
  }
  .hv-back.svelte-eghqz5 {
    width: 250px;
    height: 330px;
  }
  .hv-accent.svelte-eghqz5 {
    width: 130px;
    right: -2px;
    bottom: 8px;
  }
  .hv-accent__btn.svelte-eghqz5 {
    width: 30px;
    height: 30px;
  }
  .hv-badge.svelte-eghqz5 {
    font-size: 11px;
    padding: 5px 11px;
  }
}
@media (max-width: 480px) {
  .cdp-hero.svelte-eghqz5 {
    padding: 32px 0 36px;
  }
  .cdp-hero-inner.svelte-eghqz5 {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .cdp-h1.svelte-eghqz5 {
    font-size: 1.5rem;
  }
  .cdp-lead.svelte-eghqz5 {
    font-size: 13px;
    margin-bottom: 20px;
  }
  .cdp-meta.svelte-eghqz5 {
    padding: 8px;
    border-radius: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 0;
    width: 100%;
  }
  .cdp-meta-item.svelte-eghqz5 {
    padding: 6px 8px;
    min-width: auto;
  }
  .cdp-meta-item.svelte-eghqz5 + .cdp-meta-item:where(.svelte-eghqz5) {
    border-left: 1px solid rgba(45, 18, 72, 0.08);
  }
  .cdp-meta-val.svelte-eghqz5 {
    font-size: 1.05rem;
  }
  .cdp-actions.svelte-eghqz5 {
    flex-direction: column;
  }
  .cdp-actions.svelte-eghqz5 .btn-orange:where(.svelte-eghqz5),
  .cdp-actions.svelte-eghqz5 .cdp-btn-wa:where(.svelte-eghqz5) {
    width: 100%;
    justify-content: center;
  }
  .hv.svelte-eghqz5 {
    max-width: 300px;
    min-height: 340px;
    margin: 0 auto;
  }
  .hv-main.svelte-eghqz5 {
    width: 220px;
    transform: rotateY(0) rotateX(0);
  }
  @keyframes svelte-eghqz5-hvMainFloat {
    0%,
    to {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-6px);
    }
  }
  .hv-back.svelte-eghqz5 {
    width: 230px;
    height: 310px;
    transform: translate(-50%) rotate(2deg);
  }
  @keyframes svelte-eghqz5-hvBackFloat {
    0%,
    to {
      transform: translate(-50%) rotate(2deg);
    }
    50% {
      transform: translate(-50%) rotate(1deg) translateY(-5px);
    }
  }
  .hv-accent.svelte-eghqz5 {
    width: 120px;
    right: 0;
    bottom: 5px;
    transform: rotate(-1deg);
  }
  @keyframes svelte-eghqz5-hvAccentFloat {
    0%,
    to {
      transform: rotate(-1deg) translateY(0);
    }
    50% {
      transform: rotate(0) translateY(-5px);
    }
  }
  .hv-badge--top.svelte-eghqz5 {
    right: 5px;
  }
  .hv-badge--verified.svelte-eghqz5 {
    left: 0;
    bottom: 50px;
  }
}
.profile-page-band.svelte-eghqz5 {
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.profile-page.svelte-eghqz5 {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 44px;
  padding: 44px 24px 60px;
  align-items: start;
}
.profile-left.svelte-eghqz5 {
  position: sticky;
  top: 24px;
}
.profile-photo-card.svelte-eghqz5 {
  background: #fff;
  border: 1.5px solid rgba(233, 30, 140, 0.1);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  margin-bottom: 16px;
  box-shadow: 0 8px 28px #e91e8c0f;
  transition: all 0.3s ease;
}
.profile-photo-card.svelte-eghqz5:hover {
  box-shadow: 0 14px 36px #e91e8c1a;
  border-color: #e91e8c2e;
}
.photo-placeholder.svelte-eghqz5 {
  height: 360px;
  position: relative;
  background: var(--ph-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.photo-main.svelte-eghqz5 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  
  object-fit: scale-down;
  object-position: center top;
  display: block;
}
.photo-zoom-btn.svelte-eghqz5 {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px 7px 10px;
  background: #ffffffd9;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #c4186e;
  border: 1px solid rgba(233, 30, 140, 0.2);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 6px 18px #e91e8c2e;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.photo-zoom-btn.svelte-eghqz5:hover {
  transform: translateY(-1px);
  background: #fff;
  box-shadow: 0 10px 24px #e91e8c47;
}
.photo-zoom-btn.svelte-eghqz5:focus-visible {
  outline: 2px solid #e91e8c;
  outline-offset: 2px;
}
.zoom-overlay.svelte-eghqz5 {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10000;
  background: #fff0f7d1;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  animation: svelte-eghqz5-zoomFade 0.22s ease;
}
@keyframes svelte-eghqz5-zoomFade {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.zoom-figure.svelte-eghqz5 {
  position: relative;
  margin: 0;
  max-width: min(92vw, 900px);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  animation: svelte-eghqz5-zoomPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes svelte-eghqz5-zoomPop {
  0% {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.zoom-figure.svelte-eghqz5 img:where(.svelte-eghqz5) {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 30px 80px #2d124840, 0 0 0 1px #e91e8c1a;
}
.zoom-caption.svelte-eghqz5 {
  color: #2a1218;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 6px 14px;
  background: #ffffffbf;
  border: 1px solid rgba(233, 30, 140, 0.12);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.zoom-close.svelte-eghqz5 {
  position: fixed;
  top: clamp(16px, 3vw, 28px);
  right: clamp(16px, 3vw, 28px);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(233, 30, 140, 0.2);
  background: #fff;
  color: #c4186e;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  box-shadow: 0 8px 22px #2d12482e;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.zoom-close.svelte-eghqz5:hover {
  transform: rotate(90deg);
  background: linear-gradient(135deg, #e91e8c, #f43f5e);
  color: #fff;
  border-color: transparent;
}
.zoom-close.svelte-eghqz5:focus-visible {
  outline: 2px solid #e91e8c;
  outline-offset: 3px;
}
.zoom-nav.svelte-eghqz5 {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(233, 30, 140, 0.18);
  background: #ffffffe6;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #c4186e;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px #2d12482e;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease,
    box-shadow 0.2s ease;
}
.zoom-nav.svelte-eghqz5:hover {
  background: linear-gradient(135deg, #e91e8c, #f43f5e);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 14px 32px #e91e8c59;
}
.zoom-nav.svelte-eghqz5:focus-visible {
  outline: 2px solid #e91e8c;
  outline-offset: 3px;
}
.zoom-nav-prev.svelte-eghqz5 {
  left: clamp(10px, 3vw, 32px);
}
.zoom-nav-prev.svelte-eghqz5:hover {
  transform: translateY(-50%) translate(-3px);
}
.zoom-nav-next.svelte-eghqz5 {
  right: clamp(10px, 3vw, 32px);
}
.zoom-nav-next.svelte-eghqz5:hover {
  transform: translateY(-50%) translate(3px);
}
.zoom-img.svelte-eghqz5 {
  animation: svelte-eghqz5-zoomSlide 0.28s ease;
}
@keyframes svelte-eghqz5-zoomSlide {
  0% {
    opacity: 0;
    transform: scale(0.97);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.zoom-caption.svelte-eghqz5 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.zoom-caption-sep.svelte-eghqz5 {
  color: #2a121866;
}
.zoom-caption-count.svelte-eghqz5 {
  color: #c4186e;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
@media (max-width: 640px) {
  .zoom-nav.svelte-eghqz5 {
    width: 44px;
    height: 44px;
  }
}
.photo-silhouette.svelte-eghqz5 {
  position: relative;
  z-index: 1;
  opacity: 0.7;
}
.photo-glow.svelte-eghqz5 {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translate(-50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 60, 142, 0.12) 0%,
    transparent 70%
  );
}
.photo-badge.svelte-eghqz5 {
  position: absolute;
  top: 12px;
  font-size: 10px;
  font-weight: 500;
  padding: 5px 11px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 2;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.badge-gold.svelte-eghqz5 {
  left: 12px;
  background: linear-gradient(135deg, var(--gold), #e6a020);
  color: #000;
}
.badge-rose.svelte-eghqz5 {
  right: 12px;
  background: #ff3c8ee0;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.rating-chip.svelte-eghqz5 {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #ffffffe0;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #92400e;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 30px;
  box-shadow: 0 2px 12px #0000001a, inset 0 1px #fffc;
  white-space: nowrap;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.rating-chip.svelte-eghqz5:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px #f59e0b2e, inset 0 1px #ffffffe6;
}
.rating-chip--photo.svelte-eghqz5 {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 2;
}
.rating-chip--lg.svelte-eghqz5 {
  font-size: 13px;
  padding: 7px 14px;
  gap: 6px;
  flex-shrink: 0;
}
.bk-section.svelte-eghqz5 {
  background: radial-gradient(
      ellipse at 20% 0%,
      rgba(233, 30, 140, 0.04) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 100%,
      rgba(124, 58, 237, 0.04) 0%,
      transparent 50%
    ),
    linear-gradient(160deg, #fff8fb, #fef8ff, #faf5ff 60%, #fffaf5);
  border: 1px solid rgba(233, 30, 140, 0.08);
  border-radius: 24px;
  padding: 28px 24px 24px;
  margin-bottom: 28px;
  box-shadow: 0 4px 24px #e91e8c0d;
}
.bk-section-head.svelte-eghqz5 {
  text-align: center;
  margin-bottom: 24px;
}
.bk-section-title.svelte-eghqz5 {
  font-size: 20px;
  font-weight: 600;
  color: var(--heading);
  letter-spacing: -0.03em;
  margin: 0 0 4px;
}
.bk-section-sub.svelte-eghqz5 {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dim);
}
.bk-tiles.svelte-eghqz5 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.bk-tile.svelte-eghqz5 {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 18px;
  padding: 22px 16px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: default;
}
.bk-tile.svelte-eghqz5:hover {
  transform: translateY(-6px);
}
.bk-tile-deco.svelte-eghqz5 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 18px 18px 0 0;
}
.bk-tile-icon.svelte-eghqz5 {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.bk-tile-dur.svelte-eghqz5 {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.bk-tile-price.svelte-eghqz5 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}
.bk-tile-tag.svelte-eghqz5 {
  font-size: 10px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}
.bk-tile-badge.svelte-eghqz5 {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 6px;
}
.bk-tile--rose.svelte-eghqz5 {
  border: 1.5px solid rgba(233, 30, 140, 0.12);
  box-shadow: 0 6px 20px #e91e8c14;
}
.bk-tile--rose.svelte-eghqz5:hover {
  box-shadow: 0 14px 32px #e91e8c26;
}
.bk-tile--rose.svelte-eghqz5 .bk-tile-deco:where(.svelte-eghqz5) {
  background: linear-gradient(90deg, #f472b6, #e91e8c);
}
.bk-tile--rose.svelte-eghqz5 .bk-tile-icon:where(.svelte-eghqz5) {
  background: linear-gradient(145deg, #fff0f6, #ffe0ef);
  color: #e91e8c;
}
.bk-tile--rose.svelte-eghqz5 .bk-tile-dur:where(.svelte-eghqz5) {
  color: #e91e8c;
}
.bk-tile--rose.svelte-eghqz5 .bk-tile-price:where(.svelte-eghqz5) {
  color: #be185d;
}
.bk-tile--rose.svelte-eghqz5 .bk-tile-tag:where(.svelte-eghqz5) {
  background: #e91e8c14;
  color: #e91e8c;
}
.bk-tile--violet.svelte-eghqz5 {
  border: 1.5px solid rgba(124, 58, 237, 0.15);
  box-shadow: 0 6px 20px #7c3aed1a;
}
.bk-tile--violet.svelte-eghqz5:hover {
  box-shadow: 0 14px 32px #7c3aed2e;
}
.bk-tile--violet.svelte-eghqz5 .bk-tile-deco:where(.svelte-eghqz5) {
  background: linear-gradient(90deg, #a78bfa, #7c3aed);
}
.bk-tile--violet.svelte-eghqz5 .bk-tile-icon:where(.svelte-eghqz5) {
  background: linear-gradient(145deg, #f5f0ff, #ede5ff);
  color: #7c3aed;
}
.bk-tile--violet.svelte-eghqz5 .bk-tile-dur:where(.svelte-eghqz5) {
  color: #7c3aed;
}
.bk-tile--violet.svelte-eghqz5 .bk-tile-price:where(.svelte-eghqz5) {
  color: #5b21b6;
}
.bk-tile--violet.svelte-eghqz5 .bk-tile-tag:where(.svelte-eghqz5) {
  background: #7c3aed14;
  color: #7c3aed;
}
.bk-tile--violet.svelte-eghqz5 .bk-tile-badge:where(.svelte-eghqz5) {
  background: linear-gradient(135deg, #a78bfa, #7c3aed);
  color: #fff;
}
.bk-tile--pop.svelte-eghqz5 {
  transform: scale(1.04);
  box-shadow: 0 8px 28px #7c3aed24;
}
.bk-tile--pop.svelte-eghqz5:hover {
  transform: scale(1.04) translateY(-6px);
}
.bk-tile--amber.svelte-eghqz5 {
  border: 1.5px solid rgba(245, 158, 11, 0.15);
  box-shadow: 0 6px 20px #f59e0b14;
}
.bk-tile--amber.svelte-eghqz5:hover {
  box-shadow: 0 14px 32px #f59e0b29;
}
.bk-tile--amber.svelte-eghqz5 .bk-tile-deco:where(.svelte-eghqz5) {
  background: linear-gradient(90deg, #fbbf24, #d97706);
}
.bk-tile--amber.svelte-eghqz5 .bk-tile-icon:where(.svelte-eghqz5) {
  background: linear-gradient(145deg, #fffbeb, #fef3c7);
  color: #d97706;
}
.bk-tile--amber.svelte-eghqz5 .bk-tile-dur:where(.svelte-eghqz5) {
  color: #d97706;
}
.bk-tile--amber.svelte-eghqz5 .bk-tile-price:where(.svelte-eghqz5) {
  color: #92400e;
}
.bk-tile--amber.svelte-eghqz5 .bk-tile-tag:where(.svelte-eghqz5) {
  background: #f59e0b14;
  color: #d97706;
}
.bk-status-row.svelte-eghqz5 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding: 0 4px;
}
.bk-status-pill.svelte-eghqz5 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 50px;
  background: #fff;
  border: 1px solid rgba(16, 185, 129, 0.12);
  color: #059669;
  white-space: nowrap;
}
.bk-status-pill--rose.svelte-eghqz5 {
  border-color: #e91e8c1f;
  color: #e91e8c;
}
.bk-status-dot.svelte-eghqz5 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px #10b9812e;
  animation: svelte-eghqz5-bkPulse 2s ease-in-out infinite;
}
@keyframes svelte-eghqz5-bkPulse {
  0%,
  to {
    box-shadow: 0 0 0 3px #10b9812e;
  }
  50% {
    box-shadow: 0 0 0 6px #10b9810f, 0 0 10px #10b98140;
  }
}
.bk-status-line.svelte-eghqz5 {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, #10b98133, #e91e8c26);
}
.bk-cta.svelte-eghqz5 {
  display: flex;
  gap: 10px;
}
.bk-btn-wa.svelte-eghqz5 {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #25d366, #1fbd5a);
  color: #fff;
  padding: 14px 20px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 6px 20px #25d36633;
  transition: all 0.3s ease;
}
.bk-btn-wa.svelte-eghqz5:hover {
  transform: translateY(-3px);
  color: #fff;
  box-shadow: 0 10px 28px #25d3664d;
}
.bk-btn-call.svelte-eghqz5 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: var(--rose);
  padding: 14px 20px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1.5px solid rgba(233, 30, 140, 0.12);
  transition: all 0.3s ease;
}
.bk-btn-call.svelte-eghqz5:hover {
  transform: translateY(-3px);
  color: var(--rose);
  box-shadow: 0 6px 18px #e91e8c1a;
}
.ph-block.svelte-eghqz5 {
  background: radial-gradient(
      ellipse at 0% 50%,
      rgba(233, 30, 140, 0.04) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 100% 0%,
      rgba(124, 58, 237, 0.03) 0%,
      transparent 60%
    ),
    linear-gradient(155deg, #fff8fb, #fef8ff 40%, #faf8ff, #f8faff);
  border: 1px solid rgba(233, 30, 140, 0.08);
  border-radius: 24px;
  padding: 28px 28px 24px;
  margin-bottom: 28px;
  box-shadow: 0 4px 24px #e91e8c0d;
}
.ph-top.svelte-eghqz5 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.ph-name-wrap.svelte-eghqz5 {
  flex: 1;
  min-width: 0;
}
.ph-name.svelte-eghqz5 {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--heading);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 6px;
}
.ph-verified-badge.svelte-eghqz5 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), #d4167f);
  box-shadow: 0 3px 10px #e91e8c4d;
  flex-shrink: 0;
}
.ph-sub.svelte-eghqz5 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 7px 14px 7px 12px;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.4;
  color: #831843;
  background: linear-gradient(135deg, #fdf2f8, #fce7f3);
  border: 1px solid rgba(233, 30, 140, 0.22);
  border-radius: 18px;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 14px -6px #e91e8c40;
  max-width: 100%;
  white-space: normal;
}
.ph-sub.svelte-eghqz5:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e91e8c, #f43f5e);
  box-shadow: 0 0 10px #e91e8c99;
  flex-shrink: 0;
  animation: svelte-eghqz5-phSubPulse 1.8s ease-in-out infinite;
}
@keyframes svelte-eghqz5-phSubPulse {
  0%,
  to {
    transform: scale(1);
    box-shadow: 0 0 10px #e91e8c99;
  }
  50% {
    transform: scale(1.25);
    box-shadow: 0 0 14px #e91e8ce6;
  }
}
.ph-tags.svelte-eghqz5 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ph-tag.svelte-eghqz5 {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.ph-tag.svelte-eghqz5:hover {
  transform: translateY(-2px);
}
.ph-tag--rose.svelte-eghqz5 {
  background: linear-gradient(135deg, #fff0f6, #ffe0ef);
  color: #e91e8c;
  border-color: #e91e8c1f;
  box-shadow: 0 3px 10px #e91e8c14;
}
.ph-tag--rose.svelte-eghqz5:hover {
  box-shadow: 0 6px 18px #e91e8c26;
}
.ph-tag--violet.svelte-eghqz5 {
  background: linear-gradient(135deg, #f5f0ff, #ede5ff);
  color: #7c3aed;
  border-color: #7c3aed1a;
  box-shadow: 0 3px 10px #7c3aed0f;
}
.ph-tag--violet.svelte-eghqz5:hover {
  box-shadow: 0 6px 18px #7c3aed24;
}
.ph-tag--amber.svelte-eghqz5 {
  background: linear-gradient(135deg, #fffbeb, #fff3d0);
  color: #d97706;
  border-color: #f59e0b1f;
  box-shadow: 0 3px 10px #f59e0b0f;
}
.ph-tag--amber.svelte-eghqz5:hover {
  box-shadow: 0 6px 18px #f59e0b24;
  color: #d97706;
}
.ph-tag--teal.svelte-eghqz5 {
  background: linear-gradient(135deg, #f0fdfa, #ccfbf1);
  color: #0d9488;
  border-color: #0d94881a;
  box-shadow: 0 3px 10px #0d94880f;
}
.ph-tag--teal.svelte-eghqz5:hover {
  box-shadow: 0 6px 18px #0d948824;
  color: #0d9488;
}
.ph-about.svelte-eghqz5 {
  background: radial-gradient(
      ellipse at 100% 0%,
      rgba(124, 58, 237, 0.03) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 0% 100%,
      rgba(245, 158, 11, 0.03) 0%,
      transparent 60%
    ),
    linear-gradient(160deg, #fff8fb, #fef8ff 40%, #fffaf7);
  border: 1px solid rgba(124, 58, 237, 0.07);
  border-radius: 20px;
  padding: 24px 26px;
  margin-bottom: 28px;
  box-shadow: 0 3px 18px #7c3aed0a;
  transition: all 0.3s ease;
}
.ph-about.svelte-eghqz5:hover {
  box-shadow: 0 6px 24px #7c3aed14;
  border-color: #7c3aed1f;
}
.ph-about-header.svelte-eghqz5 {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.ph-about-title.svelte-eghqz5 {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading);
  letter-spacing: -0.02em;
  margin: 0;
  white-space: nowrap;
}
.ph-about-line.svelte-eghqz5 {
  flex: 1;
  height: 2.5px;
  border-radius: 4px;
  background: linear-gradient(
    90deg,
    var(--rose),
    rgba(124, 58, 237, 0.3),
    transparent
  );
}
.ph-about-body.svelte-eghqz5 {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ph-about-text.svelte-eghqz5 {
  color: var(--text-muted);
  line-height: 1.85;
  font-size: 14.5px;
  margin: 0;
}
.ph-about-text.svelte-eghqz5 .ph-about-link {
  color: var(--rose);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  transition: color 0.18s ease;
}
.ph-about-text.svelte-eghqz5 .ph-about-link:hover {
  color: var(--rose-dark);
}
.profile-section.svelte-eghqz5 {
  margin-bottom: 28px;
}
.ndt.svelte-eghqz5 {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}
.ndt-head.svelte-eghqz5 {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.ndt-badge.svelte-eghqz5 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--violet));
  padding: 6px 14px;
  border-radius: 50px;
}
.ndt-badge.svelte-eghqz5 svg:where(.svelte-eghqz5) {
  color: #fff;
}
.ndt-title.svelte-eghqz5 {
  font-size: 22px;
  font-weight: 600;
  color: var(--heading);
  letter-spacing: -0.03em;
  margin: 0;
}
.ndt-grid.svelte-eghqz5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}
.ndt-item.svelte-eghqz5 {
  --accent: #e91e8c;
  --accent-soft: rgba(233, 30, 140, 0.08);
  --accent-glow: rgba(233, 30, 140, 0.14);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, #fff, #fff8fb);
  border: 1px solid var(--accent-soft);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease, border-color 0.3s ease;
}
.ndt-item.svelte-eghqz5:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(135deg, var(--accent-soft) 0%, transparent 65%);
  opacity: 0.7;
  pointer-events: none;
}
.ndt-item.svelte-eghqz5:after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.08;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.ndt-item.svelte-eghqz5:hover {
  transform: translateY(-3px);
  border-color: var(--accent-glow);
  box-shadow: 0 14px 34px #2d124814;
}
.ndt-item.svelte-eghqz5:hover:after {
  opacity: 0.16;
  transform: scale(1.15);
}
.ndt-item__ic.svelte-eghqz5 {
  position: relative;
  z-index: 1;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-glow);
  color: var(--accent);
  box-shadow: inset 0 0 0 1px #ffffff80;
}
.ndt-item__meta.svelte-eghqz5 {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  flex: 1;
}
.ndt-item__label.svelte-eghqz5 {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.ndt-item__val.svelte-eghqz5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading);
  letter-spacing: 0;
  line-height: 1.25;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}
.ndt-item__val.svelte-eghqz5 small:where(.svelte-eghqz5) {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0;
}
.ndt-stars.svelte-eghqz5 {
  display: inline-flex;
  gap: 1px;
  margin-left: 2px;
}
.ndt-dot.svelte-eghqz5 {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px #10b98126;
}
@keyframes svelte-eghqz5-ndtPulse {
  0%,
  to {
    box-shadow: 0 0 0 3px #10b98126;
  }
  50% {
    box-shadow: 0 0 0 6px #10b9810d, 0 0 14px #10b9814d;
  }
}
.ndt-item--rose.svelte-eghqz5 {
  --accent: #e91e8c;
  --accent-soft: rgba(233, 30, 140, 0.1);
  --accent-glow: rgba(233, 30, 140, 0.15);
}
.ndt-item--amber.svelte-eghqz5 {
  --accent: #d97706;
  --accent-soft: rgba(217, 119, 6, 0.1);
  --accent-glow: rgba(217, 119, 6, 0.15);
}
.ndt-item--violet.svelte-eghqz5 {
  --accent: #7c3aed;
  --accent-soft: rgba(124, 58, 237, 0.1);
  --accent-glow: rgba(124, 58, 237, 0.15);
}
.ndt-item--teal.svelte-eghqz5 {
  --accent: #059669;
  --accent-soft: rgba(5, 150, 105, 0.1);
  --accent-glow: rgba(5, 150, 105, 0.15);
}
.ndt-item--gold.svelte-eghqz5 {
  --accent: #b45309;
  --accent-soft: rgba(245, 158, 11, 0.12);
  --accent-glow: rgba(245, 158, 11, 0.18);
}
.ndt-item--sky.svelte-eghqz5 {
  --accent: #0284c7;
  --accent-soft: rgba(2, 132, 199, 0.1);
  --accent-glow: rgba(2, 132, 199, 0.15);
}
.ndt-item--emerald.svelte-eghqz5 {
  --accent: #059669;
  --accent-soft: rgba(16, 185, 129, 0.1);
  --accent-glow: rgba(16, 185, 129, 0.15);
}
.ndt-item--orange.svelte-eghqz5 {
  --accent: #ea580c;
  --accent-soft: rgba(234, 88, 12, 0.1);
  --accent-glow: rgba(234, 88, 12, 0.15);
}
.scam-alert.svelte-eghqz5 {
  margin-top: 24px;
  padding: 18px;
  background: linear-gradient(135deg, #fff5f5, #ffe8e8);
  border: 1.5px solid #ef4444;
  border-radius: 18px;
  box-shadow: 0 10px 28px #ef444414;
  position: relative;
  overflow: hidden;
}
.scam-alert.svelte-eghqz5:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ef4444, #f97316, #ef4444);
  background-size: 200% 100%;
  animation: svelte-eghqz5-scamBar 4s linear infinite;
}
@keyframes svelte-eghqz5-scamBar {
  0% {
    background-position: 0% 0;
  }
  to {
    background-position: 200% 0;
  }
}
.scam-head.svelte-eghqz5 {
  display: flex;
  align-items: center;
  gap: 14px;
}
.scam-head__ic.svelte-eghqz5 {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px #ef444459;
  flex-shrink: 0;
}
.scam-head__text.svelte-eghqz5 {
  flex: 1;
  min-width: 0;
}
.scam-title.svelte-eghqz5 {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: #7f1d1d;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.scam-badge.svelte-eghqz5 {
  color: #dc2626;
  font-weight: 600;
}
.scam-sub.svelte-eghqz5 {
  margin: 4px 0 0;
  font-size: 13px;
  color: #991b1b;
  line-height: 1.4;
  font-weight: 500;
}
.scam-toggle.svelte-eghqz5 {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 12.5px;
  font-weight: 500;
  font-family: inherit;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 4px 12px #ef44444d;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.scam-toggle.svelte-eghqz5:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px #ef444466;
}
.scam-toggle.svelte-eghqz5:focus-visible {
  outline: 2px solid #dc2626;
  outline-offset: 2px;
}
.scam-chev.svelte-eghqz5 {
  transition: transform 0.3s ease;
}
.scam-alert--open.svelte-eghqz5 .scam-chev:where(.svelte-eghqz5) {
  transform: rotate(180deg);
}
.scam-body.svelte-eghqz5 {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed rgba(239, 68, 68, 0.3);
  animation: svelte-eghqz5-scamReveal 0.3s ease;
}
@keyframes svelte-eghqz5-scamReveal {
  0% {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.scam-rules.svelte-eghqz5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 10px;
}
.scam-rule.svelte-eghqz5 {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid rgba(239, 68, 68, 0.12);
  border-radius: 12px;
  box-shadow: 0 2px 6px #7f1d1d0a;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.scam-rule.svelte-eghqz5:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px #7f1d1d14;
  border-color: #ef444440;
}
.scam-rule.svelte-eghqz5 p:where(.svelte-eghqz5) {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: #7f1d1d;
  flex: 1;
}
.scam-rule.svelte-eghqz5 p:where(.svelte-eghqz5) strong:where(.svelte-eghqz5) {
  font-weight: 600;
}
.scam-rule__ic.svelte-eghqz5 {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.scam-rule--no.svelte-eghqz5 .scam-rule__ic:where(.svelte-eghqz5) {
  background: #ef44441f;
  color: #dc2626;
}
.scam-rule--yes.svelte-eghqz5 .scam-rule__ic:where(.svelte-eghqz5) {
  background: #10b98126;
  color: #059669;
}
.scam-rule--no.svelte-eghqz5
  p:where(.svelte-eghqz5)
  strong:where(.svelte-eghqz5) {
  color: #dc2626;
}
.scam-rule--yes.svelte-eghqz5
  p:where(.svelte-eghqz5)
  strong:where(.svelte-eghqz5) {
  color: #047857;
}
.scam-report.svelte-eghqz5 {
  margin-top: 14px;
  padding: 12px 14px;
  background: #ef444414;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 600;
  color: #7f1d1d;
  text-align: center;
}
.scam-report.svelte-eghqz5 svg:where(.svelte-eghqz5) {
  color: #dc2626;
  flex-shrink: 0;
}
.scam-report.svelte-eghqz5 a:where(.svelte-eghqz5) {
  color: #dc2626;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.scam-report.svelte-eghqz5 a:where(.svelte-eghqz5):hover {
  color: #991b1b;
}
@media (max-width: 640px) {
  .scam-alert.svelte-eghqz5 {
    padding: 14px;
  }
  .scam-head.svelte-eghqz5 {
    flex-wrap: wrap;
  }
  .scam-head__ic.svelte-eghqz5 {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
  }
  .scam-title.svelte-eghqz5 {
    font-size: 14px;
  }
  .scam-sub.svelte-eghqz5 {
    font-size: 12px;
  }
  .scam-toggle.svelte-eghqz5 {
    order: 3;
    width: 100%;
    justify-content: center;
    margin-top: 6px;
  }
  .scam-head__text.svelte-eghqz5 {
    flex-basis: calc(100% - 52px);
  }
  .scam-rules.svelte-eghqz5 {
    grid-template-columns: 1fr;
  }
  .scam-rule.svelte-eghqz5 {
    padding: 10px 12px;
  }
  .scam-rule.svelte-eghqz5 p:where(.svelte-eghqz5) {
    font-size: 12.5px;
  }
  .scam-report.svelte-eghqz5 {
    font-size: 12px;
    padding: 10px 12px;
  }
}
.gs-section.svelte-eghqz5 {
  padding: 80px 0;
  background: radial-gradient(
      ellipse at 20% 50%,
      rgba(233, 30, 140, 0.04) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 50%,
      rgba(124, 58, 237, 0.04) 0%,
      transparent 50%
    ),
    linear-gradient(180deg, #fff, #fdf6fb 40%, #faf5ff, #fff);
  border-top: 1px solid rgba(233, 30, 140, 0.05);
  border-bottom: 1px solid rgba(124, 58, 237, 0.05);
  overflow: hidden;
}
.gs-grid.svelte-eghqz5 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.gs-badge-wrap.svelte-eghqz5 {
  text-align: center;
  margin-bottom: 24px;
}
.gs-badge.svelte-eghqz5 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--rose);
  padding: 8px 20px;
  background: #e91e8c0d;
  border: 1px solid rgba(233, 30, 140, 0.1);
  border-radius: 50px;
}
.gs-badge__dot.svelte-eghqz5 {
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--rose);
}
.gs-header.svelte-eghqz5 {
  text-align: center;
  margin-bottom: 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.gs-title.svelte-eghqz5 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--heading);
  margin: 0 0 14px;
}
.gs-title__grad.svelte-eghqz5 {
  background: linear-gradient(135deg, var(--rose), #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gs-subtitle.svelte-eghqz5 {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0;
}
.gs-left-head.svelte-eghqz5 {
  margin-bottom: 24px;
}
.gs-left-title.svelte-eghqz5 {
  font-size: 22px;
  font-weight: 600;
  color: var(--heading);
  letter-spacing: -0.03em;
  margin: 0 0 8px;
  line-height: 1.2;
}
.gs-left-title.svelte-eghqz5 span:where(.svelte-eghqz5) {
  background: linear-gradient(135deg, var(--rose), #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gs-left-sub.svelte-eghqz5 {
  font-size: 13.5px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}
.gs-cards.svelte-eghqz5 {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.gs-card.svelte-eghqz5 {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid transparent;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: default;
}
.gs-card.svelte-eghqz5:hover {
  transform: translateY(-3px);
}
.gs-card__icon.svelte-eghqz5 {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.35s ease;
}
.gs-card.svelte-eghqz5:hover .gs-card__icon:where(.svelte-eghqz5) {
  transform: scale(1.1) rotate(-5deg);
}
.gs-card__tag.svelte-eghqz5 {
  display: inline-block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  padding: 3px 8px;
  border-radius: 6px;
  margin-bottom: 6px;
}
.gs-card__body.svelte-eghqz5 h4:where(.svelte-eghqz5) {
  font-size: 16px;
  font-weight: 500;
  color: var(--heading);
  margin: 0 0 5px;
  letter-spacing: -0.01em;
}
.gs-card__body.svelte-eghqz5 p:where(.svelte-eghqz5) {
  font-size: 13px;
  color: var(--text-dim);
  margin: 0;
  line-height: 1.55;
}
.gs-card--rose.svelte-eghqz5 {
  background: linear-gradient(135deg, #fff0f6b3, #ffe4ef66);
  border-color: #e91e8c14;
}
.gs-card--rose.svelte-eghqz5:hover {
  box-shadow: 0 8px 28px #e91e8c1a;
}
.gs-card--rose.svelte-eghqz5 .gs-card__icon:where(.svelte-eghqz5) {
  background: #e91e8c1a;
  color: #e91e8c;
}
.gs-card--rose.svelte-eghqz5 .gs-card__tag:where(.svelte-eghqz5) {
  background: #e91e8c14;
  color: #e91e8c;
}
.gs-card--violet.svelte-eghqz5 {
  background: linear-gradient(135deg, #f8f5ffb3, #ede5ff66);
  border-color: #7c3aed14;
}
.gs-card--violet.svelte-eghqz5:hover {
  box-shadow: 0 8px 28px #7c3aed1a;
}
.gs-card--violet.svelte-eghqz5 .gs-card__icon:where(.svelte-eghqz5) {
  background: #7c3aed1a;
  color: #7c3aed;
}
.gs-card--violet.svelte-eghqz5 .gs-card__tag:where(.svelte-eghqz5) {
  background: #7c3aed14;
  color: #7c3aed;
}
.gs-card--teal.svelte-eghqz5 {
  background: linear-gradient(135deg, #f0fdfab3, #d1fae54d);
  border-color: #0d948814;
}
.gs-card--teal.svelte-eghqz5:hover {
  box-shadow: 0 8px 28px #0d94881a;
}
.gs-card--teal.svelte-eghqz5 .gs-card__icon:where(.svelte-eghqz5) {
  background: #0d94881a;
  color: #0d9488;
}
.gs-card--teal.svelte-eghqz5 .gs-card__tag:where(.svelte-eghqz5) {
  background: #0d948814;
  color: #0d9488;
}
.gs-card--amber.svelte-eghqz5 {
  background: linear-gradient(135deg, #fffcf0b3, #fef3c74d);
  border-color: #f59e0b14;
}
.gs-card--amber.svelte-eghqz5:hover {
  box-shadow: 0 8px 28px #f59e0b1a;
}
.gs-card--amber.svelte-eghqz5 .gs-card__icon:where(.svelte-eghqz5) {
  background: #f59e0b1a;
  color: #d97706;
}
.gs-card--amber.svelte-eghqz5 .gs-card__tag:where(.svelte-eghqz5) {
  background: #f59e0b14;
  color: #d97706;
}
.gs-right.svelte-eghqz5 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.bm-diagram.svelte-eghqz5 {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}
.bm-figure.svelte-eghqz5 {
  display: flex;
  justify-content: center;
  pointer-events: none;
  position: relative;
  width: 100%;
}
.bm-diagram.svelte-eghqz5 .gs-girl-img:where(.svelte-eghqz5) {
  width: clamp(200px, 56%, 420px);
  height: auto;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
  display: block;
}
.bm-label.svelte-eghqz5 {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  opacity: 0;
  animation: svelte-eghqz5-bmIn 0.5s ease-out forwards;
}
.bm-dot.svelte-eghqz5 {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff1d4, #f59e0b 45%, #e91e8c);
  border: 2px solid #fff;
  box-shadow: 0 0 0 3px #e91e8c29, 0 0 14px #f59e0b59;
  flex-shrink: 0;
  animation: svelte-eghqz5-bmPulse 2.8s ease-in-out infinite;
}
@keyframes svelte-eghqz5-bmPulse {
  0%,
  to {
    box-shadow: 0 0 0 3px #e91e8c29, 0 0 14px #f59e0b59;
  }
  50% {
    box-shadow: 0 0 0 6px #e91e8c0f, 0 0 22px #e91e8c73;
  }
}
.bm-line.svelte-eghqz5 {
  flex: 1;
  height: 0;
  border-top: 1.5px dashed rgba(233, 30, 140, 0.38);
  min-width: 20px;
}
.bm-label__box.svelte-eghqz5 {
  position: relative;
  background: linear-gradient(135deg, #fffffff5, #fff5fae0);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(233, 30, 140, 0.08);
  border-radius: 14px;
  padding: 9px 16px;
  box-shadow: 0 1px #fffffff2 inset, 0 10px 24px -10px #c2185b38,
    0 4px 12px #2d12480a;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease, border-color 0.35s ease;
  flex-shrink: 0;
  isolation: isolate;
}
.bm-label__box.svelte-eghqz5:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: inherit;
  padding: 1.2px;
  background: linear-gradient(135deg, #e91e8c, #fb7185 40%, #f59e0b);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.55;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.bm-label__box.svelte-eghqz5:after {
  content: "";
  position: absolute;
  top: 1px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.9),
    transparent
  );
  pointer-events: none;
}
.bm-label.svelte-eghqz5:hover .bm-label__box:where(.svelte-eghqz5) {
  transform: translateY(-3px);
  box-shadow: 0 1px #fffffff2 inset, 0 18px 36px -12px #e91e8c59,
    0 6px 16px #f59e0b1f;
  border-color: #e91e8c29;
}
.bm-label.svelte-eghqz5:hover .bm-label__box:where(.svelte-eghqz5):before {
  opacity: 0.95;
}
.bm-label__box--left.svelte-eghqz5 {
  text-align: right;
}
.bm-label__box--right.svelte-eghqz5 {
  text-align: left;
}
.bm-label__title.svelte-eghqz5 {
  display: block;
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 3px;
  background: linear-gradient(135deg, #e91e8c, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bm-label__val.svelte-eghqz5 {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: -0.02em;
  line-height: 1.15;
  font-variant-numeric: tabular-nums;
}
.bm-figure.svelte-eghqz5 {
  overflow: visible;
}
.bm-label--hair.svelte-eghqz5,
.bm-label--bust.svelte-eghqz5,
.bm-label--waist.svelte-eghqz5,
.bm-label--age.svelte-eghqz5 {
  right: auto;
}
.bm-label--eyes.svelte-eghqz5,
.bm-label--height.svelte-eghqz5,
.bm-label--nationality.svelte-eghqz5,
.bm-label--weight.svelte-eghqz5 {
  left: auto;
}
.bm-label--hair.svelte-eghqz5 {
  top: 3%;
  left: 0;
  right: 55%;
  animation-delay: 0.05s;
}
.bm-label--eyes.svelte-eghqz5 {
  top: 9%;
  left: 50%;
  right: 0;
  animation-delay: 0.1s;
}
.bm-label--height.svelte-eghqz5 {
  top: 20%;
  left: 63%;
  right: 0;
  animation-delay: 0.15s;
}
.bm-label--bust.svelte-eghqz5 {
  top: 27%;
  left: 0;
  right: 63%;
  animation-delay: 0.2s;
}
.bm-label--nationality.svelte-eghqz5 {
  top: 33%;
  left: 57%;
  right: 0;
  animation-delay: 0.25s;
}
.bm-label--waist.svelte-eghqz5 {
  top: 40%;
  left: 0;
  right: 67%;
  animation-delay: 0.3s;
}
.bm-label--weight.svelte-eghqz5 {
  top: 48%;
  left: 59%;
  right: 0;
  animation-delay: 0.35s;
}
.bm-label--age.svelte-eghqz5 {
  top: 57%;
  left: 0;
  right: 62%;
  animation-delay: 0.4s;
}
@keyframes svelte-eghqz5-bmIn {
  0% {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.gs-right.svelte-eghqz5 {
  min-width: 0;
  overflow: hidden;
}
@media (max-width: 1100px) {
  .bm-diagram.svelte-eghqz5 .gs-girl-img:where(.svelte-eghqz5) {
    width: clamp(180px, 48%, 360px);
  }
  .bm-label__box.svelte-eghqz5 {
    padding: 8px 12px;
  }
  .bm-label__val.svelte-eghqz5 {
    font-size: 15px;
  }
  .bm-line.svelte-eghqz5 {
    min-width: 12px;
  }
}
@media (max-width: 768px) {
  .gs-section.svelte-eghqz5 {
    padding: 50px 0;
  }
  .gs-grid.svelte-eghqz5 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .gs-right.svelte-eghqz5 {
    order: -1;
    overflow: visible;
  }
  .bm-diagram.svelte-eghqz5 {
    max-width: 600px;
  }
  .bm-diagram.svelte-eghqz5 .gs-girl-img:where(.svelte-eghqz5) {
    width: clamp(240px, 50%, 340px);
  }
  .bm-label__val.svelte-eghqz5 {
    font-size: 16px;
  }
  .bm-label__box.svelte-eghqz5 {
    padding: 8px 12px;
  }
  .bm-dot.svelte-eghqz5 {
    width: 8px;
    height: 8px;
  }
  .bm-label--hair.svelte-eghqz5,
  .bm-label--bust.svelte-eghqz5,
  .bm-label--waist.svelte-eghqz5,
  .bm-label--age.svelte-eghqz5 {
    left: 0;
  }
  .bm-label--eyes.svelte-eghqz5,
  .bm-label--height.svelte-eghqz5,
  .bm-label--nationality.svelte-eghqz5,
  .bm-label--weight.svelte-eghqz5 {
    right: 0;
  }
}
@media (max-width: 580px) {
  .bm-diagram.svelte-eghqz5 {
    max-width: 100%;
  }
  .bm-diagram.svelte-eghqz5 .gs-girl-img:where(.svelte-eghqz5) {
    width: clamp(200px, 48%, 280px);
  }
  .bm-label__box.svelte-eghqz5 {
    padding: 6px 9px;
    border-radius: 10px;
  }
  .bm-label__val.svelte-eghqz5 {
    font-size: 13px;
  }
  .bm-label__title.svelte-eghqz5 {
    font-size: 8px;
    letter-spacing: 0.08em;
  }
  .bm-line.svelte-eghqz5 {
    min-width: 8px;
  }
}
@media (max-width: 480px) {
  .gs-section.svelte-eghqz5 {
    padding: 40px 0;
  }
  .gs-card.svelte-eghqz5 {
    padding: 16px 18px;
  }
  .bm-diagram.svelte-eghqz5 .gs-girl-img:where(.svelte-eghqz5) {
    width: clamp(180px, 46%, 220px);
  }
  .bm-label__box.svelte-eghqz5 {
    padding: 5px 7px;
    border-radius: 8px;
  }
  .bm-label__val.svelte-eghqz5 {
    font-size: 11.5px;
  }
  .bm-label__title.svelte-eghqz5 {
    font-size: 7px;
  }
  .bm-dot.svelte-eghqz5 {
    width: 6px;
    height: 6px;
  }
  .bm-line.svelte-eghqz5 {
    min-width: 6px;
  }
}
.services-wrap.svelte-eghqz5 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.svc-tag.svelte-eghqz5 {
  background: #ff3c8e12;
  color: var(--rose);
  border: 1px solid rgba(255, 60, 142, 0.2);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.rel-section.svelte-eghqz5 {
  padding: 70px 0 80px;
  background: radial-gradient(
      ellipse at 0% 0%,
      rgba(233, 30, 140, 0.04) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 100% 100%,
      rgba(124, 58, 237, 0.04) 0%,
      transparent 50%
    ),
    linear-gradient(180deg, #fff, #fdf6fb, #f8f5ff 60%, #fef8fb);
  border-top: 1px solid rgba(233, 30, 140, 0.06);
}
.rel-top.svelte-eghqz5 {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 20px;
}
.rel-badge.svelte-eghqz5 {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--rose);
  margin-bottom: 10px;
}
.rel-badge.svelte-eghqz5 svg:where(.svelte-eghqz5) {
  opacity: 0.6;
}
.rel-title.svelte-eghqz5 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--heading);
  letter-spacing: -0.03em;
  margin: 0 0 6px;
  line-height: 1.15;
}
.rel-title.svelte-eghqz5 span:where(.svelte-eghqz5) {
  background: linear-gradient(135deg, var(--rose), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.rel-sub.svelte-eghqz5 {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}
.rel-btn.svelte-eghqz5 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--rose), #d4167f);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 18px #e91e8c40;
  transition: all 0.3s ease;
}
.rel-btn.svelte-eghqz5:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 8px 28px #e91e8c59;
}
.rel-grid.svelte-eghqz5 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.sidebar-gallery.svelte-eghqz5 {
  background: linear-gradient(155deg, #fff8fb, #fef8ff, #faf8ff);
  border: 1px solid rgba(233, 30, 140, 0.08);
  border-radius: 20px;
  padding: 18px 14px 14px;
  box-shadow: 0 4px 20px #e91e8c0d;
}
.sidebar-gallery__title.svelte-eghqz5 {
  font-size: 14px;
  font-weight: 500;
  color: var(--heading);
  letter-spacing: -0.02em;
  margin: 0 0 14px 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-gallery__title.svelte-eghqz5 svg:where(.svelte-eghqz5) {
  color: var(--rose);
}
.sidebar-gallery__count.svelte-eghqz5 {
  font-size: 11px;
  font-weight: 500;
  color: var(--rose);
  background: #e91e8c14;
  padding: 2px 8px;
  border-radius: 10px;
}
.sidebar-gallery__grid.svelte-eghqz5 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.sg-thumb.svelte-eghqz5 {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #fff0f6, #fce7f3);
  border: 1px solid rgba(233, 30, 140, 0.06);
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 0;
  font: inherit;
  color: inherit;
}
.sg-thumb.svelte-eghqz5:focus-visible {
  outline: 2px solid #e91e8c;
  outline-offset: 2px;
}
.sg-thumb.svelte-eghqz5:hover {
  border-color: #e91e8c2e;
  box-shadow: 0 6px 20px #e91e8c1a;
  transform: scale(1.03);
}
.sg-thumb.svelte-eghqz5 img:where(.svelte-eghqz5) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
@media (max-width: 1024px) {
  .profile-page.svelte-eghqz5 {
    grid-template-columns: 280px 1fr;
    gap: 32px;
  }
  .rel-grid.svelte-eghqz5 {
    grid-template-columns: repeat(3, 1fr);
  }
  .ndt-grid.svelte-eghqz5 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .profile-page.svelte-eghqz5 {
    grid-template-columns: 1fr;
    padding: 28px 16px 40px;
  }
  .profile-left.svelte-eghqz5 {
    display: contents;
    position: static;
  }
  .profile-photo-card.svelte-eghqz5 {
    order: 1;
  }
  .profile-right.svelte-eghqz5 {
    order: 2;
  }
  .sidebar-gallery.svelte-eghqz5 {
    order: 3;
  }
  .sidebar-gallery__grid.svelte-eghqz5 {
    grid-template-columns: repeat(3, 1fr);
  }
  .rel-grid.svelte-eghqz5,
  .ndt-grid.svelte-eghqz5 {
    grid-template-columns: repeat(2, 1fr);
  }
  .bk-cta.svelte-eghqz5 {
    flex-direction: column;
  }
  .bk-tiles.svelte-eghqz5 {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .bk-tile.svelte-eghqz5 {
    padding: 18px 12px 14px;
  }
  .bk-tile-price.svelte-eghqz5 {
    font-size: 20px;
  }
  .bk-tile-icon.svelte-eghqz5 {
    width: 40px;
    height: 40px;
  }
  .ph-name.svelte-eghqz5 {
    font-size: 1.6rem;
  }
  .rating-chip--lg.svelte-eghqz5 {
    font-size: 12px;
    padding: 6px 12px;
  }
}
@media (max-width: 480px) {
  .rel-grid.svelte-eghqz5 {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .ndt-grid.svelte-eghqz5 {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .ndt-item.svelte-eghqz5 {
    padding: 12px 14px;
    gap: 10px;
  }
  .bk-tiles.svelte-eghqz5 {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .bk-tile.svelte-eghqz5 {
    flex-direction: row;
    text-align: left;
    padding: 14px 16px;
    gap: 12px;
    align-items: center;
  }
  .bk-tile-icon.svelte-eghqz5 {
    width: 38px;
    height: 38px;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .bk-tile-dur.svelte-eghqz5 {
    font-size: 13px;
    white-space: nowrap;
  }
  .bk-tile-price.svelte-eghqz5 {
    font-size: 20px;
    margin-left: auto;
    white-space: nowrap;
  }
  .bk-tile-tag.svelte-eghqz5,
  .bk-tile-deco.svelte-eghqz5 {
    display: none;
  }
  .bk-tile--pop.svelte-eghqz5 {
    transform: none;
  }
  .bk-tile--pop.svelte-eghqz5:hover {
    transform: translateY(-3px);
  }
  .bk-tile-badge.svelte-eghqz5 {
    position: absolute;
    top: -1px;
    right: 8px;
    left: auto;
    transform: none;
    font-size: 7px;
    padding: 2px 7px;
    border-radius: 0 0 6px 6px;
  }
  .bk-status-row.svelte-eghqz5 {
    flex-wrap: wrap;
    gap: 8px;
  }
  .bk-section.svelte-eghqz5 {
    padding: 22px 18px 18px;
  }
  .bk-cta.svelte-eghqz5 {
    flex-direction: column;
    gap: 8px;
  }
  .bk-btn-wa.svelte-eghqz5,
  .bk-btn-call.svelte-eghqz5 {
    padding: 12px 16px;
    font-size: 13px;
  }
  .ph-block.svelte-eghqz5 {
    padding: 18px 16px 16px;
  }
  .ph-name.svelte-eghqz5 {
    font-size: 1.4rem;
  }
  .ph-about.svelte-eghqz5 {
    padding: 18px 16px;
  }
  .ndt.svelte-eghqz5 {
    padding: 16px 12px 14px !important;
  }
  .ndt-item.svelte-eghqz5 {
    padding: 12px 14px;
    border-radius: 14px;
    gap: 10px;
  }
  .ndt-item__val.svelte-eghqz5 {
    font-size: 15px;
  }
  .ndt-item__ic.svelte-eghqz5 {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    border-radius: 11px;
  }
  .rel-top.svelte-eghqz5 {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .rel-btn.svelte-eghqz5 {
    padding: 10px 20px;
    font-size: 12px;
  }
}
.rvx-band.svelte-eghqz5 {
  padding: 24px 0 64px;
}
.rvx-band.svelte-eghqz5 .rvx:where(.svelte-eghqz5) {
  margin-top: 0;
}
.rvx.svelte-eghqz5 {
  position: relative;
  margin-top: 28px;
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(135deg, #ffffffe6, #fdf5facc);
  border: 1px solid rgba(233, 30, 140, 0.12);
  box-shadow: 0 20px 50px -20px #2d12481f, inset 0 1px #fffc;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.rvx-orb.svelte-eghqz5 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
  opacity: 0.4;
}
.rvx-orb--1.svelte-eghqz5 {
  width: 240px;
  height: 240px;
  top: -80px;
  right: -80px;
  background: radial-gradient(circle, rgba(244, 63, 94, 0.4), transparent 70%);
}
.rvx-orb--2.svelte-eghqz5 {
  width: 200px;
  height: 200px;
  bottom: -60px;
  left: -60px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.3), transparent 70%);
}
.rvx-header.svelte-eghqz5 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.rvx-header__left.svelte-eghqz5 {
  min-width: 0;
}
.rvx-chip.svelte-eghqz5 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  color: #c4186e;
  background: linear-gradient(135deg, #e91e8c14, #f43f5e14);
  border: 1px solid rgba(233, 30, 140, 0.18);
  border-radius: 999px;
  margin-bottom: 12px;
}
.rvx-chip.svelte-eghqz5 svg:where(.svelte-eghqz5) {
  color: #f59e0b;
}
.rvx-title.svelte-eghqz5 {
  margin: 0;
  font-size: 26px;
  font-weight: 600;
  color: var(--heading);
  letter-spacing: -0.025em;
  line-height: 1.15;
}
.rvx-title__grad.svelte-eghqz5 {
  background: linear-gradient(135deg, #e91e8c, #f43f5e 50%, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.rvx-sub.svelte-eghqz5 {
  margin: 8px 0 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 480px;
}
.rvx-summary.svelte-eghqz5 {
  position: relative;
  z-index: 1;
  min-width: 260px;
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff, #fff8fa);
  border: 1px solid rgba(233, 30, 140, 0.12);
  box-shadow: 0 10px 28px -12px #e91e8c2e, inset 0 1px #ffffffe6;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
}
.rvx-summary__big.svelte-eghqz5 {
  text-align: center;
}
.rvx-summary__score.svelte-eghqz5 {
  font-size: 42px;
  font-weight: 600;
  line-height: 1;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.04em;
}
.rvx-summary__stars.svelte-eghqz5 {
  display: inline-flex;
  gap: 2px;
  margin: 6px 0 4px;
}
.rvx-summary__count.svelte-eghqz5 {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}
.rvx-summary__dist.svelte-eghqz5 {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.rvx-bar.svelte-eghqz5 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
}
.rvx-bar__label.svelte-eghqz5 {
  font-weight: 500;
  color: #b45309;
  min-width: 22px;
}
.rvx-bar__track.svelte-eghqz5 {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: #f59e0b1a;
  overflow: hidden;
  position: relative;
}
.rvx-bar__fill.svelte-eghqz5 {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background: linear-gradient(90deg, #f59e0b, #d97706);
  border-radius: inherit;
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.rvx-bar__count.svelte-eghqz5 {
  font-weight: 500;
  color: var(--text-dim);
  min-width: 14px;
  text-align: right;
}
.rvx-cta.svelte-eghqz5 {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 20px;
  margin-bottom: 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, #fff0f6, #fef3c7);
  border: 1px dashed rgba(233, 30, 140, 0.25);
  flex-wrap: wrap;
}
.rvx-cta__text.svelte-eghqz5 {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.rvx-cta__text.svelte-eghqz5 strong:where(.svelte-eghqz5) {
  font-size: 14px;
  color: var(--heading);
  font-weight: 500;
}
.rvx-cta__text.svelte-eghqz5 span:where(.svelte-eghqz5) {
  font-size: 12.5px;
  color: var(--text-muted);
}
.rvx-write-btn.svelte-eghqz5 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  font-size: 13.5px;
  font-weight: 500;
  font-family: inherit;
  background: linear-gradient(135deg, #e91e8c, #f43f5e 60%, #f59e0b);
  background-size: 200% 100%;
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 8px 20px -6px #e91e8c73, inset 0 1px #ffffff40;
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    background-position 0.4s ease;
  overflow: hidden;
  flex-shrink: 0;
}
.rvx-write-btn.svelte-eghqz5:hover {
  transform: translateY(-2px);
  background-position: 100% 0;
  box-shadow: 0 14px 28px -8px #e91e8c8c;
}
.rvx-write-btn.svelte-eghqz5:focus-visible {
  outline: 2px solid #e91e8c;
  outline-offset: 3px;
}
.rvx-write-btn__shine.svelte-eghqz5 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 70%
  );
  transform: translate(-120%);
  pointer-events: none;
}
.rvx-write-btn.svelte-eghqz5:hover .rvx-write-btn__shine:where(.svelte-eghqz5) {
  animation: svelte-eghqz5-rvxShine 0.8s ease;
}
@keyframes svelte-eghqz5-rvxShine {
  0% {
    transform: translate(-120%);
  }
  to {
    transform: translate(120%);
  }
}
.rvx-list.svelte-eghqz5 {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 1;
}
.rvx-card.svelte-eghqz5 {
  position: relative;
  padding: 22px 22px 18px 28px;
  background: linear-gradient(180deg, #fffffffa, #fffafc);
  border: 1px solid rgba(233, 30, 140, 0.12);
  border-radius: 20px;
  box-shadow: 0 6px 22px -12px #2d12482e, inset 0 1px #ffffffe6;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
  isolation: isolate;
}
.rvx-card__accent.svelte-eghqz5 {
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 10px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #e91e8c, #f43f5e 55%, #f59e0b);
  opacity: 0.85;
  box-shadow: 0 0 14px #e91e8c59;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.rvx-card.svelte-eghqz5:before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.08),
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  transition: opacity 0.3s ease;
}
.rvx-card.svelte-eghqz5:hover {
  transform: translateY(-4px);
  border-color: #e91e8c47;
  box-shadow: 0 20px 44px -16px #e91e8c38;
}
.rvx-card.svelte-eghqz5:hover .rvx-card__accent:where(.svelte-eghqz5) {
  transform: scaleY(1.04);
  opacity: 1;
}
.rvx-card__quote.svelte-eghqz5 {
  position: absolute;
  top: -8px;
  right: -6px;
  color: #e91e8c12;
  pointer-events: none;
  transform: rotate(180deg);
  z-index: 0;
}
.rvx-card__head.svelte-eghqz5 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.rvx-avatar-wrap.svelte-eghqz5 {
  position: relative;
  flex-shrink: 0;
}
.rvx-avatar.svelte-eghqz5 {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e91e8c, #f43f5e);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 17px;
  box-shadow: 0 8px 18px -6px #e91e8c8c, inset 0 2px #ffffff47;
  z-index: 1;
}
.rvx-avatar-ring.svelte-eghqz5 {
  position: absolute;
  top: -3px;
  right: -3px;
  bottom: -3px;
  left: -3px;
  border-radius: 50%;
  background: conic-gradient(from 140deg, #e91e8c, #f59e0b, #f43f5e, #e91e8c);
  opacity: 0.45;
  filter: blur(2px);
  z-index: 0;
  animation: svelte-eghqz5-rvxRing 10s linear infinite;
}
@keyframes svelte-eghqz5-rvxRing {
  to {
    transform: rotate(360deg);
  }
}
.rvx-card__who.svelte-eghqz5 {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}
.rvx-card__who.svelte-eghqz5 strong:where(.svelte-eghqz5) {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--heading);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: -0.01em;
}
.rvx-verified.svelte-eghqz5 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  box-shadow: 0 3px 8px #10b98173;
}
.rvx-meta-row.svelte-eghqz5 {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  color: var(--text-dim);
  font-weight: 600;
}
.rvx-date.svelte-eghqz5 {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--text-muted);
}
.rvx-date.svelte-eghqz5 svg:where(.svelte-eghqz5) {
  color: #e91e8c;
  opacity: 0.7;
}
.rvx-dot.svelte-eghqz5 {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #e91e8c59;
}
.rvx-guest.svelte-eghqz5 {
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 500;
  color: var(--text-dim);
}
.rvx-card__stars.svelte-eghqz5 {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: linear-gradient(135deg, #fff8e1, #fef3c7);
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 5px 10px;
  border-radius: 999px;
  box-shadow: 0 4px 10px -4px #f59e0b40;
  flex-shrink: 0;
}
.rvx-card__rating.svelte-eghqz5 {
  margin-left: 6px;
  font-size: 11.5px;
  font-weight: 600;
  color: #b45309;
  letter-spacing: -0.01em;
}
.rvx-card__body.svelte-eghqz5 {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.65;
  color: #3f2856;
  white-space: pre-wrap;
  word-wrap: break-word;
  position: relative;
  z-index: 1;
  font-weight: 500;
}
.rvx-card__foot.svelte-eghqz5 {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  padding-top: 12px;
  border-top: 1px dashed rgba(233, 30, 140, 0.14);
}
.rvx-chip.svelte-eghqz5 {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.rvx-chip--verified.svelte-eghqz5 {
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.25);
}
.rvx-chip--helpful.svelte-eghqz5 {
  background: linear-gradient(135deg, #fdf2f8, #fce7f3);
  color: #be185d;
  border: 1px solid rgba(233, 30, 140, 0.22);
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: transform 0.2s ease, background 0.25s ease, color 0.2s ease,
    border-color 0.25s ease, box-shadow 0.25s ease;
}
.rvx-chip--helpful.svelte-eghqz5:hover:not(:disabled) {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #fce7f3, #fbcfe8);
}
.rvx-chip--helpful.is-on.svelte-eghqz5 {
  background: linear-gradient(135deg, #e91e8c, #f43f5e 55%, #f59e0b);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 18px -6px #e91e8c8c, inset 0 1px #ffffff4d;
  animation: svelte-eghqz5-rvxHelpPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.rvx-chip--helpful.is-on.svelte-eghqz5:hover:not(:disabled) {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #e91e8c, #f43f5e 55%, #f59e0b);
  color: #fff;
  box-shadow: 0 12px 22px -6px #e91e8ca6, inset 0 1px #ffffff4d;
}
@keyframes svelte-eghqz5-rvxHelpPop {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.12);
  }
  to {
    transform: scale(1);
  }
}
.rvx-chip--helpful.is-busy.svelte-eghqz5 {
  opacity: 0.7;
  cursor: wait;
}
.rvx-chip--helpful.svelte-eghqz5:disabled {
  cursor: wait;
}
.rvx-chip__n.svelte-eghqz5 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  padding: 0 5px;
  margin-left: 2px;
  background: #0000001f;
  border-radius: 999px;
  font-style: normal;
  font-size: 10.5px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  line-height: 1.5;
}
.rvx-chip--helpful.is-on.svelte-eghqz5 .rvx-chip__n:where(.svelte-eghqz5) {
  background: #ffffff4d;
  color: #fff;
}
.rvx-empty.svelte-eghqz5 {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 24px 36px;
  border-radius: 18px;
  background: radial-gradient(
      ellipse at center top,
      rgba(233, 30, 140, 0.05),
      transparent 60%
    ),
    linear-gradient(135deg, #fff9, #fdf5fa66);
  border: 1px dashed rgba(233, 30, 140, 0.22);
  overflow: hidden;
}
.rvx-empty__visual.svelte-eghqz5 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.rvx-empty__icon.svelte-eghqz5 {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  background: linear-gradient(135deg, #e91e8c, #f43f5e);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 36px -12px #e91e8c80, inset 0 2px #ffffff4d;
  animation: svelte-eghqz5-rvxFloat 3s ease-in-out infinite;
}
@keyframes svelte-eghqz5-rvxFloat {
  0%,
  to {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.rvx-empty__sparkle.svelte-eghqz5 {
  position: absolute;
  font-size: 14px;
  color: #f59e0b;
  opacity: 0.7;
  pointer-events: none;
  animation: svelte-eghqz5-rvxSparkle 2.5s ease-in-out infinite;
}
.rvx-empty__sparkle--1.svelte-eghqz5 {
  top: -4px;
  left: -18px;
  animation-delay: 0s;
}
.rvx-empty__sparkle--2.svelte-eghqz5 {
  top: 8px;
  right: -20px;
  animation-delay: 0.5s;
  color: #e91e8c;
  font-size: 16px;
}
.rvx-empty__sparkle--3.svelte-eghqz5 {
  bottom: -6px;
  right: -6px;
  animation-delay: 1s;
  color: #7c3aed;
  font-size: 12px;
}
@keyframes svelte-eghqz5-rvxSparkle {
  0%,
  to {
    opacity: 0.2;
    transform: scale(0.8) rotate(0);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.15) rotate(25deg);
  }
}
.rvx-empty__title.svelte-eghqz5 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 500;
  color: var(--heading);
  letter-spacing: -0.01em;
}
.rvx-empty__text.svelte-eghqz5 {
  margin: 0 auto 18px;
  max-width: 340px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
}
.rvx-empty__btn.svelte-eghqz5 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  font-family: inherit;
  color: #c4186e;
  background: #fff;
  border: 1.5px solid rgba(233, 30, 140, 0.25);
  border-radius: 11px;
  cursor: pointer;
  box-shadow: 0 4px 12px -4px #e91e8c33;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.rvx-empty__btn.svelte-eghqz5:hover {
  transform: translateY(-2px);
  border-color: #e91e8c;
  background: linear-gradient(135deg, #fff, #fff0f6);
}
.rvx-empty__btn.svelte-eghqz5:focus-visible {
  outline: 2px solid #e91e8c;
  outline-offset: 2px;
}
@media (max-width: 720px) {
  .rvx.svelte-eghqz5 {
    padding: 22px 18px;
    border-radius: 20px;
  }
  .rvx-header.svelte-eghqz5 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .rvx-title.svelte-eghqz5 {
    font-size: 22px;
  }
  .rvx-summary.svelte-eghqz5 {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .rvx-summary__big.svelte-eghqz5 {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: flex-start;
    text-align: left;
  }
  .rvx-summary__big.svelte-eghqz5 .rvx-summary__score:where(.svelte-eghqz5) {
    font-size: 36px;
  }
  .rvx-cta.svelte-eghqz5 {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .rvx-write-btn.svelte-eghqz5 {
    justify-content: center;
  }
  .rvx-list.svelte-eghqz5 {
    grid-template-columns: 1fr;
  }
  .rvx-empty.svelte-eghqz5 {
    padding: 30px 18px 28px;
  }
}
.rvm-overlay.svelte-eghqz5 {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10000;
  background: radial-gradient(
      1200px 600px at 80% -10%,
      rgba(244, 63, 94, 0.18),
      transparent 60%
    ),
    radial-gradient(
      1000px 500px at -10% 100%,
      rgba(124, 58, 237, 0.12),
      transparent 60%
    ),
    #fff0f7bf;
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(14px, 3vw, 40px);
  animation: svelte-eghqz5-rvmFade 0.25s ease;
  overflow-y: auto;
}
@keyframes svelte-eghqz5-rvmFade {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.rvm-card.svelte-eghqz5 {
  position: relative;
  width: min(580px, 100%);
  border-radius: 26px;
  background: linear-gradient(180deg, #fff, #fffafc);
  box-shadow: 0 40px 100px -30px #2d124859, 0 0 0 1px #fff9,
    inset 0 1px #ffffffe6;
  overflow: hidden;
  animation: svelte-eghqz5-rvmPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes svelte-eghqz5-rvmPop {
  0% {
    opacity: 0;
    transform: scale(0.92) translateY(14px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.rvm-glow.svelte-eghqz5 {
  position: absolute;
  top: -2px;
  right: -2px;
  bottom: -2px;
  left: -2px;
  z-index: -1;
  border-radius: 28px;
  background: conic-gradient(from 0deg, #e91e8c, #f43f5e, #f59e0b, #e91e8c);
  opacity: 0.35;
  filter: blur(24px);
  animation: svelte-eghqz5-rvmGlow 6s linear infinite;
  pointer-events: none;
}
@keyframes svelte-eghqz5-rvmGlow {
  to {
    transform: rotate(360deg);
  }
}
.rvm-hero.svelte-eghqz5 {
  position: relative;
  padding: 28px 28px 38px;
  background: linear-gradient(135deg, #e91e8c1a, #f43f5e14, #f59e0b1a);
  border-bottom: 1px solid rgba(233, 30, 140, 0.08);
  overflow: hidden;
}
.rvm-hero__orb.svelte-eghqz5 {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}
.rvm-hero__orb--1.svelte-eghqz5 {
  top: -40px;
  right: -30px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(244, 63, 94, 0.4), transparent 70%);
}
.rvm-hero__orb--2.svelte-eghqz5 {
  bottom: -20px;
  left: -20px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.3), transparent 70%);
}
.rvm-hero__content.svelte-eghqz5 {
  position: relative;
  padding-right: 66px;
  z-index: 1;
}
.rvm-chip.svelte-eghqz5 {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c4186e;
  background: #fffc;
  border: 1px solid rgba(233, 30, 140, 0.2);
  padding: 5px 11px;
  border-radius: 999px;
  margin-bottom: 10px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.rvm-chip.svelte-eghqz5 svg:where(.svelte-eghqz5) {
  color: #f59e0b;
}
.rvm-hero.svelte-eghqz5 h3:where(.svelte-eghqz5) {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 600;
  color: var(--heading);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.rvm-name.svelte-eghqz5 {
  background: linear-gradient(135deg, #e91e8c, #f43f5e 60%, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.rvm-sub.svelte-eghqz5 {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 400px;
}
.rvm-hero__avatar.svelte-eghqz5 {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: linear-gradient(135deg, #e91e8c, #f43f5e);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 600;
  overflow: hidden;
  box-shadow: 0 14px 32px -8px #e91e8c80, 0 0 0 4px #ffffffe6;
  z-index: 1;
}
.rvm-hero__avatar.svelte-eghqz5 img:where(.svelte-eghqz5) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.rvm-close.svelte-eghqz5 {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fffffff2;
  color: var(--heading);
  border: 1px solid rgba(233, 30, 140, 0.15);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px #2d12481f;
  z-index: 2;
  transition: transform 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
}
.rvm-close.svelte-eghqz5:hover {
  background: linear-gradient(135deg, #e91e8c, #f43f5e);
  color: #fff;
  border-color: transparent;
  transform: rotate(90deg);
  box-shadow: 0 6px 18px #e91e8c66;
}
.rvm-close.svelte-eghqz5:focus-visible {
  outline: 2px solid #e91e8c;
  outline-offset: 2px;
}
.rvm-form.svelte-eghqz5 {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px 28px;
}
.rvm-field.svelte-eghqz5 {
  display: flex;
  flex-direction: column;
  gap: 7px;
  position: relative;
  min-width: 0;
}
.rvm-label.svelte-eghqz5 {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--heading);
}
.rvm-label.svelte-eghqz5 em:where(.svelte-eghqz5) {
  font-style: normal;
  color: #e91e8c;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  margin-left: 2px;
}
.rvm-textarea-wrap.svelte-eghqz5 {
  position: relative;
}
.rvm-textarea-wrap.svelte-eghqz5 textarea:where(.svelte-eghqz5) {
  width: 100%;
  padding: 13px 15px 30px;
  font-size: 14px;
  font-family: inherit;
  line-height: 1.55;
  color: var(--heading);
  background: #faf6fa;
  border: 1.5px solid rgba(233, 30, 140, 0.1);
  border-radius: 12px;
  resize: vertical;
  min-height: 110px;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.rvm-textarea-wrap.svelte-eghqz5 textarea:where(.svelte-eghqz5)::placeholder {
  color: var(--text-dim);
}
.rvm-textarea-wrap.svelte-eghqz5 textarea:where(.svelte-eghqz5):focus {
  outline: none;
  background: #fff;
  border-color: #e91e8c;
  box-shadow: 0 0 0 4px #e91e8c1a;
}
.rvm-counter.svelte-eghqz5 {
  position: absolute;
  right: 12px;
  bottom: 10px;
  font-size: 10.5px;
  font-weight: 500;
  color: var(--text-dim);
  background: #ffffffd9;
  padding: 2px 8px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  pointer-events: none;
  transition: color 0.2s ease;
}
.rvm-counter.svelte-eghqz5 em:where(.svelte-eghqz5) {
  font-style: normal;
  color: var(--text-dim);
  font-weight: 600;
}
.rvm-counter.is-warn.svelte-eghqz5 {
  color: #dc2626;
}
.rvm-as.svelte-eghqz5 {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: linear-gradient(135deg, #ecfdf5, #f0fdf4);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 12px;
}
.rvm-as__avatar.svelte-eghqz5 {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e91e8c, #f43f5e);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 14px;
  box-shadow: 0 4px 10px -2px #e91e8c4d;
}
.rvm-as__meta.svelte-eghqz5 {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
  min-width: 0;
}
.rvm-as__label.svelte-eghqz5 {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #047857;
}
.rvm-as__meta.svelte-eghqz5 strong:where(.svelte-eghqz5) {
  font-size: 13.5px;
  color: #065f46;
}
.rvm-as__check.svelte-eghqz5 {
  color: #059669;
  flex-shrink: 0;
}
.rvm-rate-block.svelte-eghqz5 {
  padding: 16px 18px;
  background: linear-gradient(135deg, #fffbeb, #fff8f0);
  border: 1.5px solid rgba(245, 158, 11, 0.18);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rvm-rate-head.svelte-eghqz5 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.rvm-rate-value.svelte-eghqz5 {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dim);
  background: #ffffffb3;
  padding: 3px 10px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}
.rvm-rate-value.is-set.svelte-eghqz5 {
  color: #b45309;
  background: #f59e0b26;
}
.rvm-stars.svelte-eghqz5 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.rvm-star.svelte-eghqz5 {
  background: none;
  border: none;
  padding: 4px;
  color: #f59e0b40;
  cursor: pointer;
  transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1),
    color 0.18s ease, filter 0.18s ease;
}
.rvm-star.svelte-eghqz5 svg:where(.svelte-eghqz5) {
  width: 34px;
  height: 34px;
  display: block;
}
.rvm-star.svelte-eghqz5:hover {
  transform: scale(1.2) rotate(-5deg);
}
.rvm-star.active.svelte-eghqz5 {
  color: #f59e0b;
  filter: drop-shadow(0 4px 10px rgba(245, 158, 11, 0.45));
}
.rvm-star.svelte-eghqz5:focus-visible {
  outline: 2px solid #f59e0b;
  outline-offset: 2px;
  border-radius: 8px;
}
.rvm-error.svelte-eghqz5 {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 11px;
  color: #991b1b;
  font-size: 12.5px;
  font-weight: 500;
}
.rvm-error.svelte-eghqz5 svg:where(.svelte-eghqz5) {
  flex-shrink: 0;
  color: #dc2626;
}
.rvm-actions.svelte-eghqz5 {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px dashed rgba(233, 30, 140, 0.1);
}
.rvm-cancel.svelte-eghqz5,
.rvm-submit.svelte-eghqz5 {
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 500;
  padding: 12px 22px;
  border-radius: 12px;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.rvm-cancel.svelte-eghqz5 {
  background: #f5eef2;
  color: var(--heading);
}
.rvm-cancel.svelte-eghqz5:hover {
  background: #eee3ea;
  transform: translateY(-1px);
}
.rvm-submit.svelte-eghqz5 {
  position: relative;
  background: linear-gradient(135deg, #e91e8c, #f43f5e 60%, #f59e0b);
  background-size: 200% 100%;
  color: #fff;
  box-shadow: 0 10px 24px -8px #e91e8c80, inset 0 1px #ffffff40;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    background-position 0.4s ease;
}
.rvm-submit.svelte-eghqz5:hover:not(:disabled) {
  transform: translateY(-2px);
  background-position: 100% 0;
  box-shadow: 0 14px 32px -8px #e91e8c99;
}
.rvm-submit__shine.svelte-eghqz5 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 70%
  );
  transform: translate(-120%);
  pointer-events: none;
}
.rvm-submit.svelte-eghqz5:hover:not(:disabled)
  .rvm-submit__shine:where(.svelte-eghqz5) {
  animation: svelte-eghqz5-rvmShine 0.9s ease;
}
@keyframes svelte-eghqz5-rvmShine {
  0% {
    transform: translate(-120%);
  }
  to {
    transform: translate(120%);
  }
}
.rvm-submit.svelte-eghqz5:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}
.rvm-spin.svelte-eghqz5 {
  animation: svelte-eghqz5-rvmSpin 0.9s linear infinite;
}
@keyframes svelte-eghqz5-rvmSpin {
  to {
    transform: rotate(360deg);
  }
}
.rvm-done.svelte-eghqz5 {
  position: relative;
  text-align: center;
  padding: 44px 32px 34px;
}
.rvm-done__confetti.svelte-eghqz5 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden;
}
.rvm-done__confetti.svelte-eghqz5 span:where(.svelte-eghqz5) {
  position: absolute;
  font-size: 18px;
  animation: svelte-eghqz5-rvmConfetti 3s ease-in-out infinite;
  opacity: 0.9;
}
.rvm-done__confetti.svelte-eghqz5 span:where(.svelte-eghqz5):nth-child(1) {
  top: 12%;
  left: 14%;
  color: #f59e0b;
  animation-delay: 0s;
}
.rvm-done__confetti.svelte-eghqz5 span:where(.svelte-eghqz5):nth-child(2) {
  top: 20%;
  right: 18%;
  color: #e91e8c;
  animation-delay: 0.4s;
  font-size: 14px;
}
.rvm-done__confetti.svelte-eghqz5 span:where(.svelte-eghqz5):nth-child(3) {
  top: 28%;
  left: 22%;
  color: #7c3aed;
  animation-delay: 0.8s;
  font-size: 16px;
}
.rvm-done__confetti.svelte-eghqz5 span:where(.svelte-eghqz5):nth-child(4) {
  bottom: 30%;
  right: 14%;
  color: #f43f5e;
  animation-delay: 1.2s;
  font-size: 14px;
}
.rvm-done__confetti.svelte-eghqz5 span:where(.svelte-eghqz5):nth-child(5) {
  bottom: 18%;
  left: 16%;
  color: #f59e0b;
  animation-delay: 1.6s;
}
@keyframes svelte-eghqz5-rvmConfetti {
  0%,
  to {
    transform: translateY(0) rotate(0);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-14px) rotate(20deg);
    opacity: 1;
  }
}
.rvm-done__ic.svelte-eghqz5 {
  width: 76px;
  height: 76px;
  margin: 0 auto 18px;
  border-radius: 24px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px -10px #10b98180, inset 0 2px #ffffff4d;
  animation: svelte-eghqz5-rvmCheck 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 1;
}
@keyframes svelte-eghqz5-rvmCheck {
  0% {
    opacity: 0;
    transform: scale(0.5) rotate(-20deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}
.rvm-done.svelte-eghqz5 h3:where(.svelte-eghqz5) {
  position: relative;
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 600;
  color: var(--heading);
  letter-spacing: -0.02em;
}
.rvm-done.svelte-eghqz5 p:where(.svelte-eghqz5) {
  position: relative;
  margin: 0 auto 22px;
  max-width: 380px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-muted);
}
.rvm-done.svelte-eghqz5 p:where(.svelte-eghqz5) strong:where(.svelte-eghqz5) {
  background: linear-gradient(135deg, #e91e8c, #f43f5e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.rvm-done.svelte-eghqz5 .rvm-submit:where(.svelte-eghqz5) {
  margin: 0 auto;
}
@media (max-width: 560px) {
  .rvm-hero.svelte-eghqz5 {
    padding: 22px 20px 30px;
  }
  .rvm-hero__content.svelte-eghqz5 {
    padding-right: 58px;
  }
  .rvm-hero.svelte-eghqz5 h3:where(.svelte-eghqz5) {
    font-size: 19px;
  }
  .rvm-hero__avatar.svelte-eghqz5 {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    right: 20px;
    font-size: 22px;
  }
  .rvm-form.svelte-eghqz5 {
    padding: 20px;
    gap: 14px;
  }
  .rvm-actions.svelte-eghqz5 {
    flex-direction: column-reverse;
  }
  .rvm-actions.svelte-eghqz5 button:where(.svelte-eghqz5) {
    width: 100%;
    justify-content: center;
  }
  .rvm-star.svelte-eghqz5 svg:where(.svelte-eghqz5) {
    width: 28px;
    height: 28px;
  }
  .rvm-rate-block.svelte-eghqz5 {
    padding: 14px;
  }
  .rvm-done.svelte-eghqz5 {
    padding: 32px 22px 24px;
  }
}


/*404 error */

.wp-err-wrapper {
    position: relative;
    min-height: 80vh;
    overflow: hidden;
    display: grid;
    place-items: center;
    padding: 60px 24px;
    isolation: isolate;
    background: var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  }

  .err-bg.svelte-1j96wlh {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: -3;
  }

  .err-bg-grad.svelte-1j96wlh {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: linear-gradient(135deg, #fff5fa, #fdf2f8 18%, #f0f9ff 40%, #ecfdf5 55%, #fef6fb 75%, #fff1f7);
    background-size: 300% 300%;
    animation: svelte-1j96wlh-bgFlow 22s ease infinite;
  }

  @keyframes svelte-1j96wlh-bgFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
  }

  .err-bg-mesh.svelte-1j96wlh {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background-image: repeating-linear-gradient(90deg, rgba(15,23,42,.04) 0 1px, transparent 1px 60px), repeating-linear-gradient(0deg, rgba(15,23,42,.04) 0 1px, transparent 1px 60px);
    mask: radial-gradient(ellipse at center, #000 0%, transparent 75%);
    -webkit-mask: radial-gradient(ellipse at center, #000 0%, transparent 75%);
    opacity: .6;
  }

  .blob.svelte-1j96wlh {
    position: absolute;
    z-index: -2;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .5;
    animation: svelte-1j96wlh-blobFloat 20s ease-in-out infinite;
    pointer-events: none;
  }

  .blob-1.svelte-1j96wlh { width: 520px; height: 520px; top: -140px; left: -140px; }
  .blob-2.svelte-1j96wlh { width: 440px; height: 440px; bottom: -120px; right: -100px; animation-delay: -7s; }
  .blob-3.svelte-1j96wlh { width: 380px; height: 380px; top: 40%; left: 50%; animation-delay: -14s; }

  @keyframes svelte-1j96wlh-blobFloat {
    0%, 100% { opacity: .45; }
    50% { opacity: .6; }
  }

  .particles.svelte-1j96wlh {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: -1;
    pointer-events: none;
  }

  .particle.svelte-1j96wlh {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    left: var(--x);
    top: var(--y);
    background: var(--a1);
    opacity: .25;
    animation: svelte-1j96wlh-partFloat 6s ease-in-out infinite;
    animation-delay: var(--d);
  }

  .particle.svelte-1j96wlh:nth-child(2n) { background: var(--a2); }
  .particle.svelte-1j96wlh:nth-child(3n) { background: var(--a3); width: 4px; height: 4px; }
  .particle.svelte-1j96wlh:nth-child(4n) { background: #fbbf24; width: 8px; height: 8px; opacity: .35; }

  @keyframes svelte-1j96wlh-partFloat {
    0%, 100% { transform: translate(0) scale(1); opacity: .2; }
    50% { transform: translate(20px, -30px) scale(1.6); opacity: .6; }
  }

  .err-main.svelte-1j96wlh {
    position: relative;
    max-width: 1100px;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(300px, 1fr) 1.1fr;
    gap: 60px;
    align-items: center;
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

  .err-visual.svelte-1j96wlh {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
  }

  .code-stack.svelte-1j96wlh {
    display: flex;
    gap: 8px;
    font-weight: 700;
    font-size: clamp(120px, 18vw, 220px);
    line-height: .85;
    letter-spacing: -.08em;
  }

  .code-stack.code-top.svelte-1j96wlh {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    align-items: center;
    justify-content: center;
    z-index: 2;
  }

  .layer.svelte-1j96wlh {
    display: inline-block;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 1 !important;
    filter: drop-shadow(0 20px 40px var(--shine));
  }

  .layer-bg.svelte-1j96wlh {
    background: var(--a2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transform: translate(8px, 8px);
    opacity: .2 !important;
    filter: blur(4px);
  }

  .code-glow.svelte-1j96wlh {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: radial-gradient(circle at center, var(--shine), transparent 60%);
    filter: blur(40px);
    z-index: 0;
    opacity: .6;
    animation: svelte-1j96wlh-pulseGlow 4s ease-in-out infinite;
  }

  @keyframes svelte-1j96wlh-pulseGlow {
    0%, 100% { opacity: .5; transform: scale(1); }
    50% { opacity: .8; transform: scale(1.08); }
  }

  .status-pill.svelte-1j96wlh {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translate(-50%);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px 7px 11px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(15,23,42,.08);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    color: #0f172a;
    box-shadow: 0 8px 24px -8px var(--shine);
    z-index: 3;
  }

  .sp-dot.svelte-1j96wlh {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--a1);
    box-shadow: 0 0 0 3px var(--shine);
    animation: svelte-1j96wlh-pulse 1.5s ease-in-out infinite;
  }

  @keyframes svelte-1j96wlh-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .6; transform: scale(1.3); }
  }

  .err-content.svelte-1j96wlh { max-width: 500px; }

  .eyebrow.svelte-1j96wlh {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 13px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(15,23,42,.08);
    color: #be185d;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 22px;
    box-shadow: 0 4px 14px -4px var(--shine);
  }

  .eyebrow.svelte-1j96wlh svg { color: #f59e0b; }

  .err-content.svelte-1j96wlh h1 {
    margin: 0 0 14px;
    font-size: clamp(30px, 4.5vw, 44px);
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.1;
    color: #0f172a;
  }

  .err-content.svelte-1j96wlh h1:after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    margin-top: 14px;
    border-radius: 999px;
    background: var(--grad);
    box-shadow: 0 2px 8px var(--shine);
  }

  .sub.svelte-1j96wlh {
    margin: 0 0 22px;
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
  }

  .detail.svelte-1j96wlh {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 13px 7px 11px;
    background: #ffffffb3;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(15,23,42,.06);
    border-radius: 999px;
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 26px;
  }

  .detail.svelte-1j96wlh code {
    font-family: ui-monospace, SF Mono, Menlo, monospace;
    color: #475569;
    font-size: 11.5px;
  }

  .cta-row.svelte-1j96wlh {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 32px;
  }

  .cta.svelte-1j96wlh {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    border: none;
    transition: transform .22s, box-shadow .22s, filter .22s;
    position: relative;
    overflow: hidden;
    text-decoration: none;
  }

  .cta-primary.svelte-1j96wlh {
    background: var(--grad);
    color: #fff !important;
    box-shadow: 0 1px #ffffff59 inset, 0 -1px #00000026 inset, 0 10px 24px -4px var(--shine);
  }

  .cta-primary.svelte-1j96wlh:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
  }

  .cta-ghost.svelte-1j96wlh {
    background: #fff;
    color: #475569 !important;
    border: 1.5px solid rgba(15,23,42,.08);
    box-shadow: 0 1px 2px #0f172a08;
  }

  .cta-ghost.svelte-1j96wlh:hover {
    border-color: var(--a1);
    color: var(--a1) !important;
    transform: translateY(-2px);
  }

  .quicklinks.svelte-1j96wlh {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 14px;
    padding-top: 22px;
    border-top: 1px dashed rgba(15,23,42,.1);
  }

  .ql-label.svelte-1j96wlh {
    font-size: 11px;
    font-weight: 600;
    color: #94a3b8;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-right: 6px;
  }

  .ql.svelte-1j96wlh {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #475569;
    font-weight: 600;
    text-decoration: none;
    padding: 6px 12px 6px 10px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 1px 2px #0f172a08;
    transition: all .2s;
  }

  .ql-ic.svelte-1j96wlh {
    display: grid;
    place-items: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--shine);
    color: var(--a1);
  }

  .ql.svelte-1j96wlh:hover {
    color: var(--a1);
    border-color: var(--a1);
    transform: translateY(-1px);
    box-shadow: 0 6px 14px -4px var(--shine);
  }

  .ql.svelte-1j96wlh:hover .ql-ic.svelte-1j96wlh {
    background: var(--a1);
    color: #fff;
  }

  @media(max-width:880px) {
    .err-main.svelte-1j96wlh {
      grid-template-columns: 1fr;
      gap: 32px;
      text-align: center;
    }
    .err-visual.svelte-1j96wlh { min-height: 220px; }
    .err-content.svelte-1j96wlh { max-width: none; }
    .err-content.svelte-1j96wlh h1:after { margin-left: auto; margin-right: auto; }
    .cta-row.svelte-1j96wlh, .quicklinks.svelte-1j96wlh { justify-content: center; }
    .eyebrow.svelte-1j96wlh { margin-left: auto; margin-right: auto; }
  }

  @media(max-width:520px) {
    .wp-err-wrapper { padding: 32px 16px; }
    .code-stack.svelte-1j96wlh { font-size: 110px; }
    .cta.svelte-1j96wlh { padding: 12px 20px; font-size: 13px; }
    .cta-primary.svelte-1j96wlh, .cta-ghost.svelte-1j96wlh { flex: 1; justify-content: center; }
  }

  /*Area Page*/


  .av-section-h2.svelte-1oirgpe {
   font-family: Georgia, Times New Roman, serif;
   font-weight: 500;
   font-size: clamp(26px, 3.6vw, 40px);
   line-height: 1.15;
   letter-spacing: -0.02em;
   color: #1f1724;
   margin: 0 0 10px;
}
.av-h2-accent.svelte-1oirgpe {
   background: linear-gradient(120deg, #e91e8c, #f59e0b);
   -webkit-background-clip: text;
   background-clip: text;
   -webkit-text-fill-color: transparent;
   color: transparent;
   font-style: italic;
}
.av-section-sub.svelte-1oirgpe {
   color: #6b5a68;
   font-size: 15.5px;
   line-height: 1.7;
   max-width: 680px;
   margin: 0 auto;
}
.av-eyebrow.svelte-1oirgpe {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 6px 14px;
   border-radius: 40px;
   background: #ffffffb3;
   -webkit-backdrop-filter: blur(10px);
   backdrop-filter: blur(10px);
   border: 1px solid rgba(233, 30, 140, 0.12);
   color: #b45309;
   font-size: 11px;
   font-weight: 600;
   letter-spacing: 0.14em;
   text-transform: uppercase;
   margin-bottom: 14px;
}
.av-eyebrow.svelte-1oirgpe:before {
   content: "";
   width: 18px;
   height: 1px;
   background: #e91e8c;
}
.av-btn.svelte-1oirgpe {
   display: inline-flex;
   align-items: center;
   gap: 9px;
   padding: 11px 22px;
   border-radius: 50px;
   font-size: 14px;
   font-weight: 600;
   cursor: pointer;
   text-decoration: none;
   border: 1px solid transparent;
   transition: transform 0.25s ease, box-shadow 0.25s ease,
      background 0.25s ease;
}
.av-btn--primary.svelte-1oirgpe {
   background: linear-gradient(135deg, #e91e8c, #ec4899);
   color: #fff;
   box-shadow: 0 10px 28px -12px #e91e8c8c;
}
.av-btn--primary.svelte-1oirgpe:hover {
   transform: translateY(-2px);
   box-shadow: 0 14px 36px -10px #e91e8ca6;
}
.av-btn--ghost.svelte-1oirgpe {
   background: #ffffffbf;
   -webkit-backdrop-filter: blur(10px);
   backdrop-filter: blur(10px);
   color: #25d366;
   border-color: #25d36640;
}
.av-btn--ghost.svelte-1oirgpe:hover {
   background: #fff;
   border-color: #25d36680;
   transform: translateY(-2px);
}
.av-btn--lg.svelte-1oirgpe {
   padding: 14px 28px;
   font-size: 15px;
}
.av-hero.svelte-1oirgpe,
.av-dir.svelte-1oirgpe,
.av-zones.svelte-1oirgpe,
.av-how.svelte-1oirgpe,
.av-faq.svelte-1oirgpe,
.av-cta.svelte-1oirgpe {
   position: relative;
   border-top: 1px solid rgba(184, 134, 61, 0.12);
}
.av-hero.svelte-1oirgpe {
   border-top: none;
}
.av-dir.svelte-1oirgpe:before,
.av-zones.svelte-1oirgpe:before,
.av-how.svelte-1oirgpe:before,
.av-faq.svelte-1oirgpe:before,
.av-cta.svelte-1oirgpe:before {
   content: "";
   position: absolute;
   top: -6px;
   left: 50%;
   transform: translate(-50%);
   width: 11px;
   height: 11px;
   border-radius: 50%;
   background: #fffaf4;
   border: 1px solid rgba(184, 134, 61, 0.4);
   z-index: 2;
}
.av-dir.svelte-1oirgpe:after,
.av-zones.svelte-1oirgpe:after,
.av-how.svelte-1oirgpe:after,
.av-faq.svelte-1oirgpe:after,
.av-cta.svelte-1oirgpe:after {
   content: "";
   position: absolute;
   top: -1px;
   left: 50%;
   transform: translate(-50%);
   width: 3px;
   height: 3px;
   border-radius: 50%;
   background: linear-gradient(135deg, #e91e8c, #f59e0b);
   z-index: 3;
}
.av-hero.svelte-1oirgpe {
   position: relative;
   padding: 64px 0 80px;
   background: transparent;
   overflow: hidden;
}
.av-hero.svelte-1oirgpe:before {
   content: "";
   position: absolute;
   top: 16px;
   right: 16px;
   bottom: 16px;
   left: 16px;
   border: 1px solid rgba(184, 134, 61, 0.15);
   border-radius: 24px;
   pointer-events: none;
   z-index: 1;
   background-image: radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.4) 0%,
      transparent 40%
   );
}
.av-hero.svelte-1oirgpe:after {
   content: "";
   position: absolute;
   top: 16px;
   right: 16px;
   bottom: 16px;
   left: 16px;
   border-radius: 24px;
   pointer-events: none;
   z-index: 1;
   box-shadow: inset 0 0 0 1px #ffffff80;
}
.av-hero.svelte-1oirgpe > .grid-container:where(.svelte-1oirgpe) {
   position: relative;
   z-index: 2;
}
.av-hero__bg.svelte-1oirgpe {
   position: absolute;
   border-radius: 50%;
   filter: blur(90px);
   pointer-events: none;
}
.av-hero__bg--a.svelte-1oirgpe {
   top: -120px;
   left: -80px;
   width: 360px;
   height: 360px;
   background: #fca5a559;
}
.av-hero__bg--b.svelte-1oirgpe {
   bottom: -120px;
   right: -80px;
   width: 360px;
   height: 360px;
   background: #fde68a73;
}
.av-hero__bg--c.svelte-1oirgpe {
   top: 30%;
   left: 45%;
   width: 260px;
   height: 260px;
   background: #fbcfe880;
}
.av-crumb.svelte-1oirgpe {
   display: flex;
   align-items: center;
   gap: 8px;
   font-size: 12px;
   color: #8a7888;
   margin-bottom: 24px;
   position: relative;
   z-index: 2;
}
.av-crumb.svelte-1oirgpe a:where(.svelte-1oirgpe) {
   color: #b45309;
   text-decoration: none;
   font-weight: 500;
}
.av-crumb.svelte-1oirgpe a:where(.svelte-1oirgpe):hover {
   color: #e91e8c;
}
.av-crumb.svelte-1oirgpe svg:where(.svelte-1oirgpe) {
   color: #cbb5c7;
}
.av-hero__grid.svelte-1oirgpe {
   display: grid;
   grid-template-columns: 1.15fr 0.85fr;
   gap: 48px;
   align-items: center;
   position: relative;
   z-index: 2;
}
.av-hero__eyebrow.svelte-1oirgpe {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 7px 16px;
   border-radius: 40px;
   background: #ffffffd9;
   -webkit-backdrop-filter: blur(12px);
   backdrop-filter: blur(12px);
   border: 1px solid rgba(233, 30, 140, 0.15);
   box-shadow: 0 4px 16px -6px #e91e8c1f;
   color: #b45309;
   font-size: 11px;
   font-weight: 600;
   letter-spacing: 0.12em;
   text-transform: uppercase;
   margin-bottom: 24px;
}
.av-hero__dot.svelte-1oirgpe {
   width: 6px;
   height: 6px;
   border-radius: 50%;
   background: #22c55e;
   box-shadow: 0 0 0 4px #22c55e2e;
   animation: svelte-1oirgpe-av-pulse 2s ease-in-out infinite;
}
@keyframes svelte-1oirgpe-av-pulse {
   0%,
   to {
      opacity: 1;
      transform: scale(1);
   }
   50% {
      opacity: 0.6;
      transform: scale(1.3);
   }
}
.av-hero__h1.svelte-1oirgpe {
   font-family: Georgia, Times New Roman, serif;
   font-weight: 500;
   font-size: clamp(36px, 5vw, 64px);
   line-height: 1.04;
   letter-spacing: -0.035em;
   color: #1f1724;
   margin: 0 0 20px;
}
.av-hero__accent.svelte-1oirgpe {
   background: linear-gradient(120deg, #e91e8c, #f59e0b 60%, #f97316);
   -webkit-background-clip: text;
   background-clip: text;
   -webkit-text-fill-color: transparent;
   color: transparent;
   font-style: italic;
}
.av-hero__lead.svelte-1oirgpe {
   font-size: 16px;
   line-height: 1.7;
   color: #574757;
   max-width: 540px;
   margin: 0 0 28px;
}
.av-hero__cta.svelte-1oirgpe {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
   margin-bottom: 32px;
}
.av-hero__stats.svelte-1oirgpe {
   display: inline-flex;
   align-items: center;
   gap: 20px;
   padding: 14px 22px;
   border-radius: 18px;
   background: #ffffffbf;
   -webkit-backdrop-filter: blur(14px);
   backdrop-filter: blur(14px);
   border: 1px solid rgba(255, 255, 255, 0.9);
   box-shadow: 0 10px 30px -16px #2d12481f;
   flex-wrap: wrap;
}
.av-stat__n.svelte-1oirgpe {
   font-family: Georgia, serif;
   font-size: 22px;
   font-weight: 600;
   color: #1f1724;
   letter-spacing: -0.02em;
   line-height: 1;
}
.av-stat__n.svelte-1oirgpe span:where(.svelte-1oirgpe) {
   font-size: 14px;
   color: #e91e8c;
   font-weight: 500;
   margin-left: 1px;
}
.av-stat__n--live.svelte-1oirgpe {
   color: #059669;
   display: inline-flex;
   align-items: center;
   gap: 6px;
}
.av-stat__pulse.svelte-1oirgpe {
   display: inline-block;
   width: 7px;
   height: 7px;
   border-radius: 50%;
   background: #10b981;
   box-shadow: 0 0 0 3px #10b98140;
   animation: svelte-1oirgpe-av-pulse 1.8s infinite;
}
.av-stat__l.svelte-1oirgpe {
   font-size: 10px;
   font-weight: 600;
   color: #8a7888;
   letter-spacing: 0.14em;
   text-transform: uppercase;
   margin-top: 4px;
}
.av-stat__sep.svelte-1oirgpe {
   width: 1px;
   height: 30px;
   background: linear-gradient(
      180deg,
      transparent,
      rgba(233, 30, 140, 0.25),
      transparent
   );
}
.av-index.svelte-1oirgpe {
   position: relative;
   padding: 30px 28px 26px;
   border-radius: 24px;
   background: radial-gradient(
         ellipse at 0% 0%,
         rgba(251, 207, 232, 0.6) 0%,
         transparent 70%
      ),
      linear-gradient(155deg, #fff, #fff7ef 55%, #fef3c7);
   border: 1px solid rgba(255, 255, 255, 0.9);
   box-shadow: 0 30px 60px -28px #e91e8c40, 0 12px 28px -16px #f59e0b2e,
      inset 0 1px #fffc;
}
.av-index__ribbon.svelte-1oirgpe {
   position: absolute;
   top: 16px;
   right: -8px;
   padding: 4px 14px;
   border-radius: 4px 0 0 4px;
   background: linear-gradient(135deg, #e91e8c, #f97316);
   color: #fff;
   font-size: 10px;
   font-weight: 700;
   letter-spacing: 0.22em;
   text-transform: uppercase;
   box-shadow: 0 4px 10px -4px #e91e8c80;
}
.av-index__ribbon.svelte-1oirgpe:after {
   content: "";
   position: absolute;
   top: 100%;
   right: 0;
   border: 4px solid transparent;
   border-top-color: #9e0c66;
   border-right-color: #9e0c66;
}
.av-index__num.svelte-1oirgpe {
   font-family: Georgia, serif;
   font-size: 78px;
   font-weight: 500;
   background: linear-gradient(180deg, #e91e8c, #f59e0b);
   -webkit-background-clip: text;
   background-clip: text;
   -webkit-text-fill-color: transparent;
   color: transparent;
   line-height: 0.9;
   letter-spacing: -0.05em;
   margin-bottom: 4px;
}
.av-index__label.svelte-1oirgpe {
   font-size: 12px;
   color: #6b5a68;
   letter-spacing: 0.1em;
   text-transform: uppercase;
   font-weight: 600;
}
.av-index__rule.svelte-1oirgpe {
   display: block;
   height: 1px;
   margin: 18px 0 16px;
   background: linear-gradient(
      90deg,
      transparent,
      rgba(233, 30, 140, 0.2) 20%,
      rgba(245, 158, 11, 0.2) 80%,
      transparent
   );
}
.av-index__rows.svelte-1oirgpe {
   list-style: none;
   margin: 0;
   padding: 0;
   display: flex;
   flex-direction: column;
   gap: 9px;
}
.av-index__row.svelte-1oirgpe {
   display: flex;
   align-items: baseline;
   gap: 8px;
   font-size: 13px;
}
.av-index__zone.svelte-1oirgpe {
   font-weight: 600;
   color: #3a2d3a;
   white-space: nowrap;
}
.av-index__dots.svelte-1oirgpe {
   flex: 1;
   height: 1px;
   background-image: radial-gradient(
      circle,
      rgba(139, 100, 130, 0.4) 0.8px,
      transparent 1px
   );
   background-size: 5px 1px;
   background-repeat: repeat-x;
   align-self: center;
}
.av-index__count.svelte-1oirgpe {
   color: #6b5a68;
   font-weight: 500;
   white-space: nowrap;
}
.av-index__count.svelte-1oirgpe em:where(.svelte-1oirgpe) {
   color: #e91e8c;
   font-weight: 600;
   font-style: normal;
   margin-left: 2px;
}
.av-row--rose.svelte-1oirgpe {
   --dot: #f472b6;
}
.av-row--gold.svelte-1oirgpe {
   --dot: #f59e0b;
}
.av-row--coral.svelte-1oirgpe {
   --dot: #fb7185;
}
.av-row--teal.svelte-1oirgpe {
   --dot: #14b8a6;
}
.av-row--emerald.svelte-1oirgpe {
   --dot: #10b981;
}
.av-index__row.svelte-1oirgpe:before {
   content: "";
   width: 7px;
   height: 7px;
   border-radius: 50%;
   background: var(--dot, #e91e8c);
   margin-right: 2px;
   align-self: center;
}
.av-index__foot.svelte-1oirgpe {
   margin-top: 18px;
   padding-top: 14px;
   border-top: 1px dashed rgba(233, 30, 140, 0.15);
   display: flex;
   align-items: center;
   gap: 7px;
   font-size: 11px;
   color: #059669;
   font-weight: 500;
}
.av-intro-sec.svelte-1oirgpe {
   padding: 56px 0 0;
}
.av-intro.svelte-1oirgpe {
   max-width: 1000px;
   margin: 0 auto;
   text-align: center;
   font-size: 15.5px;
   line-height: 1.85;
   color: var(--text-muted);
}
.av-intro.svelte-1oirgpe .av-kw:where(.svelte-1oirgpe) {
   color: var(--rose);
   font-weight: 700;
}
.av-dir.svelte-1oirgpe {
   padding: 88px 0 96px;
   background: transparent;
}
.av-dir.svelte-1oirgpe > .grid-container:where(.svelte-1oirgpe) {
   position: relative;
   padding: 44px 36px 56px;
   border-radius: 28px;
   background: #ffffff8c;
   -webkit-backdrop-filter: blur(14px);
   backdrop-filter: blur(14px);
   border: 1px solid rgba(184, 134, 61, 0.14);
   box-shadow: 0 30px 60px -30px #2d12481a, inset 0 1px #fffc;
}
.av-dir.svelte-1oirgpe > .grid-container:where(.svelte-1oirgpe):before {
   content: "";
   position: absolute;
   top: 6px;
   right: 6px;
   bottom: 6px;
   left: 6px;
   border-radius: 24px;
   border: 1px dashed rgba(233, 30, 140, 0.1);
   pointer-events: none;
}
.av-dir__head.svelte-1oirgpe {
   text-align: center;
   max-width: 720px;
   margin: 0 auto 32px;
}
.av-search.svelte-1oirgpe {
   max-width: 640px;
   margin: 0 auto 20px;
   position: relative;
   display: flex;
   align-items: center;
   gap: 10px;
   padding: 4px 4px 4px 18px;
   border-radius: 50px;
   background: #ffffffd9;
   -webkit-backdrop-filter: blur(14px);
   backdrop-filter: blur(14px);
   border: 1px solid rgba(233, 30, 140, 0.12);
   box-shadow: 0 12px 32px -18px #e91e8c33;
   transition: border-color 0.25s, box-shadow 0.25s;
}
.av-search.svelte-1oirgpe:focus-within {
   border-color: #e91e8c66;
   box-shadow: 0 16px 40px -14px #e91e8c47;
}
.av-search.svelte-1oirgpe > svg:where(.svelte-1oirgpe) {
   color: #b45309;
   flex-shrink: 0;
}
.av-search.svelte-1oirgpe input:where(.svelte-1oirgpe) {
   flex: 1;
   border: none;
   outline: none;
   background: transparent;
   font-size: 14.5px;
   color: #1f1724;
   padding: 12px 6px;
}
.av-search.svelte-1oirgpe input:where(.svelte-1oirgpe)::placeholder {
   color: #a89199;
}
.av-search__clear.svelte-1oirgpe {
   width: 26px;
   height: 26px;
   border-radius: 50%;
   background: #e91e8c14;
   border: none;
   cursor: pointer;
   color: #e91e8c;
   display: inline-flex;
   align-items: center;
   justify-content: center;
}
.av-search__clear.svelte-1oirgpe:hover {
   background: #e91e8c26;
}
.av-search__count.svelte-1oirgpe {
   padding: 8px 16px;
   border-radius: 40px;
   background: linear-gradient(135deg, #fef3c7, #fde68a);
   color: #92400e;
   font-size: 13px;
   font-weight: 700;
   white-space: nowrap;
}
.av-search__count.svelte-1oirgpe small:where(.svelte-1oirgpe) {
   font-weight: 500;
   font-size: 11px;
   color: #a16207;
}
.av-chips.svelte-1oirgpe {
   display: flex;
   gap: 8px;
   justify-content: center;
   flex-wrap: wrap;
   margin: 0 auto 28px;
}
.av-chip.svelte-1oirgpe {
   padding: 8px 16px;
   border-radius: 40px;
   background: #ffffffbf;
   -webkit-backdrop-filter: blur(10px);
   backdrop-filter: blur(10px);
   border: 1px solid rgba(233, 30, 140, 0.1);
   color: #6b5a68;
   font-size: 12.5px;
   font-weight: 600;
   cursor: pointer;
   white-space: nowrap;
   transition: all 0.2s ease;
}
.av-chip.svelte-1oirgpe:hover {
   background: #fff;
   border-color: #e91e8c40;
   color: #e91e8c;
   transform: translateY(-1px);
}
.av-chip.is-active.svelte-1oirgpe {
   background: linear-gradient(135deg, #e91e8c, #f97316);
   border-color: transparent;
   color: #fff;
   box-shadow: 0 8px 20px -8px #e91e8c80;
}
.av-empty.svelte-1oirgpe {
   max-width: 440px;
   margin: 40px auto;
   text-align: center;
   padding: 40px 24px;
   border-radius: 20px;
   background: #ffffffb3;
   -webkit-backdrop-filter: blur(10px);
   backdrop-filter: blur(10px);
   border: 1px dashed rgba(233, 30, 140, 0.2);
}
.av-empty.svelte-1oirgpe svg:where(.svelte-1oirgpe) {
   color: #e91e8c;
   opacity: 0.6;
}
.av-empty.svelte-1oirgpe h3:where(.svelte-1oirgpe) {
   font-family: Georgia, serif;
   font-size: 20px;
   color: #1f1724;
   margin: 14px 0 6px;
}
.av-empty.svelte-1oirgpe p:where(.svelte-1oirgpe) {
   color: #6b5a68;
   font-size: 14px;
   margin: 0 0 18px;
}
.locs-grid.svelte-1oirgpe {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 18px;
}
.loc-card.svelte-1oirgpe {
   position: relative;
   display: flex;
   flex-direction: column;
   justify-content: flex-end;
   padding: 80px 18px 16px;
   border-radius: 20px;
   background: #fff;
   border: 1.5px solid rgba(var(--loc-c), 0.25);
   text-decoration: none;
   overflow: hidden;
   isolation: isolate;
   transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.4s ease, border-color 0.4s ease;
   box-shadow: 0 1px #fffc inset, 0 10px 28px -14px rgba(var(--loc-c), 0.2),
      0 4px 10px -6px #2d124814;
   min-height: 200px;
}
.loc-card.svelte-1oirgpe:nth-child(4n + 1) {
   --loc-c: 233, 30, 140;
   --loc-c2: 192, 38, 211;
}
.loc-card.svelte-1oirgpe:nth-child(4n + 2) {
   --loc-c: 124, 58, 237;
   --loc-c2: 192, 38, 211;
}
.loc-card.svelte-1oirgpe:nth-child(4n + 3) {
   --loc-c: 245, 158, 11;
   --loc-c2: 244, 63, 94;
}
.loc-card.svelte-1oirgpe:nth-child(4n + 4) {
   --loc-c: 14, 165, 233;
   --loc-c2: 124, 58, 237;
}
.loc-card.svelte-1oirgpe:hover {
   transform: translateY(-6px);
   border-color: rgba(var(--loc-c), 0.55);
   box-shadow: 0 1px #ffffffe6 inset, 0 24px 50px -16px rgba(var(--loc-c), 0.3),
      0 8px 16px -8px rgba(var(--loc-c), 0.18);
}
.loc-map.svelte-1oirgpe {
   position: absolute;
   top: 0;
   right: 0;
   bottom: 0;
   left: 0;
   z-index: -1;
   overflow: hidden;
   color: rgb(var(--loc-c));
}
.loc-map-svg.svelte-1oirgpe {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 65%;
   opacity: 0.55;
   transition: transform 0.6s ease, opacity 0.4s ease;
}
.loc-card.svelte-1oirgpe:hover .loc-map-svg:where(.svelte-1oirgpe) {
   transform: scale(1.08) translateY(-4px);
   opacity: 0.85;
}
.loc-gradient.svelte-1oirgpe {
   position: absolute;
   top: 0;
   right: 0;
   bottom: 0;
   left: 0;
   background: radial-gradient(
         90% 60% at 50% 0%,
         rgba(var(--loc-c), 0.18) 0%,
         rgba(var(--loc-c2), 0.08) 40%,
         transparent 70%
      ),
      linear-gradient(180deg, transparent 40%, #fff 80%);
}
.loc-pin-wrap.svelte-1oirgpe {
   position: absolute;
   top: 22px;
   left: 18px;
   width: 40px;
   height: 40px;
   display: flex;
   align-items: center;
   justify-content: center;
}
.loc-pin-pulse.svelte-1oirgpe {
   position: absolute;
   top: 0;
   right: 0;
   bottom: 0;
   left: 0;
   border-radius: 50%;
   background: rgba(var(--loc-c), 0.22);
   animation: svelte-1oirgpe-avLocPulse 2s ease-out infinite;
}
.loc-pin-pulse-2.svelte-1oirgpe {
   animation-delay: -1s;
}
@keyframes svelte-1oirgpe-avLocPulse {
   0% {
      transform: scale(0.6);
      opacity: 0.9;
   }
   to {
      transform: scale(1.8);
      opacity: 0;
   }
}
.loc-pin.svelte-1oirgpe {
   position: relative;
   width: 30px;
   height: 30px;
   border-radius: 50%;
   background: linear-gradient(135deg, rgb(var(--loc-c)), rgb(var(--loc-c2)));
   color: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   box-shadow: 0 6px 18px rgba(var(--loc-c), 0.45), inset 0 1px #fff6;
   transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
   z-index: 2;
}
.loc-card.svelte-1oirgpe:hover .loc-pin:where(.svelte-1oirgpe) {
   transform: translateY(-4px) scale(1.1);
}
.loc-count-badge.svelte-1oirgpe {
   position: absolute;
   top: 22px;
   right: 18px;
   display: inline-flex;
   align-items: center;
   gap: 5px;
   padding: 5px 10px;
   background: #fffffff2;
   border: 1px solid rgba(var(--loc-c), 0.25);
   border-radius: 50px;
   font-size: 11.5px;
   font-weight: 600;
   color: rgb(var(--loc-c));
   -webkit-backdrop-filter: blur(8px);
   backdrop-filter: blur(8px);
   box-shadow: 0 4px 12px rgba(var(--loc-c), 0.1);
}
.loc-dot.svelte-1oirgpe {
   width: 5px;
   height: 5px;
   background: #10b981;
   border-radius: 50%;
   box-shadow: 0 0 0 3px #10b98133;
   animation: svelte-1oirgpe-avLivePulse 1.6s ease-in-out infinite;
}
@keyframes svelte-1oirgpe-avLivePulse {
   0%,
   to {
      opacity: 1;
      transform: scale(1);
   }
   50% {
      opacity: 0.5;
      transform: scale(0.7);
   }
}
.loc-info.svelte-1oirgpe {
   margin-bottom: 10px;
}
.loc-name.svelte-1oirgpe {
   font-size: 18px;
   font-weight: 600;
   color: #110520;
   letter-spacing: -0.02em;
   line-height: 1.15;
   margin-bottom: 3px;
}
.loc-sub.svelte-1oirgpe {
   font-size: 11.5px;
   color: #4a2870;
   font-weight: 600;
}
.loc-foot.svelte-1oirgpe {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding-top: 10px;
   border-top: 1px dashed rgba(45, 18, 72, 0.1);
}
.loc-avail.svelte-1oirgpe {
   display: inline-flex;
   align-items: center;
   gap: 5px;
   font-size: 10.5px;
   font-weight: 500;
   color: #059669;
   letter-spacing: 0.02em;
}
.loc-live-dot.svelte-1oirgpe {
   width: 5px;
   height: 5px;
   background: #10b981;
   border-radius: 50%;
   box-shadow: 0 0 0 3px #10b9812e;
   animation: svelte-1oirgpe-avLivePulse 1.5s ease-in-out infinite;
}
.loc-go.svelte-1oirgpe {
   display: inline-flex;
   align-items: center;
   gap: 4px;
   font-size: 11px;
   font-weight: 600;
   color: rgb(var(--loc-c));
   letter-spacing: 0.05em;
   text-transform: uppercase;
   transition: transform 0.3s ease;
}
.loc-card.svelte-1oirgpe:hover .loc-go:where(.svelte-1oirgpe) {
   transform: translate(4px);
}
.av-zones.svelte-1oirgpe {
   padding: 88px 0 96px;
   background: transparent;
}
.av-zones.svelte-1oirgpe > .grid-container:where(.svelte-1oirgpe) {
   position: relative;
   padding: 44px 36px 50px;
   border-radius: 28px;
   background: #fff9;
   -webkit-backdrop-filter: blur(14px);
   backdrop-filter: blur(14px);
   border: 1px solid rgba(184, 134, 61, 0.15);
   box-shadow: 0 30px 60px -30px #f59e0b26, inset 0 1px #ffffffd9;
}
@property --avz-angle {
   syntax: "<angle>";
   inherits: false;
   initial-value: 0deg;
}
.avz__head.svelte-1oirgpe {
   position: relative;
   text-align: center;
   max-width: 760px;
   margin: 0 auto 56px;
   padding-top: 110px;
}
.avz__compass.svelte-1oirgpe {
   position: absolute;
   top: 0;
   left: 50%;
   transform: translate(-50%);
   width: 84px;
   height: 84px;
}
.avz__compass-ring.svelte-1oirgpe {
   position: absolute;
   top: 0;
   right: 0;
   bottom: 0;
   left: 0;
   border-radius: 50%;
   background: conic-gradient(
      from var(--avz-angle),
      #e91e8c,
      #d97706,
      #fb7185,
      #0d9488,
      #e91e8c
   );
   padding: 2px;
   -webkit-mask: linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
   -webkit-mask-composite: xor;
   mask-composite: exclude;
   animation: svelte-1oirgpe-avzSpin 10s linear infinite;
}
.avz__compass-dial.svelte-1oirgpe {
   position: absolute;
   top: 8px;
   right: 8px;
   bottom: 8px;
   left: 8px;
   border-radius: 50%;
   background: radial-gradient(circle at 50% 30%, #fff, #fef7f1 60%, #fdf2f8);
   border: 1px solid rgba(233, 30, 140, 0.18);
   box-shadow: inset 0 0 0 1px #ffffffe6, 0 10px 24px -12px #e91e8c4d;
   display: grid;
   place-items: center;
}
.avz__compass-dial.svelte-1oirgpe
   > span:where(.svelte-1oirgpe):not(.avz__compass-needle) {
   position: absolute;
   font: 700 9px Georgia, serif;
   color: #8a7888;
   letter-spacing: 0.08em;
}
.avz__compass-n.svelte-1oirgpe {
   top: 4px;
   left: 50%;
   transform: translate(-50%);
   color: #e91e8c !important;
}
.avz__compass-s.svelte-1oirgpe {
   bottom: 4px;
   left: 50%;
   transform: translate(-50%);
}
.avz__compass-e.svelte-1oirgpe {
   right: 5px;
   top: 50%;
   transform: translateY(-50%);
}
.avz__compass-w.svelte-1oirgpe {
   left: 5px;
   top: 50%;
   transform: translateY(-50%);
}
.avz__compass-needle.svelte-1oirgpe {
   width: 42px;
   height: 42px;
   animation: svelte-1oirgpe-avzNeedle 6s ease-in-out infinite;
}
@keyframes svelte-1oirgpe-avzSpin {
   to {
      --avz-angle: 360deg;
   }
}
@keyframes svelte-1oirgpe-avzNeedle {
   0%,
   to {
      transform: rotate(-8deg);
   }
   50% {
      transform: rotate(8deg);
   }
}
.avz__kicker.svelte-1oirgpe {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   font: 700 10.5px Courier New, monospace;
   color: #b45309;
   letter-spacing: 0.28em;
   margin-bottom: 18px;
}
.avz__kicker-line.svelte-1oirgpe {
   width: 34px;
   height: 1px;
   background: linear-gradient(
      90deg,
      transparent,
      rgba(217, 119, 6, 0.55),
      transparent
   );
}
.avz__title.svelte-1oirgpe {
   font-family: Georgia, Cormorant Garamond, serif;
   font-size: clamp(28px, 3.2vw, 42px);
   font-weight: 600;
   color: #1f1724;
   margin: 0 0 14px;
   letter-spacing: -0.025em;
   line-height: 1.12;
}
.avz__title-accent.svelte-1oirgpe {
   font-style: italic;
   background: linear-gradient(95deg, #e91e8c, #d97706 55%, #c2185b);
   -webkit-background-clip: text;
   background-clip: text;
   color: transparent;
}
.avz__lead.svelte-1oirgpe {
   font-size: 14.5px;
   color: #574757;
   line-height: 1.72;
   margin: 0 auto;
   max-width: 620px;
}
.avz__folio.svelte-1oirgpe {
   display: grid;
   grid-template-columns: repeat(5, 1fr);
   gap: 18px;
}
.avz__card.svelte-1oirgpe {
   position: relative;
   padding: 70px 22px 26px;
   min-height: 420px;
   border-radius: 4px 4px 20px 20px;
   background: radial-gradient(
         ellipse at 50% 0%,
         var(--avz-tint, rgba(251, 207, 232, 0.55)) 0%,
         transparent 55%
      ),
      linear-gradient(180deg, #fffdf8, #fff 55%, #fefbf5);
   border: 1px solid rgba(184, 134, 61, 0.18);
   box-shadow: 0 1px #ffffffe6 inset, 0 22px 50px -28px #2d124847,
      0 0 0 1px #ffffff80 inset;
   overflow: hidden;
   isolation: isolate;
   transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.45s;
   transform-origin: top center;
}
.avz__card.svelte-1oirgpe:before {
   content: "";
   position: absolute;
   top: 0;
   right: 0;
   bottom: 0;
   left: 0;
   background-image: radial-gradient(
      circle at 1px 1px,
      rgba(184, 134, 61, 0.14) 1px,
      transparent 1px
   );
   background-size: 14px 14px;
   opacity: 0.35;
   pointer-events: none;
   z-index: 0;
}
.avz__card.svelte-1oirgpe:after {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 6px;
   height: 100%;
   background: linear-gradient(180deg, var(--avz-c1), var(--avz-c2));
   box-shadow: inset -1px 0 #00000014;
   z-index: 1;
}
.avz__card.svelte-1oirgpe:hover {
   transform: translateY(-6px) rotate(-0.35deg);
   box-shadow: 0 1px #ffffffe6 inset,
      0 30px 60px -25px var(--avz-shadow, rgba(233, 30, 140, 0.35));
}
.avz__card.svelte-1oirgpe:hover .avz__ring:where(.svelte-1oirgpe) {
   animation-duration: 4s;
   opacity: 1;
}
.avz__card.svelte-1oirgpe:hover .avz__stamp:where(.svelte-1oirgpe) {
   transform: rotate(-8deg) scale(1.06);
   opacity: 1;
}
.avz__card.svelte-1oirgpe:hover .avz__numeral:where(.svelte-1oirgpe) {
   transform: translateY(-2px);
   letter-spacing: 0.02em;
}
.avz__card.svelte-1oirgpe:hover .avz__sparkle:where(.svelte-1oirgpe) {
   opacity: 1;
}
.avz__card--rose.svelte-1oirgpe {
   --avz-c1: #f472b6;
   --avz-c2: #e91e8c;
   --avz-tint: rgba(251, 207, 232, 0.6);
   --avz-shadow: rgba(233, 30, 140, 0.35);
}
.avz__card--gold.svelte-1oirgpe {
   --avz-c1: #fcd34d;
   --avz-c2: #d97706;
   --avz-tint: rgba(253, 230, 138, 0.55);
   --avz-shadow: rgba(217, 119, 6, 0.32);
}
.avz__card--coral.svelte-1oirgpe {
   --avz-c1: #fda4af;
   --avz-c2: #f43f5e;
   --avz-tint: rgba(254, 205, 211, 0.6);
   --avz-shadow: rgba(244, 63, 94, 0.32);
}
.avz__card--teal.svelte-1oirgpe {
   --avz-c1: #5eead4;
   --avz-c2: #0d9488;
   --avz-tint: rgba(204, 251, 241, 0.6);
   --avz-shadow: rgba(13, 148, 136, 0.28);
}
.avz__card--emerald.svelte-1oirgpe {
   --avz-c1: #6ee7b7;
   --avz-c2: #059669;
   --avz-tint: rgba(209, 250, 229, 0.6);
   --avz-shadow: rgba(5, 150, 105, 0.28);
}
.avz__ring.svelte-1oirgpe {
   position: absolute;
   top: -60px;
   right: -60px;
   width: 180px;
   height: 180px;
   border-radius: 50%;
   background: conic-gradient(
      from var(--avz-angle),
      transparent 0%,
      var(--avz-c1) 25%,
      transparent 50%,
      var(--avz-c2) 75%,
      transparent 100%
   );
   -webkit-mask: radial-gradient(
      circle,
      transparent 58%,
      #000 60%,
      #000 68%,
      transparent 70%
   );
   mask: radial-gradient(
      circle,
      transparent 58%,
      #000 60%,
      #000 68%,
      transparent 70%
   );
   opacity: 0.55;
   animation: svelte-1oirgpe-avzSpin 14s linear infinite;
   z-index: 0;
}
.avz__stamp.svelte-1oirgpe {
   position: absolute;
   top: 16px;
   right: 14px;
   width: 58px;
   height: 58px;
   transform: rotate(-14deg);
   opacity: 0.85;
   transition: transform 0.5s ease, opacity 0.4s;
   z-index: 2;
   pointer-events: none;
}
.avz__stamp-ring.svelte-1oirgpe {
   position: absolute;
   top: 0;
   right: 0;
   bottom: 0;
   left: 0;
   border-radius: 50%;
   border: 1.2px dashed var(--avz-c2);
   opacity: 0.65;
}
.avz__stamp-ring.svelte-1oirgpe:before {
   content: "";
   position: absolute;
   top: 4px;
   right: 4px;
   bottom: 4px;
   left: 4px;
   border-radius: 50%;
   border: 1px solid var(--avz-c2);
   opacity: 0.4;
}
.avz__stamp-text.svelte-1oirgpe {
   position: absolute;
   top: 0;
   right: 0;
   bottom: 0;
   left: 0;
   font: 700 5.5px Courier New, monospace;
   color: var(--avz-c2);
   letter-spacing: 0.15em;
   text-transform: uppercase;
   display: grid;
   place-items: center;
   opacity: 0;
}
.avz__stamp-core.svelte-1oirgpe {
   position: absolute;
   top: 8px;
   right: 8px;
   bottom: 8px;
   left: 8px;
   border-radius: 50%;
   background: linear-gradient(135deg, var(--avz-c1), var(--avz-c2));
   color: #fff;
   font: 700 20px Georgia, serif;
   display: grid;
   place-items: center;
   box-shadow: inset 0 1px #fff6, 0 4px 10px -4px var(--avz-shadow);
}
.avz__sparkle.svelte-1oirgpe {
   position: absolute;
   font-size: 11px;
   color: var(--avz-c2);
   opacity: 0.25;
   transition: opacity 0.5s;
   z-index: 1;
}
.avz__sparkle--a.svelte-1oirgpe {
   top: 90px;
   left: 18px;
   animation: svelte-1oirgpe-avzFloat 5s ease-in-out infinite;
}
.avz__sparkle--b.svelte-1oirgpe {
   bottom: 110px;
   right: 32px;
   animation: svelte-1oirgpe-avzFloat 6s ease-in-out infinite 1s;
}
@keyframes svelte-1oirgpe-avzFloat {
   0%,
   to {
      transform: translateY(0) rotate(0);
   }
   50% {
      transform: translateY(-6px) rotate(15deg);
   }
}
.avz__top.svelte-1oirgpe {
   position: relative;
   z-index: 2;
   display: flex;
   align-items: center;
   justify-content: space-between;
   margin-bottom: 12px;
}
.avz__dir.svelte-1oirgpe {
   display: inline-flex;
   align-items: center;
   gap: 5px;
   padding: 3px 9px 3px 7px;
   border-radius: 30px;
   background: #ffffffe6;
   border: 1px solid rgba(184, 134, 61, 0.25);
   color: var(--avz-c2);
   font: 700 10px Courier New, monospace;
   letter-spacing: 0.1em;
}
.avz__folio-no.svelte-1oirgpe {
   font: 500 9.5px Courier New, monospace;
   color: #8a7888;
   letter-spacing: 0.14em;
   text-transform: uppercase;
}
.avz__numeral-wrap.svelte-1oirgpe {
   position: relative;
   text-align: center;
   margin: 6px 0 14px;
   z-index: 2;
}
.avz__numeral.svelte-1oirgpe {
   display: inline-block;
   font-family: Georgia, Cormorant Garamond, serif;
   font-size: 82px;
   font-weight: 500;
   line-height: 1;
   background: linear-gradient(
      180deg,
      var(--avz-c1) 0%,
      var(--avz-c2) 70%,
      #1f1724 140%
   );
   -webkit-background-clip: text;
   background-clip: text;
   color: transparent;
   letter-spacing: 0.01em;
   transition: transform 0.5s, letter-spacing 0.5s;
}
.avz__numeral-shadow.svelte-1oirgpe {
   position: absolute;
   top: 6px;
   left: 50%;
   transform: translate(-50%);
   font-family: Georgia, serif;
   font-size: 82px;
   font-weight: 500;
   line-height: 1;
   color: transparent;
   -webkit-text-stroke: 1px rgba(184, 134, 61, 0.18);
   z-index: -1;
}
.avz__name.svelte-1oirgpe {
   position: relative;
   z-index: 2;
   text-align: center;
   font-family: Georgia, Cormorant Garamond, serif;
   font-size: 19px;
   font-weight: 600;
   color: #1f1724;
   margin: 0 0 6px;
   letter-spacing: -0.015em;
   line-height: 1.2;
}
.avz__blurb.svelte-1oirgpe {
   position: relative;
   z-index: 2;
   text-align: center;
   font-size: 11.5px;
   color: #6b5a68;
   font-style: italic;
   line-height: 1.5;
   margin: 0 0 18px;
   min-height: 32px;
}
.avz__perf.svelte-1oirgpe {
   position: relative;
   z-index: 1;
   display: block;
   height: 1px;
   margin: 0 -22px 18px;
   background: repeating-linear-gradient(
      90deg,
      rgba(184, 134, 61, 0.35) 0,
      rgba(184, 134, 61, 0.35) 4px,
      transparent 4px,
      transparent 9px
   );
}
.avz__perf.svelte-1oirgpe:before,
.avz__perf.svelte-1oirgpe:after {
   content: "";
   position: absolute;
   top: -6px;
   width: 12px;
   height: 12px;
   border-radius: 50%;
   background: #fef7f1;
   border: 1px solid rgba(184, 134, 61, 0.18);
}
.avz__perf.svelte-1oirgpe:before {
   left: -6px;
}
.avz__perf.svelte-1oirgpe:after {
   right: -6px;
}
.avz__stats.svelte-1oirgpe {
   position: relative;
   z-index: 2;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 14px;
   margin-bottom: 22px;
}
.avz__stat.svelte-1oirgpe {
   display: flex;
   flex-direction: column;
   align-items: center;
   min-width: 60px;
}
.avz__stat-n.svelte-1oirgpe {
   font-family: Georgia, serif;
   font-size: 30px;
   font-weight: 600;
   line-height: 1;
   letter-spacing: -0.02em;
   background: linear-gradient(135deg, var(--avz-c1), var(--avz-c2));
   -webkit-background-clip: text;
   background-clip: text;
   color: transparent;
}
.avz__stat-l.svelte-1oirgpe {
   margin-top: 4px;
   font: 700 9px Courier New, monospace;
   color: #8a7888;
   letter-spacing: 0.22em;
   text-transform: uppercase;
}
.avz__stat-div.svelte-1oirgpe {
   width: 1px;
   height: 30px;
   background: linear-gradient(
      180deg,
      transparent,
      rgba(184, 134, 61, 0.4),
      transparent
   );
}
.avz__cta.svelte-1oirgpe {
   position: relative;
   z-index: 2;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
   width: 100%;
   padding: 10px 14px;
   border: 1px solid rgba(184, 134, 61, 0.28);
   background: #fff;
   border-radius: 30px;
   cursor: pointer;
   font: 700 10.5px Courier New, monospace;
   color: #1f1724;
   letter-spacing: 0.22em;
   text-transform: uppercase;
   overflow: hidden;
   transition: color 0.3s, border-color 0.3s;
}
.avz__cta.svelte-1oirgpe:before {
   content: "";
   position: absolute;
   top: 0;
   right: 0;
   bottom: 0;
   left: 0;
   background: linear-gradient(135deg, var(--avz-c1), var(--avz-c2));
   transform: translate(-101%);
   transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
   z-index: 0;
}
.avz__cta.svelte-1oirgpe span:where(.svelte-1oirgpe) {
   position: relative;
   z-index: 1;
}
.avz__cta-arrow.svelte-1oirgpe {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 20px;
   height: 20px;
   border-radius: 50%;
   background: linear-gradient(135deg, var(--avz-c1), var(--avz-c2));
   color: #fff;
   transition: transform 0.4s;
}
.avz__cta.svelte-1oirgpe:hover {
   color: #fff;
   border-color: transparent;
}
.avz__cta.svelte-1oirgpe:hover:before {
   transform: translate(0);
}
.avz__cta.svelte-1oirgpe:hover .avz__cta-arrow:where(.svelte-1oirgpe) {
   background: #fff;
   color: var(--avz-c2);
   transform: rotate(-45deg);
}
@media (max-width: 1080px) {
   .avz__folio.svelte-1oirgpe {
      grid-template-columns: repeat(6, 1fr);
      gap: 14px;
   }
   .avz__card.svelte-1oirgpe {
      min-height: 400px;
      padding: 60px 18px 22px;
   }
   .avz__card.svelte-1oirgpe:nth-child(1),
   .avz__card.svelte-1oirgpe:nth-child(2),
   .avz__card.svelte-1oirgpe:nth-child(3) {
      grid-column: span 2;
   }
   .avz__card.svelte-1oirgpe:nth-child(4) {
      grid-column: 2 / span 2;
   }
   .avz__card.svelte-1oirgpe:nth-child(5) {
      grid-column: 4 / span 2;
   }
}
@media (max-width: 720px) {
   .avz__folio.svelte-1oirgpe {
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
   }
   .avz__card.svelte-1oirgpe,
   .avz__card.svelte-1oirgpe:nth-child(n) {
      grid-column: auto;
   }
   .avz__card.svelte-1oirgpe {
      min-height: 370px;
      padding: 56px 16px 20px;
   }
   .avz__card.svelte-1oirgpe:last-child {
      grid-column: 1 / -1;
   }
   .avz__numeral.svelte-1oirgpe,
   .avz__numeral-shadow.svelte-1oirgpe {
      font-size: 70px;
   }
   .avz__stamp.svelte-1oirgpe {
      width: 50px;
      height: 50px;
      top: 12px;
      right: 12px;
   }
   .avz__stamp-core.svelte-1oirgpe {
      font-size: 18px;
   }
}
@media (max-width: 460px) {
   .avz__folio.svelte-1oirgpe {
      grid-template-columns: 1fr;
   }
   .avz__card.svelte-1oirgpe:last-child {
      grid-column: auto;
   }
   .avz__card.svelte-1oirgpe {
      min-height: 340px;
      padding: 52px 18px 20px;
   }
   .avz__head.svelte-1oirgpe {
      padding-top: 96px;
      margin-bottom: 36px;
   }
   .avz__compass.svelte-1oirgpe {
      width: 70px;
      height: 70px;
   }
   .avz__title.svelte-1oirgpe {
      font-size: clamp(24px, 6.5vw, 32px);
   }
   .avz__kicker.svelte-1oirgpe {
      font-size: 10px;
      letter-spacing: 0.22em;
      gap: 8px;
   }
   .avz__kicker-line.svelte-1oirgpe {
      width: 22px;
   }
   .avz__numeral.svelte-1oirgpe,
   .avz__numeral-shadow.svelte-1oirgpe {
      font-size: 80px;
   }
   .avz__stats.svelte-1oirgpe {
      gap: 18px;
   }
   .avz__stat-n.svelte-1oirgpe {
      font-size: 32px;
   }
}
.av-how.svelte-1oirgpe {
   padding: 88px 0 96px;
   background: transparent;
}
.av-how.svelte-1oirgpe > .grid-container:where(.svelte-1oirgpe) {
   position: relative;
   padding: 48px 36px 52px;
   border-radius: 28px;
   background: #ffffffb3;
   -webkit-backdrop-filter: blur(14px);
   backdrop-filter: blur(14px);
   border: 1px solid rgba(184, 134, 61, 0.14);
   box-shadow: 0 30px 60px -30px #e91e8c1f, inset 0 1px #ffffffd9;
}
.av-how.avh.svelte-1oirgpe > .grid-container:where(.svelte-1oirgpe) {
   position: relative;
   overflow: hidden;
}
.avh__paths.svelte-1oirgpe {
   position: absolute;
   top: 0;
   right: 0;
   bottom: 0;
   left: 0;
   width: 100%;
   height: 100%;
   pointer-events: none;
   z-index: 0;
}
.avh__paths.svelte-1oirgpe circle:where(.svelte-1oirgpe) {
   filter: drop-shadow(0 2px 4px rgba(233, 30, 140, 0.18));
}
.avh__layout.svelte-1oirgpe {
   position: relative;
   z-index: 1;
   display: grid;
   grid-template-columns: 1fr 320px 1fr;
   align-items: center;
   gap: 20px;
   min-height: 500px;
}
.avh__mark.svelte-1oirgpe {
   position: relative;
   padding: 10px 10px 10px 0;
}
.avh__mark-num.svelte-1oirgpe {
   position: absolute;
   top: -18px;
   left: -12px;
   font-family: Georgia, Cormorant Garamond, serif;
   font-size: clamp(120px, 14vw, 200px);
   font-weight: 700;
   line-height: 1;
   color: transparent;
   -webkit-text-stroke: 2px rgba(233, 30, 140, 0.18);
   letter-spacing: -0.04em;
   -webkit-user-select: none;
   user-select: none;
   z-index: 0;
}
.avh__mark-label.svelte-1oirgpe {
   position: relative;
   z-index: 1;
   padding-top: 50px;
}
.avh__kicker.svelte-1oirgpe {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   font: 700 10.5px Courier New, monospace;
   color: #b45309;
   letter-spacing: 0.28em;
   text-transform: uppercase;
   margin-bottom: 18px;
}
.avh__kicker-dot.svelte-1oirgpe {
   width: 30px;
   height: 1px;
   background: linear-gradient(90deg, #d97706, transparent);
}
.avh__title.svelte-1oirgpe {
   font-family: Georgia, Cormorant Garamond, serif;
   font-size: clamp(30px, 3.6vw, 46px);
   font-weight: 600;
   color: #1f1724;
   margin: 0 0 16px;
   letter-spacing: -0.025em;
   line-height: 1.1;
}
.avh__title-accent.svelte-1oirgpe {
   font-style: italic;
   background: linear-gradient(95deg, #e91e8c, #d97706 60%, #c2185b);
   -webkit-background-clip: text;
   background-clip: text;
   color: transparent;
}
.avh__sub.svelte-1oirgpe {
   font-size: 14px;
   color: #574757;
   line-height: 1.7;
   margin: 0;
   max-width: 320px;
}
.avh__orb.svelte-1oirgpe {
   position: relative;
   width: 300px;
   height: 300px;
   margin: 0 auto;
   display: grid;
   place-items: center;
}
.avh__orb-ring.svelte-1oirgpe {
   position: absolute;
   top: 0;
   right: 0;
   bottom: 0;
   left: 0;
   border-radius: 50%;
   background: radial-gradient(
      circle at 50% 50%,
      rgba(251, 207, 232, 0.45) 0%,
      rgba(253, 230, 138, 0.3) 55%,
      transparent 70%
   );
   animation: svelte-1oirgpe-avhPulse 4s ease-in-out infinite;
}
.avh__orb-ring--2.svelte-1oirgpe {
   top: 18px;
   right: 18px;
   bottom: 18px;
   left: 18px;
   background: transparent;
   border: 1.5px dashed rgba(233, 30, 140, 0.22);
   animation: svelte-1oirgpe-avhSpin2 18s linear infinite;
}
.avh__orb-core.svelte-1oirgpe {
   position: relative;
   width: 200px;
   height: 200px;
   border-radius: 50%;
   background: radial-gradient(circle at 50% 40%, #fff, #fef7f1 55%, #fdf2f8);
   border: 1.5px solid rgba(233, 30, 140, 0.2);
   box-shadow: inset 0 2px #ffffffe6, 0 20px 45px -20px #e91e8c66;
   display: grid;
   place-items: center;
}
.avh__orb-icon.svelte-1oirgpe {
   width: 110px;
   height: 110px;
   filter: drop-shadow(0 6px 14px rgba(233, 30, 140, 0.2));
}
.avh__orb-sparkle.svelte-1oirgpe {
   position: absolute;
   font-size: 14px;
   color: #d97706;
   pointer-events: none;
   animation: svelte-1oirgpe-avhFloat 5s ease-in-out infinite;
}
.avh__orb-sparkle--a.svelte-1oirgpe {
   top: 12px;
   right: 22px;
   color: #e91e8c;
}
.avh__orb-sparkle--b.svelte-1oirgpe {
   bottom: 18px;
   left: 24px;
   animation-delay: 1.2s;
}
.avh__orb-sparkle--c.svelte-1oirgpe {
   top: 50%;
   right: -8px;
   animation-delay: 2s;
   color: #f43f5e;
}
.avh__orb-badge.svelte-1oirgpe {
   position: absolute;
   bottom: -6px;
   left: 50%;
   transform: translate(-50%);
   display: inline-flex;
   align-items: center;
   gap: 6px;
   padding: 5px 13px;
   border-radius: 30px;
   background: linear-gradient(135deg, #059669, #0d9488);
   color: #fff;
   font: 700 10px Courier New, monospace;
   letter-spacing: 0.16em;
   text-transform: uppercase;
   box-shadow: 0 8px 22px -8px #0596698c;
}
.avh__orb-badge.svelte-1oirgpe svg:where(.svelte-1oirgpe) {
   animation: svelte-1oirgpe-avhPing 1.8s ease-in-out infinite;
}
@keyframes svelte-1oirgpe-avhPulse {
   0%,
   to {
      transform: scale(1);
      opacity: 1;
   }
   50% {
      transform: scale(1.04);
      opacity: 0.92;
   }
}
@keyframes svelte-1oirgpe-avhSpin2 {
   to {
      transform: rotate(360deg);
   }
}
@keyframes svelte-1oirgpe-avhFloat {
   0%,
   to {
      transform: translateY(0) rotate(0);
      opacity: 0.85;
   }
   50% {
      transform: translateY(-8px) rotate(20deg);
      opacity: 1;
   }
}
@keyframes svelte-1oirgpe-avhPing {
   0%,
   to {
      opacity: 1;
      transform: scale(1);
   }
   50% {
      opacity: 0.55;
      transform: scale(1.3);
   }
}
.avh__steps.svelte-1oirgpe {
   list-style: none;
   margin: 0;
   padding: 0;
   display: flex;
   flex-direction: column;
   gap: 10px;
}
.avh__step.svelte-1oirgpe {
   position: relative;
   display: grid;
   grid-template-columns: 52px 1fr;
   gap: 18px;
   align-items: flex-start;
   padding: 8px 0;
}
.avh__step-curve.svelte-1oirgpe {
   position: absolute;
   top: 56px;
   left: 22px;
   width: 100px;
   height: 80px;
   pointer-events: none;
   z-index: 0;
}
.avh__step-curve.svelte-1oirgpe svg:where(.svelte-1oirgpe) {
   width: 100%;
   height: 100%;
}
.avh__step-curve--mid.svelte-1oirgpe {
   left: -6px;
   top: 56px;
}
.avh__step-n.svelte-1oirgpe {
   position: relative;
   z-index: 2;
   width: 52px;
   height: 52px;
   border-radius: 50%;
   display: grid;
   place-items: center;
   background: #fff;
   border: 1.5px solid rgba(184, 134, 61, 0.25);
   font-family: Georgia, serif;
   font-size: 22px;
   font-weight: 600;
   color: #b45309;
   box-shadow: inset 0 1px #ffffffe6, 0 10px 24px -14px #2d12484d;
   transition: transform 0.35s ease, box-shadow 0.35s;
}
.avh__step--rose.svelte-1oirgpe .avh__step-n:where(.svelte-1oirgpe) {
   color: #e91e8c;
   border-color: #e91e8c59;
}
.avh__step--gold.svelte-1oirgpe .avh__step-n:where(.svelte-1oirgpe) {
   color: #d97706;
   border-color: #d9770666;
}
.avh__step-n--filled.svelte-1oirgpe {
   background: linear-gradient(135deg, #e91e8c, #f43f5e 55%, #d97706);
   color: #fff !important;
   border: none !important;
   box-shadow: inset 0 1px #ffffff59, 0 14px 28px -10px #e91e8c8c;
}
.avh__step.svelte-1oirgpe:hover .avh__step-n:where(.svelte-1oirgpe) {
   transform: scale(1.08) rotate(-4deg);
}
.avh__step.svelte-1oirgpe:hover .avh__step-n--filled:where(.svelte-1oirgpe) {
   transform: scale(1.08) rotate(4deg);
}
.avh__step-body.svelte-1oirgpe h4:where(.svelte-1oirgpe) {
   font-family: Georgia, Cormorant Garamond, serif;
   font-size: 18px;
   font-weight: 600;
   color: #1f1724;
   margin: 4px 0 6px;
   letter-spacing: -0.015em;
}
.avh__step--rose.svelte-1oirgpe
   .avh__step-body:where(.svelte-1oirgpe)
   h4:where(.svelte-1oirgpe) {
   color: #c2185b;
}
.avh__step--gold.svelte-1oirgpe
   .avh__step-body:where(.svelte-1oirgpe)
   h4:where(.svelte-1oirgpe) {
   color: #b45309;
}
.avh__step--final.svelte-1oirgpe
   .avh__step-body:where(.svelte-1oirgpe)
   h4:where(.svelte-1oirgpe) {
   background: linear-gradient(95deg, #e91e8c, #d97706);
   -webkit-background-clip: text;
   background-clip: text;
   color: transparent;
}
.avh__step-body.svelte-1oirgpe p:where(.svelte-1oirgpe) {
   font-size: 13px;
   color: #6b5a68;
   line-height: 1.65;
   margin: 0;
   max-width: 340px;
}
.avh__step-flag.svelte-1oirgpe {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   margin-top: 10px;
   padding: 4px 11px;
   border-radius: 30px;
   background: linear-gradient(135deg, #0596691f, #0d94881f);
   border: 1px solid rgba(5, 150, 105, 0.3);
   color: #047857;
   font: 700 10px Courier New, monospace;
   letter-spacing: 0.16em;
   text-transform: uppercase;
}
@media (max-width: 1080px) {
   .avh__layout.svelte-1oirgpe {
      grid-template-columns: 1fr 240px 1fr;
      gap: 16px;
      min-height: 440px;
   }
   .avh__orb.svelte-1oirgpe {
      width: 240px;
      height: 240px;
   }
   .avh__orb-core.svelte-1oirgpe {
      width: 160px;
      height: 160px;
   }
   .avh__orb-icon.svelte-1oirgpe {
      width: 90px;
      height: 90px;
   }
   .avh__mark-num.svelte-1oirgpe {
      font-size: clamp(100px, 12vw, 160px);
   }
}
@media (max-width: 900px) {
   .avh__layout.svelte-1oirgpe {
      grid-template-columns: 1fr;
      gap: 36px;
      text-align: center;
      min-height: auto;
   }
   .avh__paths.svelte-1oirgpe {
      display: none;
   }
   .avh__mark.svelte-1oirgpe {
      padding: 0;
      text-align: center;
   }
   .avh__mark-num.svelte-1oirgpe {
      font-size: clamp(110px, 22vw, 160px);
      top: -10px;
      left: 50%;
      transform: translate(-50%);
   }
   .avh__mark-label.svelte-1oirgpe {
      padding-top: 62px;
   }
   .avh__kicker.svelte-1oirgpe {
      justify-content: center;
   }
   .avh__sub.svelte-1oirgpe {
      max-width: 480px;
      margin: 0 auto;
   }
   .avh__orb.svelte-1oirgpe {
      width: 240px;
      height: 240px;
   }
   .avh__steps.svelte-1oirgpe {
      max-width: 520px;
      margin: 0 auto;
      text-align: left;
   }
   .avh__step-curve.svelte-1oirgpe {
      display: none;
   }
}
@media (max-width: 560px) {
   .avh__orb.svelte-1oirgpe {
      width: 210px;
      height: 210px;
   }
   .avh__orb-core.svelte-1oirgpe {
      width: 150px;
      height: 150px;
   }
   .avh__orb-icon.svelte-1oirgpe {
      width: 82px;
      height: 82px;
   }
   .avh__orb-badge.svelte-1oirgpe {
      font-size: 9px;
      padding: 4px 10px;
   }
   .avh__title.svelte-1oirgpe {
      font-size: clamp(26px, 7vw, 34px);
   }
   .avh__sub.svelte-1oirgpe {
      font-size: 13px;
   }
}
@media (max-width: 420px) {
   .avh__orb.svelte-1oirgpe {
      width: 190px;
      height: 190px;
   }
   .avh__orb-core.svelte-1oirgpe {
      width: 135px;
      height: 135px;
   }
   .avh__orb-icon.svelte-1oirgpe {
      width: 76px;
      height: 76px;
   }
   .avh__step.svelte-1oirgpe {
      gap: 14px;
      grid-template-columns: 44px 1fr;
   }
   .avh__step-n.svelte-1oirgpe {
      width: 44px;
      height: 44px;
      font-size: 19px;
   }
}
.av-faq.svelte-1oirgpe {
   padding: 88px 0 96px;
   background: transparent;
}
.av-faq.svelte-1oirgpe > .grid-container:where(.svelte-1oirgpe) {
   position: relative;
   padding: 44px 36px 50px;
   border-radius: 28px;
   background: #ffffffb3;
   -webkit-backdrop-filter: blur(14px);
   backdrop-filter: blur(14px);
   border: 1px solid rgba(184, 134, 61, 0.15);
   box-shadow: 0 30px 60px -30px #f59e0b24, inset 0 1px #ffffffd9;
}
.avf__layout.svelte-1oirgpe {
   display: grid;
   grid-template-columns: 300px 1fr;
   gap: 40px;
   align-items: start;
}
.avf__desk.svelte-1oirgpe {
   position: sticky;
   top: 100px;
   padding: 26px 22px 24px;
   border-radius: 20px;
   background: radial-gradient(
         ellipse at 0% 0%,
         rgba(251, 207, 232, 0.4) 0%,
         transparent 55%
      ),
      radial-gradient(
         ellipse at 100% 100%,
         rgba(253, 230, 138, 0.35) 0%,
         transparent 55%
      ),
      linear-gradient(160deg, #fff, #fffaf2);
   border: 1px solid rgba(184, 134, 61, 0.22);
   box-shadow: inset 0 1px #ffffffe6, 0 30px 60px -28px #e91e8c33;
}
.avf__desk-ornament.svelte-1oirgpe {
   position: relative;
   width: 56px;
   height: 56px;
   margin-bottom: 14px;
   display: grid;
   place-items: center;
   color: #e91e8c;
}
.avf__desk-ring.svelte-1oirgpe {
   position: absolute;
   top: 0;
   right: 0;
   bottom: 0;
   left: 0;
   border-radius: 50%;
   background: conic-gradient(
      from var(--avz-angle, 0deg),
      #e91e8c,
      #d97706,
      #fb7185,
      #e91e8c
   );
   padding: 2px;
   -webkit-mask: linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
   -webkit-mask-composite: xor;
   mask-composite: exclude;
   animation: svelte-1oirgpe-avzSpin 8s linear infinite;
}
.avf__desk-ornament.svelte-1oirgpe svg:where(.svelte-1oirgpe) {
   position: relative;
   z-index: 1;
   background: #fff;
   border-radius: 50%;
   padding: 8px;
   box-shadow: inset 0 1px #ffffffe6;
   width: 40px;
   height: 40px;
}
.avf__desk-kicker.svelte-1oirgpe {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   font: 700 10px Courier New, monospace;
   color: #b45309;
   letter-spacing: 0.26em;
   text-transform: uppercase;
   margin-bottom: 12px;
}
.avf__desk-kicker-line.svelte-1oirgpe {
   width: 24px;
   height: 1px;
   background: linear-gradient(90deg, #d97706, transparent);
}
.avf__desk-title.svelte-1oirgpe {
   font-family: Georgia, Cormorant Garamond, serif;
   font-size: 28px;
   font-weight: 600;
   color: #1f1724;
   margin: 0 0 12px;
   letter-spacing: -0.02em;
   line-height: 1.12;
}
.avf__desk-title-accent.svelte-1oirgpe {
   font-style: italic;
   background: linear-gradient(95deg, #e91e8c, #d97706);
   -webkit-background-clip: text;
   background-clip: text;
   color: transparent;
}
.avf__desk-lead.svelte-1oirgpe {
   font-size: 13px;
   color: #574757;
   line-height: 1.65;
   margin: 0 0 20px;
}
.avf__desk-card.svelte-1oirgpe {
   padding: 14px;
   border-radius: 14px;
   background: linear-gradient(160deg, #f0fdf4, #ecfeff);
   border: 1px solid rgba(5, 150, 105, 0.25);
   box-shadow: inset 0 1px #ffffffe6;
   margin-bottom: 18px;
}
.avf__desk-card-top.svelte-1oirgpe {
   display: flex;
   align-items: center;
   gap: 7px;
   margin-bottom: 10px;
   font: 700 9.5px Courier New, monospace;
   color: #047857;
   letter-spacing: 0.18em;
   text-transform: uppercase;
}
.avf__live-dot.svelte-1oirgpe {
   width: 7px;
   height: 7px;
   border-radius: 50%;
   background: #10b981;
   box-shadow: 0 0 #10b9818c;
   animation: svelte-1oirgpe-avfPulse 1.6s ease-out infinite;
}
@keyframes svelte-1oirgpe-avfPulse {
   0% {
      box-shadow: 0 0 #10b9818c;
   }
   70% {
      box-shadow: 0 0 0 9px #10b98100;
   }
   to {
      box-shadow: 0 0 #10b98100;
   }
}
.avf__desk-card-hint.svelte-1oirgpe {
   display: block;
   font: 500 italic 13px Georgia, serif;
   color: #065f46;
   margin-bottom: 8px;
}
.avf__desk-cta.svelte-1oirgpe {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   width: 100%;
   justify-content: center;
   padding: 10px 12px;
   border-radius: 30px;
   background: linear-gradient(135deg, #059669, #0d9488);
   color: #fff;
   font: 700 11px Courier New, monospace;
   letter-spacing: 0.16em;
   text-transform: uppercase;
   text-decoration: none;
   box-shadow: 0 10px 22px -10px #0596698c;
   transition: transform 0.3s, box-shadow 0.3s;
}
.avf__desk-cta.svelte-1oirgpe:hover {
   transform: translateY(-1px);
   box-shadow: 0 14px 28px -10px #059669b3;
}
.avf__desk-trust.svelte-1oirgpe {
   list-style: none;
   margin: 0;
   padding: 0;
   display: flex;
   flex-direction: column;
   gap: 8px;
}
.avf__desk-trust.svelte-1oirgpe li:where(.svelte-1oirgpe) {
   display: flex;
   align-items: center;
   gap: 8px;
   font-size: 12px;
   color: #574757;
   line-height: 1.4;
}
.avf__desk-trust.svelte-1oirgpe
   li:where(.svelte-1oirgpe)
   svg:where(.svelte-1oirgpe) {
   color: #059669;
   flex-shrink: 0;
}
.avf__ledger.svelte-1oirgpe {
   display: flex;
   flex-direction: column;
   gap: 14px;
}
.avf__entry.svelte-1oirgpe {
   position: relative;
   background: linear-gradient(180deg, #fff, #fffdf8);
   border: 1px solid rgba(184, 134, 61, 0.18);
   border-radius: 18px;
   overflow: hidden;
   isolation: isolate;
   transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.avf__entry.svelte-1oirgpe:before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 4px;
   height: 100%;
   background: linear-gradient(180deg, var(--avf-c1), var(--avf-c2));
   opacity: 0;
   transform: scaleY(0.2);
   transform-origin: top;
   transition: opacity 0.35s, transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
   z-index: 2;
}
.avf__entry.svelte-1oirgpe:hover {
   border-color: var(--avf-c2);
   box-shadow: 0 18px 40px -22px var(--avf-shadow);
}
.avf__entry[open].svelte-1oirgpe {
   border-color: transparent;
   box-shadow: 0 0 0 1px var(--avf-c2), 0 24px 48px -22px var(--avf-shadow);
   transform: translateY(-1px);
}
.avf__entry[open].svelte-1oirgpe:before {
   opacity: 1;
   transform: scaleY(1);
}
.avf__entry--rose.svelte-1oirgpe {
   --avf-c1: #f472b6;
   --avf-c2: #e91e8c;
   --avf-tint: rgba(251, 207, 232, 0.45);
   --avf-shadow: rgba(233, 30, 140, 0.3);
}
.avf__entry--gold.svelte-1oirgpe {
   --avf-c1: #fcd34d;
   --avf-c2: #d97706;
   --avf-tint: rgba(253, 230, 138, 0.5);
   --avf-shadow: rgba(217, 119, 6, 0.28);
}
.avf__entry--coral.svelte-1oirgpe {
   --avf-c1: #fda4af;
   --avf-c2: #f43f5e;
   --avf-tint: rgba(254, 205, 211, 0.5);
   --avf-shadow: rgba(244, 63, 94, 0.28);
}
.avf__entry--teal.svelte-1oirgpe {
   --avf-c1: #5eead4;
   --avf-c2: #0d9488;
   --avf-tint: rgba(204, 251, 241, 0.55);
   --avf-shadow: rgba(13, 148, 136, 0.25);
}
.avf__entry--emerald.svelte-1oirgpe {
   --avf-c1: #6ee7b7;
   --avf-c2: #059669;
   --avf-tint: rgba(209, 250, 229, 0.55);
   --avf-shadow: rgba(5, 150, 105, 0.25);
}
.avf__entry-sum.svelte-1oirgpe {
   display: grid;
   grid-template-columns: 68px 1px 1fr auto;
   align-items: center;
   gap: 18px;
   padding: 18px 22px;
   cursor: pointer;
   list-style: none;
   -webkit-user-select: none;
   user-select: none;
}
.avf__entry-sum.svelte-1oirgpe::-webkit-details-marker {
   display: none;
}
.avf__entry-no.svelte-1oirgpe {
   font-family: Georgia, Cormorant Garamond, serif;
   font-size: 30px;
   font-weight: 500;
   line-height: 1;
   letter-spacing: -0.03em;
   background: linear-gradient(180deg, var(--avf-c1), var(--avf-c2));
   -webkit-background-clip: text;
   background-clip: text;
   color: transparent;
   transition: transform 0.4s ease;
}
.avf__entry[open].svelte-1oirgpe .avf__entry-no:where(.svelte-1oirgpe) {
   transform: scale(1.06) rotate(-3deg);
}
.avf__entry-vr.svelte-1oirgpe {
   width: 1px;
   height: 38px;
   background: linear-gradient(
      180deg,
      transparent,
      rgba(184, 134, 61, 0.5),
      transparent
   );
}
.avf__entry-head.svelte-1oirgpe {
   min-width: 0;
}
.avf__entry-meta.svelte-1oirgpe {
   display: flex;
   align-items: center;
   gap: 10px;
   margin-bottom: 6px;
   flex-wrap: wrap;
}
.avf__entry-chip.svelte-1oirgpe {
   display: inline-flex;
   align-items: center;
   padding: 3px 10px;
   border-radius: 30px;
   background: var(--avf-tint);
   color: var(--avf-c2);
   font: 700 9.5px Courier New, monospace;
   letter-spacing: 0.2em;
   text-transform: uppercase;
   border: 1px solid rgba(255, 255, 255, 0.8);
}
.avf__entry-read.svelte-1oirgpe {
   display: inline-flex;
   align-items: center;
   gap: 4px;
   font: 600 10.5px Courier New, monospace;
   color: #8a7888;
   letter-spacing: 0.1em;
}
.avf__entry-q.svelte-1oirgpe {
   font-family: Georgia, Cormorant Garamond, serif;
   font-size: 16.5px;
   font-weight: 600;
   color: #1f1724;
   letter-spacing: -0.015em;
   line-height: 1.35;
   margin: 0;
}
.avf__entry-toggle.svelte-1oirgpe {
   position: relative;
   width: 36px;
   height: 36px;
   border-radius: 50%;
   flex-shrink: 0;
   background: #fff;
   border: 1px solid rgba(184, 134, 61, 0.25);
   transition: background 0.35s, border-color 0.35s, transform 0.35s;
}
.avf__entry-toggle.svelte-1oirgpe span:where(.svelte-1oirgpe) {
   position: absolute;
   top: 50%;
   left: 50%;
   width: 12px;
   height: 1.8px;
   border-radius: 2px;
   background: var(--avf-c2);
   transform: translate(-50%, -50%);
   transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.35s;
}
.avf__entry-toggle.svelte-1oirgpe span:where(.svelte-1oirgpe):last-child {
   transform: translate(-50%, -50%) rotate(90deg);
}
.avf__entry[open].svelte-1oirgpe .avf__entry-toggle:where(.svelte-1oirgpe) {
   background: linear-gradient(135deg, var(--avf-c1), var(--avf-c2));
   border-color: transparent;
   transform: rotate(180deg);
}
.avf__entry[open].svelte-1oirgpe
   .avf__entry-toggle:where(.svelte-1oirgpe)
   span:where(.svelte-1oirgpe) {
   background: #fff;
}
.avf__entry[open].svelte-1oirgpe
   .avf__entry-toggle:where(.svelte-1oirgpe)
   span:where(.svelte-1oirgpe):last-child {
   transform: translate(-50%, -50%) rotate(0);
}
.avf__entry-body.svelte-1oirgpe {
   position: relative;
   padding: 0 22px 22px 108px;
}
.avf__entry-accent.svelte-1oirgpe {
   position: absolute;
   top: -4px;
   left: 88px;
   width: 2px;
   height: calc(100% - 14px);
   background: linear-gradient(180deg, var(--avf-c1), transparent);
   border-radius: 2px;
}
.avf__entry-a.svelte-1oirgpe {
   margin: 0 0 16px;
   font-size: 13.5px;
   color: #574757;
   line-height: 1.72;
}
.avf__entry-hl.svelte-1oirgpe {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 8px;
}
.avf__entry-hl-item.svelte-1oirgpe {
   padding: 10px 12px;
   border-radius: 12px;
   background: var(--avf-tint);
   border: 1px solid rgba(255, 255, 255, 0.8);
   text-align: left;
}
.avf__entry-hl-v.svelte-1oirgpe {
   display: block;
   font-family: Georgia, serif;
   font-size: 17px;
   font-weight: 600;
   letter-spacing: -0.015em;
   line-height: 1;
   background: linear-gradient(135deg, var(--avf-c1), var(--avf-c2));
   -webkit-background-clip: text;
   background-clip: text;
   color: transparent;
}
.avf__entry-hl-l.svelte-1oirgpe {
   display: block;
   margin-top: 4px;
   font: 700 9px Courier New, monospace;
   color: #8a7888;
   letter-spacing: 0.18em;
   text-transform: uppercase;
}
@media (max-width: 960px) {
   .avf__layout.svelte-1oirgpe {
      grid-template-columns: 1fr;
      gap: 28px;
   }
   .avf__desk.svelte-1oirgpe {
      position: static;
   }
}
@media (max-width: 640px) {
   .avf__entry-sum.svelte-1oirgpe {
      grid-template-columns: 54px 1px 1fr auto;
      padding: 16px;
      gap: 12px;
   }
   .avf__entry-no.svelte-1oirgpe {
      font-size: 24px;
   }
   .avf__entry-q.svelte-1oirgpe {
      font-size: 14.5px;
   }
   .avf__entry-body.svelte-1oirgpe {
      padding: 0 16px 18px 82px;
   }
   .avf__entry-accent.svelte-1oirgpe {
      left: 66px;
   }
   .avf__entry-hl.svelte-1oirgpe {
      grid-template-columns: 1fr 1fr;
   }
}
@media (max-width: 460px) {
   .avf__entry-sum.svelte-1oirgpe {
      grid-template-columns: 42px 1px 1fr 34px;
      gap: 10px;
      padding: 14px;
   }
   .avf__entry-no.svelte-1oirgpe {
      font-size: 20px;
   }
   .avf__entry-vr.svelte-1oirgpe {
      height: 28px;
   }
   .avf__entry-body.svelte-1oirgpe {
      padding: 0 14px 18px;
   }
   .avf__entry-accent.svelte-1oirgpe {
      display: none;
   }
   .avf__entry-hl.svelte-1oirgpe {
      grid-template-columns: 1fr;
   }
   .avf__entry-toggle.svelte-1oirgpe {
      width: 30px;
      height: 30px;
   }
}
.av-cta.svelte-1oirgpe {
   padding: 88px 0 100px;
   background: transparent;
}
.av-cta__card.svelte-1oirgpe {
   position: relative;
   max-width: 720px;
   margin: 0 auto;
   padding: 48px 32px;
   text-align: center;
   border-radius: 28px;
   background: radial-gradient(
         ellipse at 0% 0%,
         rgba(251, 207, 232, 0.55) 0%,
         transparent 55%
      ),
      radial-gradient(
         ellipse at 100% 100%,
         rgba(253, 230, 138, 0.55) 0%,
         transparent 55%
      ),
      linear-gradient(135deg, #fff, #fff7ef);
   border: 1px solid rgba(255, 255, 255, 0.9);
   box-shadow: 0 30px 70px -30px #e91e8c4d, inset 0 1px #ffffffd9;
   overflow: hidden;
}
.av-cta__card.svelte-1oirgpe:before,
.av-cta__card.svelte-1oirgpe:after {
   content: "";
   position: absolute;
   width: 140px;
   height: 140px;
   border-radius: 50%;
   filter: blur(50px);
   pointer-events: none;
}
.av-cta__card.svelte-1oirgpe:before {
   top: -30px;
   left: -30px;
   background: #fbcfe8b3;
}
.av-cta__card.svelte-1oirgpe:after {
   bottom: -30px;
   right: -30px;
   background: #fde68ab3;
}
.av-cta__eye.svelte-1oirgpe {
   position: relative;
   z-index: 1;
   display: inline-block;
   padding: 6px 16px;
   border-radius: 40px;
   background: #ffffffe6;
   border: 1px solid rgba(233, 30, 140, 0.15);
   color: #b45309;
   font-size: 11px;
   font-weight: 700;
   letter-spacing: 0.18em;
   text-transform: uppercase;
   margin-bottom: 18px;
}
.av-cta__h2.svelte-1oirgpe {
   position: relative;
   z-index: 1;
   font-family: Georgia, serif;
   font-size: clamp(28px, 4vw, 42px);
   font-weight: 500;
   color: #1f1724;
   line-height: 1.1;
   letter-spacing: -0.025em;
   margin: 0 0 12px;
}
.av-cta__sub.svelte-1oirgpe {
   position: relative;
   z-index: 1;
   font-size: 15px;
   color: #6b5a68;
   line-height: 1.6;
   max-width: 480px;
   margin: 0 auto 28px;
}
.av-cta__trust.svelte-1oirgpe {
   display: inline-flex;
   align-items: center;
   gap: 7px;
   margin-top: 18px;
   font-size: 11.5px;
   color: #059669;
   font-weight: 600;
   letter-spacing: 0.04em;
   position: relative;
   z-index: 1;
}
.av-cta.svelte-1oirgpe .av-btn:where(.svelte-1oirgpe) {
   position: relative;
   z-index: 1;
}
@media (max-width: 1080px) {
   .locs-grid.svelte-1oirgpe {
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
   }
}
@media (max-width: 860px) {
   .av-hero.svelte-1oirgpe {
      padding: 36px 0 56px;
   }
   .av-hero__grid.svelte-1oirgpe {
      grid-template-columns: 1fr;
      gap: 32px;
   }
   .av-hero__h1.svelte-1oirgpe {
      font-size: clamp(32px, 7vw, 44px);
   }
   .av-hero__stats.svelte-1oirgpe {
      display: flex;
      width: 100%;
      box-sizing: border-box;
      justify-content: space-between;
      gap: 12px;
      padding: 12px 16px;
   }
   .av-hero__stats.svelte-1oirgpe .av-stat:where(.svelte-1oirgpe) {
      flex: 1;
      min-width: 0;
   }
   .av-stat__sep.svelte-1oirgpe {
      height: 24px;
      flex-shrink: 0;
   }
   .av-index__num.svelte-1oirgpe {
      font-size: 64px;
   }
}
@media (max-width: 640px) {
   .av-dir.svelte-1oirgpe,
   .av-zones.svelte-1oirgpe,
   .av-how.svelte-1oirgpe,
   .av-faq.svelte-1oirgpe,
   .av-cta.svelte-1oirgpe {
      padding: 64px 0 72px;
   }
   .av-dir.svelte-1oirgpe > .grid-container:where(.svelte-1oirgpe),
   .av-zones.svelte-1oirgpe > .grid-container:where(.svelte-1oirgpe),
   .av-how.svelte-1oirgpe > .grid-container:where(.svelte-1oirgpe),
   .av-faq.svelte-1oirgpe > .grid-container:where(.svelte-1oirgpe) {
      padding: 28px 18px 32px;
      border-radius: 20px;
   }
   .av-hero.svelte-1oirgpe:before,
   .av-hero.svelte-1oirgpe:after {
      top: 10px;
      right: 10px;
      bottom: 10px;
      left: 10px;
      border-radius: 18px;
   }
   .locs-grid.svelte-1oirgpe {
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
   }
   .loc-card.svelte-1oirgpe {
      padding: 62px 14px 12px;
      min-height: 170px;
   }
   .loc-pin-wrap.svelte-1oirgpe {
      top: 12px;
      left: 12px;
      width: 32px;
      height: 32px;
   }
   .loc-pin.svelte-1oirgpe {
      width: 24px;
      height: 24px;
   }
   .loc-pin.svelte-1oirgpe svg:where(.svelte-1oirgpe) {
      width: 13px;
      height: 13px;
   }
   .loc-count-badge.svelte-1oirgpe {
      top: 12px;
      right: 12px;
      padding: 3px 8px;
      font-size: 10.5px;
   }
   .loc-name.svelte-1oirgpe {
      font-size: 15px;
   }
   .loc-sub.svelte-1oirgpe {
      font-size: 10.5px;
   }
   .loc-map-svg.svelte-1oirgpe {
      height: 60%;
   }
   .av-chips.svelte-1oirgpe {
      justify-content: flex-start;
      overflow-x: auto;
      padding-bottom: 4px;
      flex-wrap: nowrap;
   }
   .av-chip.svelte-1oirgpe {
      flex-shrink: 0;
   }
   .av-cta__card.svelte-1oirgpe {
      padding: 36px 22px;
   }
}
@media (max-width: 420px) {
   .av-hero__stats.svelte-1oirgpe {
      display: flex;
      width: 100%;
      box-sizing: border-box;
      flex-direction: column;
      align-items: stretch;
      gap: 8px;
      padding: 14px;
   }
   .av-hero__stats.svelte-1oirgpe .av-stat:where(.svelte-1oirgpe) {
      display: flex;
      justify-content: space-between;
      align-items: center;
   }
   .av-stat__l.svelte-1oirgpe {
      margin-top: 0;
   }
   .av-stat__sep.svelte-1oirgpe {
      width: 100%;
      height: 1px;
   }
   .av-dir.svelte-1oirgpe > .grid-container:where(.svelte-1oirgpe),
   .av-zones.svelte-1oirgpe > .grid-container:where(.svelte-1oirgpe),
   .av-how.svelte-1oirgpe > .grid-container:where(.svelte-1oirgpe),
   .av-faq.svelte-1oirgpe > .grid-container:where(.svelte-1oirgpe) {
      padding: 22px 12px 26px;
   }
   .locs-grid.svelte-1oirgpe {
      gap: 10px;
   }
   .loc-card.svelte-1oirgpe {
      padding: 60px 12px 12px;
      min-height: 175px;
      border-radius: 16px;
   }
   .loc-pin-wrap.svelte-1oirgpe {
      top: 10px;
      left: 10px;
      width: 30px;
      height: 30px;
   }
   .loc-pin.svelte-1oirgpe {
      width: 24px;
      height: 24px;
   }
   .loc-pin.svelte-1oirgpe svg:where(.svelte-1oirgpe) {
      width: 12px;
      height: 12px;
   }
   .loc-count-badge.svelte-1oirgpe {
      top: 10px;
      right: 10px;
      padding: 3px 8px;
      font-size: 11px;
      gap: 4px;
   }
   .loc-count-badge.svelte-1oirgpe .loc-dot:where(.svelte-1oirgpe) {
      width: 5px;
      height: 5px;
   }
   .loc-name.svelte-1oirgpe {
      font-size: 16px;
      margin-bottom: 3px;
   }
   .loc-sub.svelte-1oirgpe {
      font-size: 11.5px;
      line-height: 1.3;
   }
   .loc-info.svelte-1oirgpe {
      margin-bottom: 9px;
   }
   .loc-foot.svelte-1oirgpe {
      flex-direction: column;
      align-items: flex-start;
      gap: 6px;
      padding-top: 9px;
   }
   .loc-avail.svelte-1oirgpe,
   .loc-go.svelte-1oirgpe {
      font-size: 11px;
      letter-spacing: 0.02em;
   }
   .loc-avail.svelte-1oirgpe {
      white-space: nowrap;
   }
}
@media (max-width: 340px) {
   .locs-grid.svelte-1oirgpe {
      grid-template-columns: 1fr;
      gap: 10px;
   }
   .loc-card.svelte-1oirgpe {
      padding: 62px 14px 12px;
      min-height: 150px;
   }
   .loc-name.svelte-1oirgpe {
      font-size: 17px;
   }
   .loc-sub.svelte-1oirgpe,
   .loc-avail.svelte-1oirgpe,
   .loc-go.svelte-1oirgpe {
      font-size: 12px;
   }
   .loc-foot.svelte-1oirgpe {
      flex-direction: row;
   }
}


/*Category page*/

.cat-hero.svelte-1qtp9j2 {
  position: relative;
  overflow: hidden;
  padding: 56px 0 50px;
  background: radial-gradient(
      1100px 700px at 85% 10%,
      rgba(233, 30, 140, 0.14) 0%,
      transparent 55%
    ),
    radial-gradient(
      900px 600px at 10% 90%,
      rgba(245, 158, 11, 0.12) 0%,
      transparent 55%
    ),
    radial-gradient(
      700px 500px at 55% 55%,
      rgba(244, 63, 94, 0.1) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #fff8fc, #fdf1f8, #fff5ec);
  border-bottom: 1px solid rgba(233, 30, 140, 0.1);
}
.cat-hero.svelte-1qtp9j2:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  background-image: linear-gradient(
      to right,
      rgba(233, 30, 140, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(233, 30, 140, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(
    ellipse 70% 70% at 50% 50%,
    #000 30%,
    transparent 90%
  );
  mask-image: radial-gradient(
    ellipse 70% 70% at 50% 50%,
    #000 30%,
    transparent 90%
  );
}
.cat-hero.svelte-1qtp9j2 > .grid-container:where(.svelte-1qtp9j2) {
  position: relative;
  z-index: 1;
}
.cat-hero-inner.svelte-1qtp9j2 {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 56px;
  align-items: center;
}
.cat-hero-text.svelte-1qtp9j2 {
  max-width: 620px;
}
.cat-hero-visual.svelte-1qtp9j2 {
  position: relative;
  min-height: 380px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cat-vis-glow.svelte-1qtp9j2 {
  position: absolute;
  top: -30px;
  right: -30px;
  bottom: -30px;
  left: -30px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.18),
    transparent 65%
  );
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}
.cat-vis-silhouette.svelte-1qtp9j2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 78%;
  max-width: 280px;
  height: auto;
  opacity: 0.16;
  z-index: -1;
  pointer-events: none;
  filter: blur(0.5px);
  animation: svelte-1qtp9j2-silFloat 8s ease-in-out infinite;
}
@keyframes svelte-1qtp9j2-silFloat {
  0%,
  to {
    transform: translate(-50%, -50%) rotate(-1deg);
  }
  50% {
    transform: translate(-50%, -53%) rotate(1deg);
  }
}
.cat-vis-kiss.svelte-1qtp9j2 {
  position: absolute;
  top: 16%;
  right: -18px;
  width: 38px;
  height: 30px;
  z-index: 11;
  transform: rotate(-12deg);
  filter: drop-shadow(0 6px 14px rgba(233, 30, 140, 0.4));
  animation: svelte-1qtp9j2-kissPulse 3s ease-in-out infinite;
}
@keyframes svelte-1qtp9j2-kissPulse {
  0%,
  to {
    transform: rotate(-12deg) scale(1);
  }
  50% {
    transform: rotate(-8deg) scale(1.08);
  }
}
.cat-vis-sparkle.svelte-1qtp9j2 {
  position: absolute;
  color: #f5c46b;
  font-size: 18px;
  opacity: 0.7;
  pointer-events: none;
  animation: svelte-1qtp9j2-catSparkle 3s ease-in-out infinite;
  z-index: 6;
}
.cat-vis-sp-1.svelte-1qtp9j2 {
  top: 8%;
  left: 4%;
  font-size: 22px;
  color: #f5c46b;
}
.cat-vis-sp-2.svelte-1qtp9j2 {
  bottom: 18%;
  left: -2%;
  color: #e91e8c;
  animation-delay: -1s;
}
.cat-vis-sp-3.svelte-1qtp9j2 {
  top: 38%;
  right: 6%;
  color: #f43f5e;
  animation-delay: -2s;
  font-size: 14px;
}
@keyframes svelte-1qtp9j2-catSparkle {
  0%,
  to {
    opacity: 0.25;
    transform: scale(0.7) rotate(0);
  }
  50% {
    opacity: 1;
    transform: scale(1.2) rotate(180deg);
  }
}
.cat-mini.svelte-1qtp9j2 {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 14px 12px;
  min-height: 100px;
  background: radial-gradient(
      120% 90% at 0% 0%,
      rgba(var(--c1), 0.18),
      transparent 60%
    ),
    radial-gradient(
      120% 90% at 100% 100%,
      rgba(var(--c2), 0.14),
      transparent 55%
    ),
    linear-gradient(135deg, #fff, #fff8fb);
  border: 1px solid rgba(var(--c1), 0.18);
  border-radius: 18px;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(var(--c1), 0.18), inset 0 1px #fffffff2;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease;
  overflow: hidden;
  isolation: isolate;
}
.cat-mini.svelte-1qtp9j2:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgb(var(--c1)), rgb(var(--c2)));
  border-radius: 18px 18px 0 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 2;
}
.cat-mini.svelte-1qtp9j2:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 22px 46px rgba(var(--c1), 0.3);
}
.cat-mini.svelte-1qtp9j2:hover:before {
  transform: scaleX(1);
}
.cat-mini-blob.svelte-1qtp9j2 {
  position: absolute;
  top: -25px;
  right: -25px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--c1), 0.18), transparent 70%);
  opacity: 0.5;
  transition: all 0.6s ease;
  z-index: -1;
}
.cat-mini.svelte-1qtp9j2:hover .cat-mini-blob:where(.svelte-1qtp9j2) {
  transform: scale(1.5);
  opacity: 1;
}
.cat-mini-shine.svelte-1qtp9j2 {
  position: absolute;
  top: 0;
  left: -120%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    115deg,
    transparent 35%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 65%
  );
  transform: skew(-20deg);
  transition: left 0.9s ease;
  pointer-events: none;
  z-index: 1;
}
.cat-mini.svelte-1qtp9j2:hover .cat-mini-shine:where(.svelte-1qtp9j2) {
  left: 130%;
}
.cat-mini-head.svelte-1qtp9j2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.cat-mini-icon.svelte-1qtp9j2 {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgb(var(--c1)), rgb(var(--c2)));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 18px rgba(var(--c1), 0.32), inset 0 1px #ffffff4d;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.cat-mini.svelte-1qtp9j2:hover .cat-mini-icon:where(.svelte-1qtp9j2) {
  transform: rotate(-8deg) scale(1.08);
}
.cat-mini-stat.svelte-1qtp9j2 {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  padding: 4px 9px;
  background: rgba(var(--c1), 0.1);
  border: 1px solid rgba(var(--c1), 0.18);
  border-radius: 50px;
  transition: all 0.3s ease;
}
.cat-mini.svelte-1qtp9j2:hover .cat-mini-stat:where(.svelte-1qtp9j2) {
  background: rgba(var(--c1), 0.18);
  border-color: rgba(var(--c1), 0.35);
}
.cat-mini-stat-num.svelte-1qtp9j2 {
  font-size: 13px;
  font-weight: 700;
  color: rgb(var(--c1));
  letter-spacing: -0.02em;
  line-height: 1;
}
.cat-mini-stat-lbl.svelte-1qtp9j2 {
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgb(var(--c1));
  opacity: 0.8;
}
.cat-mini-foot.svelte-1qtp9j2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.cat-mini-name.svelte-1qtp9j2 {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--heading);
  letter-spacing: -0.015em;
  line-height: 1.1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.cat-mini.svelte-1qtp9j2:hover .cat-mini-name:where(.svelte-1qtp9j2) {
  color: rgb(var(--c1));
}
.cat-mini-arrow.svelte-1qtp9j2 {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(var(--c1), 0.1);
  color: rgb(var(--c1));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.cat-mini.svelte-1qtp9j2:hover .cat-mini-arrow:where(.svelte-1qtp9j2) {
  background: rgb(var(--c1));
  color: #fff;
  transform: translate(3px);
}
.cat-mini-0.svelte-1qtp9j2 {
  transform: rotate(-2deg);
  z-index: 3;
}
.cat-mini-1.svelte-1qtp9j2 {
  transform: rotate(3deg);
  z-index: 2;
  margin-top: 18px;
}
.cat-mini-2.svelte-1qtp9j2 {
  transform: rotate(2deg);
  z-index: 4;
  margin-top: -6px;
}
.cat-mini-3.svelte-1qtp9j2 {
  transform: rotate(-3deg);
  z-index: 1;
}
.cat-mini-4.svelte-1qtp9j2 {
  grid-column: 1 / -1;
  transform: rotate(-1deg);
  max-width: 75%;
  margin: -8px auto 0;
  z-index: 5;
}
.cat-mini-0.svelte-1qtp9j2:hover,
.cat-mini-1.svelte-1qtp9j2:hover,
.cat-mini-2.svelte-1qtp9j2:hover,
.cat-mini-3.svelte-1qtp9j2:hover,
.cat-mini-4.svelte-1qtp9j2:hover {
  transform: translateY(-4px) rotate(0) scale(1.04) !important;
}
.cat-vis-pill.svelte-1qtp9j2 {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  background: #fffffff7;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 14px;
  box-shadow: 0 14px 36px #2d12482e, 0 0 0 1px #2d12480a;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 10;
  animation: svelte-1qtp9j2-catFloat 4s ease-in-out infinite;
}
@keyframes svelte-1qtp9j2-catFloat {
  0%,
  to {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.cat-vis-pill.svelte-1qtp9j2 svg:where(.svelte-1qtp9j2) {
  flex-shrink: 0;
}
.cat-vis-pill-v.svelte-1qtp9j2 {
  font-size: 12px;
  font-weight: 700;
  color: var(--heading);
  line-height: 1;
  letter-spacing: -0.02em;
}
.cat-vis-pill-l.svelte-1qtp9j2 {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}
.cat-vis-livedot.svelte-1qtp9j2 {
  width: 9px;
  height: 9px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 3px #10b98138;
  animation: svelte-1qtp9j2-catPulse 1.5s ease-in-out infinite;
}
.cat-vis-pill-top.svelte-1qtp9j2 {
  top: -10px;
  left: -8%;
}
.cat-vis-pill-bot.svelte-1qtp9j2 {
  bottom: -8px;
  right: -8%;
  animation-delay: -1.5s;
}
.cat-orb.svelte-1qtp9j2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  pointer-events: none;
}
.cat-orb-1.svelte-1qtp9j2 {
  top: -110px;
  right: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.32),
    transparent 70%
  );
}
.cat-orb-2.svelte-1qtp9j2 {
  bottom: -120px;
  left: -100px;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.22),
    transparent 70%
  );
}
.cat-orb-3.svelte-1qtp9j2 {
  top: 40%;
  right: 40%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(244, 63, 94, 0.28), transparent 70%);
  opacity: 0.35;
}
.cat-crumb.svelte-1qtp9j2 {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: #ffffffd9;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 14px #2d12480f;
  margin-bottom: 18px;
}
.cat-crumb.svelte-1qtp9j2 a:where(.svelte-1qtp9j2) {
  color: var(--rose);
  text-decoration: none;
  font-weight: 600;
}
.cat-crumb.svelte-1qtp9j2 a:where(.svelte-1qtp9j2):hover {
  text-decoration: underline;
}
.cat-crumb.svelte-1qtp9j2 span:where(.svelte-1qtp9j2):last-child {
  color: var(--heading);
  font-weight: 600;
}
.cat-crumb.svelte-1qtp9j2 svg:where(.svelte-1qtp9j2) {
  color: var(--text-dim);
}
.cat-chip.svelte-1qtp9j2 {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 12px;
  margin-bottom: 18px;
  background: #ffffffd9;
  border: 1px solid rgba(245, 196, 107, 0.4);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: #b45309;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 18px #f59e0b26;
}
.cat-chip-dot.svelte-1qtp9j2 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px #10b98133;
  animation: svelte-1qtp9j2-catPulse 1.6s ease-in-out infinite;
}
@keyframes svelte-1qtp9j2-catPulse {
  0%,
  to {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.8);
    opacity: 0.6;
  }
}
.cat-h1.svelte-1qtp9j2 {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--heading);
  margin: 0 0 14px;
}
.cat-grad.svelte-1qtp9j2 {
  background: linear-gradient(
    120deg,
    #ff6b9d,
    var(--rose) 50%,
    var(--rose-dark)
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: svelte-1qtp9j2-catGradShift 6s linear infinite;
}
@keyframes svelte-1qtp9j2-catGradShift {
  0% {
    background-position: 0% center;
  }
  to {
    background-position: 200% center;
  }
}
.cat-hero-desc.svelte-1qtp9j2 {
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.75;
  max-width: 620px;
  margin: 0 0 26px;
}
.cat-meta.svelte-1qtp9j2 {
  display: inline-flex;
  align-items: stretch;
  padding: 10px 6px;
  background: #ffffffd9;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 36px #e91e8c14, 0 0 0 1px #2d124808;
  flex-wrap: wrap;
}
.cat-meta-item.svelte-1qtp9j2 {
  padding: 6px 22px;
  text-align: center;
  min-width: 80px;
}
.cat-meta-val.svelte-1qtp9j2 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 24px;
}
.cat-live-dot.svelte-1qtp9j2 {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 3px #10b98133;
  animation: svelte-1qtp9j2-catPulse 1.5s ease-in-out infinite;
  -webkit-text-fill-color: #10b981;
}
.cat-meta-lbl.svelte-1qtp9j2 {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  margin-top: 6px;
}
.cat-meta-sep.svelte-1qtp9j2 {
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(45, 18, 72, 0.12),
    transparent
  );
}
.cat-intro-sec.svelte-1qtp9j2 {
  background: linear-gradient(180deg, #fff5fa, #fdf6ff);
  padding: 40px 0 36px;
  border-top: 1px solid rgba(233, 30, 140, 0.06);
}
.cat-intro.svelte-1qtp9j2 {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--text-muted);
}
.cat-intro.svelte-1qtp9j2 .cat-kw:where(.svelte-1qtp9j2) {
  color: var(--rose);
  font-weight: 700;
}
.cat-section.svelte-1qtp9j2 {
  position: relative;
  overflow: hidden;
  padding: 70px 0 90px;
  background: radial-gradient(
      1100px 700px at 10% 0%,
      rgba(233, 30, 140, 0.12) 0%,
      transparent 55%
    ),
    radial-gradient(
      1000px 650px at 90% 100%,
      rgba(245, 158, 11, 0.12) 0%,
      transparent 55%
    ),
    radial-gradient(
      700px 500px at 50% 50%,
      rgba(244, 63, 94, 0.08) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #fff5fa, #fdf0f7 45%, #fff5ec);
}
.cat-section.svelte-1qtp9j2:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  background-image: linear-gradient(
      to right,
      rgba(233, 30, 140, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(233, 30, 140, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(
    ellipse 70% 70% at 50% 50%,
    #000 30%,
    transparent 90%
  );
  mask-image: radial-gradient(
    ellipse 70% 70% at 50% 50%,
    #000 30%,
    transparent 90%
  );
}
.cat-section.svelte-1qtp9j2 > .grid-container:where(.svelte-1qtp9j2) {
  position: relative;
  z-index: 1;
}
.cat-section.svelte-1qtp9j2:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  top: -120px;
  left: -100px;
  width: 360px;
  height: 360px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.18),
    transparent 70%
  );
  opacity: 0.5;
}
.cat-section-head.svelte-1qtp9j2 {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 44px;
}
.cat-section-badge.svelte-1qtp9j2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 12px;
  background: #ffffffd9;
  border: 1px solid rgba(233, 30, 140, 0.22);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--rose);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 18px #e91e8c1a;
  margin-bottom: 16px;
}
.cat-section-badge-dot.svelte-1qtp9j2 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px #10b98133;
  animation: svelte-1qtp9j2-catPulse 1.6s ease-in-out infinite;
}
.cat-section-h2.svelte-1qtp9j2 {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--heading);
  margin: 0 0 12px;
}
.cat-section-grad.svelte-1qtp9j2 {
  background: linear-gradient(
    120deg,
    #ff6b9d,
    var(--rose) 50%,
    var(--rose-dark)
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: svelte-1qtp9j2-catGradShift 6s linear infinite;
}
.cat-section-sub.svelte-1qtp9j2 {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto;
}
.cat-search-wrap.svelte-1qtp9j2 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 580px;
  margin: 26px auto 0;
  padding: 8px 8px 8px 18px;
  background: #ffffffeb;
  border: 1.5px solid rgba(45, 18, 72, 0.08);
  border-radius: 50px;
  box-shadow: 0 12px 32px #e91e8c1a, 0 0 0 1px #fff9 inset;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition: all 0.3s ease;
}
.cat-search-wrap.svelte-1qtp9j2:focus-within {
  border-color: #e91e8c66;
  box-shadow: 0 16px 40px #e91e8c2e, 0 0 0 4px #e91e8c14;
}
.cat-search-wrap.has-text.svelte-1qtp9j2 {
  border-color: #e91e8c52;
}
.cat-search-ic.svelte-1qtp9j2 {
  color: var(--text-muted);
  flex-shrink: 0;
  transition: color 0.25s ease;
}
.cat-search-wrap.svelte-1qtp9j2:focus-within
  .cat-search-ic:where(.svelte-1qtp9j2),
.cat-search-wrap.has-text.svelte-1qtp9j2 .cat-search-ic:where(.svelte-1qtp9j2) {
  color: var(--rose);
}
.cat-search-input.svelte-1qtp9j2 {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--heading);
  padding: 8px 0;
  letter-spacing: -0.005em;
}
.cat-search-input.svelte-1qtp9j2::placeholder {
  color: var(--text-dim);
  font-weight: 500;
}
.cat-search-clear.svelte-1qtp9j2 {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  background: #2d124814;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.cat-search-clear.svelte-1qtp9j2:hover {
  background: var(--rose);
  color: #fff;
  transform: scale(1.1);
}
.cat-search-count.svelte-1qtp9j2 {
  flex-shrink: 0;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: 50px;
  box-shadow: 0 6px 16px #e91e8c52;
  white-space: nowrap;
}
.cat-search-count.svelte-1qtp9j2 span:where(.svelte-1qtp9j2) {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.85;
}
.cat-empty.svelte-1qtp9j2 {
  text-align: center;
  max-width: 460px;
  margin: 30px auto;
  padding: 36px 28px;
  background: #ffffffd9;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 22px;
  box-shadow: 0 12px 30px #2d124814;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.cat-empty-ic.svelte-1qtp9j2 {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e91e8c24, #f43f5e0f);
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cat-empty.svelte-1qtp9j2 h3:where(.svelte-1qtp9j2) {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--heading);
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}
.cat-empty.svelte-1qtp9j2 p:where(.svelte-1qtp9j2) {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 18px;
}
.cat-empty-btn.svelte-1qtp9j2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 8px 20px #e91e8c52;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cat-empty-btn.svelte-1qtp9j2:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px #e91e8c73;
}
.cat-grid.svelte-1qtp9j2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cat-card.svelte-1qtp9j2 {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 22px 22px 18px;
  min-height: 200px;
  background: radial-gradient(
      120% 90% at 0% 0%,
      var(--cat-soft),
      transparent 55%
    ),
    radial-gradient(120% 90% at 100% 100%, var(--cat-soft), transparent 60%),
    linear-gradient(160deg, #fff, #fffafd);
  border: 1px solid var(--cat-ring);
  border-radius: 22px;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease, border-color 0.35s ease;
  box-shadow: 0 6px 18px #2d12480f, 0 0 0 1px #fffffff2 inset;
  isolation: isolate;
}
.cat-card.svelte-1qtp9j2:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--cat-grad);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}
.cat-card.svelte-1qtp9j2:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 24px 50px #2d12482e, 0 0 0 1px var(--cat-ring);
}
.cat-card.svelte-1qtp9j2:hover:before {
  opacity: 1;
}
.cat-blob.svelte-1qtp9j2 {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--cat-grad);
  opacity: 0.08;
  filter: blur(10px);
  transition: all 0.6s ease;
  pointer-events: none;
  z-index: 0;
}
.cat-card.svelte-1qtp9j2:hover .cat-blob:where(.svelte-1qtp9j2) {
  transform: scale(1.4);
  opacity: 0.15;
}
.cat-shine.svelte-1qtp9j2 {
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    115deg,
    transparent 40%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 60%
  );
  transform: skew(-20deg);
  transition: left 0.8s ease;
  pointer-events: none;
  z-index: 1;
}
.cat-card.svelte-1qtp9j2:hover .cat-shine:where(.svelte-1qtp9j2) {
  left: 140%;
}
.cat-head.svelte-1qtp9j2 {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
  z-index: 2;
}
.cat-icon-wrap.svelte-1qtp9j2 {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--cat-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--cat-text);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}
.cat-icon-bg.svelte-1qtp9j2 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--cat-grad);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.cat-card.svelte-1qtp9j2:hover .cat-icon-wrap:where(.svelte-1qtp9j2) {
  transform: rotate(-6deg) scale(1.08);
  color: #fff;
  box-shadow: 0 10px 24px var(--cat-ring);
}
.cat-card.svelte-1qtp9j2:hover .cat-icon-bg:where(.svelte-1qtp9j2) {
  opacity: 1;
}
.cat-icon.svelte-1qtp9j2 {
  position: relative;
  z-index: 1;
}
.cat-count-pill.svelte-1qtp9j2 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: #ffffffd9;
  border: 1px solid rgba(45, 18, 72, 0.08);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 500;
  color: var(--cat-text);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: all 0.4s ease;
}
.cat-dot.svelte-1qtp9j2 {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px #10b9812e;
  animation: svelte-1qtp9j2-catPulse 1.6s ease-in-out infinite;
}
.cat-card.svelte-1qtp9j2:hover .cat-count-pill:where(.svelte-1qtp9j2) {
  background: #fffffff2;
  color: var(--cat-text);
  border-color: #ffffffe6;
}
.cat-body.svelte-1qtp9j2 {
  position: relative;
  flex: 1;
  z-index: 2;
}
.cat-name.svelte-1qtp9j2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--heading);
  letter-spacing: -0.025em;
  margin-bottom: 6px;
  line-height: 1.2;
  transition: color 0.4s ease;
}
.cat-card.svelte-1qtp9j2:hover .cat-name:where(.svelte-1qtp9j2) {
  color: #fff;
}
.cat-desc.svelte-1qtp9j2 {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.4s ease;
}
.cat-card.svelte-1qtp9j2:hover .cat-desc:where(.svelte-1qtp9j2) {
  color: #ffffffe6;
}
.cat-foot.svelte-1qtp9j2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed rgba(45, 18, 72, 0.1);
  z-index: 2;
  transition: border-color 0.4s ease;
}
.cat-card.svelte-1qtp9j2:hover .cat-foot:where(.svelte-1qtp9j2) {
  border-top-color: #ffffff40;
}
.cat-cta.svelte-1qtp9j2 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cat-text);
  transition: color 0.4s ease;
}
.cat-card.svelte-1qtp9j2:hover .cat-cta:where(.svelte-1qtp9j2) {
  color: #fff;
}
.cat-arrow.svelte-1qtp9j2 {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cat-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cat-text);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.cat-card.svelte-1qtp9j2:hover .cat-arrow:where(.svelte-1qtp9j2) {
  background: #fff;
  color: var(--cat-text);
  transform: translate(4px) rotate(-8deg);
  box-shadow: 0 6px 16px #00000026;
}
.catx.svelte-1qtp9j2 {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, #fff, #fffaf6);
  border-radius: 26px;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 16px 44px #2d12481a, 0 0 0 1px #f5c46b2e, inset 0 1px #fff;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.55s ease;
}
.catx.svelte-1qtp9j2:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 26px;
  padding: 1px;
  background: linear-gradient(
    160deg,
    rgba(245, 196, 107, 0.5),
    transparent 30%,
    transparent 70%,
    rgba(var(--c1), 0.4)
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 5;
}
.catx.svelte-1qtp9j2:hover {
  transform: translateY(-12px);
  box-shadow: 0 36px 72px rgba(var(--c1), 0.32), 0 0 0 1px #f5c46b80;
}
.catx-header.svelte-1qtp9j2 {
  position: relative;
  height: 170px;
  background: radial-gradient(
      140% 100% at 20% 0%,
      rgba(255, 255, 255, 0.35),
      transparent 55%
    ),
    radial-gradient(120% 90% at 80% 100%, rgba(0, 0, 0, 0.18), transparent 60%),
    linear-gradient(135deg, rgb(var(--c1)), rgb(var(--c2)));
  overflow: hidden;
  isolation: isolate;
}
.catx-header.svelte-1qtp9j2:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: radial-gradient(
    50% 70% at 80% 30%,
    rgba(245, 196, 107, 0.35),
    transparent 60%
  );
  mix-blend-mode: overlay;
}
.catx-pattern.svelte-1qtp9j2 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.18) 1px,
    transparent 1px
  );
  background-size: 16px 16px;
  -webkit-mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    #000 30%,
    transparent 90%
  );
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    #000 30%,
    transparent 90%
  );
  transition: transform 0.7s ease;
  z-index: 1;
}
.catx-silhouette.svelte-1qtp9j2 {
  display: none;
}
.catx-shine.svelte-1qtp9j2 {
  position: absolute;
  top: 0;
  left: -120%;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    115deg,
    transparent 35%,
    rgba(255, 255, 255, 0.5) 50%,
    transparent 65%
  );
  transform: skew(-20deg);
  transition: left 1s ease;
  pointer-events: none;
  z-index: 3;
}
.catx-num.svelte-1qtp9j2 {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 5px 13px;
  background: linear-gradient(135deg, #fffefa, #fff6e6);
  color: rgb(var(--c1));
  font-family: Courier New, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  border-radius: 50px;
  box-shadow: 0 4px 12px #0000002e, 0 0 0 1px #f5c46b80;
  z-index: 4;
}
.catx-tag.svelte-1qtp9j2 {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: linear-gradient(135deg, #fffffff2, #ffffffd9);
  color: rgb(var(--c1));
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  box-shadow: 0 4px 12px #00000026, 0 0 0 1px #f5c46b66;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 4;
}
.catx-tag-dot.svelte-1qtp9j2 {
  width: 5px;
  height: 5px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 3px #10b98138;
  animation: svelte-1qtp9j2-catPulse 1.5s ease-in-out infinite;
}
.catx-icon.svelte-1qtp9j2 {
  position: absolute;
  bottom: -32px;
  left: 28px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(
      circle at 30% 25%,
      rgba(255, 255, 255, 0.35),
      transparent 55%
    ),
    linear-gradient(135deg, rgb(var(--c1)), rgb(var(--c2)));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 32px rgba(var(--c1), 0.5), 0 0 0 5px #fff,
    0 0 0 6px #f5c46b73, inset 0 1px #ffffff73;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.55s ease;
  z-index: 4;
}
.catx-body.svelte-1qtp9j2 {
  padding: 48px 26px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: linear-gradient(180deg, #fff0, rgba(var(--c1), 0.03));
}
.catx-name.svelte-1qtp9j2 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--heading);
  margin: 0 0 8px;
  line-height: 1.15;
  transition: color 0.3s ease;
}
.catx-name.svelte-1qtp9j2:after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  margin-top: 6px;
  background: linear-gradient(90deg, rgb(var(--c1)), rgb(var(--c2)));
  border-radius: 2px;
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.catx-desc.svelte-1qtp9j2 {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 12px 0 18px;
}
.catx-perks.svelte-1qtp9j2 {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 22px;
  padding: 10px 12px;
  background: linear-gradient(135deg, #f5c46b1a, rgba(var(--c1), 0.04));
  border: 1px solid rgba(245, 196, 107, 0.22);
  border-radius: 12px;
}
.catx-perk.svelte-1qtp9j2 {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--heading);
}
.catx-perk.svelte-1qtp9j2:not(:last-child):after {
  content: "";
  width: 3px;
  height: 3px;
  background: #2d124840;
  border-radius: 50%;
  margin-left: 8px;
}
.catx-perk.svelte-1qtp9j2 svg:where(.svelte-1qtp9j2) {
  color: rgb(var(--c1));
}
.catx-cta.svelte-1qtp9j2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  margin-top: auto;
  background: linear-gradient(135deg, rgb(var(--c1)), rgb(var(--c2)));
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  box-shadow: 0 10px 24px rgba(var(--c1), 0.35), inset 0 1px #ffffff4d;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}
.catx-cta.svelte-1qtp9j2:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: skew(-20deg);
  transition: left 0.7s ease;
}
.catx-cta-arrow.svelte-1qtp9j2 {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffffff38;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease, background 0.35s ease;
}
.cmp-section.svelte-1qtp9j2 {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: radial-gradient(
      900px 600px at 100% 0%,
      rgba(245, 158, 11, 0.1) 0%,
      transparent 55%
    ),
    radial-gradient(
      900px 600px at 0% 100%,
      rgba(233, 30, 140, 0.1) 0%,
      transparent 55%
    ),
    linear-gradient(180deg, #fff, #fff8fc);
  border-top: 1px solid rgba(233, 30, 140, 0.06);
}
.cmp-orb.svelte-1qtp9j2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.4;
  pointer-events: none;
}
.cmp-orb-1.svelte-1qtp9j2 {
  top: -120px;
  left: -100px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(233, 30, 140, 0.3), transparent 70%);
}
.cmp-orb-2.svelte-1qtp9j2 {
  bottom: -140px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.28),
    transparent 70%
  );
}
.cmp-section.svelte-1qtp9j2 > .grid-container:where(.svelte-1qtp9j2) {
  position: relative;
  z-index: 1;
}
.cmp-head.svelte-1qtp9j2 {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 40px;
}
.cmp-eyebrow.svelte-1qtp9j2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--rose);
  margin-bottom: 14px;
}
.cmp-eye-line.svelte-1qtp9j2 {
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), transparent);
  border-radius: 2px;
}
.cmp-h2.svelte-1qtp9j2 {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--heading);
  margin: 0 0 12px;
}
.cmp-grad.svelte-1qtp9j2 {
  background: linear-gradient(
    120deg,
    #ff6b9d,
    var(--rose) 50%,
    var(--rose-dark)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cmp-sub.svelte-1qtp9j2 {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 auto;
  max-width: 540px;
}
.cmp-grid.svelte-1qtp9j2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.cmp-card.svelte-1qtp9j2 {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px 22px 18px;
  background: radial-gradient(
      280px 160px at 100% 0%,
      rgba(var(--cmp-c1), 0.1),
      transparent 60%
    ),
    linear-gradient(180deg, #fffffffa, #fffafcf5);
  border: 1px solid color-mix(in srgb, rgb(var(--cmp-c1)) 18%, transparent);
  border-radius: 22px;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 36px -18px color-mix(in srgb, rgb(var(--cmp-c1)) 30%, rgba(45, 18, 72, 0.18));
  overflow: hidden;
  isolation: isolate;
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s,
    border-color 0.3s;
}
.cmp-card.svelte-1qtp9j2:hover {
  transform: translateY(-8px);
  border-color: color-mix(in srgb, rgb(var(--cmp-c1)) 50%, transparent);
  box-shadow: 0 32px 64px -20px color-mix(in srgb, rgb(var(--cmp-c1)) 45%, transparent),
    0 0 0 1px color-mix(in srgb, rgb(var(--cmp-c1)) 25%, transparent);
}
.cmp-card-halo.svelte-1qtp9j2 {
  position: absolute;
  top: -2px;
  right: -2px;
  bottom: -2px;
  left: -2px;
  z-index: -1;
  border-radius: 24px;
  background: conic-gradient(
    from 0deg,
    rgb(var(--cmp-c1)),
    rgb(var(--cmp-c2)),
    transparent 60%,
    rgb(var(--cmp-c1))
  );
  opacity: 0;
  filter: blur(18px);
  animation: svelte-1qtp9j2-cmpRing 7s linear infinite;
  transition: opacity 0.4s;
}
@keyframes svelte-1qtp9j2-cmpRing {
  to {
    transform: rotate(360deg);
  }
}
.cmp-card.svelte-1qtp9j2:hover .cmp-card-halo:where(.svelte-1qtp9j2) {
  opacity: 0.45;
}
.cmp-card-ring.svelte-1qtp9j2 {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    color-mix(in srgb, rgb(var(--cmp-c1)) 22%, transparent),
    transparent 70%
  );
  filter: blur(18px);
  pointer-events: none;
  z-index: 0;
}
.cmp-c-0.svelte-1qtp9j2 {
  --cmp-c1: 233, 30, 140;
  --cmp-c2: 244, 63, 94;
}
.cmp-c-1.svelte-1qtp9j2 {
  --cmp-c1: 124, 58, 237;
  --cmp-c2: 91, 33, 182;
}
.cmp-c-2.svelte-1qtp9j2 {
  --cmp-c1: 245, 158, 11;
  --cmp-c2: 217, 119, 6;
}
.cmp-c-3.svelte-1qtp9j2 {
  --cmp-c1: 14, 165, 233;
  --cmp-c2: 3, 105, 161;
}
.cmp-card-top.svelte-1qtp9j2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.cmp-card-badge.svelte-1qtp9j2 {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: linear-gradient(135deg, rgb(var(--cmp-c1)), rgb(var(--cmp-c2)));
  color: #fff;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 6px 14px -4px color-mix(in srgb, rgb(var(--cmp-c1)) 55%, transparent),
    inset 0 1px #ffffff4d;
}
.cmp-card-badge.svelte-1qtp9j2 svg:where(.svelte-1qtp9j2) {
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.15));
  animation: svelte-1qtp9j2-cmpStar 2.4s ease-in-out infinite;
}
@keyframes svelte-1qtp9j2-cmpStar {
  0%,
  to {
    transform: rotate(0) scale(1);
  }
  50% {
    transform: rotate(10deg) scale(1.12);
  }
}
.cmp-card-spark.svelte-1qtp9j2 {
  font-size: 18px;
  color: transparent;
  background: linear-gradient(135deg, rgb(var(--cmp-c1)), rgb(var(--cmp-c2)));
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(
    0 0 6px color-mix(in srgb, rgb(var(--cmp-c1)) 45%, transparent)
  );
  opacity: 0.85;
}
.cmp-card-head.svelte-1qtp9j2 {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px dashed
    color-mix(in srgb, rgb(var(--cmp-c1)) 22%, transparent);
}
.cmp-card-name.svelte-1qtp9j2 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--heading);
  line-height: 1.2;
  flex: 1;
  min-width: 0;
}
.cmp-card-rate.svelte-1qtp9j2 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, rgb(var(--cmp-c1)), rgb(var(--cmp-c2)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  flex-shrink: 0;
}
.cmp-card-rate.svelte-1qtp9j2 span:where(.svelte-1qtp9j2) {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  -webkit-text-fill-color: var(--text-muted);
  margin-left: 2px;
}
.cmp-card-list.svelte-1qtp9j2 {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 1;
  flex: 1;
}
.cmp-card-list.svelte-1qtp9j2 li:where(.svelte-1qtp9j2) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 7px 10px;
  background: color-mix(in srgb, rgb(var(--cmp-c1)) 5%, #fdf6fb);
  border: 1px solid color-mix(in srgb, rgb(var(--cmp-c1)) 10%, transparent);
  border-radius: 10px;
  font-size: 12.5px;
}
.cmp-card-list.svelte-1qtp9j2 li.cmp-li-desc:where(.svelte-1qtp9j2) {
  align-items: flex-start;
}
.cmp-k.svelte-1qtp9j2 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.cmp-k.svelte-1qtp9j2 svg:where(.svelte-1qtp9j2) {
  color: rgb(var(--cmp-c1));
  flex-shrink: 0;
}
.cmp-v.svelte-1qtp9j2 {
  color: var(--heading);
  font-weight: 500;
  text-align: right;
  letter-spacing: -0.01em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.cmp-cta.svelte-1qtp9j2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  background: linear-gradient(135deg, rgb(var(--cmp-c1)), rgb(var(--cmp-c2)));
  background-size: 200% 100%;
  color: #fff;
  border-radius: 12px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  overflow: hidden;
  box-shadow: 0 10px 22px -8px color-mix(in srgb, rgb(var(--cmp-c1)) 55%, transparent),
    inset 0 1px #ffffff40;
  transition: background-position 0.5s, transform 0.25s, box-shadow 0.25s;
  z-index: 1;
}
.cmp-card.svelte-1qtp9j2:hover .cmp-cta:where(.svelte-1qtp9j2) {
  background-position: 100% 0;
  box-shadow: 0 16px 32px -8px color-mix(in srgb, rgb(var(--cmp-c1)) 65%, transparent);
}
.cmp-cta-arr.svelte-1qtp9j2 {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  background: #ffffff38;
  border-radius: 50%;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), background 0.25s;
}
.cmp-card.svelte-1qtp9j2:hover .cmp-cta-arr:where(.svelte-1qtp9j2) {
  background: #ffffff59;
  transform: translate(4px) rotate(-3deg);
}
.cmp-cta-shine.svelte-1qtp9j2 {
  position: absolute;
  top: 0;
  left: -120%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 70%
  );
  transform: skew(-18deg);
  pointer-events: none;
  transition: left 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.cmp-card.svelte-1qtp9j2:hover .cmp-cta-shine:where(.svelte-1qtp9j2) {
  left: 140%;
}
.trend-section.svelte-1qtp9j2 {
  position: relative;
  overflow: hidden;
  padding: 70px 0;
  background: radial-gradient(
      900px 500px at 50% 0%,
      rgba(245, 158, 11, 0.1) 0%,
      transparent 55%
    ),
    linear-gradient(180deg, #fff8fc, #fff5f0);
  border-top: 1px solid rgba(233, 30, 140, 0.06);
}
.trend-head.svelte-1qtp9j2 {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.trend-eyebrow.svelte-1qtp9j2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #d97706;
  margin-bottom: 12px;
}
.trend-fire.svelte-1qtp9j2 {
  font-size: 14px;
}
.trend-h2.svelte-1qtp9j2 {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--heading);
  margin: 0;
}
.trend-grad.svelte-1qtp9j2 {
  background: linear-gradient(120deg, #f5c46b, #e91e8c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.trend-link.svelte-1qtp9j2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #fff;
  border: 1.5px solid rgba(233, 30, 140, 0.22);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--rose);
  text-decoration: none;
  box-shadow: 0 6px 16px #e91e8c1a;
  transition: all 0.3s ease;
}
.trend-link.svelte-1qtp9j2:hover {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px #e91e8c52;
}
.trend-grid.svelte-1qtp9j2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding-top: 36px;
}
.trend-card.svelte-1qtp9j2 {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 40px 24px 22px;
  background: radial-gradient(
      360px 200px at 100% 0%,
      color-mix(in srgb, var(--cat-text) 10%, transparent),
      transparent 60%
    ),
    radial-gradient(
      300px 180px at 0% 100%,
      color-mix(in srgb, var(--cat-text) 7%, transparent),
      transparent 60%
    ),
    linear-gradient(180deg, #fff, #fffafc);
  border: 1px solid color-mix(in srgb, var(--cat-text) 18%, transparent);
  border-radius: 24px;
  text-decoration: none;
  color: inherit;
  overflow: visible;
  isolation: isolate;
  box-shadow: 0 14px 34px -16px color-mix(in srgb, var(--cat-text) 30%, rgba(45, 18, 72, 0.2));
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s,
    border-color 0.3s;
}
.trend-card.svelte-1qtp9j2:hover {
  transform: translateY(-10px);
  border-color: color-mix(in srgb, var(--cat-text) 50%, transparent);
  box-shadow: 0 36px 70px -22px color-mix(in srgb, var(--cat-text) 50%, transparent),
    0 0 0 1px color-mix(in srgb, var(--cat-text) 25%, transparent);
}
.trend-halo.svelte-1qtp9j2 {
  position: absolute;
  top: -2px;
  right: -2px;
  bottom: -2px;
  left: -2px;
  z-index: -1;
  border-radius: 26px;
  background: conic-gradient(
    from 0deg,
    color-mix(in srgb, var(--cat-text) 60%, transparent),
    transparent 50%,
    color-mix(in srgb, var(--cat-text) 45%, transparent)
  );
  opacity: 0;
  filter: blur(18px);
  animation: svelte-1qtp9j2-trendRing 8s linear infinite;
  transition: opacity 0.4s;
}
@keyframes svelte-1qtp9j2-trendRing {
  to {
    transform: rotate(360deg);
  }
}
.trend-card.svelte-1qtp9j2:hover .trend-halo:where(.svelte-1qtp9j2) {
  opacity: 0.5;
}
.trend-ring.svelte-1qtp9j2 {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--cat-text) 20%, transparent),
    transparent 70%
  );
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}
.trend-orb.svelte-1qtp9j2 {
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--cat-text) 12%, transparent),
    transparent 70%
  );
  filter: blur(22px);
  pointer-events: none;
  z-index: 0;
}
.trend-medal.svelte-1qtp9j2 {
  position: absolute;
  top: -32px;
  left: 22px;
  width: 84px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 4;
}
.trend-medal__ring.svelte-1qtp9j2 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    color-mix(in srgb, var(--cat-text) 70%, transparent),
    transparent 65%,
    color-mix(in srgb, var(--cat-text) 70%, transparent)
  );
  filter: blur(8px);
  opacity: 0.7;
  animation: svelte-1qtp9j2-trendRing 5s linear infinite;
}
.trend-medal__inner.svelte-1qtp9j2 {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--cat-grad);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 32px -8px color-mix(in srgb, var(--cat-text) 60%, transparent),
    inset 0 2px #fff6, inset 0 -8px 16px -8px #0003;
  border: 3px solid #fff;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.trend-card.svelte-1qtp9j2:hover .trend-medal__inner:where(.svelte-1qtp9j2) {
  transform: scale(1.08) rotate(-6deg);
}
.trend-medal__emoji.svelte-1qtp9j2 {
  font-size: 22px;
  font-style: normal;
  line-height: 1;
  margin-top: -2px;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
}
.trend-medal__n.svelte-1qtp9j2 {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0.95;
  margin-top: 1px;
}
.trend-medal__label.svelte-1qtp9j2 {
  margin-top: 4px;
  padding: 3px 10px;
  background: #fff;
  color: var(--cat-text);
  border: 1px solid color-mix(in srgb, var(--cat-text) 28%, transparent);
  border-radius: 999px;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 6px 14px -4px color-mix(in srgb, var(--cat-text) 35%, transparent);
}
.trend-body.svelte-1qtp9j2 {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.trend-meta.svelte-1qtp9j2 {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}
.trend-meta.svelte-1qtp9j2 strong:where(.svelte-1qtp9j2) {
  color: var(--cat-text);
  font-weight: 700;
}
.trend-dot.svelte-1qtp9j2 {
  width: 7px;
  height: 7px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 3px #10b98140;
  animation: svelte-1qtp9j2-trendPulse 1.8s ease-in-out infinite;
}
@keyframes svelte-1qtp9j2-trendPulse {
  0%,
  to {
    opacity: 1;
  }
  50% {
    opacity: 0.45;
  }
}
.trend-meta-sep.svelte-1qtp9j2 {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--cat-text) 35%, transparent);
}
.trend-meta-badge.svelte-1qtp9j2 {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  color: #047857;
  border: 1px solid rgba(16, 185, 129, 0.28);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.trend-name.svelte-1qtp9j2 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--heading);
  line-height: 1.15;
}
.trend-desc.svelte-1qtp9j2 {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.trend-stats.svelte-1qtp9j2 {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  background: color-mix(in srgb, var(--cat-text) 5%, #fdf6fb);
  border: 1px solid color-mix(in srgb, var(--cat-text) 12%, transparent);
  border-radius: 12px;
  margin-top: auto;
}
.trend-stat.svelte-1qtp9j2 {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
  line-height: 1.1;
}
.trend-stat__v.svelte-1qtp9j2 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--cat-text);
  font-variant-numeric: tabular-nums;
}
.trend-stat__l.svelte-1qtp9j2 {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.trend-stat-sep.svelte-1qtp9j2 {
  width: 1px;
  height: 28px;
  background: linear-gradient(
    180deg,
    transparent,
    color-mix(in srgb, var(--cat-text) 22%, transparent),
    transparent
  );
}
.trend-foot.svelte-1qtp9j2 {
  margin-top: 16px;
  position: relative;
  z-index: 1;
}
.trend-cta.svelte-1qtp9j2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  background: var(--cat-grad);
  background-size: 200% 100%;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 24px -8px color-mix(in srgb, var(--cat-text) 55%, transparent),
    inset 0 1px #ffffff4d;
  transition: transform 0.3s, background-position 0.5s, box-shadow 0.3s;
}
.trend-card.svelte-1qtp9j2:hover .trend-cta:where(.svelte-1qtp9j2) {
  transform: translateY(-2px);
  background-position: 100% 0;
  box-shadow: 0 18px 36px -8px color-mix(in srgb, var(--cat-text) 70%, transparent);
}
.trend-cta__arr.svelte-1qtp9j2 {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffffff3d;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s;
}
.trend-card.svelte-1qtp9j2:hover .trend-cta__arr:where(.svelte-1qtp9j2) {
  background: #fff6;
  transform: translate(4px) rotate(-4deg);
}
.trend-cta__shine.svelte-1qtp9j2 {
  position: absolute;
  top: 0;
  left: -120%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 70%
  );
  transform: skew(-18deg);
  pointer-events: none;
  transition: left 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.trend-card.svelte-1qtp9j2:hover .trend-cta__shine:where(.svelte-1qtp9j2) {
  left: 140%;
}
@media (max-width: 900px) {
  .trend-grid.svelte-1qtp9j2 {
    grid-template-columns: 1fr 1fr;
  }
  .trend-card.svelte-1qtp9j2:last-child {
    grid-column: 1 / -1;
  }
}
@media (max-width: 620px) {
  .trend-grid.svelte-1qtp9j2 {
    grid-template-columns: 1fr;
    padding-top: 40px;
  }
  .trend-card.svelte-1qtp9j2:last-child {
    grid-column: auto;
  }
  .trend-name.svelte-1qtp9j2 {
    font-size: 22px;
  }
}
.hiw-section.svelte-1qtp9j2 {
  position: relative;
  overflow: hidden;
  padding: 80px 0 70px;
  background: radial-gradient(
      900px 600px at 50% 0%,
      rgba(245, 196, 107, 0.1) 0%,
      transparent 55%
    ),
    radial-gradient(
      900px 600px at 0% 100%,
      rgba(233, 30, 140, 0.1) 0%,
      transparent 55%
    ),
    radial-gradient(
      900px 600px at 100% 100%,
      rgba(245, 158, 11, 0.1) 0%,
      transparent 55%
    ),
    linear-gradient(180deg, #fff5f0, #fff8fc, #fff5fb);
  border-top: 1px solid rgba(233, 30, 140, 0.06);
}
.hiw-bg.svelte-1qtp9j2 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.hiw-bg-glyph.svelte-1qtp9j2 {
  fill: #e91e8c1a;
  font-family: serif;
  animation: svelte-1qtp9j2-hiwGlyphFloat 8s ease-in-out infinite;
}
.hiw-bg-glyph.svelte-1qtp9j2:nth-of-type(2n) {
  fill: #f59e0b1f;
  animation-delay: -2s;
}
.hiw-bg-glyph.svelte-1qtp9j2:nth-of-type(3n) {
  fill: #f43f5e1a;
  animation-delay: -4s;
}
@keyframes svelte-1qtp9j2-hiwGlyphFloat {
  0%,
  to {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-6px) rotate(8deg);
  }
}
.hiw-section.svelte-1qtp9j2 > .grid-container:where(.svelte-1qtp9j2) {
  position: relative;
  z-index: 1;
}
.hiw-head.svelte-1qtp9j2 {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 36px;
}
.hiw-eyebrow.svelte-1qtp9j2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--rose);
  margin-bottom: 14px;
}
.hiw-h2.svelte-1qtp9j2 {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--heading);
  margin: 0 0 12px;
}
.hiw-sub.svelte-1qtp9j2 {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}
.hiw-flow.svelte-1qtp9j2 {
  position: relative;
  height: 260px;
  margin: 30px 0 24px;
}
.hiw-curves.svelte-1qtp9j2 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hiw-curve.svelte-1qtp9j2 {
  stroke-dashoffset: 0;
  animation: svelte-1qtp9j2-hiwDashFlow 2s linear infinite;
}
@keyframes svelte-1qtp9j2-hiwDashFlow {
  to {
    stroke-dashoffset: -24;
  }
}
.hiw-chev.svelte-1qtp9j2 {
  animation: svelte-1qtp9j2-hiwChevPulse 1.6s ease-in-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}
.hiw-chev-2.svelte-1qtp9j2 {
  animation-delay: 0.4s;
}
@keyframes svelte-1qtp9j2-hiwChevPulse {
  0%,
  to {
    opacity: 0.5;
    transform: translate(var(--tx, 330px), var(--ty, 105px)) scale(0.9);
  }
  50% {
    opacity: 1;
    transform: translate(var(--tx, 330px), var(--ty, 105px)) scale(1.1);
  }
}
.hiw-chev-1.svelte-1qtp9j2 {
  transform: translate(330px, 105px);
}
.hiw-chev-2.svelte-1qtp9j2 {
  transform: translate(660px, 105px);
}
@keyframes svelte-1qtp9j2-hiwChevPulse {
  0%,
  to {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}
.hiw-nodes.svelte-1qtp9j2 {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  height: 100%;
  z-index: 2;
}
.hiw-node.svelte-1qtp9j2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.hiw-orbit.svelte-1qtp9j2 {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1.5px dashed rgba(233, 30, 140, 0.25);
  animation: svelte-1qtp9j2-hiwOrbitSpin 30s linear infinite;
}
.hiw-node-2.svelte-1qtp9j2 .hiw-orbit:where(.svelte-1qtp9j2) {
  border-color: #f43f5e47;
  animation-direction: reverse;
  animation-duration: 26s;
}
.hiw-node-3.svelte-1qtp9j2 .hiw-orbit:where(.svelte-1qtp9j2) {
  border-color: #f59e0b47;
  animation-duration: 28s;
}
@keyframes svelte-1qtp9j2-hiwOrbitSpin {
  to {
    transform: rotate(360deg);
  }
}
.hiw-circle.svelte-1qtp9j2 {
  position: relative;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(
      circle at 30% 25%,
      rgba(255, 255, 255, 0.35),
      transparent 55%
    ),
    linear-gradient(135deg, var(--hiw-c1, #ff6b9d), var(--hiw-c2, #e91e8c));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 36px #e91e8c59, 0 0 0 5px #fff, 0 0 0 6px #f5c46b66,
    inset 0 2px #ffffff73;
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.hiw-node-1.svelte-1qtp9j2 .hiw-circle:where(.svelte-1qtp9j2) {
  --hiw-c1: #ff6b9d;
  --hiw-c2: #e91e8c;
}
.hiw-node-3.svelte-1qtp9j2 .hiw-circle:where(.svelte-1qtp9j2) {
  --hiw-c1: #fbbf24;
  --hiw-c2: #f59e0b;
  box-shadow: 0 18px 36px #f59e0b59, 0 0 0 5px #fff, 0 0 0 6px #f5c46b66,
    inset 0 2px #ffffff73;
}
.hiw-node.svelte-1qtp9j2:hover .hiw-circle:where(.svelte-1qtp9j2) {
  transform: scale(1.05) rotate(-4deg);
}
.hiw-quad.svelte-1qtp9j2 {
  position: relative;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  box-shadow: 0 18px 36px #f43f5e52, 0 0 0 5px #fff, 0 0 0 6px #f5c46b73;
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.hiw-node.svelte-1qtp9j2:hover .hiw-quad:where(.svelte-1qtp9j2) {
  transform: scale(1.05) rotate(2deg);
}
.hiw-q.svelte-1qtp9j2 {
  background-size: cover;
  background-position: center;
  position: relative;
}
.hiw-q.svelte-1qtp9j2:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(135deg, #0000000d, #0000002e);
}
.hiw-q-1.svelte-1qtp9j2 {
  background-image: linear-gradient(135deg, #ff6b9d, #e91e8c);
}
.hiw-q-2.svelte-1qtp9j2 {
  background-image: linear-gradient(135deg, #f59e0b, #d97706);
}
.hiw-q-3.svelte-1qtp9j2 {
  background-image: linear-gradient(135deg, #f43f5e, #e11d48);
}
.hiw-q-4.svelte-1qtp9j2 {
  background-image: linear-gradient(135deg, #fbbf24, #f59e0b);
}
.hiw-dot.svelte-1qtp9j2 {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  box-shadow: 0 4px 10px #00000026;
  z-index: 3;
  animation: svelte-1qtp9j2-hiwDotFloat 3.5s ease-in-out infinite;
}
.hiw-dot-a.svelte-1qtp9j2 {
  top: 14%;
  right: 16%;
  background: #f5c46b;
}
.hiw-dot-b.svelte-1qtp9j2 {
  bottom: 12%;
  left: 14%;
  background: #e91e8c;
  animation-delay: -1s;
}
.hiw-dot-c.svelte-1qtp9j2 {
  top: 18%;
  left: 14%;
  background: #f43f5e;
  animation-delay: -1.5s;
}
.hiw-dot-d.svelte-1qtp9j2 {
  bottom: 12%;
  right: 14%;
  background: #f5c46b;
  animation-delay: -2.2s;
}
.hiw-dot-e.svelte-1qtp9j2 {
  top: 12%;
  left: 14%;
  background: #f59e0b;
  animation-delay: -0.8s;
}
.hiw-dot-f.svelte-1qtp9j2 {
  bottom: 14%;
  right: 14%;
  background: #e91e8c;
  animation-delay: -2.5s;
}
@keyframes svelte-1qtp9j2-hiwDotFloat {
  0%,
  to {
    transform: translateY(0) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-8px) scale(1.15);
    opacity: 1;
  }
}
.hiw-steps.svelte-1qtp9j2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.hiw-step.svelte-1qtp9j2 {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 0 12px;
  text-align: left;
}
.hiw-step-num.svelte-1qtp9j2 {
  flex-shrink: 0;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.06em;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hiw-num-1.svelte-1qtp9j2 {
  background: linear-gradient(135deg, #ff6b9d, #e91e8c);
  -webkit-background-clip: text;
  background-clip: text;
}
.hiw-num-2.svelte-1qtp9j2 {
  background: linear-gradient(135deg, #f43f5e, #e11d48);
  -webkit-background-clip: text;
  background-clip: text;
}
.hiw-num-3.svelte-1qtp9j2 {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
}
.hiw-step-body.svelte-1qtp9j2 h4:where(.svelte-1qtp9j2) {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--heading);
  margin: 4px 0;
  line-height: 1.2;
}
.hiw-step-body.svelte-1qtp9j2 p:where(.svelte-1qtp9j2) {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}
.testi-section.svelte-1qtp9j2 {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: radial-gradient(
      1000px 600px at 50% 0%,
      rgba(233, 30, 140, 0.08) 0%,
      transparent 55%
    ),
    linear-gradient(180deg, #fff8fc, #fdf4fa);
  border-top: 1px solid rgba(233, 30, 140, 0.06);
}
.testi-head.svelte-1qtp9j2 {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 36px;
}
.testi-eyebrow.svelte-1qtp9j2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--rose);
  margin-bottom: 14px;
}
.testi-h2.svelte-1qtp9j2 {
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--heading);
  margin: 0;
}
.testi-grid.svelte-1qtp9j2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card.svelte-1qtp9j2 {
  position: relative;
  padding: 26px 24px 22px;
  background: radial-gradient(
      120% 90% at 0% 0%,
      rgba(233, 30, 140, 0.06),
      transparent 55%
    ),
    linear-gradient(160deg, #fff, #fff9fc);
  border: 1px solid rgba(233, 30, 140, 0.12);
  border-radius: 22px;
  box-shadow: 0 12px 32px #2d124814;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease;
}
.testi-card.svelte-1qtp9j2:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 42px #e91e8c2e;
}
.testi-quote.svelte-1qtp9j2 {
  color: var(--rose);
  opacity: 0.4;
  margin-bottom: 8px;
}
.testi-text.svelte-1qtp9j2 {
  font-size: 14px;
  color: var(--heading);
  line-height: 1.65;
  margin: 0 0 14px;
  font-weight: 500;
}
.testi-stars.svelte-1qtp9j2 {
  display: inline-flex;
  gap: 1px;
  margin-bottom: 16px;
}
.testi-author.svelte-1qtp9j2 {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px dashed rgba(45, 18, 72, 0.1);
}
.testi-avatar.svelte-1qtp9j2 {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px #e91e8c52;
}
.testi-name.svelte-1qtp9j2 {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--heading);
  letter-spacing: -0.01em;
}
.testi-role.svelte-1qtp9j2 {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}
.cstats-section.svelte-1qtp9j2 {
  padding: 0;
  background: linear-gradient(180deg, #fdf4fa, #fff8fc);
}
.cstats-bar.svelte-1qtp9j2 {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  padding: 28px 24px;
  background: linear-gradient(135deg, #fff, #fff8fc);
  border: 1px solid rgba(233, 30, 140, 0.12);
  border-radius: 22px;
  box-shadow: 0 14px 36px #e91e8c1a;
  transform: translateY(-30px);
}
.cstats-item.svelte-1qtp9j2 {
  text-align: center;
}
.cstats-num.svelte-1qtp9j2 {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.cstats-lbl.svelte-1qtp9j2 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.cstats-sep.svelte-1qtp9j2 {
  width: 1px;
  height: 36px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(45, 18, 72, 0.14),
    transparent
  );
}
.cat-info-bar.svelte-1qtp9j2 {
  padding: 0 0 80px;
  background: linear-gradient(180deg, #fdf4fb, #fff);
}
.info-pill.svelte-1qtp9j2 {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 22px 26px;
  background: radial-gradient(
      90% 80% at 0% 0%,
      rgba(233, 30, 140, 0.1),
      transparent 55%
    ),
    radial-gradient(
      90% 80% at 100% 100%,
      rgba(245, 158, 11, 0.08),
      transparent 55%
    ),
    linear-gradient(135deg, #fff, #fff8fc);
  border: 1px solid rgba(233, 30, 140, 0.18);
  border-radius: 22px;
  box-shadow: 0 18px 44px #e91e8c1f;
  flex-wrap: wrap;
}
.info-pill-icon.svelte-1qtp9j2 {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px #e91e8c59;
  flex-shrink: 0;
}
.info-pill-text.svelte-1qtp9j2 {
  flex: 1;
  min-width: 220px;
}
.info-pill-text.svelte-1qtp9j2 h3:where(.svelte-1qtp9j2) {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--heading);
  margin: 0 0 4px;
}
.info-pill-text.svelte-1qtp9j2 p:where(.svelte-1qtp9j2) {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}
.info-pill-btn.svelte-1qtp9j2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 12px 28px #25d36659;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}
.info-pill-btn.svelte-1qtp9j2:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px #25d36680;
}
@media (max-width: 1024px) {
  .cat-h1.svelte-1qtp9j2 {
    font-size: 2.5rem;
  }
  .cat-grid.svelte-1qtp9j2,
  .cmp-grid.svelte-1qtp9j2,
  .trend-grid.svelte-1qtp9j2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .trend-grid.svelte-1qtp9j2 > .trend-card:where(.svelte-1qtp9j2):nth-child(3) {
    grid-column: span 2;
    max-width: 520px;
    justify-self: center;
    width: 100%;
  }
  .testi-grid.svelte-1qtp9j2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .testi-grid.svelte-1qtp9j2 > .testi-card:where(.svelte-1qtp9j2):nth-child(3) {
    grid-column: span 2;
    max-width: 520px;
    justify-self: center;
    width: 100%;
  }
  .cstats-bar.svelte-1qtp9j2 {
    grid-template-columns: 1fr 1fr;
    gap: 18px 0;
    padding: 22px;
  }
  .cstats-sep.svelte-1qtp9j2 {
    display: none;
  }
  .cat-hero-inner.svelte-1qtp9j2 {
    grid-template-columns: 1fr 0.85fr;
    gap: 32px;
  }
  .cat-hero-visual.svelte-1qtp9j2 {
    min-height: 340px;
  }
  .cat-vis-pill-top.svelte-1qtp9j2 {
    left: -2%;
  }
  .cat-vis-pill-bot.svelte-1qtp9j2 {
    right: -2%;
  }
}
@media (max-width: 768px) {
  .cat-hero.svelte-1qtp9j2 {
    padding: 44px 0 38px;
  }
  .cat-hero-inner.svelte-1qtp9j2 {
    grid-template-columns: 1fr 0.95fr;
    gap: 24px;
    align-items: center;
  }
  .cat-hero-visual.svelte-1qtp9j2 {
    min-height: 320px;
    max-width: 320px;
    gap: 8px;
    margin: 0;
  }
  .cat-vis-silhouette.svelte-1qtp9j2 {
    max-width: 220px;
  }
  .cat-vis-kiss.svelte-1qtp9j2 {
    width: 32px;
    height: 26px;
    right: -10px;
  }
  .cat-mini.svelte-1qtp9j2 {
    padding: 11px;
    gap: 9px;
  }
  .cat-mini-icon.svelte-1qtp9j2 {
    width: 32px;
    height: 32px;
  }
  .cat-mini-name.svelte-1qtp9j2 {
    font-size: 12px;
  }
  .cat-mini-count.svelte-1qtp9j2 {
    font-size: 9.5px;
  }
  .cat-vis-pill.svelte-1qtp9j2 {
    padding: 7px 11px;
  }
  .cat-vis-pill-v.svelte-1qtp9j2 {
    font-size: 11px;
  }
  .cat-vis-pill-l.svelte-1qtp9j2 {
    font-size: 9px;
  }
  .cat-h1.svelte-1qtp9j2 {
    font-size: 2rem;
  }
  .cat-hero-desc.svelte-1qtp9j2 {
    font-size: 14px;
  }
  .cat-meta.svelte-1qtp9j2 {
    flex-wrap: wrap;
    padding: 6px;
  }
  .cat-meta-item.svelte-1qtp9j2 {
    padding: 6px 14px;
    min-width: auto;
    flex: 1;
  }
  .cat-meta-val.svelte-1qtp9j2 {
    font-size: 1.3rem;
  }
  .cat-meta-sep.svelte-1qtp9j2 {
    display: none;
  }
  .cat-grid.svelte-1qtp9j2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .catx.svelte-1qtp9j2 {
    padding: 22px 20px 18px;
  }
  .cmp-section.svelte-1qtp9j2,
  .trend-section.svelte-1qtp9j2,
  .hiw-section.svelte-1qtp9j2,
  .testi-section.svelte-1qtp9j2 {
    padding: 50px 0;
  }
  .cmp-h2.svelte-1qtp9j2,
  .trend-h2.svelte-1qtp9j2,
  .testi-h2.svelte-1qtp9j2,
  .hiw-h2.svelte-1qtp9j2 {
    font-size: 1.7rem;
  }
  .hiw-flow.svelte-1qtp9j2 {
    height: auto;
    padding: 20px 0;
  }
  .hiw-curves.svelte-1qtp9j2 {
    display: none;
  }
  .hiw-nodes.svelte-1qtp9j2 {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
  }
  .hiw-orbit.svelte-1qtp9j2 {
    width: 130px;
    height: 130px;
  }
  .hiw-circle.svelte-1qtp9j2,
  .hiw-quad.svelte-1qtp9j2 {
    width: 100px;
    height: 100px;
  }
  .hiw-circle.svelte-1qtp9j2 svg:where(.svelte-1qtp9j2) {
    width: 32px;
    height: 32px;
  }
  .hiw-step-num.svelte-1qtp9j2 {
    font-size: 2.2rem;
  }
  .hiw-step.svelte-1qtp9j2 {
    padding: 0 4px;
  }
  .trend-head.svelte-1qtp9j2 {
    flex-direction: column;
    align-items: flex-start;
  }
  .info-pill.svelte-1qtp9j2 {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }
  .info-pill-btn.svelte-1qtp9j2 {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .cat-hero-inner.svelte-1qtp9j2 {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .cat-hero-visual.svelte-1qtp9j2 {
    max-width: 320px;
    margin: 0 auto;
  }
  .cat-vis-pill-top.svelte-1qtp9j2 {
    left: 2%;
    top: -6px;
  }
  .cat-vis-pill-bot.svelte-1qtp9j2 {
    right: 2%;
    bottom: -4px;
  }
}
@media (max-width: 480px) {
  .cat-hero.svelte-1qtp9j2 {
    padding: 36px 0 30px;
  }
  .cat-h1.svelte-1qtp9j2 {
    font-size: 1.7rem;
  }
  .cat-chip.svelte-1qtp9j2 {
    font-size: 10px;
  }
  .cat-meta-val.svelte-1qtp9j2 {
    font-size: 1.1rem;
  }
  .cat-meta-lbl.svelte-1qtp9j2 {
    font-size: 9px;
  }
  .cat-grid.svelte-1qtp9j2 {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .cat-section.svelte-1qtp9j2 {
    padding: 44px 0 60px;
  }
  .cat-search-wrap.svelte-1qtp9j2 {
    padding: 6px 6px 6px 14px;
    gap: 8px;
  }
  .cat-search-input.svelte-1qtp9j2 {
    font-size: 13px;
  }
  .cat-search-count.svelte-1qtp9j2 {
    padding: 7px 12px;
    font-size: 12px;
  }
  .cat-search-count.svelte-1qtp9j2 span:where(.svelte-1qtp9j2) {
    display: none;
  }
  .cat-hero-visual.svelte-1qtp9j2 {
    max-width: 280px;
  }
  .cmp-grid.svelte-1qtp9j2,
  .trend-grid.svelte-1qtp9j2,
  .testi-grid.svelte-1qtp9j2 {
    grid-template-columns: 1fr;
  }
  .hiw-flow.svelte-1qtp9j2 {
    display: none;
  }
  .hiw-steps.svelte-1qtp9j2 {
    position: relative;
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 380px;
    margin: 12px auto 0;
  }
  .hiw-steps.svelte-1qtp9j2:before {
    content: "";
    position: absolute;
    left: 38px;
    top: 30px;
    bottom: 30px;
    width: 2px;
    background: repeating-linear-gradient(
      180deg,
      rgba(233, 30, 140, 0.35) 0 6px,
      transparent 6px 12px
    );
    z-index: 0;
  }
  .hiw-step.svelte-1qtp9j2 {
    position: relative;
    padding: 14px 16px;
    gap: 18px;
    align-items: center;
    background: #ffffffd9;
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 24px #2d124814;
    margin-bottom: 14px;
    z-index: 1;
  }
  .hiw-step.svelte-1qtp9j2:last-child {
    margin-bottom: 0;
  }
  .hiw-step-num.svelte-1qtp9j2 {
    width: 76px;
    height: 76px;
    flex-shrink: 0;
    border-radius: 50%;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    box-shadow: 0 8px 20px #0000002e, 0 0 0 4px #fff, 0 0 0 5px #f5c46b73;
  }
  .hiw-num-1.svelte-1qtp9j2 {
    background: linear-gradient(135deg, #ff6b9d, #e91e8c);
  }
  .hiw-num-2.svelte-1qtp9j2 {
    background: linear-gradient(135deg, #f43f5e, #e11d48);
  }
  .hiw-num-3.svelte-1qtp9j2 {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
  }
  .hiw-step-body.svelte-1qtp9j2 h4:where(.svelte-1qtp9j2) {
    font-size: 14.5px;
  }
  .hiw-step-body.svelte-1qtp9j2 p:where(.svelte-1qtp9j2) {
    font-size: 12.5px;
  }
  .trend-grid.svelte-1qtp9j2 > .trend-card:where(.svelte-1qtp9j2):nth-child(3),
  .testi-grid.svelte-1qtp9j2 > .testi-card:where(.svelte-1qtp9j2):nth-child(3) {
    grid-column: auto;
    max-width: none;
  }
  .cstats-bar.svelte-1qtp9j2 {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .cstats-num.svelte-1qtp9j2 {
    font-size: 1.5rem;
  }
}

/*Category Page Ends Here*/ 

/*Ctategoyu Single Page*/

.cdp-hero.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 72px 0 80px;
  background: radial-gradient(
      900px 500px at 50% 0%,
      rgba(245, 158, 11, 0.1) 0%,
      transparent 55%
    ),
    radial-gradient(
      900px 500px at 0% 50%,
      rgba(233, 30, 140, 0.09) 0%,
      transparent 55%
    ),
    radial-gradient(
      900px 500px at 100% 50%,
      rgba(245, 158, 11, 0.09) 0%,
      transparent 55%
    ),
    linear-gradient(180deg, #fff0f7, #fdf4ff);
}
.cdp-hero.svelte-1adez18:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(
      rgba(233, 30, 140, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(233, 30, 140, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, #000 40%, transparent 75%);
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    #000 40%,
    transparent 75%
  );
  pointer-events: none;
}
.cdp-hero.svelte-1adez18 > .grid-container:where(.svelte-1adez18) {
  position: relative;
  z-index: 1;
}
.cdp-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.55;
}
.cdp-orb-1.svelte-1adez18 {
  top: -120px;
  left: -100px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(233, 30, 140, 0.4), transparent 70%);
}
.cdp-orb-2.svelte-1adez18 {
  top: 40px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.35),
    transparent 70%
  );
}
.cdp-orb-3.svelte-1adez18 {
  bottom: -120px;
  left: 30%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.3), transparent 70%);
}
.cdp-hero-inner.svelte-1adez18 {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.cdp-hero-text.svelte-1adez18 {
  max-width: 620px;
}
.cdp-quick-answer.svelte-1adez18 {
  margin: 16px 0 20px;
  padding: 14px 18px;
  border-left: 3px solid var(--rose);
  background: #e91e8c0f;
  border-radius: 8px;
}
.cdp-qa-q.svelte-1adez18 {
  margin: 0 0 4px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--rose);
}
.cdp-qa-a.svelte-1adez18 {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}
.cdp-crumb.svelte-1adez18 {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  margin-bottom: 14px;
  background: #ffffffd9;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 14px #2d12480f;
}
.cdp-crumb.svelte-1adez18 a:where(.svelte-1adez18) {
  color: var(--rose);
  text-decoration: none;
  font-weight: 600;
}
.cdp-crumb.svelte-1adez18 a:where(.svelte-1adez18):hover {
  text-decoration: underline;
}
.cdp-crumb.svelte-1adez18 span:where(.svelte-1adez18):last-child {
  color: var(--heading);
  font-weight: 600;
}
.cdp-crumb.svelte-1adez18 svg:where(.svelte-1adez18) {
  color: var(--text-dim);
}
.cdp-chip.svelte-1adez18 {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 12px;
  margin-bottom: 20px;
  background: #ffffffd9;
  border: 1px solid rgba(245, 196, 107, 0.4);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #b45309;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 18px #f59e0b26;
}
.cdp-chip-dot.svelte-1adez18 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px #10b98133, 0 0 10px #10b98199;
  animation: svelte-1adez18-cdpPulse 2.2s ease-in-out infinite;
}
@keyframes svelte-1adez18-cdpPulse {
  0%,
  to {
    box-shadow: 0 0 0 3px #10b98133, 0 0 10px #10b98199;
  }
  50% {
    box-shadow: 0 0 0 6px #10b9810d, 0 0 18px #10b981cc;
  }
}
.cdp-h1.svelte-1adez18 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--heading);
  margin: 0 0 14px;
}
.cdp-grad.svelte-1adez18 {
  background: linear-gradient(135deg, var(--rose), var(--gold, #f59e0b));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cdp-lead.svelte-1adez18 {
  max-width: 580px;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 28px;
}
.cdp-meta.svelte-1adez18 {
  display: inline-flex;
  align-items: stretch;
  flex-wrap: wrap;
  padding: 10px 6px;
  background: #ffffffd9;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 36px #e91e8c14;
  margin-bottom: 28px;
}
.cdp-meta-item.svelte-1adez18 {
  padding: 6px 22px;
  text-align: center;
  min-width: 82px;
}
.cdp-meta-item.svelte-1adez18 + .cdp-meta-item:where(.svelte-1adez18) {
  border-left: 1px solid rgba(45, 18, 72, 0.08);
}
.cdp-meta-val.svelte-1adez18 {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.cdp-meta-val.svelte-1adez18 span:where(.svelte-1adez18) {
  font-size: 0.85em;
}
.cdp-live-dot.svelte-1adez18 {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px #10b98133;
  animation: svelte-1adez18-cdpPulse 2.2s ease-in-out infinite;
  -webkit-text-fill-color: initial;
}
.cdp-meta-lbl.svelte-1adez18 {
  margin-top: 4px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.cdp-actions.svelte-1adez18 {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cdp-btn-wa.svelte-1adez18 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25d366, #1aab52);
  color: #fff !important;
  border: none;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  box-shadow: 0 4px 18px #25d3664d;
}
.cdp-btn-wa.svelte-1adez18:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px #25d36666;
  color: #fff !important;
}
.cdp-hero-visual.svelte-1adez18 {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1/1;
  margin-left: auto;
}
.cdp-vis-glow.svelte-1adez18 {
  position: absolute;
  top: 15%;
  right: 15%;
  bottom: 15%;
  left: 15%;
  border-radius: 50%;
  background: radial-gradient(
      circle,
      rgba(233, 30, 140, 0.2) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 60% 40%,
      rgba(245, 158, 11, 0.15) 0%,
      transparent 50%
    );
  filter: blur(30px);
  pointer-events: none;
}
.cdp-gauge-svg.svelte-1adez18 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cdp-arc.svelte-1adez18 {
  animation: svelte-1adez18-cdpArcDraw 2s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.cdp-arc-1.svelte-1adez18 {
  animation-delay: 0.2s;
}
.cdp-arc-2.svelte-1adez18 {
  animation-delay: 0.5s;
}
.cdp-arc-3.svelte-1adez18 {
  animation-delay: 0.8s;
}
@keyframes svelte-1adez18-cdpArcDraw {
  0% {
    stroke-dashoffset: 930;
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.cdp-orbit.svelte-1adez18 {
  transform-origin: 160px 160px;
}
.cdp-orbit-1.svelte-1adez18 {
  animation: svelte-1adez18-cdpOrbit1 12s linear infinite;
}
.cdp-orbit-2.svelte-1adez18 {
  animation: svelte-1adez18-cdpOrbit2 16s linear infinite;
}
.cdp-orbit-3.svelte-1adez18 {
  animation: svelte-1adez18-cdpOrbit3 20s linear infinite;
}
@keyframes svelte-1adez18-cdpOrbit1 {
  to {
    transform: rotate(360deg);
  }
}
@keyframes svelte-1adez18-cdpOrbit2 {
  to {
    transform: rotate(-360deg);
  }
}
@keyframes svelte-1adez18-cdpOrbit3 {
  to {
    transform: rotate(360deg);
  }
}
.cdp-hub.svelte-1adez18 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}
.cdp-hub-inner.svelte-1adez18 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 22px 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 20px 50px #2d124826, 0 4px 12px #0000000d;
  animation: svelte-1adez18-cdpHubPulse 4s ease-in-out infinite;
}
@keyframes svelte-1adez18-cdpHubPulse {
  0%,
  to {
    box-shadow: 0 20px 50px #2d124826, 0 4px 12px #0000000d;
  }
  50% {
    box-shadow: 0 24px 60px #e91e8c2e, 0 4px 12px #0000000d;
  }
}
.cdp-hub-icon.svelte-1adez18 {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px #00000026;
}
.cdp-hub-label.svelte-1adez18 {
  font-size: 14px;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: -0.02em;
}
.cdp-hub-live.svelte-1adez18 {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #059669;
  padding: 3px 10px;
  border-radius: 50px;
  background: #10b9811a;
  border: 1px solid rgba(16, 185, 129, 0.2);
}
.cdp-hub-dot.svelte-1adez18 {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 2px #10b98140;
  animation: svelte-1adez18-cdpPulse 2.2s ease-in-out infinite;
}
.cdp-node.svelte-1adez18 {
  position: absolute;
  z-index: 6;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 10px 28px #2d12481f;
  text-align: center;
  min-width: 80px;
}
.cdp-node-val.svelte-1adez18 {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: -0.03em;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin-bottom: 3px;
}
.cdp-node-lbl.svelte-1adez18 {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 6px;
}
.cdp-node-bar.svelte-1adez18 {
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background: #2d12480f;
  overflow: hidden;
}
.cdp-node-fill.svelte-1adez18 {
  height: 100%;
  border-radius: 4px;
  animation: svelte-1adez18-cdpBarFill 1.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.cdp-fill-rose.svelte-1adez18 {
  width: 75%;
  background: linear-gradient(90deg, var(--rose), var(--rose-dark));
  animation-delay: 0.4s;
}
.cdp-fill-gold.svelte-1adez18 {
  width: 90%;
  background: linear-gradient(90deg, #f59e0b, #f97316);
  animation-delay: 0.7s;
}
.cdp-fill-violet.svelte-1adez18 {
  width: 60%;
  background: linear-gradient(90deg, #7c3aed, #a78bfa);
  animation-delay: 1s;
}
@keyframes svelte-1adez18-cdpBarFill {
  0% {
    width: 0;
  }
}
.cdp-node-1.svelte-1adez18 {
  top: -2%;
  left: 4%;
  animation: svelte-1adez18-cdpNodeFloat 6s ease-in-out infinite;
}
.cdp-node-2.svelte-1adez18 {
  top: 8%;
  right: -6%;
  animation: svelte-1adez18-cdpNodeFloat 6s ease-in-out infinite reverse;
  animation-delay: -2s;
}
.cdp-node-3.svelte-1adez18 {
  bottom: 12%;
  left: -4%;
  animation: svelte-1adez18-cdpNodeFloat 6s ease-in-out infinite;
  animation-delay: -4s;
}
.cdp-node-4.svelte-1adez18 {
  bottom: -2%;
  right: 4%;
  animation: svelte-1adez18-cdpNodeFloat 6s ease-in-out infinite reverse;
  animation-delay: -1s;
}
@keyframes svelte-1adez18-cdpNodeFloat {
  0%,
  to {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.cat-main.svelte-1adez18 {
  background: linear-gradient(180deg, #fff, #fff5fa, #f5f0ff 60%, #fdf6fb);
  padding: 48px 0 72px;
}
.toolbar.svelte-1adez18 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
  background: #fff;
  border: 1.5px solid rgba(233, 30, 140, 0.1);
  border-radius: 18px;
  padding: 14px 20px;
  box-shadow: 0 4px 20px #e91e8c0d;
}
.toolbar-left.svelte-1adez18 {
  display: flex;
  align-items: center;
  gap: 14px;
}
.toolbar-right.svelte-1adez18 {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.tb-count-badge.svelte-1adez18 {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px #e91e8c4d;
  flex-shrink: 0;
}
.tb-count-num.svelte-1adez18 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.tb-count-text.svelte-1adez18 strong:where(.svelte-1adez18) {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--heading);
  letter-spacing: -0.01em;
}
.tb-count-text.svelte-1adez18 span:where(.svelte-1adez18) {
  font-size: 12px;
  color: var(--text-muted);
}
.tb-chip.svelte-1adez18 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #e91e8c14, #e91e8c0a);
  color: var(--rose);
  border: 1px solid rgba(233, 30, 140, 0.18);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s ease;
}
.tb-chip.svelte-1adez18:hover {
  background: #e91e8c1f;
  border-color: #e91e8c4d;
}
.tb-chip-x.svelte-1adez18 {
  opacity: 0.5;
}
.tb-chip.svelte-1adez18:hover .tb-chip-x:where(.svelte-1adez18) {
  opacity: 1;
}
.tb-select-wrap.svelte-1adez18 {
  position: relative;
  display: flex;
  align-items: center;
}
.tb-select-icon.svelte-1adez18 {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: linear-gradient(135deg, #e91e8c1a, #e91e8c0a);
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}
.tb-select-icon-violet.svelte-1adez18 {
  background: linear-gradient(135deg, #7c3aed1a, #7c3aed0a);
  color: var(--violet);
}
.tb-select.svelte-1adez18 {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: linear-gradient(135deg, #e91e8c08, #7c3aed05);
  border: 1.5px solid rgba(233, 30, 140, 0.1);
  border-radius: 12px;
  padding: 10px 36px 10px 42px;
  font-size: 13px;
  font-weight: 500;
  color: var(--heading);
  font-family: inherit;
  cursor: pointer;
  transition: all 0.25s ease;
  min-width: 160px;
  outline: none;
}
.tb-select.svelte-1adez18:hover {
  border-color: #e91e8c40;
  background: #e91e8c0d;
}
.tb-select.svelte-1adez18:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px #e91e8c14;
}
.tb-select-chevron.svelte-1adez18 {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-dim);
  pointer-events: none;
}
.profiles-grid.svelte-1adez18 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.empty-state.svelte-1adez18 {
  text-align: center;
  padding: 80px 20px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 18px;
}
.empty-icon.svelte-1adez18 {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.empty-state.svelte-1adez18 h3:where(.svelte-1adez18) {
  font-size: 20px;
  color: var(--heading);
  margin-bottom: 8px;
}
.empty-state.svelte-1adez18 p:where(.svelte-1adez18) {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 24px;
}
.empty-actions.svelte-1adez18 {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.cab-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cab-section.svelte-1adez18 > .grid-container:where(.svelte-1adez18) {
  position: relative;
  z-index: 1;
}
.cab-header.svelte-1adez18 {
  text-align: center;
  margin-bottom: 52px;
}
.cab-header.svelte-1adez18 h2:where(.svelte-1adez18) {
  font-size: clamp(1.7rem, 3.8vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--heading);
  margin-bottom: 14px;
}
.cab-header.svelte-1adez18 p:where(.svelte-1adez18) {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.7;
}
.cab-grid.svelte-1adez18 {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 18px;
}
.cab-card-main.svelte-1adez18 {
  grid-row: 1 / 3;
}
.cab-card.svelte-1adez18 {
  border-radius: 22px;
  padding: 28px;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}
.cab-card.svelte-1adez18:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 22px 22px 0 0;
  pointer-events: none;
}
.cab-card.svelte-1adez18:hover {
  transform: translateY(-6px);
}
.cab-card-main.svelte-1adez18 {
  background: linear-gradient(
    155deg,
    #fff0f7,
    #fce8f5 30%,
    #f3eaff 70%,
    #f0e6ff
  );
  border: 1.5px solid rgba(233, 30, 140, 0.15);
  box-shadow: 0 6px 24px #e91e8c14;
}
.cab-card-main.svelte-1adez18:before {
  background: linear-gradient(90deg, var(--rose), var(--violet));
}
.cab-card-main.svelte-1adez18:hover {
  border-color: #e91e8c4d;
  box-shadow: 0 20px 50px #e91e8c24;
}
.cab-stat-rose.svelte-1adez18 {
  background: linear-gradient(155deg, #fff0f5, #ffe4ef 40%, #fff5f9);
  border: 1.5px solid rgba(233, 30, 140, 0.15);
  box-shadow: 0 4px 20px #e91e8c0f;
}
.cab-stat-rose.svelte-1adez18:before {
  background: linear-gradient(90deg, var(--rose), #f472b6);
}
.cab-stat-rose.svelte-1adez18:hover {
  border-color: #e91e8c4d;
  box-shadow: 0 16px 40px #e91e8c1f;
}
.cab-stat-gold.svelte-1adez18 {
  background: linear-gradient(155deg, #fffbf0, #fff3d6 40%, #fffcf5);
  border: 1.5px solid rgba(245, 158, 11, 0.18);
  box-shadow: 0 4px 20px #f59e0b0f;
}
.cab-stat-gold.svelte-1adez18:before {
  background: linear-gradient(90deg, #f59e0b, #fb923c);
}
.cab-stat-gold.svelte-1adez18:hover {
  border-color: #f59e0b59;
  box-shadow: 0 16px 40px #f59e0b1f;
}
.cab-stat-green.svelte-1adez18 {
  background: linear-gradient(155deg, #f0fdf6, #dcfce7 40%, #f5fdf9);
  border: 1.5px solid rgba(16, 185, 129, 0.18);
  box-shadow: 0 4px 20px #10b9810f;
}
.cab-stat-green.svelte-1adez18:before {
  background: linear-gradient(90deg, #10b981, #34d399);
}
.cab-stat-green.svelte-1adez18:hover {
  border-color: #10b9814d;
  box-shadow: 0 16px 40px #10b9811f;
}
.cab-stat-violet.svelte-1adez18 {
  background: linear-gradient(155deg, #f5f0ff, #ede5ff 40%, #f8f5ff);
  border: 1.5px solid rgba(124, 58, 237, 0.18);
  box-shadow: 0 4px 20px #7c3aed0f;
}
.cab-stat-violet.svelte-1adez18:before {
  background: linear-gradient(90deg, var(--violet), #a78bfa);
}
.cab-stat-violet.svelte-1adez18:hover {
  border-color: #7c3aed4d;
  box-shadow: 0 16px 40px #7c3aed1f;
}
.cab-stat-badge.svelte-1adez18 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
}
.cab-badge-gold.svelte-1adez18 {
  background: #f59e0b1f;
  color: #b45309;
}
.cab-badge-green.svelte-1adez18 {
  background: #10b9811f;
  color: #047857;
}
.cab-badge-violet.svelte-1adez18 {
  background: #7c3aed1a;
  color: #6d28d9;
}
.cab-stat-desc.svelte-1adez18 {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}
.cab-card-head.svelte-1adez18 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.cab-card-icon.svelte-1adez18 {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px #00000026;
}
.cab-card-badge.svelte-1adez18 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 50px;
  background: linear-gradient(135deg, #10b9811f, #0596690f);
  border: 1px solid rgba(16, 185, 129, 0.25);
  font-size: 10.5px;
  font-weight: 700;
  color: #059669;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px #10b9811a;
}
.cab-live-dot.svelte-1adez18 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px #10b98133, 0 0 10px #10b98180;
  animation: svelte-1adez18-cdpPulse 2.2s ease-in-out infinite;
}
.cab-card-title.svelte-1adez18 {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.cab-features.svelte-1adez18 {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.cab-feat.svelte-1adez18 {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 14px;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}
.cab-feat.svelte-1adez18:nth-child(1) {
  background: linear-gradient(135deg, #dcfce7, #f0fdf4);
}
.cab-feat.svelte-1adez18:nth-child(2) {
  background: linear-gradient(135deg, #ffe4ef, #fff0f7);
}
.cab-feat.svelte-1adez18:nth-child(3) {
  background: linear-gradient(135deg, #fff3d6, #fffbf0);
}
.cab-feat.svelte-1adez18:nth-child(4) {
  background: linear-gradient(135deg, #ede5ff, #f5f0ff);
}
.cab-feat.svelte-1adez18:hover {
  transform: translate(6px);
  box-shadow: 0 6px 20px #2d12480f;
  border-color: #2d12480f;
}
.cab-feat-ic.svelte-1adez18 {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px #0000000f;
}
.cab-feat-green.svelte-1adez18 {
  background: linear-gradient(135deg, #10b98126, #10b98114);
  color: #059669;
}
.cab-feat-rose.svelte-1adez18 {
  background: linear-gradient(135deg, #e91e8c1f, #e91e8c0f);
  color: var(--rose);
}
.cab-feat-gold.svelte-1adez18 {
  background: linear-gradient(135deg, #f59e0b26, #f59e0b14);
  color: #d97706;
}
.cab-feat-violet.svelte-1adez18 {
  background: linear-gradient(135deg, #7c3aed1f, #7c3aed0f);
  color: var(--violet);
}
.cab-feat.svelte-1adez18 strong:where(.svelte-1adez18) {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--heading);
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.cab-feat.svelte-1adez18
  div:where(.svelte-1adez18)
  > span:where(.svelte-1adez18) {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}
.cab-card-stat.svelte-1adez18 {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.cab-stat-top.svelte-1adez18 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.cab-stat-ic.svelte-1adez18 {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px #0000000f;
}
.cab-stat-ic-rose.svelte-1adez18 {
  background: linear-gradient(135deg, #e91e8c26, #e91e8c0f);
  color: var(--rose);
}
.cab-stat-ic-gold.svelte-1adez18 {
  background: linear-gradient(135deg, #f59e0b26, #f59e0b0f);
  color: #d97706;
}
.cab-stat-ic-green.svelte-1adez18 {
  background: linear-gradient(135deg, #10b98126, #10b9810f);
  color: #059669;
}
.cab-stat-ic-violet.svelte-1adez18 {
  background: linear-gradient(135deg, #7c3aed1f, #7c3aed0f);
  color: var(--violet);
}
.cab-stat-ic-teal.svelte-1adez18 {
  background: linear-gradient(135deg, #0ea5e91f, #0ea5e90f);
  color: var(--teal);
}
.cab-stat-trend.svelte-1adez18 {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 4px 10px;
  border-radius: 50px;
  box-shadow: 0 2px 8px #10b9811a;
}
.cab-stat-trend-up.svelte-1adez18 {
  background: linear-gradient(135deg, #10b9811f, #10b9810f);
  color: #059669;
}
.cab-stat-num.svelte-1adez18 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
  color: var(--heading);
}
.cab-stat-label.svelte-1adez18 {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.cab-mini-chart.svelte-1adez18 {
  width: 100%;
  height: 36px;
  margin-top: auto;
  border-radius: 10px;
  filter: drop-shadow(0 2px 4px rgba(233, 30, 140, 0.08));
}
.cab-star-row.svelte-1adez18 {
  display: flex;
  gap: 4px;
  margin-top: auto;
}
.cab-star-row.svelte-1adez18 svg:where(.svelte-1adez18) {
  filter: drop-shadow(0 1px 3px rgba(245, 158, 11, 0.3));
}
.cab-progress.svelte-1adez18 {
  width: 100%;
  height: 8px;
  border-radius: 8px;
  background: #2d12480f;
  overflow: hidden;
  margin-bottom: 6px;
  box-shadow: inset 0 1px 2px #0000000a;
}
.cab-progress-bar.svelte-1adez18 {
  height: 100%;
  border-radius: 8px;
  background: linear-gradient(90deg, #10b981, #34d399);
  box-shadow: 0 0 12px #10b9814d;
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.cab-progress-label.svelte-1adez18 {
  font-size: 10.5px;
  font-weight: 600;
  color: #059669;
  letter-spacing: 0.02em;
}
.cab-loc-tags.svelte-1adez18 {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: auto;
}
.cab-loc-tag.svelte-1adez18 {
  padding: 4px 10px;
  border-radius: 50px;
  background: linear-gradient(135deg, #7c3aed14, #7c3aed0a);
  border: 1px solid rgba(124, 58, 237, 0.15);
  font-size: 10.5px;
  font-weight: 500;
  color: var(--violet);
  transition: all 0.2s;
}
.cab-loc-tag.svelte-1adez18:hover {
  background: #7c3aed1f;
  transform: translateY(-1px);
}
.cab-loc-more.svelte-1adez18 {
  background: linear-gradient(135deg, #7c3aed24, #7c3aed14);
  font-weight: 700;
}
.rcx-section.svelte-1adez18 {
  padding: 80px 0 88px;
  background: radial-gradient(
      800px 500px at 30% 50%,
      rgba(233, 30, 140, 0.05) 0%,
      transparent 55%
    ),
    radial-gradient(
      800px 500px at 70% 50%,
      rgba(124, 58, 237, 0.04) 0%,
      transparent 55%
    ),
    linear-gradient(180deg, #fdf6fb, #fff5fa, #fdf6fb);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.rcx-grid.svelte-1adez18 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.rcx-card.svelte-1adez18 {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 22px 22px 16px;
  min-height: 210px;
  background: linear-gradient(155deg, #fff 0%, var(--rc-soft) 100%);
  border: 1.5px solid var(--rc-ring);
  border-radius: 20px;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease, border-color 0.35s ease;
  box-shadow: 0 4px 14px #2d12480a;
}
.rcx-card.svelte-1adez18:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 24px 50px #2d12482e, 0 0 0 1px var(--rc-ring);
}
.rcx-fill.svelte-1adez18 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--rc-grad);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}
.rcx-card.svelte-1adez18:hover .rcx-fill:where(.svelte-1adez18) {
  opacity: 1;
}
.rcx-blob.svelte-1adez18 {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--rc-grad);
  opacity: 0.15;
  filter: blur(10px);
  transition: all 0.5s ease;
  pointer-events: none;
  z-index: 0;
}
.rcx-card.svelte-1adez18:hover .rcx-blob:where(.svelte-1adez18) {
  transform: scale(1.5);
  opacity: 0.2;
}
.rcx-shine.svelte-1adez18 {
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    115deg,
    transparent 40%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 60%
  );
  transform: skew(-20deg);
  transition: left 0.8s ease;
  pointer-events: none;
  z-index: 1;
}
.rcx-card.svelte-1adez18:hover .rcx-shine:where(.svelte-1adez18) {
  left: 140%;
}
.rcx-head.svelte-1adez18 {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}
.rcx-icon.svelte-1adez18 {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--rc-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rc-c);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}
.rcx-icon-bg.svelte-1adez18 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--rc-grad);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.rcx-icon.svelte-1adez18 svg:where(.svelte-1adez18) {
  position: relative;
  z-index: 1;
}
.rcx-card.svelte-1adez18:hover .rcx-icon:where(.svelte-1adez18) {
  transform: rotate(-6deg) scale(1.08);
  color: #fff;
  box-shadow: 0 10px 24px var(--rc-ring);
}
.rcx-card.svelte-1adez18:hover .rcx-icon-bg:where(.svelte-1adez18) {
  opacity: 1;
}
.rcx-pill.svelte-1adez18 {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: #ffffffd9;
  border: 1px solid rgba(45, 18, 72, 0.08);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 500;
  color: var(--rc-c);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: all 0.4s ease;
}
.rcx-dot.svelte-1adez18 {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 2px #10b9812e;
}
.rcx-card.svelte-1adez18:hover .rcx-pill:where(.svelte-1adez18) {
  background: #fffffff2;
  border-color: #ffffffe6;
}
.rcx-body.svelte-1adez18 {
  position: relative;
  z-index: 2;
  flex: 1;
}
.rcx-name.svelte-1adez18 {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading);
  letter-spacing: -0.02em;
  margin-bottom: 5px;
  line-height: 1.2;
  transition: color 0.4s ease;
}
.rcx-card.svelte-1adez18:hover .rcx-name:where(.svelte-1adez18) {
  color: #fff;
}
.rcx-desc.svelte-1adez18 {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.4s ease;
}
.rcx-card.svelte-1adez18:hover .rcx-desc:where(.svelte-1adez18) {
  color: #ffffffd9;
}
.rcx-foot.svelte-1adez18 {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(45, 18, 72, 0.06);
  transition: border-color 0.4s ease;
}
.rcx-card.svelte-1adez18:hover .rcx-foot:where(.svelte-1adez18) {
  border-top-color: #fff3;
}
.rcx-cta.svelte-1adez18 {
  font-size: 13px;
  font-weight: 500;
  color: var(--rc-c);
  transition: color 0.4s ease;
}
.rcx-card.svelte-1adez18:hover .rcx-cta:where(.svelte-1adez18) {
  color: #fff;
}
.rcx-arrow.svelte-1adez18 {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--rc-soft);
  color: var(--rc-c);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
}
.rcx-card.svelte-1adez18:hover .rcx-arrow:where(.svelte-1adez18) {
  background: #fff3;
  color: #fff;
  transform: translate(4px);
}
.hiw-section.svelte-1adez18 {
  padding: 80px 0;
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.hiw-grid.svelte-1adez18 {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.hiw-connector.svelte-1adez18 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
  flex-shrink: 0;
}
.hiw-card.svelte-1adez18 {
  flex: 1;
  max-width: 320px;
  padding: 32px 28px;
  border-radius: 22px;
  text-align: center;
  position: relative;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  border: 1.5px solid transparent;
}
.hiw-card.svelte-1adez18:hover {
  transform: translateY(-6px);
}
.hiw-rose.svelte-1adez18 {
  background: linear-gradient(155deg, #fff0f7, #fce8f5);
  border-color: #e91e8c1f;
}
.hiw-rose.svelte-1adez18:hover {
  box-shadow: 0 16px 40px #e91e8c1a;
}
.hiw-gold.svelte-1adez18 {
  background: linear-gradient(155deg, #fffbf0, #fff3d6);
  border-color: #f59e0b26;
}
.hiw-gold.svelte-1adez18:hover {
  box-shadow: 0 16px 40px #f59e0b1a;
}
.hiw-violet.svelte-1adez18 {
  background: linear-gradient(155deg, #f5f0ff, #ede5ff);
  border-color: #7c3aed1f;
}
.hiw-violet.svelte-1adez18:hover {
  box-shadow: 0 16px 40px #7c3aed1a;
}
.hiw-step.svelte-1adez18 {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translate(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px #e91e8c4d;
}
.hiw-gold.svelte-1adez18 .hiw-step:where(.svelte-1adez18) {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 4px 12px #f59e0b4d;
}
.hiw-violet.svelte-1adez18 .hiw-step:where(.svelte-1adez18) {
  background: linear-gradient(135deg, var(--violet), var(--violet-dark));
  box-shadow: 0 4px 12px #7c3aed4d;
}
.hiw-icon.svelte-1adez18 {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  margin: 12px auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e91e8c14;
  color: var(--rose);
}
.hiw-gold.svelte-1adez18 .hiw-icon:where(.svelte-1adez18) {
  background: #f59e0b1a;
  color: #d97706;
}
.hiw-violet.svelte-1adez18 .hiw-icon:where(.svelte-1adez18) {
  background: #7c3aed14;
  color: var(--violet);
}
.hiw-card.svelte-1adez18 h3:where(.svelte-1adez18) {
  font-size: 17px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.hiw-card.svelte-1adez18 p:where(.svelte-1adez18) {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .profiles-grid.svelte-1adez18 {
    grid-template-columns: repeat(3, 1fr);
  }
  .rcx-grid.svelte-1adez18 {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  .rcx-card.svelte-1adez18 {
    min-height: 190px;
  }
}
@media (max-width: 768px) {
  .cdp-hero.svelte-1adez18 {
    padding: 48px 0 56px;
  }
  .cdp-hero-inner.svelte-1adez18 {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
  }
  .cdp-hero-visual.svelte-1adez18 {
    max-width: 300px;
  }
  .cdp-h1.svelte-1adez18 {
    font-size: 1.7rem;
  }
  .cdp-lead.svelte-1adez18 {
    font-size: 13px;
  }
  .cdp-meta-item.svelte-1adez18 {
    padding: 5px 14px;
    min-width: 70px;
  }
  .cdp-meta-val.svelte-1adez18 {
    font-size: 1.15rem;
  }
  .cdp-node.svelte-1adez18 {
    padding: 7px 10px;
    min-width: 60px;
  }
  .cdp-node-val.svelte-1adez18 {
    font-size: 14px;
  }
  .cdp-node-lbl.svelte-1adez18 {
    font-size: 8px;
  }
  .cdp-node-1.svelte-1adez18,
  .cdp-node-3.svelte-1adez18 {
    left: -2%;
  }
  .cdp-node-2.svelte-1adez18 {
    right: -4%;
  }
  .cdp-node-4.svelte-1adez18 {
    right: -2%;
  }
  .cdp-hub-inner.svelte-1adez18 {
    padding: 14px 18px;
  }
  .cdp-hub-icon.svelte-1adez18 {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }
  .cdp-hub-icon.svelte-1adez18 svg:where(.svelte-1adez18) {
    width: 20px;
    height: 20px;
  }
  .cdp-hub-label.svelte-1adez18 {
    font-size: 11px;
  }
  .profiles-grid.svelte-1adez18 {
    grid-template-columns: repeat(3, 1fr);
  }
  .rcx-grid.svelte-1adez18 {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .rcx-card.svelte-1adez18 {
    padding: 18px 18px 14px;
    min-height: 180px;
  }
  .rcx-icon.svelte-1adez18 {
    width: 44px;
    height: 44px;
  }
  .rcx-name.svelte-1adez18 {
    font-size: 16px;
  }
  .toolbar.svelte-1adez18 {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .toolbar-right.svelte-1adez18 {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .tb-select.svelte-1adez18 {
    min-width: 140px;
    font-size: 12px;
    padding: 9px 32px 9px 38px;
  }
  .cab-grid.svelte-1adez18 {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .cab-card-main.svelte-1adez18 {
    grid-row: auto;
    grid-column: 1 / -1;
  }
  .cab-features.svelte-1adez18 {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }
  .cab-feat.svelte-1adez18 {
    flex: 1;
    min-width: 240px;
  }
  .cab-card.svelte-1adez18 {
    padding: 22px;
  }
  .hiw-grid.svelte-1adez18 {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .hiw-connector.svelte-1adez18 {
    transform: rotate(90deg);
    padding-top: 0;
  }
  .hiw-card.svelte-1adez18 {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .cdp-hero.svelte-1adez18 {
    padding: 32px 0 36px;
  }
  .cdp-hero-inner.svelte-1adez18 {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .cdp-h1.svelte-1adez18 {
    font-size: 1.5rem;
  }
  .cdp-lead.svelte-1adez18 {
    font-size: 13px;
    margin-bottom: 20px;
  }
  .cdp-meta.svelte-1adez18 {
    padding: 8px;
    border-radius: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 0;
    width: 100%;
  }
  .cdp-meta-item.svelte-1adez18 {
    padding: 6px 4px;
    min-width: auto;
  }
  .cdp-meta-item.svelte-1adez18 + .cdp-meta-item:where(.svelte-1adez18) {
    border-left: 1px solid rgba(45, 18, 72, 0.08);
  }
  .cdp-meta-val.svelte-1adez18 {
    font-size: 1.05rem;
  }
  .cdp-actions.svelte-1adez18 {
    flex-direction: column;
  }
  .cdp-actions.svelte-1adez18 .btn-orange:where(.svelte-1adez18),
  .cdp-actions.svelte-1adez18 .cdp-btn-wa:where(.svelte-1adez18) {
    width: 100%;
    justify-content: center;
  }
  .cdp-hero-visual.svelte-1adez18 {
    max-width: 260px;
    margin: 0 auto;
  }
  .cdp-node.svelte-1adez18 {
    padding: 6px 10px;
    min-width: 58px;
    border-radius: 12px;
  }
  .cdp-node-val.svelte-1adez18 {
    font-size: 13px;
  }
  .cdp-node-lbl.svelte-1adez18 {
    font-size: 7px;
    margin-bottom: 4px;
  }
  .cdp-node-bar.svelte-1adez18 {
    height: 3px;
  }
  .cdp-hub-inner.svelte-1adez18 {
    padding: 14px 16px;
    border-radius: 16px;
  }
  .cdp-hub-icon.svelte-1adez18 {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }
  .cdp-hub-icon.svelte-1adez18 svg:where(.svelte-1adez18) {
    width: 20px;
    height: 20px;
  }
  .cdp-hub-label.svelte-1adez18 {
    font-size: 11px;
  }
  .cdp-node-1.svelte-1adez18 {
    left: 0;
    top: 0;
  }
  .cdp-node-2.svelte-1adez18 {
    right: 0;
  }
  .cdp-node-3.svelte-1adez18 {
    left: 0;
  }
  .cdp-node-4.svelte-1adez18 {
    right: 0;
    bottom: 0;
  }
  .profiles-grid.svelte-1adez18 {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .rcx-grid.svelte-1adez18 {
    grid-template-columns: 1fr 1fr;
  }
  .cat-main.svelte-1adez18 {
    padding: 32px 0 48px;
  }
  .cab-section.svelte-1adez18 {
    padding: 52px 0;
  }
  .cab-grid.svelte-1adez18 {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .cab-card.svelte-1adez18 {
    padding: 18px;
    border-radius: 18px;
  }
  .cab-card-main.svelte-1adez18 {
    grid-column: 1 / -1;
  }
  .cab-feat.svelte-1adez18 {
    min-width: 100%;
    padding: 10px 12px;
  }
  .cab-stat-num.svelte-1adez18 {
    font-size: 26px;
  }
  .cab-stat-ic.svelte-1adez18 {
    width: 34px;
    height: 34px;
  }
  .cab-card-title.svelte-1adez18 {
    font-size: 17px;
  }
  .cab-card-icon.svelte-1adez18 {
    width: 40px;
    height: 40px;
  }
  .asc.svelte-1adez18 {
    padding: 14px 12px;
  }
  .asc-val.svelte-1adez18 {
    font-size: 17px;
  }
  .rcx-section.svelte-1adez18 {
    padding: 48px 0 56px;
  }
  .rcx-grid.svelte-1adez18 {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .rcx-card.svelte-1adez18 {
    min-height: auto;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
  }
  .rcx-head.svelte-1adez18 {
    margin-bottom: 0;
  }
  .rcx-pill.svelte-1adez18 {
    display: none;
  }
  .rcx-body.svelte-1adez18 {
    flex: 1;
  }
  .rcx-desc.svelte-1adez18,
  .rcx-foot.svelte-1adez18,
  .rcx-blob.svelte-1adez18 {
    display: none;
  }
  .hiw-section.svelte-1adez18 {
    padding: 52px 0;
  }
  .hiw-card.svelte-1adez18 {
    padding: 24px 20px;
  }
  .hiw-card.svelte-1adez18 h3:where(.svelte-1adez18) {
    font-size: 15px;
  }
  .hiw-card.svelte-1adez18 p:where(.svelte-1adez18) {
    font-size: 12px;
  }
  .hiw-icon.svelte-1adez18 {
    width: 48px;
    height: 48px;
  }
}
.abs-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 104px 0 120px;
  background: radial-gradient(
      1100px 540px at 10% 10%,
      rgba(233, 30, 140, 0.05),
      transparent 70%
    ),
    radial-gradient(
      900px 480px at 100% 90%,
      rgba(217, 119, 6, 0.05),
      transparent 70%
    ),
    linear-gradient(180deg, #fff8f3, #fffdfa, #fff4ea);
  border-bottom: 1px solid rgba(233, 30, 140, 0.12);
}
.abs-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.4;
}
.abs-orb-1.svelte-1adez18 {
  width: 360px;
  height: 360px;
  top: -100px;
  right: -80px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.32),
    transparent 70%
  );
}
.abs-orb-2.svelte-1adez18 {
  width: 340px;
  height: 340px;
  bottom: -100px;
  left: -80px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.3), transparent 70%);
}
.abs-head.svelte-1adez18 {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.abs-kicker.svelte-1adez18 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Courier New, monospace;
  font-size: 10.5px;
  color: #b45309;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  font-weight: 700;
}
.abs-kicker-line.svelte-1adez18 {
  width: 34px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(217, 119, 6, 0.5),
    transparent
  );
}
.abs-kicker-glyph.svelte-1adez18 {
  color: #e91e8c;
  font-size: 10px;
}
.abs-title.svelte-1adez18 {
  margin: 14px auto;
  font-size: clamp(1.8rem, 3.2vw, 2.55rem);
  line-height: 1.18;
  font-family: Georgia, Cormorant Garamond, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #c2185b 45%, #b45309);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.01em;
}
.abs-lead.svelte-1adez18 {
  margin: 0 auto;
  max-width: 740px;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
}
.abs-spread.svelte-1adez18 {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  padding: 40px 36px 32px;
  background: linear-gradient(160deg, #fff, #fffbf6);
  border-radius: 20px;
  border: 1px solid rgba(217, 119, 6, 0.18);
  box-shadow: 0 18px 44px #e91e8c0f, 0 6px 16px #d977060a;
}
.abs-quote.svelte-1adez18 {
  position: absolute;
  top: -12px;
  left: 18px;
  font-family: Georgia, serif;
  font-size: 160px;
  font-weight: 800;
  line-height: 1;
  color: #e91e8c14;
  pointer-events: none;
}
.abs-reasons.svelte-1adez18 {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.abs-reason.svelte-1adez18 {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 20px;
  padding: 22px 10px;
  position: relative;
}
.abs-pearl.svelte-1adez18 {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 30%, #fff, #fde7f0 55%, #fbb6d0);
  box-shadow: 0 3px 10px #e91e8c2e, inset 0 -3px 6px #c2185b33;
  font-family: Georgia, serif;
  flex-shrink: 0;
  justify-self: center;
  align-self: flex-start;
  margin-top: 2px;
}
.abs-pearl-inner.svelte-1adez18 {
  position: absolute;
  top: 5px;
  right: 5px;
  bottom: 5px;
  left: 5px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.95) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.abs-pearl-num.svelte-1adez18 {
  position: relative;
  font-size: 14px;
  font-weight: 800;
  color: #c2185b;
  letter-spacing: 0.5px;
}
.abs-reason-body.svelte-1adez18 {
  min-width: 0;
}
.abs-reason-label.svelte-1adez18 {
  margin: 0 0 8px;
  font-family: Georgia, Cormorant Garamond, serif;
  font-weight: 800;
  font-size: 19px;
  color: #1e293b;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.abs-reason-text.svelte-1adez18 {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: #475569;
}
.abs-ribbon.svelte-1adez18 {
  grid-column: 1 / span 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 8px 0 0;
}
.abs-ribbon-line.svelte-1adez18 {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(233, 30, 140, 0.25),
    transparent
  );
}
.abs-ribbon-dot.svelte-1adez18 {
  color: #b45309;
  font-size: 10px;
  opacity: 0.6;
}
.abs-closing.svelte-1adez18 {
  position: relative;
  z-index: 1;
  margin: 36px auto 0;
  max-width: 780px;
  text-align: center;
  padding: 18px 24px;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.7;
  color: #b45309;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}
.abs-closing-mark.svelte-1adez18 {
  font-size: 18px;
  color: #e91e8c;
  opacity: 0.7;
}
@media (max-width: 720px) {
  .abs-section.svelte-1adez18 {
    padding: 72px 0 90px;
  }
  .abs-spread.svelte-1adez18 {
    padding: 30px 20px 24px;
  }
  .abs-quote.svelte-1adez18 {
    font-size: 120px;
    left: 8px;
    top: -4px;
  }
  .abs-reason.svelte-1adez18 {
    grid-template-columns: 48px 1fr;
    gap: 14px;
    padding: 18px 4px;
  }
  .abs-pearl.svelte-1adez18 {
    width: 36px;
    height: 36px;
  }
}
.abt-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 108px 0 120px;
  background: radial-gradient(
      1000px 520px at 100% 10%,
      rgba(217, 119, 6, 0.05),
      transparent 70%
    ),
    radial-gradient(
      900px 480px at 0% 90%,
      rgba(13, 148, 136, 0.04),
      transparent 70%
    ),
    linear-gradient(180deg, #fffdf7, #fff 55%, #fef9f3);
  border-bottom: 1px solid rgba(233, 30, 140, 0.12);
}
.abt-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.42;
}
.abt-orb-1.svelte-1adez18 {
  width: 380px;
  height: 380px;
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.32), transparent 70%);
}
.abt-orb-2.svelte-1adez18 {
  width: 360px;
  height: 360px;
  bottom: -120px;
  left: -80px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.28),
    transparent 70%
  );
}
.abt-head.svelte-1adez18 {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.abt-kicker.svelte-1adez18 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: #fff;
  color: #b45309;
  border: 1px solid rgba(217, 119, 6, 0.28);
  font-family: Courier New, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  box-shadow: 0 6px 18px #d9770614;
}
.abt-kicker.svelte-1adez18 svg:where(.svelte-1adez18) {
  color: #d97706;
}
.abt-title.svelte-1adez18 {
  margin: 14px auto;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  line-height: 1.18;
  font-family: Georgia, Cormorant Garamond, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #b45309, #c2185b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.01em;
}
.abt-lead.svelte-1adez18 {
  margin: 0 auto;
  max-width: 720px;
  font-size: 15px;
  line-height: 1.65;
  color: #64748b;
}
.abt-grid.svelte-1adez18 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.abt-case.svelte-1adez18 {
  position: relative;
  padding: 38px 30px 28px;
  background: radial-gradient(
      260px 140px at 50% 0%,
      var(--tBg) 0%,
      transparent 70%
    ),
    linear-gradient(165deg, #fff, #fffcf7);
  border-radius: 18px;
  border: 1px solid var(--tBd);
  box-shadow: 0 14px 36px #0f172a0d;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.abt-case.svelte-1adez18:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 56px #0f172a14;
}
.abt-case--rose.svelte-1adez18 {
  --t1: #e91e8c;
  --t2: #c2185b;
  --tBg: rgba(233, 30, 140, 0.08);
  --tBd: rgba(233, 30, 140, 0.22);
}
.abt-case--gold.svelte-1adez18 {
  --t1: #d97706;
  --t2: #b45309;
  --tBg: rgba(217, 119, 6, 0.08);
  --tBd: rgba(217, 119, 6, 0.25);
}
.abt-case--coral.svelte-1adez18 {
  --t1: #f43f5e;
  --t2: #e11d48;
  --tBg: rgba(244, 63, 94, 0.08);
  --tBd: rgba(244, 63, 94, 0.22);
}
.abt-case--emerald.svelte-1adez18 {
  --t1: #059669;
  --t2: #047857;
  --tBg: rgba(5, 150, 105, 0.08);
  --tBd: rgba(5, 150, 105, 0.22);
}
.abt-case--teal.svelte-1adez18 {
  --t1: #0d9488;
  --t2: #0f766e;
  --tBg: rgba(13, 148, 136, 0.08);
  --tBd: rgba(13, 148, 136, 0.22);
}
.abt-case.svelte-1adez18:before {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  bottom: 12px;
  left: 12px;
  border: 1px solid var(--t1);
  opacity: 0.22;
  border-radius: 10px;
  pointer-events: none;
}
.abt-pearl-corner.svelte-1adez18 {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    #fff 0%,
    #fde7f0 55%,
    var(--t1) 100%
  );
  box-shadow: 0 1px 3px #c2185b4d, inset 0 -1px 2px #c2185b4d;
  z-index: 2;
}
.abt-pearl-tl.svelte-1adez18 {
  top: 7px;
  left: 7px;
}
.abt-pearl-tr.svelte-1adez18 {
  top: 7px;
  right: 7px;
}
.abt-pearl-bl.svelte-1adez18 {
  bottom: 7px;
  left: 7px;
}
.abt-pearl-br.svelte-1adez18 {
  bottom: 7px;
  right: 7px;
}
.abt-case-ribbon.svelte-1adez18 {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 14px;
}
.abt-case-ribbon-line.svelte-1adez18 {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--t1), transparent);
  opacity: 0.55;
}
.abt-case-roman.svelte-1adez18 {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--t1), var(--t2));
  color: #fff;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 17px;
  box-shadow: 0 5px 14px #0f172a1f;
  position: relative;
}
.abt-case-roman.svelte-1adez18:after {
  content: "";
  position: absolute;
  top: -4px;
  right: -4px;
  bottom: -4px;
  left: -4px;
  border-radius: 50%;
  border: 1px dashed var(--t1);
  opacity: 0.45;
}
.abt-case-flourish.svelte-1adez18 {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--t1);
  opacity: 0.7;
}
.abt-case-flourish.svelte-1adez18 svg:where(.svelte-1adez18) {
  width: 60px;
  height: 26px;
}
.abt-case-name.svelte-1adez18 {
  position: relative;
  z-index: 1;
  margin: 0 0 6px;
  text-align: center;
  font-family: Georgia, Cormorant Garamond, serif;
  font-weight: 800;
  font-size: 21px;
  color: #1e293b;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.abt-case-tagline.svelte-1adez18 {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
  margin-bottom: 14px;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  color: var(--t2);
  font-weight: 600;
}
.abt-case-body.svelte-1adez18 {
  position: relative;
  z-index: 1;
  margin: 0 0 20px;
  font-size: 13.5px;
  line-height: 1.65;
  color: #475569;
  text-align: center;
}
.abt-case-foot.svelte-1adez18 {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding-top: 14px;
  border-top: 1px dashed var(--tBd);
}
.abt-case-chip.svelte-1adez18 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--tBg);
  color: var(--t2);
  font-family: Courier New, monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.1px;
}
.abt-case-chip-dot.svelte-1adez18 {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  animation: svelte-1adez18-abtChipPulse 2s infinite;
}
@keyframes svelte-1adez18-abtChipPulse {
  0%,
  to {
    box-shadow: 0 0 #10b98199;
  }
  50% {
    box-shadow: 0 0 0 5px #10b98100;
  }
}
.abt-closing.svelte-1adez18 {
  position: relative;
  z-index: 1;
  margin: 36px auto 0;
  max-width: 760px;
  text-align: center;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 14.5px;
  line-height: 1.7;
  color: #64748b;
}
@media (max-width: 800px) {
  .abt-grid.svelte-1adez18 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 520px) {
  .abt-section.svelte-1adez18 {
    padding: 72px 0 90px;
  }
  .abt-case.svelte-1adez18 {
    padding: 32px 22px 22px;
  }
  .abt-case.svelte-1adez18:before {
    top: 9px;
    right: 9px;
    bottom: 9px;
    left: 9px;
  }
}
.abc-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 108px 0 120px;
  background: radial-gradient(
      1100px 540px at 50% -10%,
      rgba(233, 30, 140, 0.05),
      transparent 65%
    ),
    radial-gradient(
      900px 480px at 50% 110%,
      rgba(217, 119, 6, 0.05),
      transparent 65%
    ),
    linear-gradient(180deg, #fffdf8, #fff 55%, #fff6ed);
  border-bottom: 1px solid rgba(233, 30, 140, 0.12);
}
.abc-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.4;
}
.abc-orb-1.svelte-1adez18 {
  width: 380px;
  height: 380px;
  top: -130px;
  left: -90px;
  background: radial-gradient(circle, rgba(233, 30, 140, 0.3), transparent 70%);
}
.abc-orb-2.svelte-1adez18 {
  width: 380px;
  height: 380px;
  bottom: -130px;
  right: -90px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.3), transparent 70%);
}
.abc-head.svelte-1adez18 {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.abc-kicker.svelte-1adez18 {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: #e91e8c0f;
  color: #c2185b;
  border: 1px dashed rgba(233, 30, 140, 0.3);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  letter-spacing: 1.5px;
}
.abc-title.svelte-1adez18 {
  margin: 14px auto;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  line-height: 1.15;
  font-family: Georgia, Cormorant Garamond, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #c2185b, #b45309);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.01em;
}
.abc-lead.svelte-1adez18 {
  margin: 0 auto;
  max-width: 760px;
  font-size: 15px;
  line-height: 1.65;
  color: #64748b;
}
.abc-spread.svelte-1adez18 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  align-items: stretch;
}
.abc-pane.svelte-1adez18 {
  position: relative;
  padding: 44px 32px 32px;
  background: linear-gradient(165deg, #fff, #fffcf7);
  border-radius: 18px;
  border: 1px solid var(--tBd);
  box-shadow: 0 16px 40px #0f172a0f;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.abc-pane.svelte-1adez18:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px #0f172a17;
}
.abc-pane--rose.svelte-1adez18 {
  --t1: #e91e8c;
  --t2: #c2185b;
  --tBg: rgba(233, 30, 140, 0.06);
  --tBd: rgba(233, 30, 140, 0.22);
}
.abc-pane--gold.svelte-1adez18 {
  --t1: #d97706;
  --t2: #b45309;
  --tBg: rgba(217, 119, 6, 0.06);
  --tBd: rgba(217, 119, 6, 0.25);
}
.abc-pane.svelte-1adez18:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--t1), var(--t2));
  border-radius: 18px 18px 0 0;
}
.abc-wreath.svelte-1adez18 {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
  color: var(--t1);
  opacity: 0.85;
}
.abc-wreath.svelte-1adez18 svg:where(.svelte-1adez18) {
  width: 120px;
  height: 60px;
}
.abc-badge.svelte-1adez18 {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  background: var(--tBg);
  color: var(--t2);
  font-family: Courier New, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  border: 1px dashed var(--tBd);
  margin: 0 auto 12px;
  display: block;
  width: fit-content;
}
.abc-pane-name.svelte-1adez18 {
  margin: 0 0 14px;
  text-align: center;
  font-family: Georgia, Cormorant Garamond, serif;
  font-weight: 800;
  font-size: 24px;
  color: #1e293b;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, var(--t1), var(--t2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.abc-pane-body.svelte-1adez18 {
  margin: 0 0 20px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #475569;
  text-align: center;
}
.abc-tags.svelte-1adez18 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding-top: 16px;
  border-top: 1px dashed var(--tBd);
}
.abc-tag.svelte-1adez18 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 8px;
  background: var(--tBg);
  color: var(--t2);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.2px;
}
.abc-tag-dot.svelte-1adez18 {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--t1);
  flex-shrink: 0;
}
.abc-divider.svelte-1adez18 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.abc-divider-line.svelte-1adez18 {
  width: 1px;
  flex: 1;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(194, 24, 91, 0.3),
    rgba(180, 83, 9, 0.3),
    transparent
  );
}
.abc-divider-line-top.svelte-1adez18,
.abc-divider-line-bot.svelte-1adez18 {
  flex: 0.4;
}
.abc-divider-medallion.svelte-1adez18 {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #fff, #fef3e8);
  border: 1px solid rgba(194, 24, 91, 0.25);
  box-shadow: 0 6px 16px #c2185b14;
  margin: 12px 0;
}
.abc-divider-ring.svelte-1adez18 {
  position: absolute;
  top: -4px;
  right: -4px;
  bottom: -4px;
  left: -4px;
  border-radius: 50%;
  border: 1px dashed rgba(194, 24, 91, 0.35);
  animation: svelte-1adez18-abcRingSpin 18s linear infinite;
}
@keyframes svelte-1adez18-abcRingSpin {
  to {
    transform: rotate(360deg);
  }
}
.abc-divider-text.svelte-1adez18 {
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: 16px;
  color: #c2185b;
  letter-spacing: 0.5px;
}
.abc-footer.svelte-1adez18 {
  position: relative;
  z-index: 1;
  margin: 36px auto 0;
  max-width: 820px;
  text-align: center;
  padding: 16px 22px;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 14.5px;
  line-height: 1.7;
  color: #b45309;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.abc-footer-mark.svelte-1adez18 {
  color: #e91e8c;
  font-size: 16px;
}
@media (max-width: 820px) {
  .abc-spread.svelte-1adez18 {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .abc-divider.svelte-1adez18 {
    flex-direction: row;
    min-height: 60px;
  }
  .abc-divider-line.svelte-1adez18 {
    width: auto;
    height: 1px;
    flex: 1;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(194, 24, 91, 0.3),
      rgba(180, 83, 9, 0.3),
      transparent
    );
  }
  .abc-divider-medallion.svelte-1adez18 {
    margin: 0 12px;
  }
}
@media (max-width: 520px) {
  .abc-section.svelte-1adez18 {
    padding: 72px 0 90px;
  }
  .abc-pane.svelte-1adez18 {
    padding: 34px 22px 24px;
  }
  .abc-tags.svelte-1adez18 {
    grid-template-columns: 1fr;
  }
  .abc-wreath.svelte-1adez18 svg:where(.svelte-1adez18) {
    width: 100px;
    height: 50px;
  }
}
.abw-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 114px 0 128px;
  background: radial-gradient(
      1200px 580px at 50% -10%,
      rgba(233, 30, 140, 0.07),
      transparent 65%
    ),
    radial-gradient(
      1000px 500px at 50% 110%,
      rgba(217, 119, 6, 0.07),
      transparent 65%
    ),
    linear-gradient(180deg, #fff7ee, #fffdfa 55%, #fef4ea);
  border-bottom: 1px solid rgba(233, 30, 140, 0.12);
}
.abw-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(110px);
  opacity: 0.5;
}
.abw-orb-1.svelte-1adez18 {
  width: 440px;
  height: 440px;
  top: -170px;
  left: 50%;
  transform: translate(-50%);
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.32),
    transparent 70%
  );
}
.abw-orb-2.svelte-1adez18 {
  width: 460px;
  height: 460px;
  bottom: -180px;
  left: 50%;
  transform: translate(-50%);
  background: radial-gradient(circle, rgba(217, 119, 6, 0.3), transparent 70%);
}
.abw-box.svelte-1adez18 {
  position: relative;
  z-index: 1;
  max-width: 1060px;
  margin: 0 auto;
  padding: 56px 46px 46px;
  background: radial-gradient(
      500px 260px at 50% 0%,
      rgba(233, 30, 140, 0.06),
      transparent 70%
    ),
    linear-gradient(180deg, #fff, #fffcf6);
  border-radius: 26px;
  border: 1px solid rgba(217, 119, 6, 0.22);
  box-shadow: 0 34px 74px #d9770614, 0 12px 28px #e91e8c0f;
}
.abw-box.svelte-1adez18:before {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  bottom: 12px;
  left: 12px;
  border: 1px solid rgba(194, 24, 91, 0.2);
  border-radius: 18px;
  pointer-events: none;
}
.abw-box.svelte-1adez18:after {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  bottom: 18px;
  left: 18px;
  border: 1px dashed rgba(194, 24, 91, 0.14);
  border-radius: 14px;
  pointer-events: none;
}
.abw-corner.svelte-1adez18 {
  position: absolute;
  width: 30px;
  height: 30px;
  color: #b45309;
  pointer-events: none;
  z-index: 2;
}
.abw-corner-tl.svelte-1adez18 {
  top: 14px;
  left: 14px;
}
.abw-corner-tr.svelte-1adez18 {
  top: 14px;
  right: 14px;
}
.abw-corner-bl.svelte-1adez18 {
  bottom: 14px;
  left: 14px;
}
.abw-corner-br.svelte-1adez18 {
  bottom: 14px;
  right: 14px;
}
.abw-head.svelte-1adez18 {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 36px;
}
.abw-kicker.svelte-1adez18 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(217, 119, 6, 0.28);
  color: #b45309;
  font-family: Courier New, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  box-shadow: 0 6px 18px #d9770614;
}
.abw-kicker-pulse.svelte-1adez18 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e91e8c;
  box-shadow: 0 0 #e91e8c8c;
  animation: svelte-1adez18-abwPulse 1.8s infinite;
}
@keyframes svelte-1adez18-abwPulse {
  0%,
  to {
    box-shadow: 0 0 #e91e8c8c;
  }
  50% {
    box-shadow: 0 0 0 10px #e91e8c00;
  }
}
.abw-title.svelte-1adez18 {
  margin: 16px auto 14px;
  max-width: 780px;
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  line-height: 1.12;
  font-family: Georgia, Cormorant Garamond, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #b45309 45%, #c2185b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.01em;
}
.abw-lead.svelte-1adez18 {
  max-width: 760px;
  margin: 0 auto 10px;
  font-size: 15.5px;
  line-height: 1.7;
  color: #475569;
}
.abw-introcap.svelte-1adez18 {
  display: inline-block;
  margin-top: 8px;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: #b45309;
  padding: 4px 14px;
  border-radius: 999px;
  background: #d977060f;
}
.abw-benefits.svelte-1adez18 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}
.abw-benefit.svelte-1adez18 {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff, #fffbf3);
  border: 1px solid rgba(217, 119, 6, 0.15);
  transition: transform 0.3s ease, border 0.3s ease, box-shadow 0.3s ease;
  animation: svelte-1adez18-abwBenefitIn 0.5s ease calc(var(--i, 0) * 0.06s)
    both;
}
@keyframes svelte-1adez18-abwBenefitIn {
  0% {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.abw-benefit.svelte-1adez18:hover {
  transform: translateY(-3px);
  border-color: #d9770659;
  box-shadow: 0 10px 22px #d977061a;
}
.abw-benefit.svelte-1adez18:last-child {
  grid-column: 1 / span 2;
  max-width: calc(50% - 7px);
  margin: 0 auto;
  width: 100%;
}
.abw-benefit-icon.svelte-1adez18 {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #e91e8c14, #d9770614);
  color: #c2185b;
  border: 1px solid rgba(233, 30, 140, 0.15);
  flex-shrink: 0;
}
.abw-benefit-title.svelte-1adez18 {
  margin: 0 0 3px;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 14.5px;
  color: #1e293b;
  letter-spacing: -0.01em;
}
.abw-benefit-desc.svelte-1adez18 {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.55;
  color: #64748b;
}
.abw-bridge.svelte-1adez18 {
  position: relative;
  z-index: 1;
  margin: 0 auto 30px;
  max-width: 820px;
  padding: 16px 22px;
  text-align: center;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 14.5px;
  line-height: 1.7;
  color: #475569;
  background: #e91e8c08;
  border-radius: 12px;
  border-left: 3px solid rgba(233, 30, 140, 0.4);
  border-right: 3px solid rgba(217, 119, 6, 0.4);
}
.abw-cta-bar.svelte-1adez18 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 26px 30px;
  background: linear-gradient(135deg, #fff, #fff6eb);
  border-radius: 18px;
  border: 1px solid rgba(217, 119, 6, 0.28);
  box-shadow: 0 14px 32px #d9770614;
  margin-bottom: 24px;
}
.abw-cta-title.svelte-1adez18 {
  margin: 0 0 6px;
  font-family: Georgia, Cormorant Garamond, serif;
  font-weight: 800;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.2;
  color: #1e293b;
  letter-spacing: -0.01em;
}
.abw-cta-lead.svelte-1adez18 {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
}
.abw-cta-action.svelte-1adez18 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.abw-btn.svelte-1adez18 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 12px 28px #25d3664d, 0 4px 10px #25d36633;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.abw-btn.svelte-1adez18:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px #25d36661;
}
.abw-btn-shine.svelte-1adez18 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 60%
  );
  transform: translate(-100%);
  transition: transform 0.9s ease;
}
.abw-btn.svelte-1adez18:hover .abw-btn-shine:where(.svelte-1adez18) {
  transform: translate(100%);
}
.abw-cta-note.svelte-1adez18 {
  font-size: 11px;
  color: #64748b;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 600;
}
.abw-signature.svelte-1adez18 {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: 520px;
  margin: 0 auto;
}
.abw-signature-line.svelte-1adez18 {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(194, 24, 91, 0.3),
    transparent
  );
}
.abw-signature-text.svelte-1adez18 {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: #b45309;
  letter-spacing: 1.2px;
}
@media (max-width: 880px) {
  .abw-benefits.svelte-1adez18 {
    grid-template-columns: 1fr;
  }
  .abw-benefit.svelte-1adez18:last-child {
    grid-column: auto;
    max-width: none;
  }
  .abw-cta-bar.svelte-1adez18 {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 18px;
    padding: 24px 22px;
  }
  .abw-cta-action.svelte-1adez18 {
    align-items: center;
  }
  .abw-box.svelte-1adez18 {
    padding: 44px 28px 38px;
  }
}
@media (max-width: 520px) {
  .abw-section.svelte-1adez18 {
    padding: 72px 0 90px;
  }
  .abw-box.svelte-1adez18 {
    padding: 36px 18px 32px;
    border-radius: 20px;
  }
  .abw-box.svelte-1adez18:before {
    top: 8px;
    right: 8px;
    bottom: 8px;
    left: 8px;
    border-radius: 12px;
  }
  .abw-box.svelte-1adez18:after {
    top: 12px;
    right: 12px;
    bottom: 12px;
    left: 12px;
    border-radius: 10px;
  }
  .abw-corner.svelte-1adez18 {
    width: 24px;
    height: 24px;
  }
  .abw-btn.svelte-1adez18 {
    padding: 12px 22px;
    font-size: 13.5px;
  }
}
.sig-section.svelte-1adez18,
.sir-section.svelte-1adez18,
.sid-section.svelte-1adez18,
.sic-section.svelte-1adez18 {
  border-bottom: 1px solid rgba(233, 30, 140, 0.12);
}
.sig-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 108px 0 120px;
  background: radial-gradient(
      1100px 540px at 10% 10%,
      rgba(217, 119, 6, 0.06),
      transparent 70%
    ),
    radial-gradient(
      900px 480px at 100% 90%,
      rgba(13, 148, 136, 0.05),
      transparent 70%
    ),
    linear-gradient(180deg, #fffdf3, #fffcf5 55%, #fff7e8);
}
.sig-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.45;
}
.sig-orb-1.svelte-1adez18 {
  width: 380px;
  height: 380px;
  top: -110px;
  right: -80px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.4), transparent 70%);
}
.sig-orb-2.svelte-1adez18 {
  width: 360px;
  height: 360px;
  bottom: -110px;
  left: -80px;
  background: radial-gradient(
    circle,
    rgba(13, 148, 136, 0.35),
    transparent 70%
  );
}
.sig-kolam.svelte-1adez18 {
  width: 100%;
  margin: 0 auto 32px;
  position: relative;
  z-index: 1;
  max-width: 640px;
  opacity: 0.85;
}
.sig-kolam-svg.svelte-1adez18 {
  width: 100%;
  height: 40px;
  display: block;
}
.sig-head.svelte-1adez18 {
  text-align: center;
  margin-bottom: 34px;
  position: relative;
  z-index: 1;
}
.sig-kicker.svelte-1adez18 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Courier New, monospace;
  font-size: 11px;
  color: #b45309;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  font-weight: 700;
}
.sig-kicker-glyph.svelte-1adez18 {
  color: #d97706;
  font-size: 14px;
  font-family: Georgia, serif;
}
.sig-title.svelte-1adez18 {
  margin: 14px auto 12px;
  max-width: 820px;
  font-size: clamp(1.8rem, 3.2vw, 2.55rem);
  line-height: 1.18;
  font-family: Georgia, Cormorant Garamond, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #b45309, #c2185b, #0f766e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.01em;
}
.sig-lead.svelte-1adez18 {
  max-width: 760px;
  margin: 0 auto;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 15.5px;
  line-height: 1.7;
  color: #475569;
}
.sig-body.svelte-1adez18 {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto 36px;
  padding: 0 10px;
}
.sig-para.svelte-1adez18 {
  margin: 0 0 14px;
  font-size: 14.5px;
  line-height: 1.75;
  color: #475569;
}
.sig-pillars.svelte-1adez18 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.sig-pillar.svelte-1adez18 {
  position: relative;
  padding: 22px 14px 18px;
  background: linear-gradient(180deg, var(--tBg) 0%, #fff 100%);
  border-radius: 14px;
  border: 1px solid var(--tBd);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: svelte-1adez18-sigPillarIn 0.5s ease calc(var(--i, 0) * 0.1s) both;
}
@keyframes svelte-1adez18-sigPillarIn {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.sig-pillar.svelte-1adez18:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px #d977061a;
}
.sig-pillar--rose.svelte-1adez18 {
  --t1: #e91e8c;
  --t2: #c2185b;
  --tBg: rgba(233, 30, 140, 0.07);
  --tBd: rgba(233, 30, 140, 0.22);
}
.sig-pillar--gold.svelte-1adez18 {
  --t1: #d97706;
  --t2: #b45309;
  --tBg: rgba(217, 119, 6, 0.07);
  --tBd: rgba(217, 119, 6, 0.25);
}
.sig-pillar--emerald.svelte-1adez18 {
  --t1: #059669;
  --t2: #047857;
  --tBg: rgba(5, 150, 105, 0.07);
  --tBd: rgba(5, 150, 105, 0.22);
}
.sig-pillar--coral.svelte-1adez18 {
  --t1: #f43f5e;
  --t2: #e11d48;
  --tBg: rgba(244, 63, 94, 0.07);
  --tBd: rgba(244, 63, 94, 0.22);
}
.sig-pillar-lamp.svelte-1adez18 {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--t1), var(--t2));
  margin-bottom: 10px;
  box-shadow: 0 4px 12px #d9770633;
}
.sig-pillar-flame.svelte-1adez18 {
  width: 10px;
  height: 14px;
  border-radius: 50%/60% 60% 40% 40%;
  background: linear-gradient(180deg, #fde68a, #fbbf24 60%, #f59e0b);
  transform: translateY(-2px);
  animation: svelte-1adez18-sigFlame 2s ease-in-out infinite;
}
@keyframes svelte-1adez18-sigFlame {
  0%,
  to {
    transform: translateY(-2px) scale(1);
  }
  50% {
    transform: translateY(-3px) scale(1.08);
  }
}
.sig-pillar-label.svelte-1adez18 {
  display: block;
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 14px;
  color: #1e293b;
  line-height: 1.25;
}
.sig-pillar-sub.svelte-1adez18 {
  display: block;
  margin-top: 3px;
  font-family: Courier New, monospace;
  font-size: 10.5px;
  color: var(--t2);
  letter-spacing: 0.8px;
}
@media (max-width: 720px) {
  .sig-pillars.svelte-1adez18 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.sir-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 104px 0 118px;
  background: radial-gradient(
      1000px 520px at 100% 10%,
      rgba(233, 30, 140, 0.05),
      transparent 70%
    ),
    radial-gradient(
      900px 480px at 0% 90%,
      rgba(217, 119, 6, 0.05),
      transparent 70%
    ),
    #fffdf7;
}
.sir-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.4;
}
.sir-orb-1.svelte-1adez18 {
  width: 360px;
  height: 360px;
  top: -100px;
  right: -80px;
  background: radial-gradient(circle, rgba(233, 30, 140, 0.3), transparent 70%);
}
.sir-orb-2.svelte-1adez18 {
  width: 340px;
  height: 340px;
  bottom: -100px;
  left: -80px;
  background: radial-gradient(
    circle,
    rgba(13, 148, 136, 0.28),
    transparent 70%
  );
}
.sir-head.svelte-1adez18 {
  text-align: center;
  margin-bottom: 44px;
  position: relative;
  z-index: 1;
}
.sir-kicker.svelte-1adez18 {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 4px;
  background: #d977060f;
  color: #b45309;
  font-family: Courier New, monospace;
  font-size: 11px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  font-weight: 700;
  border: 1px dashed rgba(217, 119, 6, 0.3);
}
.sir-title.svelte-1adez18 {
  margin: 14px auto 12px;
  max-width: 820px;
  font-size: clamp(1.75rem, 3.2vw, 2.45rem);
  line-height: 1.18;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #c2185b, #b45309, #0f766e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sir-lead.svelte-1adez18 {
  max-width: 720px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.65;
  color: #64748b;
}
.sir-grid.svelte-1adez18 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.sir-card.svelte-1adez18 {
  position: relative;
  padding: 30px 26px 26px;
  background: linear-gradient(165deg, #fff, #fffaf0);
  border-radius: 16px;
  border: 1px solid var(--tBd);
  box-shadow: 0 12px 30px #0f172a0d;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.sir-card.svelte-1adez18:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px #0f172a14;
}
.sir-card--rose.svelte-1adez18 {
  --t1: #e91e8c;
  --t2: #c2185b;
  --tBg: rgba(233, 30, 140, 0.06);
  --tBd: rgba(233, 30, 140, 0.22);
}
.sir-card--gold.svelte-1adez18 {
  --t1: #d97706;
  --t2: #b45309;
  --tBg: rgba(217, 119, 6, 0.06);
  --tBd: rgba(217, 119, 6, 0.25);
}
.sir-card--emerald.svelte-1adez18 {
  --t1: #059669;
  --t2: #047857;
  --tBg: rgba(5, 150, 105, 0.06);
  --tBd: rgba(5, 150, 105, 0.22);
}
.sir-card--coral.svelte-1adez18 {
  --t1: #f43f5e;
  --t2: #e11d48;
  --tBg: rgba(244, 63, 94, 0.06);
  --tBd: rgba(244, 63, 94, 0.22);
}
.sir-card.svelte-1adez18:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--t1), var(--t2));
}
.sir-gopuram.svelte-1adez18 {
  position: absolute;
  top: 14px;
  right: 18px;
  width: 60px;
  height: 44px;
  color: var(--t1);
  opacity: 0.35;
  pointer-events: none;
}
.sir-state.svelte-1adez18 {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  background: var(--tBg);
  color: var(--t2);
  font-family: Courier New, monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.sir-name.svelte-1adez18 {
  margin: 0 0 4px;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 21px;
  color: #1e293b;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.sir-tagline.svelte-1adez18 {
  display: block;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  color: var(--t2);
  font-weight: 600;
  margin-bottom: 12px;
}
.sir-body.svelte-1adez18 {
  margin: 0 0 16px;
  font-size: 13.5px;
  line-height: 1.7;
  color: #475569;
}
.sir-divider.svelte-1adez18 {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
}
.sir-divider.svelte-1adez18 span:where(.svelte-1adez18) {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--t1), transparent);
  opacity: 0.55;
}
.sir-divider-diamond.svelte-1adez18 {
  flex: 0 !important;
  width: auto;
  height: auto !important;
  color: var(--t1);
  font-size: 10px;
  background: none !important;
  opacity: 1 !important;
}
.sir-closing.svelte-1adez18 {
  position: relative;
  z-index: 1;
  margin: 36px auto 0;
  max-width: 720px;
  text-align: center;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 14.5px;
  line-height: 1.7;
  color: #64748b;
}
@media (max-width: 820px) {
  .sir-grid.svelte-1adez18 {
    grid-template-columns: 1fr;
  }
}
.sid-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 96px 0 110px;
  background: radial-gradient(
      1000px 520px at 50% -10%,
      var(--sidBg, rgba(233, 30, 140, 0.05)),
      transparent 65%
    ),
    linear-gradient(180deg, #fffdf7, #fff);
}
.sid-section--rose.svelte-1adez18 {
  --sidBg: rgba(233, 30, 140, 0.06);
}
.sid-section--gold.svelte-1adez18 {
  --sidBg: rgba(217, 119, 6, 0.06);
}
.sid-card.svelte-1adez18 {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 44px 40px 36px;
  background: linear-gradient(165deg, #fff, #fffbf3);
  border-radius: 20px;
  border: 1px solid var(--tBd);
  box-shadow: 0 18px 44px #0f172a0d;
}
.sid-card--rose.svelte-1adez18 {
  --t1: #e91e8c;
  --t2: #c2185b;
  --tBd: rgba(233, 30, 140, 0.22);
  --tBg: rgba(233, 30, 140, 0.06);
}
.sid-card--gold.svelte-1adez18 {
  --t1: #d97706;
  --t2: #b45309;
  --tBd: rgba(217, 119, 6, 0.25);
  --tBg: rgba(217, 119, 6, 0.06);
}
.sid-card.svelte-1adez18:before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 4px;
  background: linear-gradient(90deg, var(--t1), var(--t2));
  border-radius: 0 0 4px 4px;
}
.sid-badge.svelte-1adez18 {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--tBg);
  color: var(--t2);
  border: 1px solid var(--tBd);
  font-family: Courier New, monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.sid-title.svelte-1adez18 {
  margin: 0 0 14px;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  line-height: 1.2;
  background: linear-gradient(
    135deg,
    #1e293b 0%,
    var(--t2) 60%,
    var(--t1) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.01em;
}
.sid-lead.svelte-1adez18 {
  margin: 0 0 16px;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 15.5px;
  line-height: 1.7;
  color: #475569;
}
.sid-para.svelte-1adez18 {
  margin: 0 0 12px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #475569;
}
.sid-highlights.svelte-1adez18 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 20px 0;
  padding: 16px 18px;
  border-radius: 12px;
  background: var(--tBg);
  border: 1px dashed var(--tBd);
}
.sid-highlight.svelte-1adez18 {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.sid-highlight-label.svelte-1adez18 {
  font-family: Courier New, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: var(--t2);
  text-transform: uppercase;
}
.sid-highlight-value.svelte-1adez18 {
  font-size: 12.5px;
  color: #1e293b;
  font-weight: 700;
}
.sid-footer.svelte-1adez18 {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: #475569;
  padding-top: 14px;
  border-top: 1px dashed var(--tBd);
  font-style: italic;
}
@media (max-width: 640px) {
  .sid-section.svelte-1adez18 {
    padding: 72px 0 86px;
  }
  .sid-card.svelte-1adez18 {
    padding: 32px 24px 28px;
  }
  .sid-highlights.svelte-1adez18 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.sic-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 110px 0 124px;
  background: radial-gradient(
      1200px 560px at 50% -10%,
      rgba(217, 119, 6, 0.07),
      transparent 65%
    ),
    radial-gradient(
      1000px 500px at 50% 110%,
      rgba(233, 30, 140, 0.06),
      transparent 65%
    ),
    linear-gradient(180deg, #fff9ed, #fffdf7 55%, #fff4e4);
}
.sic-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(110px);
  opacity: 0.5;
}
.sic-orb-1.svelte-1adez18 {
  width: 440px;
  height: 440px;
  top: -170px;
  left: 50%;
  transform: translate(-50%);
  background: radial-gradient(circle, rgba(217, 119, 6, 0.3), transparent 70%);
}
.sic-orb-2.svelte-1adez18 {
  width: 460px;
  height: 460px;
  bottom: -180px;
  left: 50%;
  transform: translate(-50%);
  background: radial-gradient(
    circle,
    rgba(13, 148, 136, 0.28),
    transparent 70%
  );
}
.sic-card.svelte-1adez18 {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 44px 42px;
  text-align: center;
  background: linear-gradient(180deg, #fff, #fffcf0);
  border-radius: 26px;
  border: 1px solid rgba(217, 119, 6, 0.22);
  box-shadow: 0 30px 68px #d9770614, 0 10px 28px #e91e8c0d;
}
.sic-card.svelte-1adez18:before {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  bottom: 12px;
  left: 12px;
  border: 1px dashed rgba(194, 24, 91, 0.2);
  border-radius: 18px;
  pointer-events: none;
}
.sic-kolam.svelte-1adez18 {
  display: block;
  width: 120px;
  margin: 0 auto 16px;
  opacity: 0.9;
}
.sic-kolam.svelte-1adez18 svg:where(.svelte-1adez18) {
  width: 100%;
  height: 40px;
  display: block;
}
.sic-kicker.svelte-1adez18 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(217, 119, 6, 0.28);
  color: #b45309;
  font-family: Courier New, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}
.sic-kicker-pulse.svelte-1adez18 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e91e8c;
  animation: svelte-1adez18-sicPulse 1.8s infinite;
}
@keyframes svelte-1adez18-sicPulse {
  0%,
  to {
    box-shadow: 0 0 #e91e8c8c;
  }
  50% {
    box-shadow: 0 0 0 10px #e91e8c00;
  }
}
.sic-title.svelte-1adez18 {
  margin: 16px auto 14px;
  max-width: 720px;
  font-size: clamp(1.85rem, 3.4vw, 2.6rem);
  line-height: 1.15;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #b45309 45%, #c2185b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sic-lead.svelte-1adez18 {
  max-width: 720px;
  margin: 0 auto 20px;
  font-size: 15.5px;
  line-height: 1.7;
  color: #475569;
  font-family: Georgia, serif;
}
.sic-chips.svelte-1adez18 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 26px;
}
.sic-chip.svelte-1adez18 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background: #d9770614;
  color: #b45309;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(217, 119, 6, 0.22);
}
.sic-chip.svelte-1adez18 svg:where(.svelte-1adez18) {
  color: #059669;
}
.sic-actions.svelte-1adez18 {
  margin-bottom: 16px;
}
.sic-btn.svelte-1adez18 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 14px 32px #25d3664d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sic-btn.svelte-1adez18:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px #25d36661;
}
.sic-btn-shine.svelte-1adez18 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 60%
  );
  transform: translate(-100%);
  transition: transform 0.9s ease;
}
.sic-btn.svelte-1adez18:hover .sic-btn-shine:where(.svelte-1adez18) {
  transform: translate(100%);
}
.sic-note.svelte-1adez18 {
  display: block;
  margin-top: 10px;
  font-size: 11.5px;
  color: #64748b;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 600;
}
.sic-signature.svelte-1adez18 {
  margin: 14px 0 0;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: #b45309;
}
@media (max-width: 560px) {
  .sic-section.svelte-1adez18 {
    padding: 72px 0 86px;
  }
  .sic-card.svelte-1adez18 {
    padding: 40px 22px 32px;
    border-radius: 22px;
  }
  .sic-card.svelte-1adez18:before {
    top: 8px;
    right: 8px;
    bottom: 8px;
    left: 8px;
    border-radius: 14px;
  }
}
.prq-section.svelte-1adez18,
.prc-section.svelte-1adez18,
.prp-section.svelte-1adez18,
.prs-section.svelte-1adez18,
.prg-section.svelte-1adez18,
.prb-section.svelte-1adez18 {
  border-bottom: 1px solid rgba(233, 30, 140, 0.12);
}
.prq-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 108px 0 120px;
  background: radial-gradient(
      1000px 520px at 10% 10%,
      rgba(217, 119, 6, 0.06),
      transparent 70%
    ),
    linear-gradient(180deg, #fffbf0, #fffefb 55%, #fff9ea);
}
.prq-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.4;
}
.prq-orb-1.svelte-1adez18 {
  width: 380px;
  height: 380px;
  top: -100px;
  right: -80px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.35), transparent 70%);
}
.prq-orb-2.svelte-1adez18 {
  width: 360px;
  height: 360px;
  bottom: -100px;
  left: -80px;
  background: radial-gradient(circle, rgba(194, 24, 91, 0.25), transparent 70%);
}
.prq-head.svelte-1adez18 {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.prq-kicker.svelte-1adez18 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Courier New, monospace;
  font-size: 11px;
  color: #b45309;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  font-weight: 700;
}
.prq-kicker-line.svelte-1adez18 {
  width: 30px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(217, 119, 6, 0.5),
    transparent
  );
}
.prq-kicker-diamond.svelte-1adez18 {
  color: #d97706;
  font-size: 9px;
}
.prq-title.svelte-1adez18 {
  margin: 14px auto 12px;
  max-width: 800px;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  line-height: 1.15;
  font-family: Georgia, Cormorant Garamond, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #b45309 55%, #78350f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.01em;
}
.prq-lead.svelte-1adez18 {
  max-width: 760px;
  margin: 0 auto;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.65;
  color: #64748b;
}
.prq-intro.svelte-1adez18,
.prq-heading.svelte-1adez18 {
  max-width: 860px;
  margin: 0 auto 12px;
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
  text-align: center;
  position: relative;
  z-index: 1;
}
.prq-heading.svelte-1adez18 {
  margin: 22px auto;
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 600;
  color: #b45309;
}
.prq-traits.svelte-1adez18 {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}
.prq-trait.svelte-1adez18 {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: flex-start;
  padding: 18px 22px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff, #fffcf3);
  border: 1px solid rgba(217, 119, 6, 0.18);
  border-left: 3px solid #d97706;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: svelte-1adez18-prqTraitIn 0.5s ease calc(var(--i, 0) * 0.08s) both;
}
@keyframes svelte-1adez18-prqTraitIn {
  0% {
    opacity: 0;
    transform: translate(-6px);
  }
  to {
    opacity: 1;
    transform: translate(0);
  }
}
.prq-trait.svelte-1adez18:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px #d977061a;
}
.prq-trait-num.svelte-1adez18 {
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #d97706, #b45309);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: center;
}
.prq-trait-label.svelte-1adez18 {
  margin: 0 0 4px;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 17px;
  color: #1e293b;
  letter-spacing: -0.01em;
}
.prq-trait-text.svelte-1adez18 {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: #475569;
}
.prq-closing.svelte-1adez18 {
  max-width: 860px;
  margin: 34px auto 0;
  text-align: center;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 14.5px;
  line-height: 1.7;
  color: #b45309;
  position: relative;
  z-index: 1;
}
@media (max-width: 560px) {
  .prq-section.svelte-1adez18 {
    padding: 72px 0 88px;
  }
  .prq-trait.svelte-1adez18 {
    grid-template-columns: 44px 1fr;
    gap: 12px;
    padding: 16px 18px;
  }
  .prq-trait-num.svelte-1adez18 {
    font-size: 24px;
  }
}
.prc-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 100px 0 114px;
  background: radial-gradient(
      1000px 500px at 100% 90%,
      rgba(233, 30, 140, 0.05),
      transparent 70%
    ),
    #fffefa;
}
.prc-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.4;
}
.prc-orb-1.svelte-1adez18 {
  width: 360px;
  height: 360px;
  bottom: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(233, 30, 140, 0.3), transparent 70%);
}
.prc-head.svelte-1adez18 {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.prc-kicker.svelte-1adez18 {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: #c2185b0f;
  color: #c2185b;
  border: 1px dashed rgba(194, 24, 91, 0.3);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  letter-spacing: 1.4px;
}
.prc-title.svelte-1adez18 {
  margin: 14px auto 12px;
  max-width: 760px;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.18;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #c2185b, #b45309);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.prc-lead.svelte-1adez18 {
  max-width: 700px;
  margin: 0 auto;
  font-size: 14.5px;
  line-height: 1.65;
  color: #64748b;
}
.prc-grid.svelte-1adez18 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
}
.prc-grid.svelte-1adez18 > :where(.svelte-1adez18):nth-child(4),
.prc-grid.svelte-1adez18 > :where(.svelte-1adez18):nth-child(5) {
  grid-column: span 1;
}
.prc-card.svelte-1adez18 {
  position: relative;
  padding: 26px 24px 22px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--tBd);
  box-shadow: 0 8px 22px #0f172a0a;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.prc-card.svelte-1adez18:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px #0f172a14;
}
.prc-card--gold.svelte-1adez18 {
  --t1: #d97706;
  --t2: #b45309;
  --tBd: rgba(217, 119, 6, 0.22);
}
.prc-card--rose.svelte-1adez18 {
  --t1: #e91e8c;
  --t2: #c2185b;
  --tBd: rgba(233, 30, 140, 0.22);
}
.prc-card--emerald.svelte-1adez18 {
  --t1: #059669;
  --t2: #047857;
  --tBd: rgba(5, 150, 105, 0.22);
}
.prc-card--teal.svelte-1adez18 {
  --t1: #0d9488;
  --t2: #0f766e;
  --tBd: rgba(13, 148, 136, 0.22);
}
.prc-card--coral.svelte-1adez18 {
  --t1: #f43f5e;
  --t2: #e11d48;
  --tBd: rgba(244, 63, 94, 0.22);
}
.prc-card-corner.svelte-1adez18 {
  position: absolute;
  top: 0;
  right: 0;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--t1), var(--t2));
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  opacity: 0.18;
}
.prc-card-name.svelte-1adez18 {
  margin: 0 0 8px;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--t2);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.prc-card-body.svelte-1adez18 {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.65;
  color: #475569;
}
@media (max-width: 900px) {
  .prc-grid.svelte-1adez18 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .prc-grid.svelte-1adez18 {
    grid-template-columns: 1fr;
  }
}
.prp-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 104px 0 120px;
  background: radial-gradient(
      1000px 500px at 0% 0%,
      rgba(217, 119, 6, 0.06),
      transparent 70%
    ),
    radial-gradient(
      900px 480px at 100% 100%,
      rgba(13, 148, 136, 0.04),
      transparent 70%
    ),
    linear-gradient(180deg, #fffcf4, #fff);
}
.prp-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.4;
}
.prp-orb-1.svelte-1adez18 {
  width: 380px;
  height: 380px;
  top: -120px;
  left: -80px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.32), transparent 70%);
}
.prp-orb-2.svelte-1adez18 {
  width: 360px;
  height: 360px;
  bottom: -120px;
  right: -80px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.25),
    transparent 70%
  );
}
.prp-head.svelte-1adez18 {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.prp-kicker.svelte-1adez18 {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: #d977060f;
  color: #b45309;
  border: 1px dashed rgba(217, 119, 6, 0.3);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  letter-spacing: 1.4px;
}
.prp-title.svelte-1adez18 {
  margin: 14px auto 12px;
  max-width: 800px;
  font-size: clamp(1.75rem, 3.2vw, 2.4rem);
  line-height: 1.18;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #b45309, #c2185b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.prp-lead.svelte-1adez18 {
  max-width: 720px;
  margin: 0 auto;
  font-size: 14.5px;
  line-height: 1.65;
  color: #64748b;
}
.prp-criteria.svelte-1adez18 {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto 32px;
  padding: 22px 26px;
  background: linear-gradient(135deg, #fff, #fffbee);
  border-radius: 14px;
  border: 1px dashed rgba(217, 119, 6, 0.3);
}
.prp-criteria-label.svelte-1adez18 {
  display: block;
  text-align: center;
  margin-bottom: 12px;
  font-family: Courier New, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.2px;
  color: #b45309;
  text-transform: uppercase;
}
.prp-criteria-list.svelte-1adez18 {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.prp-criteria-list.svelte-1adez18 li:where(.svelte-1adez18) {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: #1e293b;
  line-height: 1.5;
}
.prp-criteria-tick.svelte-1adez18 {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #059669, #047857);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 2px 6px #05966940;
}
.prp-heading.svelte-1adez18 {
  max-width: 860px;
  margin: 0 auto 22px;
  text-align: center;
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 15px;
  color: #b45309;
  position: relative;
  z-index: 1;
}
.prp-grid.svelte-1adez18 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.prp-card.svelte-1adez18 {
  position: relative;
  padding: 28px 26px 22px;
  background: linear-gradient(165deg, #fff, #fffbee);
  border-radius: 14px;
  border: 1px solid var(--tBd);
  box-shadow: 0 10px 26px #0f172a0d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.prp-card.svelte-1adez18:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px #0f172a14;
}
.prp-card--rose.svelte-1adez18 {
  --t1: #e91e8c;
  --t2: #c2185b;
  --tBd: rgba(233, 30, 140, 0.22);
  --tBg: rgba(233, 30, 140, 0.06);
}
.prp-card--gold.svelte-1adez18 {
  --t1: #d97706;
  --t2: #b45309;
  --tBd: rgba(217, 119, 6, 0.25);
  --tBg: rgba(217, 119, 6, 0.06);
}
.prp-card--coral.svelte-1adez18 {
  --t1: #f43f5e;
  --t2: #e11d48;
  --tBd: rgba(244, 63, 94, 0.22);
  --tBg: rgba(244, 63, 94, 0.06);
}
.prp-card--teal.svelte-1adez18 {
  --t1: #0d9488;
  --t2: #0f766e;
  --tBd: rgba(13, 148, 136, 0.22);
  --tBg: rgba(13, 148, 136, 0.06);
}
.prp-card-roman.svelte-1adez18 {
  display: inline-block;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--t1), var(--t2));
  color: #fff;
  text-align: center;
  line-height: 44px;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 12px;
  box-shadow: 0 5px 14px #0000001f;
}
.prp-card-name.svelte-1adez18 {
  margin: 0 0 6px;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 18px;
  color: #1e293b;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.prp-card-body.svelte-1adez18 {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: #475569;
}
.prp-footer.svelte-1adez18 {
  position: relative;
  z-index: 1;
  margin: 30px auto 0;
  max-width: 760px;
  text-align: center;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: #64748b;
}
@media (max-width: 820px) {
  .prp-grid.svelte-1adez18 {
    grid-template-columns: 1fr;
  }
}
.prs-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 100px 0 114px;
  background: radial-gradient(
      1000px 500px at 100% 10%,
      rgba(13, 148, 136, 0.05),
      transparent 70%
    ),
    #fffdfa;
}
.prs-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.4;
}
.prs-orb-1.svelte-1adez18 {
  width: 360px;
  height: 360px;
  top: -100px;
  right: -80px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.3), transparent 70%);
}
.prs-head.svelte-1adez18 {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.prs-kicker.svelte-1adez18 {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: #0d948812;
  color: #0f766e;
  border: 1px dashed rgba(13, 148, 136, 0.3);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  letter-spacing: 1.4px;
}
.prs-title.svelte-1adez18 {
  margin: 14px auto 12px;
  max-width: 820px;
  font-size: clamp(1.75rem, 3.2vw, 2.4rem);
  line-height: 1.18;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #0f766e, #b45309);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.prs-lead.svelte-1adez18 {
  max-width: 720px;
  margin: 0 auto;
  font-size: 14.5px;
  line-height: 1.65;
  color: #64748b;
}
.prs-grid.svelte-1adez18 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.prs-card.svelte-1adez18 {
  position: relative;
  padding: 24px 22px 20px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--tBd);
  box-shadow: 0 8px 22px #0f172a0a;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.prs-card.svelte-1adez18:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px #0f172a14;
}
.prs-card--gold.svelte-1adez18 {
  --t1: #d97706;
  --t2: #b45309;
  --tBg: rgba(217, 119, 6, 0.07);
  --tBd: rgba(217, 119, 6, 0.22);
}
.prs-card--rose.svelte-1adez18 {
  --t1: #e91e8c;
  --t2: #c2185b;
  --tBg: rgba(233, 30, 140, 0.07);
  --tBd: rgba(233, 30, 140, 0.22);
}
.prs-card--coral.svelte-1adez18 {
  --t1: #f43f5e;
  --t2: #e11d48;
  --tBg: rgba(244, 63, 94, 0.07);
  --tBd: rgba(244, 63, 94, 0.22);
}
.prs-card--emerald.svelte-1adez18 {
  --t1: #059669;
  --t2: #047857;
  --tBg: rgba(5, 150, 105, 0.07);
  --tBd: rgba(5, 150, 105, 0.22);
}
.prs-card--teal.svelte-1adez18 {
  --t1: #0d9488;
  --t2: #0f766e;
  --tBg: rgba(13, 148, 136, 0.07);
  --tBd: rgba(13, 148, 136, 0.22);
}
.prs-card-icon.svelte-1adez18 {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--tBg);
  color: var(--t2);
  border: 1px solid var(--tBd);
  margin-bottom: 12px;
}
.prs-card-name.svelte-1adez18 {
  margin: 0 0 6px;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 16px;
  color: #1e293b;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.prs-card-body.svelte-1adez18 {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #475569;
}
@media (max-width: 900px) {
  .prs-grid.svelte-1adez18 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .prs-grid.svelte-1adez18 {
    grid-template-columns: 1fr;
  }
}
.prg-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 100px 0 114px;
  background: radial-gradient(
      900px 500px at 0% 100%,
      rgba(217, 119, 6, 0.05),
      transparent 70%
    ),
    linear-gradient(180deg, #fff, #fffcf4);
}
.prg-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.4;
}
.prg-orb-1.svelte-1adez18 {
  width: 360px;
  height: 360px;
  bottom: -110px;
  left: -80px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.3), transparent 70%);
}
.prg-head.svelte-1adez18 {
  text-align: center;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}
.prg-kicker.svelte-1adez18 {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: #0596690f;
  color: #047857;
  border: 1px dashed rgba(5, 150, 105, 0.3);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  letter-spacing: 1.4px;
}
.prg-title.svelte-1adez18 {
  margin: 14px auto 12px;
  max-width: 760px;
  font-size: clamp(1.75rem, 3.2vw, 2.4rem);
  line-height: 1.18;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #047857, #b45309);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.prg-lead.svelte-1adez18 {
  max-width: 720px;
  margin: 0 auto;
  font-size: 14.5px;
  line-height: 1.65;
  color: #64748b;
}
.prg-list.svelte-1adez18 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 960px;
  margin: 0 auto;
}
.prg-list.svelte-1adez18 > :where(.svelte-1adez18):nth-child(5) {
  grid-column: 1 / span 2;
  max-width: calc(50% - 7px);
  margin: 0 auto;
  width: 100%;
}
.prg-item.svelte-1adez18 {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(5, 150, 105, 0.18);
  border-left: 3px solid #059669;
  animation: svelte-1adez18-prgIn 0.5s ease calc(var(--i, 0) * 0.08s) both;
}
@keyframes svelte-1adez18-prgIn {
  0% {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.prg-item.svelte-1adez18:hover {
  box-shadow: 0 10px 24px #0596691a;
}
.prg-item-seal.svelte-1adez18 {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #047857);
  color: #fff;
  box-shadow: 0 4px 12px #05966940;
}
.prg-item-label.svelte-1adez18 {
  margin: 0 0 4px;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 15px;
  color: #1e293b;
  letter-spacing: -0.01em;
}
.prg-item-text.svelte-1adez18 {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: #475569;
}
.prg-footer.svelte-1adez18 {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 28px auto 0;
  text-align: center;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: #b45309;
}
@media (max-width: 720px) {
  .prg-list.svelte-1adez18 {
    grid-template-columns: 1fr;
  }
  .prg-list.svelte-1adez18 > :where(.svelte-1adez18):nth-child(5) {
    grid-column: auto;
    max-width: none;
  }
}
.prb-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 114px 0 128px;
  background: radial-gradient(
      1200px 580px at 50% -10%,
      rgba(217, 119, 6, 0.08),
      transparent 65%
    ),
    radial-gradient(
      1000px 500px at 50% 110%,
      rgba(194, 24, 91, 0.06),
      transparent 65%
    ),
    linear-gradient(180deg, #fff9eb, #fffdf7 55%, #fff5e4);
}
.prb-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(110px);
  opacity: 0.55;
}
.prb-orb-1.svelte-1adez18 {
  width: 440px;
  height: 440px;
  top: -170px;
  left: 50%;
  transform: translate(-50%);
  background: radial-gradient(circle, rgba(217, 119, 6, 0.35), transparent 70%);
}
.prb-orb-2.svelte-1adez18 {
  width: 460px;
  height: 460px;
  bottom: -180px;
  left: 50%;
  transform: translate(-50%);
  background: radial-gradient(circle, rgba(194, 24, 91, 0.28), transparent 70%);
}
.prb-plate.svelte-1adez18 {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  padding: 56px 42px 44px;
  text-align: center;
  background: linear-gradient(180deg, #fff, #fffbec);
  border-radius: 24px;
  border: 1px solid rgba(217, 119, 6, 0.25);
  box-shadow: 0 34px 74px #d977061a, 0 12px 28px #c2185b0f;
}
.prb-plate-border.svelte-1adez18 {
  position: absolute;
  top: 12px;
  right: 12px;
  bottom: 12px;
  left: 12px;
  border-radius: 16px;
  border: 1px dashed rgba(217, 119, 6, 0.28);
  pointer-events: none;
}
.prb-monogram.svelte-1adez18 {
  width: 110px;
  height: 110px;
  margin: 0 auto 18px;
  filter: drop-shadow(0 8px 22px rgba(217, 119, 6, 0.22));
  animation: svelte-1adez18-prbMonogramFloat 5s ease-in-out infinite;
}
@keyframes svelte-1adez18-prbMonogramFloat {
  0%,
  to {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}
.prb-monogram.svelte-1adez18 svg:where(.svelte-1adez18) {
  width: 100%;
  height: 100%;
  display: block;
}
.prb-kicker.svelte-1adez18 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(217, 119, 6, 0.3);
  color: #b45309;
  font-family: Courier New, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}
.prb-kicker-pulse.svelte-1adez18 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d97706;
  animation: svelte-1adez18-prbPulse 1.8s infinite;
}
@keyframes svelte-1adez18-prbPulse {
  0%,
  to {
    box-shadow: 0 0 #d977068c;
  }
  50% {
    box-shadow: 0 0 0 10px #d9770600;
  }
}
.prb-title.svelte-1adez18 {
  margin: 16px auto 14px;
  max-width: 740px;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  line-height: 1.12;
  font-family: Georgia, Cormorant Garamond, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #b45309, #c2185b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.01em;
}
.prb-lead.svelte-1adez18 {
  max-width: 720px;
  margin: 0 auto 12px;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 15.5px;
  line-height: 1.7;
  color: #475569;
}
.prb-body.svelte-1adez18 {
  max-width: 720px;
  margin: 0 auto 22px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #475569;
}
.prb-chips.svelte-1adez18 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 26px;
}
.prb-chip.svelte-1adez18 {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d977061a, #c2185b1a);
  color: #b45309;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  border: 1px solid rgba(217, 119, 6, 0.25);
}
.prb-actions.svelte-1adez18 {
  margin-bottom: 18px;
}
.prb-btn.svelte-1adez18 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 14px 32px #25d3664d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.prb-btn.svelte-1adez18:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px #25d36661;
}
.prb-btn-shine.svelte-1adez18 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 60%
  );
  transform: translate(-100%);
  transition: transform 0.9s ease;
}
.prb-btn.svelte-1adez18:hover .prb-btn-shine:where(.svelte-1adez18) {
  transform: translate(100%);
}
.prb-note.svelte-1adez18 {
  display: block;
  margin-top: 10px;
  font-size: 11.5px;
  color: #64748b;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 600;
}
.prb-signature.svelte-1adez18 {
  margin: 14px 0 0;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: #b45309;
}
@media (max-width: 560px) {
  .prb-section.svelte-1adez18 {
    padding: 72px 0 88px;
  }
  .prb-plate.svelte-1adez18 {
    padding: 40px 22px 32px;
    border-radius: 20px;
  }
  .prb-plate-border.svelte-1adez18 {
    top: 8px;
    right: 8px;
    bottom: 8px;
    left: 8px;
    border-radius: 14px;
  }
  .prb-monogram.svelte-1adez18 {
    width: 90px;
    height: 90px;
  }
}
.cgy-section.svelte-1adez18,
.cgr-section.svelte-1adez18,
.cgx-section.svelte-1adez18,
.cgv-section.svelte-1adez18,
.cgb-section.svelte-1adez18 {
  border-bottom: 1px solid rgba(233, 30, 140, 0.12);
}
.cgy-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 106px 0 118px;
  background: radial-gradient(
      1000px 500px at 10% 10%,
      rgba(244, 63, 94, 0.05),
      transparent 70%
    ),
    radial-gradient(
      900px 480px at 100% 90%,
      rgba(217, 119, 6, 0.05),
      transparent 70%
    ),
    linear-gradient(180deg, #fff8f6, #fffefb 55%, #fff6ec);
}
.cgy-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.45;
}
.cgy-orb-1.svelte-1adez18 {
  width: 380px;
  height: 380px;
  top: -100px;
  left: -80px;
  background: radial-gradient(circle, rgba(244, 63, 94, 0.35), transparent 70%);
}
.cgy-orb-2.svelte-1adez18 {
  width: 360px;
  height: 360px;
  bottom: -100px;
  right: -80px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.3), transparent 70%);
}
.cgy-head.svelte-1adez18 {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.cgy-kicker.svelte-1adez18 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(244, 63, 94, 0.25);
  color: #e11d48;
  font-family: Courier New, monospace;
  font-size: 11px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-weight: 700;
  box-shadow: 0 4px 12px #f43f5e14;
}
.cgy-star.svelte-1adez18 {
  color: #d97706;
  font-size: 10px;
}
.cgy-title.svelte-1adez18 {
  margin: 14px auto 12px;
  max-width: 820px;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  line-height: 1.15;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #e11d48, #b45309);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cgy-lead.svelte-1adez18 {
  max-width: 760px;
  margin: 0 auto;
  font-size: 15.5px;
  line-height: 1.7;
  color: #475569;
}
.cgy-bunting.svelte-1adez18 {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  margin: 32px 0;
  padding-top: 12px;
}
.cgy-bunting-string.svelte-1adez18 {
  position: absolute;
  top: 14px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    rgba(194, 24, 91, 0.35) 0 4px,
    transparent 4px 8px
  );
  transform: translateY(0);
}
.cgy-pennant.svelte-1adez18 {
  position: relative;
  padding: 8px 14px 14px;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 13px;
  color: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
  min-width: 90px;
  text-align: center;
  transform: translateY(4px) rotate(-2deg);
  background: linear-gradient(135deg, var(--t1), var(--t2));
  box-shadow: 0 4px 10px #0000001f;
}
.cgy-pennant.svelte-1adez18:nth-child(3n) {
  transform: translateY(4px) rotate(2deg);
}
.cgy-pennant--rose.svelte-1adez18 {
  --t1: #e91e8c;
  --t2: #c2185b;
}
.cgy-pennant--coral.svelte-1adez18 {
  --t1: #f43f5e;
  --t2: #e11d48;
}
.cgy-pennant--gold.svelte-1adez18 {
  --t1: #d97706;
  --t2: #b45309;
}
.cgy-pennant--emerald.svelte-1adez18 {
  --t1: #059669;
  --t2: #047857;
}
.cgy-pennant--teal.svelte-1adez18 {
  --t1: #0d9488;
  --t2: #0f766e;
}
.cgy-paras.svelte-1adez18 {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}
.cgy-para.svelte-1adez18 {
  margin: 0 0 14px;
  font-size: 14.5px;
  line-height: 1.75;
  color: #475569;
}
.cgy-closing.svelte-1adez18 {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 36px auto 0;
  padding: 24px 32px;
  text-align: center;
  background: linear-gradient(135deg, #fff, #fff6f3);
  border-radius: 14px;
  border: 1px solid rgba(244, 63, 94, 0.18);
  box-shadow: 0 10px 26px #f43f5e0f;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.cgy-closing-rule.svelte-1adez18 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 320px;
}
.cgy-closing-line.svelte-1adez18 {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(244, 63, 94, 0.35),
    transparent
  );
}
.cgy-closing-mark.svelte-1adez18 {
  color: #e11d48;
  font-size: 11px;
  opacity: 0.8;
}
.cgy-closing-text.svelte-1adez18 {
  margin: 0;
  max-width: 640px;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.7;
  color: #e11d48;
  font-weight: 500;
}
.cgr-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 104px 0 118px;
  background: radial-gradient(
      900px 480px at 100% 10%,
      rgba(217, 119, 6, 0.05),
      transparent 70%
    ),
    #fffefc;
}
.cgr-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.4;
}
.cgr-orb-1.svelte-1adez18 {
  width: 360px;
  height: 360px;
  top: -100px;
  right: -80px;
  background: radial-gradient(circle, rgba(244, 63, 94, 0.3), transparent 70%);
}
.cgr-head.svelte-1adez18 {
  text-align: center;
  margin-bottom: 42px;
  position: relative;
  z-index: 1;
}
.cgr-kicker.svelte-1adez18 {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 4px;
  background: #fffaf3;
  color: #b45309;
  border: 1px dashed rgba(217, 119, 6, 0.3);
  font-family: Courier New, monospace;
  font-size: 11px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  font-weight: 700;
  transform: rotate(-1deg);
}
.cgr-title.svelte-1adez18 {
  margin: 14px auto 12px;
  max-width: 820px;
  font-size: clamp(1.75rem, 3.2vw, 2.4rem);
  line-height: 1.18;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #b45309, #e11d48);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cgr-lead.svelte-1adez18 {
  max-width: 720px;
  margin: 0 auto;
  font-size: 14.5px;
  line-height: 1.65;
  color: #64748b;
}
.cgr-grid.svelte-1adez18 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.cgr-polaroid.svelte-1adez18 {
  position: relative;
  padding: 18px 18px 22px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 4px;
  box-shadow: 0 8px 22px #0f172a14;
  transform: rotate(calc((var(--idx, 0) - 2) * 1deg));
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.cgr-polaroid.svelte-1adez18:hover {
  transform: rotate(0) translateY(-4px);
  box-shadow: 0 18px 40px #0f172a24;
}
.cgr-polaroid--rose.svelte-1adez18 {
  --t1: #e91e8c;
  --t2: #c2185b;
  --tBg: rgba(233, 30, 140, 0.08);
  --tBd: rgba(233, 30, 140, 0.22);
}
.cgr-polaroid--coral.svelte-1adez18 {
  --t1: #f43f5e;
  --t2: #e11d48;
  --tBg: rgba(244, 63, 94, 0.08);
  --tBd: rgba(244, 63, 94, 0.22);
}
.cgr-polaroid--gold.svelte-1adez18 {
  --t1: #d97706;
  --t2: #b45309;
  --tBg: rgba(217, 119, 6, 0.08);
  --tBd: rgba(217, 119, 6, 0.25);
}
.cgr-polaroid--emerald.svelte-1adez18 {
  --t1: #059669;
  --t2: #047857;
  --tBg: rgba(5, 150, 105, 0.08);
  --tBd: rgba(5, 150, 105, 0.22);
}
.cgr-polaroid--teal.svelte-1adez18 {
  --t1: #0d9488;
  --t2: #0f766e;
  --tBg: rgba(13, 148, 136, 0.08);
  --tBd: rgba(13, 148, 136, 0.22);
}
.cgr-tape.svelte-1adez18 {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translate(-50%) rotate(-3deg);
  width: 60px;
  height: 22px;
  background: linear-gradient(135deg, #d977064d, #fbbf244d);
  border-left: 2px dashed rgba(180, 83, 9, 0.25);
  border-right: 2px dashed rgba(180, 83, 9, 0.25);
}
.cgr-sticker.svelte-1adez18 {
  position: absolute;
  top: 14px;
  right: -6px;
  padding: 3px 9px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--t1), var(--t2));
  color: #fff;
  font-family: Courier New, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  transform: rotate(6deg);
  box-shadow: 0 3px 8px #00000026;
}
.cgr-window.svelte-1adez18 {
  display: grid;
  place-items: center;
  height: 120px;
  margin-bottom: 14px;
  background: var(--tBg);
  border-radius: 2px;
  color: var(--t2);
}
.cgr-window.svelte-1adez18 svg:where(.svelte-1adez18) {
  width: 80%;
  max-width: 120px;
  height: auto;
  opacity: 0.85;
}
.cgr-name.svelte-1adez18 {
  margin: 0 0 6px;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 16.5px;
  color: #1e293b;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.cgr-body.svelte-1adez18 {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #475569;
}
.cgr-closing.svelte-1adez18 {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 30px auto 0;
  text-align: center;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: #64748b;
}
@media (max-width: 900px) {
  .cgr-grid.svelte-1adez18 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .cgr-grid.svelte-1adez18 {
    grid-template-columns: 1fr;
  }
}
.cgx-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 100px 0 114px;
  background: radial-gradient(
      900px 480px at 0% 50%,
      rgba(244, 63, 94, 0.05),
      transparent 70%
    ),
    #fffdfa;
}
.cgx-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.4;
}
.cgx-orb-1.svelte-1adez18 {
  width: 340px;
  height: 340px;
  top: -100px;
  left: -60px;
  background: radial-gradient(circle, rgba(244, 63, 94, 0.28), transparent 70%);
}
.cgx-head.svelte-1adez18 {
  text-align: center;
  margin-bottom: 42px;
  position: relative;
  z-index: 1;
}
.cgx-kicker.svelte-1adez18 {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: #e91e8c0f;
  color: #c2185b;
  border: 1px dashed rgba(233, 30, 140, 0.3);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  letter-spacing: 1.4px;
}
.cgx-title.svelte-1adez18 {
  margin: 14px auto 12px;
  max-width: 800px;
  font-size: clamp(1.75rem, 3.2vw, 2.4rem);
  line-height: 1.18;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #c2185b, #d97706);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cgx-lead.svelte-1adez18 {
  max-width: 720px;
  margin: 0 auto;
  font-size: 14.5px;
  line-height: 1.65;
  color: #64748b;
}
.cgx-grid.svelte-1adez18 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.cgx-note.svelte-1adez18 {
  position: relative;
  padding: 22px 20px 20px;
  background: linear-gradient(145deg, var(--tBg) 0%, #fff 100%);
  border-radius: 2px;
  border: 1px solid var(--tBd);
  transform: rotate(calc((var(--i, 0) - 1.5) * 1deg));
  box-shadow: 0 6px 18px #0f172a0f;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.cgx-note.svelte-1adez18:hover {
  transform: rotate(0) translateY(-4px);
  box-shadow: 0 16px 34px #0f172a1a;
}
.cgx-note.svelte-1adez18:before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translate(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--t1);
  box-shadow: inset 0 -2px 4px #0003;
}
.cgx-note--rose.svelte-1adez18 {
  --t1: #e91e8c;
  --t2: #c2185b;
  --tBg: rgba(233, 30, 140, 0.07);
  --tBd: rgba(233, 30, 140, 0.22);
}
.cgx-note--coral.svelte-1adez18 {
  --t1: #f43f5e;
  --t2: #e11d48;
  --tBg: rgba(244, 63, 94, 0.07);
  --tBd: rgba(244, 63, 94, 0.22);
}
.cgx-note--gold.svelte-1adez18 {
  --t1: #d97706;
  --t2: #b45309;
  --tBg: rgba(217, 119, 6, 0.07);
  --tBd: rgba(217, 119, 6, 0.25);
}
.cgx-note--teal.svelte-1adez18 {
  --t1: #0d9488;
  --t2: #0f766e;
  --tBg: rgba(13, 148, 136, 0.07);
  --tBd: rgba(13, 148, 136, 0.22);
}
.cgx-note-doodle.svelte-1adez18 {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  color: var(--t1);
  border: 1px dashed var(--t1);
  margin-bottom: 10px;
}
.cgx-note-heading.svelte-1adez18 {
  margin: 0 0 6px;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 15px;
  color: var(--t2);
  letter-spacing: -0.01em;
}
.cgx-note-text.svelte-1adez18 {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.6;
  color: #475569;
}
.cgx-closing.svelte-1adez18 {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 30px auto 0;
  text-align: center;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: #64748b;
}
@media (max-width: 820px) {
  .cgx-grid.svelte-1adez18 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .cgx-grid.svelte-1adez18 {
    grid-template-columns: 1fr;
  }
}
.cgv-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 100px 0 114px;
  background: radial-gradient(
      900px 500px at 100% 90%,
      rgba(13, 148, 136, 0.05),
      transparent 70%
    ),
    #fffdfa;
}
.cgv-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.4;
}
.cgv-orb-1.svelte-1adez18 {
  width: 340px;
  height: 340px;
  bottom: -100px;
  right: -60px;
  background: radial-gradient(
    circle,
    rgba(13, 148, 136, 0.28),
    transparent 70%
  );
}
.cgv-head.svelte-1adez18 {
  text-align: center;
  margin-bottom: 38px;
  position: relative;
  z-index: 1;
}
.cgv-kicker.svelte-1adez18 {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: #0d94880f;
  color: #0f766e;
  border: 1px dashed rgba(13, 148, 136, 0.3);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  letter-spacing: 1.4px;
}
.cgv-title.svelte-1adez18 {
  margin: 14px auto 12px;
  max-width: 820px;
  font-size: clamp(1.75rem, 3.2vw, 2.4rem);
  line-height: 1.18;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #0f766e, #e11d48);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cgv-lead.svelte-1adez18 {
  max-width: 720px;
  margin: 0 auto;
  font-size: 14.5px;
  line-height: 1.65;
  color: #64748b;
}
.cgv-grid.svelte-1adez18 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cgv-card.svelte-1adez18 {
  padding: 22px 20px 20px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--tBd);
  border-top: 3px solid var(--t1);
  box-shadow: 0 8px 22px #0f172a0a;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: svelte-1adez18-cgvIn 0.45s ease calc(var(--i, 0) * 0.06s) both;
}
@keyframes svelte-1adez18-cgvIn {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.cgv-card.svelte-1adez18:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px #0f172a14;
}
.cgv-card--rose.svelte-1adez18 {
  --t1: #e91e8c;
  --t2: #c2185b;
  --tBg: rgba(233, 30, 140, 0.07);
  --tBd: rgba(233, 30, 140, 0.22);
}
.cgv-card--coral.svelte-1adez18 {
  --t1: #f43f5e;
  --t2: #e11d48;
  --tBg: rgba(244, 63, 94, 0.07);
  --tBd: rgba(244, 63, 94, 0.22);
}
.cgv-card--gold.svelte-1adez18 {
  --t1: #d97706;
  --t2: #b45309;
  --tBg: rgba(217, 119, 6, 0.07);
  --tBd: rgba(217, 119, 6, 0.25);
}
.cgv-card--emerald.svelte-1adez18 {
  --t1: #059669;
  --t2: #047857;
  --tBg: rgba(5, 150, 105, 0.07);
  --tBd: rgba(5, 150, 105, 0.22);
}
.cgv-card--teal.svelte-1adez18 {
  --t1: #0d9488;
  --t2: #0f766e;
  --tBg: rgba(13, 148, 136, 0.07);
  --tBd: rgba(13, 148, 136, 0.22);
}
.cgv-card-head.svelte-1adez18 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.cgv-card-tag.svelte-1adez18 {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 4px;
  background: var(--tBg);
  color: var(--t2);
  font-family: Courier New, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.cgv-card-duration.svelte-1adez18 {
  font-family: Courier New, monospace;
  font-size: 10px;
  color: #94a3b8;
  letter-spacing: 0.6px;
}
.cgv-card-name.svelte-1adez18 {
  margin: 0 0 6px;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 16px;
  color: #1e293b;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.cgv-card-body.svelte-1adez18 {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: #475569;
}
@media (max-width: 900px) {
  .cgv-grid.svelte-1adez18 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .cgv-grid.svelte-1adez18 {
    grid-template-columns: 1fr;
  }
}
.cgb-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 114px 0 128px;
  background: radial-gradient(
      1200px 560px at 50% -10%,
      rgba(244, 63, 94, 0.07),
      transparent 65%
    ),
    radial-gradient(
      1000px 500px at 50% 110%,
      rgba(217, 119, 6, 0.06),
      transparent 65%
    ),
    linear-gradient(180deg, #fff7f4, #fffefb 55%, #fff4ea);
}
.cgb-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(110px);
  opacity: 0.55;
}
.cgb-orb-1.svelte-1adez18 {
  width: 440px;
  height: 440px;
  top: -170px;
  left: 50%;
  transform: translate(-50%);
  background: radial-gradient(circle, rgba(244, 63, 94, 0.3), transparent 70%);
}
.cgb-orb-2.svelte-1adez18 {
  width: 460px;
  height: 460px;
  bottom: -180px;
  left: 50%;
  transform: translate(-50%);
  background: radial-gradient(circle, rgba(217, 119, 6, 0.28), transparent 70%);
}
.cgb-card.svelte-1adez18 {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 44px 44px;
  text-align: center;
  background: #fff;
  border-radius: 4px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 28px 60px #0f172a14, 0 10px 24px #f43f5e0f;
  transform: rotate(-0.6deg);
}
.cgb-tape.svelte-1adez18 {
  position: absolute;
  top: -14px;
  width: 70px;
  height: 26px;
  background: linear-gradient(135deg, #f43f5e59, #fbbf2459);
  border-left: 2px dashed rgba(194, 24, 91, 0.25);
  border-right: 2px dashed rgba(194, 24, 91, 0.25);
}
.cgb-tape-l.svelte-1adez18 {
  left: 30px;
  transform: rotate(-4deg);
}
.cgb-tape-r.svelte-1adez18 {
  right: 30px;
  transform: rotate(5deg);
}
.cgb-kicker.svelte-1adez18 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fffaf6;
  border: 1px solid rgba(244, 63, 94, 0.28);
  color: #e11d48;
  font-family: Courier New, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}
.cgb-kicker-pulse.svelte-1adez18 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f43f5e;
  animation: svelte-1adez18-cgbPulse 1.8s infinite;
}
@keyframes svelte-1adez18-cgbPulse {
  0%,
  to {
    box-shadow: 0 0 #f43f5e8c;
  }
  50% {
    box-shadow: 0 0 0 10px #f43f5e00;
  }
}
.cgb-title.svelte-1adez18 {
  margin: 16px auto 14px;
  max-width: 760px;
  font-size: clamp(1.9rem, 3.4vw, 2.55rem);
  line-height: 1.15;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #e11d48, #b45309);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.01em;
}
.cgb-lead.svelte-1adez18 {
  max-width: 720px;
  margin: 0 auto 10px;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 15.5px;
  line-height: 1.7;
  color: #475569;
}
.cgb-body.svelte-1adez18 {
  max-width: 720px;
  margin: 0 auto 22px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #475569;
}
.cgb-chips.svelte-1adez18 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 26px;
}
.cgb-chip.svelte-1adez18 {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 4px;
  background: #f43f5e12;
  color: #e11d48;
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 12.5px;
  border: 1px solid rgba(244, 63, 94, 0.25);
  transform: rotate(calc((var(--i, 0) - 1.5) * 1.5deg));
}
.cgb-actions.svelte-1adez18 {
  margin-bottom: 16px;
}
.cgb-btn.svelte-1adez18 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 14px 32px #25d3664d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cgb-btn.svelte-1adez18:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px #25d36661;
}
.cgb-btn-shine.svelte-1adez18 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 60%
  );
  transform: translate(-100%);
  transition: transform 0.9s ease;
}
.cgb-btn.svelte-1adez18:hover .cgb-btn-shine:where(.svelte-1adez18) {
  transform: translate(100%);
}
.cgb-note.svelte-1adez18 {
  display: block;
  margin-top: 10px;
  font-size: 11.5px;
  color: #64748b;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 600;
}
.cgb-signature.svelte-1adez18 {
  margin: 14px 0 0;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: #e11d48;
}
@media (max-width: 560px) {
  .cgb-section.svelte-1adez18 {
    padding: 72px 0 88px;
  }
  .cgb-card.svelte-1adez18 {
    padding: 44px 22px 34px;
  }
  .cgb-tape.svelte-1adez18 {
    width: 56px;
    height: 22px;
  }
}
.hwh-section.svelte-1adez18,
.hwt-section.svelte-1adez18,
.hwd-section.svelte-1adez18,
.hwb-section.svelte-1adez18 {
  border-bottom: 1px solid rgba(233, 30, 140, 0.12);
}
.hwh-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 108px 0 120px;
  background: radial-gradient(
      1000px 520px at 10% 10%,
      rgba(233, 30, 140, 0.05),
      transparent 70%
    ),
    radial-gradient(
      900px 480px at 100% 90%,
      rgba(5, 150, 105, 0.04),
      transparent 70%
    ),
    linear-gradient(180deg, #fff6f3, #fffefb 55%, #f4fbf5);
}
.hwh-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.4;
}
.hwh-orb-1.svelte-1adez18 {
  width: 360px;
  height: 360px;
  top: -100px;
  right: -80px;
  background: radial-gradient(circle, rgba(233, 30, 140, 0.3), transparent 70%);
}
.hwh-orb-2.svelte-1adez18 {
  width: 360px;
  height: 360px;
  bottom: -100px;
  left: -80px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.28), transparent 70%);
}
.hwh-border.svelte-1adez18 {
  width: 100%;
  margin: 0 auto 30px;
  position: relative;
  z-index: 1;
  max-width: 620px;
  opacity: 0.95;
}
.hwh-border-svg.svelte-1adez18 {
  width: 100%;
  height: 30px;
  display: block;
}
.hwh-head.svelte-1adez18 {
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.hwh-kicker.svelte-1adez18 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: #c2185b;
  letter-spacing: 1.6px;
}
.hwh-kicker-thread.svelte-1adez18 {
  width: 30px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(194, 24, 91, 0.4),
    transparent
  );
}
.hwh-title.svelte-1adez18 {
  margin: 12px auto;
  max-width: 820px;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  line-height: 1.15;
  font-family: Georgia, Cormorant Garamond, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #c2185b, #047857);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hwh-lead.svelte-1adez18 {
  max-width: 760px;
  margin: 0 auto;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 15.5px;
  line-height: 1.7;
  color: #475569;
}
.hwh-intro.svelte-1adez18 {
  max-width: 820px;
  margin: 24px auto 28px;
  text-align: center;
  font-size: 14.5px;
  line-height: 1.7;
  color: #475569;
  position: relative;
  z-index: 1;
}
.hwh-grid.svelte-1adez18 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.hwh-reason.svelte-1adez18 {
  position: relative;
  padding: 26px 24px 22px 68px;
  background: linear-gradient(165deg, #fff 0%, var(--tBg) 100%);
  border: 1px solid var(--tBd);
  border-radius: 14px;
  box-shadow: 0 8px 22px #0f172a0a;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: svelte-1adez18-hwhIn 0.5s ease calc(var(--i, 0) * 0.08s) both;
}
@keyframes svelte-1adez18-hwhIn {
  0% {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hwh-reason.svelte-1adez18:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px #0f172a14;
}
.hwh-reason--rose.svelte-1adez18 {
  --t1: #e91e8c;
  --t2: #c2185b;
  --tBg: rgba(233, 30, 140, 0.06);
  --tBd: rgba(233, 30, 140, 0.22);
}
.hwh-reason--coral.svelte-1adez18 {
  --t1: #f43f5e;
  --t2: #e11d48;
  --tBg: rgba(244, 63, 94, 0.06);
  --tBd: rgba(244, 63, 94, 0.22);
}
.hwh-reason--gold.svelte-1adez18 {
  --t1: #d97706;
  --t2: #b45309;
  --tBg: rgba(217, 119, 6, 0.06);
  --tBd: rgba(217, 119, 6, 0.25);
}
.hwh-reason--emerald.svelte-1adez18 {
  --t1: #059669;
  --t2: #047857;
  --tBg: rgba(5, 150, 105, 0.06);
  --tBd: rgba(5, 150, 105, 0.22);
}
.hwh-reason-rosette.svelte-1adez18 {
  position: absolute;
  top: 24px;
  left: 20px;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--t1);
}
.hwh-reason-label.svelte-1adez18 {
  margin: 0 0 6px;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--t2);
  letter-spacing: -0.01em;
}
.hwh-reason-body.svelte-1adez18 {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.65;
  color: #475569;
}
.hwh-closing.svelte-1adez18 {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 30px auto 0;
  text-align: center;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 14.5px;
  line-height: 1.7;
  color: #c2185b;
}
@media (max-width: 820px) {
  .hwh-grid.svelte-1adez18 {
    grid-template-columns: 1fr;
  }
}
.hwt-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 104px 0 118px;
  background: radial-gradient(
      900px 480px at 100% 10%,
      rgba(217, 119, 6, 0.05),
      transparent 70%
    ),
    #fffdfa;
}
.hwt-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.4;
}
.hwt-orb-1.svelte-1adez18 {
  width: 360px;
  height: 360px;
  top: -100px;
  right: -80px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.3), transparent 70%);
}
.hwt-orb-2.svelte-1adez18 {
  width: 340px;
  height: 340px;
  bottom: -100px;
  left: -80px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.26),
    transparent 70%
  );
}
.hwt-head.svelte-1adez18 {
  text-align: center;
  margin-bottom: 42px;
  position: relative;
  z-index: 1;
}
.hwt-kicker.svelte-1adez18 {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: #c2185b0f;
  color: #c2185b;
  border: 1px dashed rgba(194, 24, 91, 0.3);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  letter-spacing: 1.4px;
}
.hwt-title.svelte-1adez18 {
  margin: 14px auto 12px;
  max-width: 820px;
  font-size: clamp(1.75rem, 3.2vw, 2.4rem);
  line-height: 1.18;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #c2185b, #b45309);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hwt-lead.svelte-1adez18 {
  max-width: 720px;
  margin: 0 auto;
  font-size: 14.5px;
  line-height: 1.65;
  color: #64748b;
}
.hwt-grid.svelte-1adez18 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.hwt-grid.svelte-1adez18 > :where(.svelte-1adez18):nth-child(5) {
  grid-column: 1 / span 2;
  max-width: calc(50% - 10px);
  margin: 0 auto;
  width: 100%;
}
.hwt-card.svelte-1adez18 {
  position: relative;
  padding: 28px 26px 24px;
  background: linear-gradient(165deg, #fff, #fffbf6);
  border-radius: 14px;
  border: 1px solid var(--tBd);
  box-shadow: 0 10px 26px #0f172a0d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: svelte-1adez18-hwtIn 0.5s ease calc(var(--i, 0) * 0.08s) both;
}
@keyframes svelte-1adez18-hwtIn {
  0% {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hwt-card.svelte-1adez18:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px #0f172a14;
}
.hwt-card--rose.svelte-1adez18 {
  --t1: #e91e8c;
  --t2: #c2185b;
  --tBd: rgba(233, 30, 140, 0.22);
}
.hwt-card--coral.svelte-1adez18 {
  --t1: #f43f5e;
  --t2: #e11d48;
  --tBd: rgba(244, 63, 94, 0.22);
}
.hwt-card--gold.svelte-1adez18 {
  --t1: #d97706;
  --t2: #b45309;
  --tBd: rgba(217, 119, 6, 0.25);
}
.hwt-card--emerald.svelte-1adez18 {
  --t1: #059669;
  --t2: #047857;
  --tBd: rgba(5, 150, 105, 0.22);
}
.hwt-card--teal.svelte-1adez18 {
  --t1: #0d9488;
  --t2: #0f766e;
  --tBd: rgba(13, 148, 136, 0.22);
}
.hwt-saree.svelte-1adez18 {
  margin: 0 0 14px;
  color: var(--t1);
  line-height: 0;
}
.hwt-saree.svelte-1adez18 svg:where(.svelte-1adez18) {
  width: 100%;
  height: 8px;
  display: block;
  opacity: 0.85;
}
.hwt-name.svelte-1adez18 {
  margin: 0 0 6px;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 19px;
  color: #1e293b;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.hwt-tagline.svelte-1adez18 {
  display: block;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  color: var(--t2);
  font-weight: 600;
  margin-bottom: 12px;
}
.hwt-body.svelte-1adez18 {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: #475569;
}
.hwt-closing.svelte-1adez18 {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 30px auto 0;
  text-align: center;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: #64748b;
}
@media (max-width: 820px) {
  .hwt-grid.svelte-1adez18 {
    grid-template-columns: 1fr;
  }
  .hwt-grid.svelte-1adez18 > :where(.svelte-1adez18):nth-child(5) {
    grid-column: auto;
    max-width: none;
  }
}
.hwd-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 90px 0 100px;
  background: radial-gradient(
      900px 480px at 0% 0%,
      rgba(194, 24, 91, 0.05),
      transparent 70%
    ),
    radial-gradient(
      800px 460px at 100% 100%,
      rgba(217, 119, 6, 0.05),
      transparent 70%
    ),
    #fffdfb;
}
.hwd-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.4;
}
.hwd-orb-1.svelte-1adez18 {
  width: 340px;
  height: 340px;
  top: -110px;
  left: -70px;
  background: radial-gradient(circle, rgba(194, 24, 91, 0.2), transparent 70%);
}
.hwd-head.svelte-1adez18 {
  text-align: center;
  margin-bottom: 34px;
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.hwd-kicker.svelte-1adez18 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 999px;
  background: #c2185b0f;
  color: #c2185b;
  border: 1px dashed rgba(194, 24, 91, 0.3);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  letter-spacing: 1.4px;
}
.hwd-kicker-dot.svelte-1adez18 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e91e8c;
  animation: svelte-1adez18-lngPulse 1.8s infinite;
}
.hwd-title.svelte-1adez18 {
  margin: 14px auto 12px;
  font-size: clamp(1.75rem, 3vw, 2.3rem);
  line-height: 1.18;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #c2185b, #b45309);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hwd-lead.svelte-1adez18 {
  margin: 0 auto;
  font-size: 14.5px;
  line-height: 1.65;
  color: #64748b;
}
.hwd-list.svelte-1adez18 {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.hwd-item.svelte-1adez18 {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--tBd);
  border-left: 3px solid var(--t1);
  box-shadow: 0 8px 20px #0f172a0a;
  animation: svelte-1adez18-lngIn 0.5s ease calc(var(--i, 0) * 0.07s) both;
}
.hwd-item--rose.svelte-1adez18 {
  --t1: #e91e8c;
  --t2: #c2185b;
  --tBd: rgba(233, 30, 140, 0.2);
  --tSoft: rgba(233, 30, 140, 0.08);
}
.hwd-item--coral.svelte-1adez18 {
  --t1: #f43f5e;
  --t2: #e11d48;
  --tBd: rgba(244, 63, 94, 0.2);
  --tSoft: rgba(244, 63, 94, 0.08);
}
.hwd-item--gold.svelte-1adez18 {
  --t1: #d97706;
  --t2: #b45309;
  --tBd: rgba(217, 119, 6, 0.22);
  --tSoft: rgba(217, 119, 6, 0.09);
}
.hwd-item--emerald.svelte-1adez18 {
  --t1: #059669;
  --t2: #047857;
  --tBd: rgba(5, 150, 105, 0.2);
  --tSoft: rgba(5, 150, 105, 0.08);
}
.hwd-item--teal.svelte-1adez18 {
  --t1: #0d9488;
  --t2: #0f766e;
  --tBd: rgba(13, 148, 136, 0.2);
  --tSoft: rgba(13, 148, 136, 0.08);
}
.hwd-tick.svelte-1adez18 {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--tSoft);
  color: var(--t1);
}
.hwd-tick.svelte-1adez18 svg:where(.svelte-1adez18) {
  width: 16px;
  height: 16px;
}
.hwd-item-label.svelte-1adez18 {
  margin: 0 0 4px;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 15.5px;
  color: var(--t2);
  letter-spacing: -0.01em;
}
.hwd-item-body.svelte-1adez18 {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #475569;
}
@media (max-width: 720px) {
  .hwd-list.svelte-1adez18 {
    grid-template-columns: 1fr;
  }
}
.hwb-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 114px 0 128px;
  background: radial-gradient(
      1200px 560px at 50% -10%,
      rgba(233, 30, 140, 0.07),
      transparent 65%
    ),
    radial-gradient(
      1000px 500px at 50% 110%,
      rgba(5, 150, 105, 0.05),
      transparent 65%
    ),
    linear-gradient(180deg, #fff6f3, #fffdfa 55%, #f0faf2);
}
.hwb-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(110px);
  opacity: 0.5;
}
.hwb-orb-1.svelte-1adez18 {
  width: 440px;
  height: 440px;
  top: -170px;
  left: 50%;
  transform: translate(-50%);
  background: radial-gradient(circle, rgba(233, 30, 140, 0.3), transparent 70%);
}
.hwb-orb-2.svelte-1adez18 {
  width: 460px;
  height: 460px;
  bottom: -180px;
  left: 50%;
  transform: translate(-50%);
  background: radial-gradient(circle, rgba(5, 150, 105, 0.28), transparent 70%);
}
.hwb-sampler.svelte-1adez18 {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  padding: 56px 42px 42px;
  text-align: center;
  background: linear-gradient(180deg, #fff, #fffaf5);
  border-radius: 4px;
  border: 2px solid rgba(194, 24, 91, 0.2);
  outline: 1px dashed rgba(194, 24, 91, 0.2);
  outline-offset: 6px;
  box-shadow: 0 28px 60px #c2185b14;
}
.hwb-sampler-corner.svelte-1adez18 {
  position: absolute;
  font-size: 20px;
  color: #c2185b;
  pointer-events: none;
}
.hwb-sampler-tl.svelte-1adez18 {
  top: 12px;
  left: 12px;
}
.hwb-sampler-tr.svelte-1adez18 {
  top: 12px;
  right: 12px;
}
.hwb-sampler-bl.svelte-1adez18 {
  bottom: 12px;
  left: 12px;
}
.hwb-sampler-br.svelte-1adez18 {
  bottom: 12px;
  right: 12px;
}
.hwb-kicker.svelte-1adez18 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(194, 24, 91, 0.28);
  color: #c2185b;
  font-family: Courier New, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}
.hwb-kicker-pulse.svelte-1adez18 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e91e8c;
  animation: svelte-1adez18-hwbPulse 1.8s infinite;
}
@keyframes svelte-1adez18-hwbPulse {
  0%,
  to {
    box-shadow: 0 0 #e91e8c8c;
  }
  50% {
    box-shadow: 0 0 0 10px #e91e8c00;
  }
}
.hwb-title.svelte-1adez18 {
  margin: 16px auto 14px;
  max-width: 760px;
  font-size: clamp(1.9rem, 3.4vw, 2.55rem);
  line-height: 1.15;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #c2185b, #047857);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hwb-lead.svelte-1adez18 {
  max-width: 720px;
  margin: 0 auto 10px;
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
  color: #c2185b;
}
.hwb-body.svelte-1adez18 {
  max-width: 720px;
  margin: 0 auto 22px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #475569;
}
.hwb-chips.svelte-1adez18 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 26px;
}
.hwb-chip.svelte-1adez18 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background: #c2185b0d;
  color: #c2185b;
  border: 1px solid rgba(194, 24, 91, 0.22);
  font-size: 12px;
  font-weight: 600;
}
.hwb-chip.svelte-1adez18 svg:where(.svelte-1adez18) {
  color: #059669;
}
.hwb-actions.svelte-1adez18 {
  margin-bottom: 16px;
}
.hwb-btn.svelte-1adez18 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 14px 32px #25d3664d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hwb-btn.svelte-1adez18:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px #25d36661;
}
.hwb-btn-shine.svelte-1adez18 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 60%
  );
  transform: translate(-100%);
  transition: transform 0.9s ease;
}
.hwb-btn.svelte-1adez18:hover .hwb-btn-shine:where(.svelte-1adez18) {
  transform: translate(100%);
}
.hwb-note.svelte-1adez18 {
  display: block;
  margin-top: 10px;
  font-size: 11.5px;
  color: #64748b;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 600;
}
.hwb-signature.svelte-1adez18 {
  margin: 14px 0 0;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: #c2185b;
}
@media (max-width: 560px) {
  .hwb-section.svelte-1adez18 {
    padding: 72px 0 88px;
  }
  .hwb-sampler.svelte-1adez18 {
    padding: 44px 22px 32px;
  }
  .hwb-sampler-corner.svelte-1adez18 {
    font-size: 16px;
  }
}
.ahw-section.svelte-1adez18,
.aht-section.svelte-1adez18,
.ahe-section.svelte-1adez18,
.ahb-section.svelte-1adez18 {
  border-bottom: 1px solid rgba(233, 30, 140, 0.12);
}
.ahw-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 108px 0 120px;
  background: radial-gradient(
      1100px 540px at 10% 10%,
      rgba(14, 165, 233, 0.05),
      transparent 70%
    ),
    radial-gradient(
      900px 480px at 100% 90%,
      rgba(217, 119, 6, 0.05),
      transparent 70%
    ),
    linear-gradient(180deg, #fcfdff, #fffefb 55%, #fff8ed);
}
.ahw-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.42;
}
.ahw-orb-1.svelte-1adez18 {
  width: 380px;
  height: 380px;
  top: -110px;
  right: -80px;
  background: radial-gradient(
    circle,
    rgba(14, 165, 233, 0.32),
    transparent 70%
  );
}
.ahw-orb-2.svelte-1adez18 {
  width: 360px;
  height: 360px;
  bottom: -110px;
  left: -80px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.28), transparent 70%);
}
.ahw-wings.svelte-1adez18 {
  max-width: 320px;
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
}
.ahw-wings.svelte-1adez18 svg:where(.svelte-1adez18) {
  width: 100%;
  height: 40px;
  display: block;
}
.ahw-head.svelte-1adez18 {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.ahw-kicker.svelte-1adez18 {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
  color: #0369a1;
  border: 1px solid rgba(14, 165, 233, 0.28);
  font-family: Courier New, monospace;
  font-size: 11px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-weight: 700;
}
.ahw-title.svelte-1adez18 {
  margin: 14px auto 12px;
  max-width: 820px;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  line-height: 1.18;
  font-family: Georgia, Cormorant Garamond, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #0369a1, #b45309);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ahw-lead.svelte-1adez18 {
  margin: 0 auto 12px;
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
  font-family: Georgia, serif;
  font-style: italic;
}
.ahw-heading.svelte-1adez18 {
  margin: 18px auto 0;
  font-size: 14px;
  color: #0369a1;
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 600;
}
.ahw-traits.svelte-1adez18 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ahw-trait.svelte-1adez18 {
  padding: 24px 20px 20px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--tBd);
  border-top: 3px solid var(--t1);
  box-shadow: 0 10px 26px #0f172a0d;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: svelte-1adez18-ahwIn 0.5s ease calc(var(--i, 0) * 0.08s) both;
}
@keyframes svelte-1adez18-ahwIn {
  0% {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.ahw-trait.svelte-1adez18:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px #0f172a14;
}
.ahw-trait--rose.svelte-1adez18 {
  --t1: #e91e8c;
  --t2: #c2185b;
  --tBg: rgba(233, 30, 140, 0.08);
  --tBd: rgba(233, 30, 140, 0.22);
}
.ahw-trait--gold.svelte-1adez18 {
  --t1: #d97706;
  --t2: #b45309;
  --tBg: rgba(217, 119, 6, 0.08);
  --tBd: rgba(217, 119, 6, 0.25);
}
.ahw-trait--teal.svelte-1adez18 {
  --t1: #0d9488;
  --t2: #0f766e;
  --tBg: rgba(13, 148, 136, 0.08);
  --tBd: rgba(13, 148, 136, 0.22);
}
.ahw-trait--emerald.svelte-1adez18 {
  --t1: #059669;
  --t2: #047857;
  --tBg: rgba(5, 150, 105, 0.08);
  --tBd: rgba(5, 150, 105, 0.22);
}
.ahw-trait-seat.svelte-1adez18 {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--t1), var(--t2));
  color: #fff;
  font-family: Courier New, monospace;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
  box-shadow: 0 4px 12px #0000001a;
}
.ahw-trait-label.svelte-1adez18 {
  margin: 0 0 6px;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--t2);
  letter-spacing: -0.01em;
}
.ahw-trait-body.svelte-1adez18 {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.6;
  color: #475569;
}
.ahw-closing.svelte-1adez18 {
  max-width: 780px;
  margin: 32px auto 0;
  text-align: center;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 14.5px;
  line-height: 1.7;
  color: #0369a1;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .ahw-traits.svelte-1adez18 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .ahw-traits.svelte-1adez18 {
    grid-template-columns: 1fr;
  }
  .ahw-section.svelte-1adez18 {
    padding: 72px 0 88px;
  }
}
.aht-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 100px 0 114px;
  background: radial-gradient(
      1000px 500px at 100% 10%,
      rgba(244, 63, 94, 0.05),
      transparent 70%
    ),
    #fffdfa;
}
.aht-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.4;
}
.aht-orb-1.svelte-1adez18 {
  width: 360px;
  height: 360px;
  top: -100px;
  right: -80px;
  background: radial-gradient(circle, rgba(244, 63, 94, 0.3), transparent 70%);
}
.aht-head.svelte-1adez18 {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.aht-kicker.svelte-1adez18 {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: #0ea5e912;
  color: #0369a1;
  border: 1px dashed rgba(14, 165, 233, 0.3);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  letter-spacing: 1.4px;
}
.aht-title.svelte-1adez18 {
  margin: 14px auto 12px;
  max-width: 800px;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.18;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #0369a1, #c2185b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.aht-lead.svelte-1adez18 {
  max-width: 720px;
  margin: 0 auto;
  font-size: 14.5px;
  line-height: 1.65;
  color: #64748b;
}
.aht-grid.svelte-1adez18 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.aht-card.svelte-1adez18 {
  position: relative;
  padding: 22px 22px 20px;
  background: linear-gradient(165deg, #fff, #fffbf6);
  border-radius: 14px;
  border: 1px solid var(--tBd);
  box-shadow: 0 10px 26px #0f172a0d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.aht-card.svelte-1adez18:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px #0f172a14;
}
.aht-card--rose.svelte-1adez18 {
  --t1: #e91e8c;
  --t2: #c2185b;
  --tBg: rgba(233, 30, 140, 0.08);
  --tBd: rgba(233, 30, 140, 0.22);
}
.aht-card--gold.svelte-1adez18 {
  --t1: #d97706;
  --t2: #b45309;
  --tBg: rgba(217, 119, 6, 0.08);
  --tBd: rgba(217, 119, 6, 0.25);
}
.aht-card--teal.svelte-1adez18 {
  --t1: #0d9488;
  --t2: #0f766e;
  --tBg: rgba(13, 148, 136, 0.08);
  --tBd: rgba(13, 148, 136, 0.22);
}
.aht-card--coral.svelte-1adez18 {
  --t1: #f43f5e;
  --t2: #e11d48;
  --tBg: rgba(244, 63, 94, 0.08);
  --tBd: rgba(244, 63, 94, 0.22);
}
.aht-card-head.svelte-1adez18 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.aht-card-badge.svelte-1adez18 {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--t1), var(--t2));
  color: #fff;
  font-family: Courier New, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
}
.aht-card-mini-wing.svelte-1adez18 {
  color: var(--t1);
  opacity: 0.75;
}
.aht-card-name.svelte-1adez18 {
  margin: 0 0 6px;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 17px;
  color: #1e293b;
  line-height: 1.3;
}
.aht-card-body.svelte-1adez18 {
  margin: 0 0 14px;
  font-size: 13.5px;
  line-height: 1.65;
  color: #475569;
}
.aht-card-foot.svelte-1adez18 {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-top: 12px;
  border-top: 1px dashed var(--tBd);
  color: var(--t2);
  font-family: Courier New, monospace;
  font-size: 11px;
  letter-spacing: 0.8px;
  font-weight: 600;
}
.aht-closing.svelte-1adez18 {
  max-width: 720px;
  margin: 30px auto 0;
  text-align: center;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: #64748b;
}
@media (max-width: 820px) {
  .aht-grid.svelte-1adez18 {
    grid-template-columns: 1fr;
  }
}
.ahe-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 100px 0 114px;
  background: radial-gradient(
      900px 480px at 0% 10%,
      rgba(217, 119, 6, 0.05),
      transparent 70%
    ),
    linear-gradient(180deg, #fff, #fffcf4);
}
.ahe-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.4;
}
.ahe-orb-1.svelte-1adez18 {
  width: 340px;
  height: 340px;
  top: -100px;
  left: -60px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.28), transparent 70%);
}
.ahe-head.svelte-1adez18 {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.ahe-kicker.svelte-1adez18 {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: #d977060f;
  color: #b45309;
  border: 1px dashed rgba(217, 119, 6, 0.3);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  letter-spacing: 1.4px;
}
.ahe-title.svelte-1adez18 {
  margin: 14px auto 12px;
  max-width: 820px;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.18;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #b45309, #c2185b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ahe-lead.svelte-1adez18 {
  max-width: 760px;
  margin: 0 auto;
  font-size: 14.5px;
  line-height: 1.65;
  color: #64748b;
}
.ahe-timeline.svelte-1adez18 {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  padding-left: 0;
}
.ahe-timeline-track.svelte-1adez18 {
  position: absolute;
  left: 11px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(
    180deg,
    #e91e8c66,
    #d9770666,
    #0d948866,
    #05966966
  );
}
.ahe-beat.svelte-1adez18 {
  position: relative;
  padding: 0 0 30px 44px;
  animation: svelte-1adez18-aheIn 0.5s ease calc(var(--i, 0) * 0.1s) both;
}
@keyframes svelte-1adez18-aheIn {
  0% {
    opacity: 0;
    transform: translate(-8px);
  }
  to {
    opacity: 1;
    transform: translate(0);
  }
}
.ahe-beat.svelte-1adez18:last-child {
  padding-bottom: 0;
}
.ahe-beat--rose.svelte-1adez18 {
  --t1: #e91e8c;
  --t2: #c2185b;
  --tBg: rgba(233, 30, 140, 0.06);
}
.ahe-beat--gold.svelte-1adez18 {
  --t1: #d97706;
  --t2: #b45309;
  --tBg: rgba(217, 119, 6, 0.06);
}
.ahe-beat--teal.svelte-1adez18 {
  --t1: #0d9488;
  --t2: #0f766e;
  --tBg: rgba(13, 148, 136, 0.06);
}
.ahe-beat--emerald.svelte-1adez18 {
  --t1: #059669;
  --t2: #047857;
  --tBg: rgba(5, 150, 105, 0.06);
}
.ahe-beat-stop.svelte-1adez18 {
  position: absolute;
  left: 0;
  top: 2px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--t1);
  display: grid;
  place-items: center;
  box-shadow: 0 3px 10px #0f172a1a;
}
.ahe-beat-stop-dot.svelte-1adez18 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--t1);
  animation: svelte-1adez18-aheDot 2s infinite;
}
@keyframes svelte-1adez18-aheDot {
  0%,
  to {
    box-shadow: 0 0 #0000;
  }
  50% {
    box-shadow: 0 0 0 5px #0f172a00;
  }
}
.ahe-beat-body.svelte-1adez18 {
  padding: 14px 18px;
  border-radius: 10px;
  background: var(--tBg);
  border: 1px solid rgba(15, 23, 42, 0.05);
}
.ahe-beat-code.svelte-1adez18 {
  display: block;
  font-family: Courier New, monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.6px;
  color: var(--t2);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.ahe-beat-heading.svelte-1adez18 {
  margin: 0 0 6px;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 17px;
  color: #1e293b;
  letter-spacing: -0.01em;
}
.ahe-beat-text.svelte-1adez18 {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.65;
  color: #475569;
}
@media (max-width: 560px) {
  .ahe-timeline.svelte-1adez18 {
    padding-left: 0;
  }
  .ahe-timeline-track.svelte-1adez18 {
    left: 8px;
    top: 14px;
    bottom: 14px;
  }
  .ahe-beat.svelte-1adez18 {
    padding-left: 30px;
    padding-bottom: 18px;
  }
  .ahe-beat-stop.svelte-1adez18 {
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
  }
  .ahe-beat-stop-dot.svelte-1adez18 {
    width: 6px;
    height: 6px;
  }
  .ahe-beat-body.svelte-1adez18 {
    padding: 13px 15px;
  }
}
.ahb-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 112px 0 124px;
  background: radial-gradient(
      1200px 560px at 50% -10%,
      rgba(14, 165, 233, 0.07),
      transparent 65%
    ),
    radial-gradient(
      1000px 500px at 50% 110%,
      rgba(217, 119, 6, 0.06),
      transparent 65%
    ),
    linear-gradient(180deg, #f6fbff, #fffdf8 55%, #fff5e4);
}
.ahb-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(110px);
  opacity: 0.5;
}
.ahb-orb-1.svelte-1adez18 {
  width: 440px;
  height: 440px;
  top: -170px;
  left: 50%;
  transform: translate(-50%);
  background: radial-gradient(
    circle,
    rgba(14, 165, 233, 0.32),
    transparent 70%
  );
}
.ahb-orb-2.svelte-1adez18 {
  width: 460px;
  height: 460px;
  bottom: -180px;
  left: 50%;
  transform: translate(-50%);
  background: radial-gradient(circle, rgba(217, 119, 6, 0.28), transparent 70%);
}
.ahb-card.svelte-1adez18 {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 54px 42px 42px;
  text-align: center;
  background: linear-gradient(180deg, #fff, #fcfdff);
  border-radius: 24px;
  border: 1px solid rgba(14, 165, 233, 0.22);
  box-shadow: 0 30px 68px #0ea5e914;
}
.ahb-card-border.svelte-1adez18 {
  position: absolute;
  top: 12px;
  right: 12px;
  bottom: 12px;
  left: 12px;
  border-radius: 16px;
  border: 1px dashed rgba(14, 165, 233, 0.22);
  pointer-events: none;
}
.ahb-wing.svelte-1adez18 {
  max-width: 220px;
  margin: 0 auto 16px;
}
.ahb-wing.svelte-1adez18 svg:where(.svelte-1adez18) {
  width: 100%;
  height: 40px;
  display: block;
}
.ahb-kicker.svelte-1adez18 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(14, 165, 233, 0.28);
  color: #0369a1;
  font-family: Courier New, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}
.ahb-kicker-pulse.svelte-1adez18 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0ea5e9;
  animation: svelte-1adez18-ahbPulse 1.8s infinite;
}
@keyframes svelte-1adez18-ahbPulse {
  0%,
  to {
    box-shadow: 0 0 #0ea5e98c;
  }
  50% {
    box-shadow: 0 0 0 10px #0ea5e900;
  }
}
.ahb-title.svelte-1adez18 {
  margin: 16px auto 14px;
  max-width: 760px;
  font-size: clamp(1.85rem, 3.4vw, 2.55rem);
  line-height: 1.15;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #0369a1, #b45309);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ahb-lead.svelte-1adez18 {
  max-width: 720px;
  margin: 0 auto 10px;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}
.ahb-body.svelte-1adez18 {
  max-width: 720px;
  margin: 0 auto 22px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #475569;
}
.ahb-chips.svelte-1adez18 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 26px;
}
.ahb-chip.svelte-1adez18 {
  padding: 5px 13px;
  border-radius: 4px;
  background: #0ea5e914;
  color: #0369a1;
  border: 1px solid rgba(14, 165, 233, 0.22);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  font-weight: 600;
}
.ahb-actions.svelte-1adez18 {
  margin-bottom: 14px;
}
.ahb-btn.svelte-1adez18 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 14px 32px #25d3664d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ahb-btn.svelte-1adez18:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px #25d36661;
}
.ahb-btn-shine.svelte-1adez18 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 60%
  );
  transform: translate(-100%);
  transition: transform 0.9s ease;
}
.ahb-btn.svelte-1adez18:hover .ahb-btn-shine:where(.svelte-1adez18) {
  transform: translate(100%);
}
.ahb-note.svelte-1adez18 {
  display: block;
  margin-top: 10px;
  font-size: 11.5px;
  color: #64748b;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 600;
}
.ahb-signature.svelte-1adez18 {
  margin: 12px 0 0;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: #0369a1;
}
.mws-section.svelte-1adez18,
.mwt-section.svelte-1adez18,
.mwd-section.svelte-1adez18,
.mwb-section.svelte-1adez18 {
  border-bottom: 1px solid rgba(233, 30, 140, 0.12);
}
.mws-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 108px 0 120px;
  background: radial-gradient(
      1000px 500px at 10% 10%,
      rgba(217, 119, 6, 0.06),
      transparent 70%
    ),
    linear-gradient(180deg, #fff8f2, #fffdf7 55%, #fff2e8);
}
.mws-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.4;
}
.mws-orb-1.svelte-1adez18 {
  width: 380px;
  height: 380px;
  top: -110px;
  right: -80px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.35), transparent 70%);
}
.mws-orb-2.svelte-1adez18 {
  width: 360px;
  height: 360px;
  bottom: -110px;
  left: -80px;
  background: radial-gradient(circle, rgba(194, 24, 91, 0.3), transparent 70%);
}
.mws-warli.svelte-1adez18 {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto 28px;
  opacity: 0.9;
}
.mws-warli.svelte-1adez18 svg:where(.svelte-1adez18) {
  width: 100%;
  height: 50px;
  display: block;
}
.mws-head.svelte-1adez18 {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.mws-kicker.svelte-1adez18 {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 4px;
  background: #fff6ea;
  color: #b45309;
  border: 1px dashed rgba(217, 119, 6, 0.35);
  font-family: Georgia, serif;
  font-size: 12.5px;
  letter-spacing: 1.4px;
  font-weight: 600;
}
.mws-title.svelte-1adez18 {
  margin: 14px auto 12px;
  max-width: 820px;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  line-height: 1.18;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #7c2d12, #b45309, #c2185b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.mws-lead.svelte-1adez18 {
  margin: 0 auto 14px;
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
  font-family: Georgia, serif;
  font-style: italic;
}
.mws-intro.svelte-1adez18 {
  margin: 14px auto 0;
  font-size: 14px;
  color: #b45309;
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 600;
}
.mws-grid.svelte-1adez18 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.mws-trait.svelte-1adez18 {
  padding: 22px 16px 18px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--tBd);
  text-align: center;
  box-shadow: 0 8px 22px #0f172a0d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: svelte-1adez18-mwsIn 0.5s ease calc(var(--i, 0) * 0.08s) both;
}
@keyframes svelte-1adez18-mwsIn {
  0% {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.mws-trait.svelte-1adez18:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px #0f172a14;
}
.mws-trait--rose.svelte-1adez18 {
  --t1: #e91e8c;
  --t2: #c2185b;
  --tBg: rgba(233, 30, 140, 0.08);
  --tBd: rgba(233, 30, 140, 0.22);
}
.mws-trait--coral.svelte-1adez18 {
  --t1: #f43f5e;
  --t2: #e11d48;
  --tBg: rgba(244, 63, 94, 0.08);
  --tBd: rgba(244, 63, 94, 0.22);
}
.mws-trait--gold.svelte-1adez18 {
  --t1: #d97706;
  --t2: #b45309;
  --tBg: rgba(217, 119, 6, 0.08);
  --tBd: rgba(217, 119, 6, 0.25);
}
.mws-trait--emerald.svelte-1adez18 {
  --t1: #059669;
  --t2: #047857;
  --tBg: rgba(5, 150, 105, 0.08);
  --tBd: rgba(5, 150, 105, 0.22);
}
.mws-trait--teal.svelte-1adez18 {
  --t1: #0d9488;
  --t2: #0f766e;
  --tBg: rgba(13, 148, 136, 0.08);
  --tBd: rgba(13, 148, 136, 0.22);
}
.mws-trait-icon.svelte-1adez18 {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--t1);
  background: var(--tBg);
  border-radius: 50%;
  margin-bottom: 10px;
  border: 1px dashed var(--t1);
}
.mws-trait-icon.svelte-1adez18 svg:where(.svelte-1adez18) {
  width: 26px;
  height: 26px;
}
.mws-trait-label.svelte-1adez18 {
  margin: 0 0 6px;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 14.5px;
  color: var(--t2);
  letter-spacing: -0.01em;
}
.mws-trait-body.svelte-1adez18 {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: #475569;
}
.mws-closing.svelte-1adez18 {
  max-width: 780px;
  margin: 30px auto 0;
  text-align: center;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 14.5px;
  color: #b45309;
  position: relative;
  z-index: 1;
}
@media (max-width: 960px) {
  .mws-grid.svelte-1adez18 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 560px) {
  .mws-grid.svelte-1adez18 {
    grid-template-columns: repeat(2, 1fr);
  }
  .mws-section.svelte-1adez18 {
    padding: 72px 0 88px;
  }
}
.mwt-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 100px 0 114px;
  background: radial-gradient(
      900px 480px at 100% 10%,
      rgba(244, 63, 94, 0.05),
      transparent 70%
    ),
    #fffbf5;
}
.mwt-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.4;
}
.mwt-orb-1.svelte-1adez18 {
  width: 360px;
  height: 360px;
  top: -100px;
  right: -80px;
  background: radial-gradient(circle, rgba(244, 63, 94, 0.28), transparent 70%);
}
.mwt-head.svelte-1adez18 {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.mwt-kicker.svelte-1adez18 {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: #e91e8c0f;
  color: #c2185b;
  border: 1px dashed rgba(233, 30, 140, 0.3);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  letter-spacing: 1.4px;
}
.mwt-title.svelte-1adez18 {
  margin: 14px auto 12px;
  max-width: 780px;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.18;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #7c2d12, #c2185b, #b45309);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.mwt-lead.svelte-1adez18 {
  max-width: 720px;
  margin: 0 auto;
  font-size: 14.5px;
  line-height: 1.65;
  color: #64748b;
}
.mwt-grid.svelte-1adez18 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.mwt-card.svelte-1adez18 {
  position: relative;
  padding: 26px 26px 22px;
  background: linear-gradient(165deg, #fff, #fff6eb);
  border-radius: 12px;
  border: 1px solid var(--tBd);
  border-left: 4px solid var(--t1);
  box-shadow: 0 10px 26px #0f172a0d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.mwt-card.svelte-1adez18:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px #0f172a14;
}
.mwt-card--rose.svelte-1adez18 {
  --t1: #e91e8c;
  --t2: #c2185b;
  --tBg: rgba(233, 30, 140, 0.08);
  --tBd: rgba(233, 30, 140, 0.22);
}
.mwt-card--gold.svelte-1adez18 {
  --t1: #d97706;
  --t2: #b45309;
  --tBg: rgba(217, 119, 6, 0.08);
  --tBd: rgba(217, 119, 6, 0.25);
}
.mwt-card--emerald.svelte-1adez18 {
  --t1: #059669;
  --t2: #047857;
  --tBg: rgba(5, 150, 105, 0.08);
  --tBd: rgba(5, 150, 105, 0.22);
}
.mwt-card--coral.svelte-1adez18 {
  --t1: #f43f5e;
  --t2: #e11d48;
  --tBg: rgba(244, 63, 94, 0.08);
  --tBd: rgba(244, 63, 94, 0.22);
}
.mwt-age-badge.svelte-1adez18 {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  background: var(--tBg);
  color: var(--t2);
  font-family: Courier New, monospace;
  font-size: 10.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}
.mwt-name.svelte-1adez18 {
  margin: 0 0 8px;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 19px;
  color: #1e293b;
  letter-spacing: -0.01em;
}
.mwt-body.svelte-1adez18 {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: #475569;
}
.mwt-accent.svelte-1adez18 {
  position: absolute;
  top: 16px;
  right: 20px;
  color: var(--t1);
  opacity: 0.35;
}
.mwt-closing.svelte-1adez18 {
  max-width: 720px;
  margin: 30px auto 0;
  text-align: center;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: #64748b;
}
@media (max-width: 820px) {
  .mwt-grid.svelte-1adez18 {
    grid-template-columns: 1fr;
  }
}
.mwd-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 100px 0 114px;
  background: radial-gradient(
      900px 480px at 0% 90%,
      rgba(217, 119, 6, 0.05),
      transparent 70%
    ),
    #fffdf8;
}
.mwd-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.4;
}
.mwd-orb-1.svelte-1adez18 {
  width: 340px;
  height: 340px;
  bottom: -100px;
  left: -60px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.28), transparent 70%);
}
.mwd-head.svelte-1adez18 {
  text-align: center;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.mwd-kicker.svelte-1adez18 {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: #d977060f;
  color: #b45309;
  border: 1px dashed rgba(217, 119, 6, 0.3);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  letter-spacing: 1.4px;
}
.mwd-title.svelte-1adez18 {
  margin: 14px auto 12px;
  max-width: 780px;
  font-size: clamp(1.75rem, 3vw, 2.3rem);
  line-height: 1.18;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #b45309, #c2185b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.mwd-lead.svelte-1adez18 {
  max-width: 780px;
  margin: 0 auto 12px;
  font-size: 14.5px;
  line-height: 1.65;
  color: #475569;
}
.mwd-heading.svelte-1adez18 {
  margin: 10px auto 0;
  color: #b45309;
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 14px;
}
.mwd-list.svelte-1adez18 {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.mwd-point.svelte-1adez18 {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 22px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff, #fffbf3);
  border: 1px solid rgba(194, 24, 91, 0.15);
  border-left: 3px solid #c2185b;
  animation: svelte-1adez18-mwdIn 0.5s ease calc(var(--i, 0) * 0.06s) both;
}
@keyframes svelte-1adez18-mwdIn {
  0% {
    opacity: 0;
    transform: translate(-6px);
  }
  to {
    opacity: 1;
    transform: translate(0);
  }
}
.mwd-point.svelte-1adez18:hover {
  box-shadow: 0 10px 24px #c2185b1a;
}
.mwd-point-num.svelte-1adez18 {
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 26px;
  background: linear-gradient(135deg, #c2185b, #b45309);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  text-align: center;
}
.mwd-point-label.svelte-1adez18 {
  margin: 0 0 4px;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 16px;
  color: #1e293b;
  letter-spacing: -0.01em;
}
.mwd-point-text.svelte-1adez18 {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: #475569;
}
.mwb-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 112px 0 124px;
  background: radial-gradient(
      1200px 560px at 50% -10%,
      rgba(194, 24, 91, 0.08),
      transparent 65%
    ),
    radial-gradient(
      1000px 500px at 50% 110%,
      rgba(217, 119, 6, 0.06),
      transparent 65%
    ),
    linear-gradient(180deg, #fff5ec, #fffdf8 55%, #fff0e4);
}
.mwb-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(110px);
  opacity: 0.5;
}
.mwb-orb-1.svelte-1adez18 {
  width: 440px;
  height: 440px;
  top: -170px;
  left: 50%;
  transform: translate(-50%);
  background: radial-gradient(circle, rgba(194, 24, 91, 0.32), transparent 70%);
}
.mwb-orb-2.svelte-1adez18 {
  width: 460px;
  height: 460px;
  bottom: -180px;
  left: 50%;
  transform: translate(-50%);
  background: radial-gradient(circle, rgba(217, 119, 6, 0.28), transparent 70%);
}
.mwb-card.svelte-1adez18 {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 58px 44px 46px;
  text-align: center;
  background: linear-gradient(180deg, #fff, #fff8ed);
  border-radius: 18px;
  border: 1px solid rgba(194, 24, 91, 0.22);
  box-shadow: 0 30px 68px #c2185b14;
}
.mwb-border-top.svelte-1adez18,
.mwb-border-bot.svelte-1adez18 {
  position: absolute;
  left: 0;
  right: 0;
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    #c2185b 0 14px,
    transparent 14px 22px,
    #b45309 22px 36px,
    transparent 36px 44px
  );
  opacity: 0.6;
}
.mwb-border-top.svelte-1adez18 {
  top: 0;
  border-radius: 18px 18px 0 0;
}
.mwb-border-bot.svelte-1adez18 {
  bottom: 0;
  border-radius: 0 0 18px 18px;
}
.mwb-kicker.svelte-1adez18 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(194, 24, 91, 0.28);
  color: #c2185b;
  font-family: Courier New, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}
.mwb-kicker-pulse.svelte-1adez18 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e91e8c;
  animation: svelte-1adez18-mwbPulse 1.8s infinite;
}
@keyframes svelte-1adez18-mwbPulse {
  0%,
  to {
    box-shadow: 0 0 #e91e8c8c;
  }
  50% {
    box-shadow: 0 0 0 10px #e91e8c00;
  }
}
.mwb-title.svelte-1adez18 {
  margin: 16px auto 14px;
  max-width: 760px;
  font-size: clamp(1.85rem, 3.4vw, 2.5rem);
  line-height: 1.15;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #c2185b, #b45309);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.mwb-lead.svelte-1adez18 {
  max-width: 720px;
  margin: 0 auto 10px;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}
.mwb-body.svelte-1adez18 {
  max-width: 720px;
  margin: 0 auto 22px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #475569;
}
.mwb-chips.svelte-1adez18 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 26px;
}
.mwb-chip.svelte-1adez18 {
  padding: 5px 13px;
  border-radius: 4px;
  background: #c2185b12;
  color: #c2185b;
  border: 1px solid rgba(194, 24, 91, 0.25);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  font-weight: 600;
}
.mwb-actions.svelte-1adez18 {
  margin-bottom: 14px;
}
.mwb-btn.svelte-1adez18 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 14px 32px #25d3664d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mwb-btn.svelte-1adez18:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px #25d36661;
}
.mwb-btn-shine.svelte-1adez18 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 60%
  );
  transform: translate(-100%);
  transition: transform 0.9s ease;
}
.mwb-btn.svelte-1adez18:hover .mwb-btn-shine:where(.svelte-1adez18) {
  transform: translate(100%);
}
.mwb-note.svelte-1adez18 {
  display: block;
  margin-top: 10px;
  font-size: 11.5px;
  color: #64748b;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 600;
}
.mwb-signature.svelte-1adez18 {
  margin: 12px 0 0;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: #c2185b;
}
.ruw-section.svelte-1adez18,
.rub-section.svelte-1adez18 {
  border-bottom: 1px solid rgba(233, 30, 140, 0.12);
}
.ruw-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 110px 0 124px;
  background: radial-gradient(
      1100px 540px at 50% -10%,
      rgba(14, 165, 233, 0.05),
      transparent 65%
    ),
    radial-gradient(
      1000px 500px at 50% 110%,
      rgba(217, 119, 6, 0.06),
      transparent 65%
    ),
    linear-gradient(180deg, #f7fbff, #fffefb 55%, #fff7e9);
}
.ruw-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(110px);
  opacity: 0.5;
}
.ruw-orb-1.svelte-1adez18 {
  width: 420px;
  height: 420px;
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.3), transparent 70%);
}
.ruw-orb-2.svelte-1adez18 {
  width: 420px;
  height: 420px;
  bottom: -120px;
  left: -80px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.3), transparent 70%);
}
.ruw-head.svelte-1adez18 {
  text-align: center;
  margin-bottom: 46px;
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.ruw-kicker.svelte-1adez18 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: #b45309;
  letter-spacing: 1.8px;
}
.ruw-kicker-star.svelte-1adez18 {
  color: #d97706;
  font-size: 12px;
}
.ruw-title.svelte-1adez18 {
  margin: 12px auto;
  font-size: clamp(1.85rem, 3.3vw, 2.6rem);
  line-height: 1.15;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #0369a1, #b45309);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.01em;
}
.ruw-lead.svelte-1adez18 {
  max-width: 760px;
  margin: 0 auto 12px;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 15.5px;
  line-height: 1.7;
  color: #475569;
}
.ruw-intro.svelte-1adez18 {
  max-width: 620px;
  margin: 10px auto 0;
  font-size: 14px;
  color: #b45309;
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 600;
}
.ruw-grid.svelte-1adez18 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.ruw-pillar.svelte-1adez18 {
  padding: 0 8px;
  text-align: center;
  transition: transform 0.35s ease;
}
.ruw-pillar.svelte-1adez18:hover {
  transform: translateY(-4px);
}
.ruw-pillar--teal.svelte-1adez18 {
  --t1: #0d9488;
  --t2: #0f766e;
}
.ruw-pillar--rose.svelte-1adez18 {
  --t1: #e91e8c;
  --t2: #c2185b;
}
.ruw-pillar--gold.svelte-1adez18 {
  --t1: #d97706;
  --t2: #b45309;
}
.ruw-pillar--coral.svelte-1adez18 {
  --t1: #f43f5e;
  --t2: #e11d48;
}
.ruw-pillar--emerald.svelte-1adez18 {
  --t1: #059669;
  --t2: #047857;
}
.ruw-oval.svelte-1adez18 {
  width: 120px;
  height: 160px;
  margin: 0 auto 10px;
  filter: drop-shadow(0 8px 18px rgba(180, 83, 9, 0.15));
}
.ruw-oval.svelte-1adez18 svg:where(.svelte-1adez18) {
  width: 100%;
  height: 100%;
  display: block;
}
.ruw-pillar-label.svelte-1adez18 {
  margin: 6px 0;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 15.5px;
  color: var(--t2);
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, var(--t1), var(--t2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ruw-pillar-body.svelte-1adez18 {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.6;
  color: #475569;
}
.ruw-closing.svelte-1adez18 {
  max-width: 780px;
  margin: 36px auto 0;
  text-align: center;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 14.5px;
  color: #b45309;
  position: relative;
  z-index: 1;
}
@media (max-width: 1000px) {
  .ruw-grid.svelte-1adez18 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 620px) {
  .ruw-grid.svelte-1adez18 {
    grid-template-columns: repeat(2, 1fr);
  }
  .ruw-section.svelte-1adez18 {
    padding: 72px 0 92px;
  }
}
.rub-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 114px 0 128px;
  background: radial-gradient(
      1200px 580px at 50% -10%,
      rgba(251, 191, 36, 0.07),
      transparent 65%
    ),
    radial-gradient(
      1000px 500px at 50% 110%,
      rgba(14, 165, 233, 0.05),
      transparent 65%
    ),
    linear-gradient(180deg, #fff9e8, #fffdfa 55%, #f4faff);
}
.rub-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(110px);
  opacity: 0.55;
}
.rub-orb-1.svelte-1adez18 {
  width: 440px;
  height: 440px;
  top: -170px;
  left: 50%;
  transform: translate(-50%);
  background: radial-gradient(
    circle,
    rgba(251, 191, 36, 0.35),
    transparent 70%
  );
}
.rub-orb-2.svelte-1adez18 {
  width: 460px;
  height: 460px;
  bottom: -180px;
  left: 50%;
  transform: translate(-50%);
  background: radial-gradient(
    circle,
    rgba(14, 165, 233, 0.28),
    transparent 70%
  );
}
.rub-card.svelte-1adez18 {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 42px 42px;
  text-align: center;
  background: linear-gradient(180deg, #fffefa, #fffbe9);
  border-radius: 22px;
  border: 1px solid rgba(180, 83, 9, 0.25);
  box-shadow: 0 30px 68px #b453091a, 0 12px 28px #0ea5e90d;
}
.rub-medallion.svelte-1adez18 {
  width: 120px;
  height: 120px;
  margin: 0 auto 18px;
  filter: drop-shadow(0 10px 22px rgba(180, 83, 9, 0.25));
  animation: svelte-1adez18-rubFloat 5s ease-in-out infinite;
}
@keyframes svelte-1adez18-rubFloat {
  0%,
  to {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}
.rub-medallion.svelte-1adez18 svg:where(.svelte-1adez18) {
  width: 100%;
  height: 100%;
}
.rub-kicker.svelte-1adez18 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(180, 83, 9, 0.3);
  color: #78350f;
  font-family: Courier New, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}
.rub-kicker-pulse.svelte-1adez18 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b45309;
  animation: svelte-1adez18-rubPulse 1.8s infinite;
}
@keyframes svelte-1adez18-rubPulse {
  0%,
  to {
    box-shadow: 0 0 #b453098c;
  }
  50% {
    box-shadow: 0 0 0 10px #b4530900;
  }
}
.rub-title.svelte-1adez18 {
  margin: 16px auto 14px;
  max-width: 740px;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  line-height: 1.12;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #78350f, #0369a1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.01em;
}
.rub-lead.svelte-1adez18 {
  max-width: 720px;
  margin: 0 auto 10px;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}
.rub-body.svelte-1adez18 {
  max-width: 720px;
  margin: 0 auto 22px;
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 15px;
  color: #78350f;
}
.rub-chips.svelte-1adez18 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 26px;
}
.rub-chip.svelte-1adez18 {
  padding: 5px 13px;
  border-radius: 4px;
  background: #b4530914;
  color: #78350f;
  border: 1px solid rgba(180, 83, 9, 0.25);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  font-weight: 600;
}
.rub-actions.svelte-1adez18 {
  margin-bottom: 14px;
}
.rub-btn.svelte-1adez18 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 14px 32px #25d3664d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.rub-btn.svelte-1adez18:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px #25d36661;
}
.rub-btn-shine.svelte-1adez18 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 60%
  );
  transform: translate(-100%);
  transition: transform 0.9s ease;
}
.rub-btn.svelte-1adez18:hover .rub-btn-shine:where(.svelte-1adez18) {
  transform: translate(100%);
}
.rub-note.svelte-1adez18 {
  display: block;
  margin-top: 10px;
  font-size: 11.5px;
  color: #64748b;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 600;
}
.rub-signature.svelte-1adez18 {
  margin: 12px 0 0;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: #78350f;
}
.inw-section.svelte-1adez18,
.int-section.svelte-1adez18,
.inv-section.svelte-1adez18,
.inb-section.svelte-1adez18 {
  border-bottom: 1px solid rgba(233, 30, 140, 0.12);
}
.inw-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 108px 0 120px;
  background: radial-gradient(
      1000px 500px at 10% 10%,
      rgba(194, 24, 91, 0.05),
      transparent 70%
    ),
    #fffdfa;
}
.inw-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.4;
}
.inw-orb-1.svelte-1adez18 {
  width: 360px;
  height: 360px;
  top: -100px;
  right: -80px;
  background: radial-gradient(circle, rgba(194, 24, 91, 0.28), transparent 70%);
}
.inw-head.svelte-1adez18 {
  text-align: center;
  margin-bottom: 34px;
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.inw-kicker.svelte-1adez18 {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: #c2185b0f;
  color: #c2185b;
  border: 1px dashed rgba(194, 24, 91, 0.3);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  letter-spacing: 1.4px;
}
.inw-title.svelte-1adez18 {
  margin: 14px auto 12px;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  line-height: 1.18;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #c2185b, #b45309);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.inw-lead.svelte-1adez18 {
  max-width: 760px;
  margin: 0 auto 14px;
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
  font-family: Georgia, serif;
  font-style: italic;
}
.inw-heading.svelte-1adez18 {
  margin: 12px auto 0;
  color: #c2185b;
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 14px;
}
.inw-list.svelte-1adez18 {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.inw-point.svelte-1adez18 {
  padding: 22px 18px 18px;
  text-align: center;
  background: linear-gradient(180deg, #fff, #fffbf5);
  border-radius: 12px;
  border: 1px solid var(--tBd);
  border-bottom: 3px solid var(--t1);
  box-shadow: 0 8px 22px #0f172a0a;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: svelte-1adez18-inwIn 0.5s ease calc(var(--i, 0) * 0.08s) both;
}
@keyframes svelte-1adez18-inwIn {
  0% {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.inw-point.svelte-1adez18:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px #0f172a14;
}
.inw-point--rose.svelte-1adez18 {
  --t1: #e91e8c;
  --t2: #c2185b;
  --tBd: rgba(233, 30, 140, 0.22);
}
.inw-point--gold.svelte-1adez18 {
  --t1: #d97706;
  --t2: #b45309;
  --tBd: rgba(217, 119, 6, 0.25);
}
.inw-point--teal.svelte-1adez18 {
  --t1: #0d9488;
  --t2: #0f766e;
  --tBd: rgba(13, 148, 136, 0.22);
}
.inw-point--emerald.svelte-1adez18 {
  --t1: #059669;
  --t2: #047857;
  --tBd: rgba(5, 150, 105, 0.22);
}
.inw-point--coral.svelte-1adez18 {
  --t1: #f43f5e;
  --t2: #e11d48;
  --tBd: rgba(244, 63, 94, 0.22);
}
.inw-point-signature.svelte-1adez18 {
  display: block;
  margin: 0 auto 10px;
  color: var(--t1);
  opacity: 0.85;
}
.inw-point-signature.svelte-1adez18 svg:where(.svelte-1adez18) {
  width: 60px;
  height: 26px;
  display: block;
  margin: 0 auto;
}
.inw-point-label.svelte-1adez18 {
  margin: 0 0 6px;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 14.5px;
  color: var(--t2);
  letter-spacing: -0.01em;
}
.inw-point-body.svelte-1adez18 {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: #475569;
}
.inw-closing.svelte-1adez18 {
  max-width: 780px;
  margin: 32px auto 0;
  text-align: center;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 14.5px;
  color: #c2185b;
  position: relative;
  z-index: 1;
}
@media (max-width: 960px) {
  .inw-list.svelte-1adez18 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 620px) {
  .inw-list.svelte-1adez18 {
    grid-template-columns: repeat(2, 1fr);
  }
  .inw-section.svelte-1adez18 {
    padding: 72px 0 88px;
  }
}
.int-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 100px 0 114px;
  background: radial-gradient(
      900px 480px at 100% 90%,
      rgba(217, 119, 6, 0.05),
      transparent 70%
    ),
    #fffdf8;
}
.int-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.4;
}
.int-orb-1.svelte-1adez18 {
  width: 340px;
  height: 340px;
  bottom: -100px;
  right: -60px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.28), transparent 70%);
}
.int-head.svelte-1adez18 {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.int-kicker.svelte-1adez18 {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 4px;
  background: #0f172a08;
  color: #475569;
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-family: Courier New, monospace;
  font-size: 11px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  font-weight: 700;
}
.int-title.svelte-1adez18 {
  margin: 14px auto 12px;
  max-width: 800px;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.18;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #c2185b, #b45309);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.int-lead.svelte-1adez18 {
  max-width: 720px;
  margin: 12px auto 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: #64748b;
  text-align: center;
}
.int-ledger.svelte-1adez18 {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: linear-gradient(180deg, #fff, #fffcf3);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 30px #0f172a0d;
}
.int-entry.svelte-1adez18 {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  padding: 22px 26px;
  border-bottom: 1px dashed rgba(15, 23, 42, 0.1);
  transition: background 0.3s ease;
  animation: svelte-1adez18-intIn 0.5s ease calc(var(--i, 0) * 0.07s) both;
}
@keyframes svelte-1adez18-intIn {
  0% {
    opacity: 0;
    transform: translate(-8px);
  }
  to {
    opacity: 1;
    transform: translate(0);
  }
}
.int-entry.svelte-1adez18:last-child {
  border-bottom: none;
}
.int-entry.svelte-1adez18:hover {
  background: var(--tBg);
}
.int-entry--rose.svelte-1adez18 {
  --t1: #e91e8c;
  --t2: #c2185b;
  --tBg: rgba(233, 30, 140, 0.04);
}
.int-entry--gold.svelte-1adez18 {
  --t1: #d97706;
  --t2: #b45309;
  --tBg: rgba(217, 119, 6, 0.04);
}
.int-entry--coral.svelte-1adez18 {
  --t1: #f43f5e;
  --t2: #e11d48;
  --tBg: rgba(244, 63, 94, 0.04);
}
.int-entry--emerald.svelte-1adez18 {
  --t1: #059669;
  --t2: #047857;
  --tBg: rgba(5, 150, 105, 0.04);
}
.int-entry--teal.svelte-1adez18 {
  --t1: #0d9488;
  --t2: #0f766e;
  --tBg: rgba(13, 148, 136, 0.04);
}
.int-entry-marginalia.svelte-1adez18 {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-right: 1px dashed rgba(15, 23, 42, 0.12);
  padding-right: 16px;
}
.int-entry-code.svelte-1adez18 {
  font-family: Courier New, monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--t2);
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.int-entry-age.svelte-1adez18 {
  padding: 3px 9px;
  border-radius: 4px;
  background: var(--tBg);
  color: var(--t2);
  font-family: Courier New, monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  width: fit-content;
}
.int-entry-name.svelte-1adez18 {
  margin: 0 0 5px;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 17px;
  color: #1e293b;
  letter-spacing: -0.01em;
}
.int-entry-text.svelte-1adez18 {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: #475569;
}
.int-closing.svelte-1adez18 {
  max-width: 720px;
  margin: 30px auto 0;
  text-align: center;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: #64748b;
}
@media (max-width: 720px) {
  .int-entry.svelte-1adez18 {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px;
  }
  .int-entry-marginalia.svelte-1adez18 {
    flex-direction: row;
    align-items: center;
    border-right: none;
    border-bottom: 1px dashed rgba(15, 23, 42, 0.12);
    padding: 0 0 10px;
    gap: 10px;
  }
}
.inv-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 106px 0 120px;
  background: radial-gradient(
      1000px 500px at 0% 10%,
      rgba(194, 24, 91, 0.05),
      transparent 70%
    ),
    radial-gradient(
      900px 480px at 100% 90%,
      rgba(5, 150, 105, 0.04),
      transparent 70%
    ),
    linear-gradient(180deg, #fffcf8, #fff);
}
.inv-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.4;
}
.inv-orb-1.svelte-1adez18 {
  width: 360px;
  height: 360px;
  top: -110px;
  left: -80px;
  background: radial-gradient(circle, rgba(194, 24, 91, 0.28), transparent 70%);
}
.inv-orb-2.svelte-1adez18 {
  width: 360px;
  height: 360px;
  bottom: -110px;
  right: -80px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.26), transparent 70%);
}
.inv-head.svelte-1adez18 {
  text-align: center;
  margin-bottom: 34px;
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.inv-kicker.svelte-1adez18 {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: #c2185b0f;
  color: #c2185b;
  border: 1px dashed rgba(194, 24, 91, 0.3);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  letter-spacing: 1.4px;
}
.inv-title.svelte-1adez18 {
  margin: 14px auto 12px;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  line-height: 1.18;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #c2185b, #047857);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.inv-lead.svelte-1adez18 {
  max-width: 760px;
  margin: 0 auto;
  font-size: 14.5px;
  line-height: 1.65;
  color: #475569;
}
.inv-explainer.svelte-1adez18 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 120px 1fr;
  gap: 0;
  max-width: 960px;
  margin: 0 auto 36px;
  align-items: stretch;
}
.inv-explainer-pane.svelte-1adez18 {
  padding: 26px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 10px 26px #0f172a0d;
}
.inv-explainer-pane--agency.svelte-1adez18 {
  border-left: 3px solid #94a3b8;
}
.inv-explainer-pane--indep.svelte-1adez18 {
  border-left: 3px solid #c2185b;
}
.inv-pane-label.svelte-1adez18 {
  display: block;
  margin-bottom: 10px;
  font-family: Courier New, monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #475569;
}
.inv-explainer-pane--indep.svelte-1adez18
  .inv-pane-label:where(.svelte-1adez18) {
  color: #c2185b;
}
.inv-explainer-pane.svelte-1adez18 p:where(.svelte-1adez18) {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.65;
  color: #475569;
}
.inv-explainer-sep.svelte-1adez18 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.inv-explainer-sep-line.svelte-1adez18 {
  width: 1px;
  flex: 1;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(194, 24, 91, 0.3),
    transparent
  );
}
.inv-explainer-sep-text.svelte-1adez18 {
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: 13px;
  color: #c2185b;
  letter-spacing: 1px;
  padding: 6px 10px;
  background: #fff;
  border-radius: 999px;
  border: 1px solid rgba(194, 24, 91, 0.2);
}
.inv-ledger.svelte-1adez18 {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto 18px;
  padding: 24px 28px;
  background: linear-gradient(135deg, #fff, #fffbf6);
  border-radius: 14px;
  border: 1px dashed rgba(194, 24, 91, 0.25);
}
.inv-ledger-head.svelte-1adez18 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.inv-ledger-rule.svelte-1adez18 {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(194, 24, 91, 0.3),
    transparent
  );
}
.inv-ledger-title.svelte-1adez18 {
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: 13.5px;
  color: #c2185b;
  letter-spacing: 0.8px;
  white-space: nowrap;
}
.inv-ledger-grid.svelte-1adez18 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.inv-ledger-grid--platform.svelte-1adez18 {
  grid-template-columns: repeat(3, 1fr);
}
.inv-ledger-row.svelte-1adez18 {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.inv-ledger-mark.svelte-1adez18 {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e91e8c, #c2185b);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 3px 8px #c2185b33;
}
.inv-ledger-mark--platform.svelte-1adez18 {
  background: linear-gradient(135deg, #059669, #047857);
  box-shadow: 0 3px 8px #05966933;
}
.inv-ledger-text.svelte-1adez18 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.inv-ledger-text.svelte-1adez18 strong:where(.svelte-1adez18) {
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 13px;
  color: #1e293b;
  letter-spacing: -0.01em;
}
.inv-ledger-text.svelte-1adez18 span:where(.svelte-1adez18) {
  font-size: 11.5px;
  line-height: 1.55;
  color: #64748b;
}
.inv-footer.svelte-1adez18 {
  max-width: 820px;
  margin: 30px auto 0;
  text-align: center;
  padding: 16px 24px;
  border-radius: 12px;
  background: linear-gradient(135deg, #c2185b0a, #0596690a);
  border: 1px solid rgba(194, 24, 91, 0.15);
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 14.5px;
  color: #c2185b;
  line-height: 1.6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.inv-footer-stamp.svelte-1adez18 {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #059669, #047857);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
}
@media (max-width: 900px) {
  .inv-explainer.svelte-1adez18 {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .inv-explainer-sep.svelte-1adez18 {
    flex-direction: row;
    min-height: 30px;
  }
  .inv-explainer-sep-line.svelte-1adez18 {
    width: auto;
    height: 1px;
    flex: 1;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(194, 24, 91, 0.3),
      transparent
    );
  }
  .inv-ledger-grid.svelte-1adez18 {
    grid-template-columns: 1fr;
  }
}
.inb-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 112px 0 124px;
  background: radial-gradient(
      1200px 560px at 50% -10%,
      rgba(194, 24, 91, 0.06),
      transparent 65%
    ),
    radial-gradient(
      1000px 500px at 50% 110%,
      rgba(217, 119, 6, 0.05),
      transparent 65%
    ),
    linear-gradient(180deg, #fffdf9, #fff 55%, #fff5ec);
}
.inb-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(110px);
  opacity: 0.5;
}
.inb-orb-1.svelte-1adez18 {
  width: 440px;
  height: 440px;
  top: -170px;
  left: 50%;
  transform: translate(-50%);
  background: radial-gradient(circle, rgba(194, 24, 91, 0.28), transparent 70%);
}
.inb-orb-2.svelte-1adez18 {
  width: 460px;
  height: 460px;
  bottom: -180px;
  left: 50%;
  transform: translate(-50%);
  background: radial-gradient(circle, rgba(217, 119, 6, 0.26), transparent 70%);
}
.inb-card.svelte-1adez18 {
  position: relative;
  z-index: 1;
  max-width: 840px;
  margin: 0 auto;
  padding: 56px 40px 42px;
  text-align: center;
  background: linear-gradient(180deg, #fff, #fffcf6);
  border-radius: 14px;
  border: 1px solid rgba(194, 24, 91, 0.22);
  box-shadow: 0 28px 64px #c2185b14;
}
.inb-signature-line.svelte-1adez18 {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 100px;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    rgba(194, 24, 91, 0.3) 0 4px,
    transparent 4px 8px
  );
}
.inb-kicker.svelte-1adez18 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(194, 24, 91, 0.28);
  color: #c2185b;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
}
.inb-kicker-pulse.svelte-1adez18 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e91e8c;
  animation: svelte-1adez18-inbPulse 1.8s infinite;
}
@keyframes svelte-1adez18-inbPulse {
  0%,
  to {
    box-shadow: 0 0 #e91e8c8c;
  }
  50% {
    box-shadow: 0 0 0 10px #e91e8c00;
  }
}
.inb-title.svelte-1adez18 {
  margin: 16px auto 14px;
  max-width: 740px;
  font-size: clamp(1.85rem, 3.4vw, 2.5rem);
  line-height: 1.15;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #c2185b, #b45309);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.inb-lead.svelte-1adez18 {
  max-width: 720px;
  margin: 0 auto 10px;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}
.inb-body.svelte-1adez18 {
  max-width: 720px;
  margin: 0 auto 22px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #475569;
}
.inb-chips.svelte-1adez18 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 26px;
}
.inb-chip.svelte-1adez18 {
  padding: 5px 13px;
  border-radius: 4px;
  background: #c2185b12;
  color: #c2185b;
  border: 1px solid rgba(194, 24, 91, 0.22);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  font-weight: 600;
}
.inb-actions.svelte-1adez18 {
  margin-bottom: 14px;
}
.inb-btn.svelte-1adez18 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 14px 32px #25d3664d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.inb-btn.svelte-1adez18:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px #25d36661;
}
.inb-btn-shine.svelte-1adez18 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 60%
  );
  transform: translate(-100%);
  transition: transform 0.9s ease;
}
.inb-btn.svelte-1adez18:hover .inb-btn-shine:where(.svelte-1adez18) {
  transform: translate(100%);
}
.inb-note.svelte-1adez18 {
  display: block;
  margin-top: 10px;
  font-size: 11.5px;
  color: #64748b;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 600;
}
.inb-signature.svelte-1adez18 {
  margin: 12px 0 0;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: #c2185b;
}
.mlw-section.svelte-1adez18,
.mlt-section.svelte-1adez18,
.mla-section.svelte-1adez18,
.mlb-section.svelte-1adez18 {
  border-bottom: 1px solid rgba(233, 30, 140, 0.12);
}
.mlw-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 108px 0 120px;
  background: radial-gradient(
      1100px 540px at 50% -10%,
      rgba(217, 119, 6, 0.07),
      transparent 65%
    ),
    radial-gradient(
      900px 480px at 100% 100%,
      rgba(5, 150, 105, 0.05),
      transparent 70%
    ),
    linear-gradient(180deg, #fffbe9, #fffefa 55%, #f4faf0);
}
.mlw-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.45;
}
.mlw-orb-1.svelte-1adez18 {
  width: 380px;
  height: 380px;
  top: -110px;
  right: -80px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.35), transparent 70%);
}
.mlw-orb-2.svelte-1adez18 {
  width: 360px;
  height: 360px;
  bottom: -110px;
  left: -80px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.3), transparent 70%);
}
.mlw-kasavu.svelte-1adez18 {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto 28px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.mlw-kasavu-line.svelte-1adez18 {
  height: 3px;
  background: linear-gradient(90deg, #fbbf24, #d97706, #fbbf24);
  border-radius: 1px;
}
.mlw-kasavu-line-thin.svelte-1adez18 {
  height: 1px;
  background: #b4530980;
  margin: 2px 40px;
}
.mlw-head.svelte-1adez18 {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.mlw-kicker.svelte-1adez18 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: #047857;
  letter-spacing: 1.4px;
}
.mlw-palm.svelte-1adez18 {
  color: #047857;
  display: inline-flex;
}
.mlw-title.svelte-1adez18 {
  margin: 12px auto;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  line-height: 1.15;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #78350f, #047857, #c2185b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.mlw-lead.svelte-1adez18 {
  margin: 0 auto 14px;
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
  font-family: Georgia, serif;
  font-style: italic;
}
.mlw-bridge.svelte-1adez18 {
  margin: 0 auto 10px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #475569;
}
.mlw-heading.svelte-1adez18 {
  margin: 14px auto 0;
  color: #047857;
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 14px;
}
.mlw-grid.svelte-1adez18 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.mlw-beat.svelte-1adez18 {
  padding: 26px 20px 20px;
  text-align: center;
  background: linear-gradient(180deg, #fff 0%, var(--tBg) 100%);
  border-radius: 12px;
  border: 1px solid var(--tBd);
  box-shadow: 0 8px 22px #0f172a0a;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: svelte-1adez18-mlwIn 0.5s ease calc(var(--i, 0) * 0.08s) both;
}
@keyframes svelte-1adez18-mlwIn {
  0% {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.mlw-beat.svelte-1adez18:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px #0f172a14;
}
.mlw-beat--emerald.svelte-1adez18 {
  --t1: #059669;
  --t2: #047857;
  --tBg: rgba(5, 150, 105, 0.07);
  --tBd: rgba(5, 150, 105, 0.22);
}
.mlw-beat--gold.svelte-1adez18 {
  --t1: #d97706;
  --t2: #b45309;
  --tBg: rgba(217, 119, 6, 0.07);
  --tBd: rgba(217, 119, 6, 0.25);
}
.mlw-beat--teal.svelte-1adez18 {
  --t1: #0d9488;
  --t2: #0f766e;
  --tBg: rgba(13, 148, 136, 0.07);
  --tBd: rgba(13, 148, 136, 0.22);
}
.mlw-beat--rose.svelte-1adez18 {
  --t1: #e91e8c;
  --t2: #c2185b;
  --tBg: rgba(233, 30, 140, 0.07);
  --tBd: rgba(233, 30, 140, 0.22);
}
.mlw-beat-leaf.svelte-1adez18 {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--t1);
}
.mlw-beat-leaf.svelte-1adez18 svg:where(.svelte-1adez18) {
  width: 38px;
  height: 38px;
}
.mlw-beat-label.svelte-1adez18 {
  margin: 0 0 6px;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 15px;
  color: var(--t2);
  letter-spacing: -0.01em;
}
.mlw-beat-body.svelte-1adez18 {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.6;
  color: #475569;
}
@media (max-width: 900px) {
  .mlw-grid.svelte-1adez18 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .mlw-grid.svelte-1adez18 {
    grid-template-columns: 1fr;
  }
  .mlw-section.svelte-1adez18 {
    padding: 72px 0 88px;
  }
}
.mlt-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 100px 0 114px;
  background: radial-gradient(
      900px 480px at 100% 10%,
      rgba(217, 119, 6, 0.05),
      transparent 70%
    ),
    #fffdf4;
}
.mlt-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.4;
}
.mlt-orb-1.svelte-1adez18 {
  width: 340px;
  height: 340px;
  top: -100px;
  right: -60px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.3), transparent 70%);
}
.mlt-head.svelte-1adez18 {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.mlt-kicker.svelte-1adez18 {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: #d977060f;
  color: #b45309;
  border: 1px dashed rgba(217, 119, 6, 0.3);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  letter-spacing: 1.4px;
}
.mlt-title.svelte-1adez18 {
  margin: 14px auto 12px;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.18;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #78350f, #b45309, #c2185b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.mlt-lead.svelte-1adez18 {
  max-width: 720px;
  margin: 12px auto 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: #64748b;
  text-align: center;
}
.mlt-grid.svelte-1adez18 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.mlt-card.svelte-1adez18 {
  position: relative;
  padding: 28px 26px 24px;
  background: linear-gradient(180deg, #fff, #fff9e8);
  border-radius: 6px;
  border: 1px solid var(--tBd);
  box-shadow: 0 10px 26px #0f172a0d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.mlt-card.svelte-1adez18:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px #0f172a14;
}
.mlt-card--rose.svelte-1adez18 {
  --t1: #e91e8c;
  --t2: #c2185b;
  --tBg: rgba(233, 30, 140, 0.06);
  --tBd: rgba(233, 30, 140, 0.22);
}
.mlt-card--gold.svelte-1adez18 {
  --t1: #d97706;
  --t2: #b45309;
  --tBg: rgba(217, 119, 6, 0.06);
  --tBd: rgba(217, 119, 6, 0.25);
}
.mlt-card--coral.svelte-1adez18 {
  --t1: #f43f5e;
  --t2: #e11d48;
  --tBg: rgba(244, 63, 94, 0.06);
  --tBd: rgba(244, 63, 94, 0.22);
}
.mlt-card--emerald.svelte-1adez18 {
  --t1: #059669;
  --t2: #047857;
  --tBg: rgba(5, 150, 105, 0.06);
  --tBd: rgba(5, 150, 105, 0.22);
}
.mlt-card--teal.svelte-1adez18 {
  --t1: #0d9488;
  --t2: #0f766e;
  --tBg: rgba(13, 148, 136, 0.06);
  --tBd: rgba(13, 148, 136, 0.22);
}
.mlt-age-badge.svelte-1adez18 {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  background: var(--tBg);
  color: var(--t2);
  font-family: Courier New, monospace;
  font-size: 10.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}
.mlt-deco.svelte-1adez18 {
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mlt-deco-gold-line.svelte-1adez18 {
  height: 2px;
  background: linear-gradient(90deg, #fbbf24, #d97706, #fbbf24);
}
.mlt-deco-gold-line-inner.svelte-1adez18 {
  height: 1px;
  background: #b4530966;
  margin: 0 20px;
}
.mlt-name.svelte-1adez18 {
  margin: 0 0 8px;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 19px;
  color: #1e293b;
  letter-spacing: -0.01em;
}
.mlt-body.svelte-1adez18 {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: #475569;
}
.mlt-closing.svelte-1adez18 {
  max-width: 720px;
  margin: 30px auto 0;
  text-align: center;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: #64748b;
}
@media (max-width: 820px) {
  .mlt-grid.svelte-1adez18 {
    grid-template-columns: 1fr;
  }
}
.mla-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 96px 0 110px;
  background: radial-gradient(
      1000px 500px at 50% -10%,
      rgba(217, 119, 6, 0.05),
      transparent 65%
    ),
    linear-gradient(180deg, #fffdf4, #fff);
}
.mla-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.4;
}
.mla-orb-1.svelte-1adez18 {
  width: 360px;
  height: 360px;
  top: -100px;
  left: 50%;
  transform: translate(-50%);
  background: radial-gradient(circle, rgba(217, 119, 6, 0.28), transparent 70%);
}
.mla-card.svelte-1adez18 {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 44px 40px 36px;
  background: linear-gradient(180deg, #fff, #fffbe9);
  border-radius: 10px;
  border: 1px solid rgba(217, 119, 6, 0.25);
  border-top: 4px solid #d97706;
  border-bottom: 4px solid #d97706;
  box-shadow: 0 18px 44px #b4530914;
}
.mla-card-badge.svelte-1adez18 {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: #fff6e5;
  color: #b45309;
  border: 1px solid rgba(217, 119, 6, 0.3);
  font-family: Courier New, monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.mla-title.svelte-1adez18 {
  margin: 0 0 14px;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  line-height: 1.2;
  background: linear-gradient(135deg, #1e293b, #b45309, #c2185b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.01em;
}
.mla-lead.svelte-1adez18 {
  margin: 0 0 16px;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 15.5px;
  line-height: 1.7;
  color: #475569;
}
.mla-para.svelte-1adez18 {
  margin: 0 0 12px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #475569;
}
.mla-highlights.svelte-1adez18 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 20px 0;
  padding: 16px 18px;
  border-radius: 10px;
  background: #d977060d;
  border: 1px dashed rgba(217, 119, 6, 0.3);
}
.mla-highlight.svelte-1adez18 {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.mla-highlight-label.svelte-1adez18 {
  font-family: Courier New, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: #b45309;
  text-transform: uppercase;
}
.mla-highlight-value.svelte-1adez18 {
  font-size: 12.5px;
  color: #1e293b;
  font-weight: 700;
}
.mla-footer.svelte-1adez18 {
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px dashed rgba(217, 119, 6, 0.25);
  font-size: 14px;
  line-height: 1.7;
  color: #475569;
  font-style: italic;
}
@media (max-width: 640px) {
  .mla-highlights.svelte-1adez18 {
    grid-template-columns: repeat(2, 1fr);
  }
  .mla-card.svelte-1adez18 {
    padding: 32px 24px;
  }
}
.mlb-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 112px 0 124px;
  background: radial-gradient(
      1200px 560px at 50% -10%,
      rgba(217, 119, 6, 0.08),
      transparent 65%
    ),
    radial-gradient(
      1000px 500px at 50% 110%,
      rgba(5, 150, 105, 0.06),
      transparent 65%
    ),
    linear-gradient(180deg, #fff9e6, #fffdf8 55%, #f2fbf3);
}
.mlb-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(110px);
  opacity: 0.5;
}
.mlb-orb-1.svelte-1adez18 {
  width: 440px;
  height: 440px;
  top: -170px;
  left: 50%;
  transform: translate(-50%);
  background: radial-gradient(circle, rgba(217, 119, 6, 0.35), transparent 70%);
}
.mlb-orb-2.svelte-1adez18 {
  width: 460px;
  height: 460px;
  bottom: -180px;
  left: 50%;
  transform: translate(-50%);
  background: radial-gradient(circle, rgba(5, 150, 105, 0.3), transparent 70%);
}
.mlb-card.svelte-1adez18 {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 62px 44px 48px;
  text-align: center;
  background: linear-gradient(180deg, #fff, #fffbe9);
  border-radius: 4px;
  border: 1px solid rgba(180, 83, 9, 0.2);
  box-shadow: 0 28px 64px #b453091a;
}
.mlb-kasavu-top.svelte-1adez18,
.mlb-kasavu-bot.svelte-1adez18 {
  position: absolute;
  left: 0;
  right: 0;
  height: 10px;
  background: linear-gradient(
    90deg,
    #fbbf24 0,
    #fbbf24 40%,
    #d97706,
    #fbbf24 60%
  );
  opacity: 0.85;
}
.mlb-kasavu-top.svelte-1adez18 {
  top: 0;
}
.mlb-kasavu-bot.svelte-1adez18 {
  bottom: 0;
}
.mlb-kasavu-top.svelte-1adez18:before,
.mlb-kasavu-bot.svelte-1adez18:before {
  content: "";
  position: absolute;
  left: 40px;
  right: 40px;
  height: 1px;
  background: #b4530999;
}
.mlb-kasavu-top.svelte-1adez18:before {
  bottom: -4px;
}
.mlb-kasavu-bot.svelte-1adez18:before {
  top: -4px;
}
.mlb-kicker.svelte-1adez18 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(180, 83, 9, 0.3);
  color: #78350f;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.2px;
}
.mlb-kicker-pulse.svelte-1adez18 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d97706;
  animation: svelte-1adez18-mlbPulse 1.8s infinite;
}
@keyframes svelte-1adez18-mlbPulse {
  0%,
  to {
    box-shadow: 0 0 #d977068c;
  }
  50% {
    box-shadow: 0 0 0 10px #d9770600;
  }
}
.mlb-title.svelte-1adez18 {
  margin: 16px auto 14px;
  max-width: 760px;
  font-size: clamp(1.85rem, 3.4vw, 2.55rem);
  line-height: 1.15;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #78350f, #b45309, #047857);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.mlb-lead.svelte-1adez18 {
  max-width: 720px;
  margin: 0 auto 10px;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}
.mlb-body.svelte-1adez18 {
  max-width: 720px;
  margin: 0 auto 22px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #475569;
}
.mlb-chips.svelte-1adez18 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 26px;
}
.mlb-chip.svelte-1adez18 {
  padding: 5px 13px;
  border-radius: 4px;
  background: #b4530914;
  color: #78350f;
  border: 1px solid rgba(180, 83, 9, 0.25);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  font-weight: 600;
}
.mlb-actions.svelte-1adez18 {
  margin-bottom: 14px;
}
.mlb-btn.svelte-1adez18 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 14px 32px #25d3664d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mlb-btn.svelte-1adez18:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px #25d36661;
}
.mlb-btn-shine.svelte-1adez18 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 60%
  );
  transform: translate(-100%);
  transition: transform 0.9s ease;
}
.mlb-btn.svelte-1adez18:hover .mlb-btn-shine:where(.svelte-1adez18) {
  transform: translate(100%);
}
.mlb-note.svelte-1adez18 {
  display: block;
  margin-top: 10px;
  font-size: 11.5px;
  color: #64748b;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 600;
}
.mlb-signature.svelte-1adez18 {
  margin: 12px 0 0;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: #78350f;
}
.mdw-section.svelte-1adez18,
.mdt-section.svelte-1adez18,
.mdh-section.svelte-1adez18,
.mdb-section.svelte-1adez18 {
  border-bottom: 1px solid rgba(233, 30, 140, 0.12);
}
.mdw-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 108px 0 120px;
  background: radial-gradient(
      1100px 540px at 10% 10%,
      rgba(233, 30, 140, 0.05),
      transparent 70%
    ),
    radial-gradient(
      900px 480px at 100% 90%,
      rgba(217, 119, 6, 0.05),
      transparent 70%
    ),
    linear-gradient(180deg, #fffbf7, #fff 55%, #fff5e8);
}
.mdw-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.4;
}
.mdw-orb-1.svelte-1adez18 {
  width: 380px;
  height: 380px;
  top: -100px;
  right: -80px;
  background: radial-gradient(circle, rgba(233, 30, 140, 0.3), transparent 70%);
}
.mdw-orb-2.svelte-1adez18 {
  width: 360px;
  height: 360px;
  bottom: -120px;
  left: -80px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.28), transparent 70%);
}
.mdw-head.svelte-1adez18 {
  text-align: center;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.mdw-kicker.svelte-1adez18 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: Courier New, monospace;
  font-size: 11px;
  color: #c2185b;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  font-weight: 700;
}
.mdw-kicker-bracket.svelte-1adez18 {
  color: #94a3b8;
  font-weight: 500;
}
.mdw-title.svelte-1adez18 {
  margin: 12px auto;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  line-height: 1.18;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #c2185b, #b45309);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.mdw-lead.svelte-1adez18 {
  max-width: 760px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
  font-family: Georgia, serif;
  font-style: italic;
}
.mdw-sheet.svelte-1adez18 {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 12px;
  background: linear-gradient(180deg, #fefdf9, #fff, #fefdf9);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 4px;
  box-shadow: 0 14px 34px #0f172a0d;
}
.mdw-sheet-sprockets.svelte-1adez18 {
  display: flex;
  gap: 10px;
  justify-content: center;
  padding: 10px 0;
  border-top: 1px dashed rgba(15, 23, 42, 0.1);
  border-bottom: 1px dashed rgba(15, 23, 42, 0.1);
}
.mdw-sheet-sprockets.svelte-1adez18:first-of-type {
  border-top: none;
}
.mdw-sheet-sprockets.svelte-1adez18:last-of-type {
  border-bottom: none;
}
.mdw-sheet-sprockets.svelte-1adez18 span:where(.svelte-1adez18) {
  width: 14px;
  height: 10px;
  background: #0f172a1a;
  border-radius: 1px;
}
.mdw-grid.svelte-1adez18 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 12px 0;
}
.mdw-grid.svelte-1adez18 > :where(.svelte-1adez18):nth-child(4),
.mdw-grid.svelte-1adez18 > :where(.svelte-1adez18):nth-child(5) {
  border-top: 1px dashed rgba(15, 23, 42, 0.1);
}
.mdw-grid.svelte-1adez18 > :where(.svelte-1adez18):nth-child(4) {
  grid-column: 1 / span 1;
}
.mdw-grid.svelte-1adez18 > :where(.svelte-1adez18):nth-child(5) {
  grid-column: 2 / span 2;
}
.mdw-frame.svelte-1adez18 {
  position: relative;
  padding: 22px;
  border-right: 1px dashed rgba(15, 23, 42, 0.1);
  transition: background 0.3s ease;
  animation: svelte-1adez18-mdwIn 0.5s ease calc(var(--i, 0) * 0.08s) both;
}
@keyframes svelte-1adez18-mdwIn {
  0% {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.mdw-frame.svelte-1adez18:nth-child(3n) {
  border-right: none;
}
.mdw-frame.svelte-1adez18:last-child {
  border-right: none;
}
.mdw-frame.svelte-1adez18:hover {
  background: var(--tBg);
}
.mdw-frame--rose.svelte-1adez18 {
  --t1: #e91e8c;
  --t2: #c2185b;
  --tBg: rgba(233, 30, 140, 0.05);
}
.mdw-frame--gold.svelte-1adez18 {
  --t1: #d97706;
  --t2: #b45309;
  --tBg: rgba(217, 119, 6, 0.05);
}
.mdw-frame--coral.svelte-1adez18 {
  --t1: #f43f5e;
  --t2: #e11d48;
  --tBg: rgba(244, 63, 94, 0.05);
}
.mdw-frame--emerald.svelte-1adez18 {
  --t1: #059669;
  --t2: #047857;
  --tBg: rgba(5, 150, 105, 0.05);
}
.mdw-frame--teal.svelte-1adez18 {
  --t1: #0d9488;
  --t2: #0f766e;
  --tBg: rgba(13, 148, 136, 0.05);
}
.mdw-frame-head.svelte-1adez18 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.mdw-frame-shot.svelte-1adez18 {
  font-family: Courier New, monospace;
  font-size: 9.5px;
  color: #94a3b8;
  letter-spacing: 1.8px;
  font-weight: 700;
}
.mdw-frame-num.svelte-1adez18 {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--t1), var(--t2));
  color: #fff;
  font-family: Courier New, monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  box-shadow: 0 3px 8px #00000014;
}
.mdw-frame-crop.svelte-1adez18 {
  position: relative;
  display: block;
  height: 140px;
  margin-bottom: 14px;
  border-radius: 4px;
  background: linear-gradient(165deg, var(--tBg) 0%, #fff 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  overflow: hidden;
  color: var(--t1);
}
.mdw-frame-photo.svelte-1adez18 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.mdw-frame-corner.svelte-1adez18 {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 2px solid var(--t1);
  z-index: 2;
}
.mdw-frame-corner-tl.svelte-1adez18 {
  top: 6px;
  left: 6px;
  border-right: 0;
  border-bottom: 0;
}
.mdw-frame-corner-tr.svelte-1adez18 {
  top: 6px;
  right: 6px;
  border-left: 0;
  border-bottom: 0;
}
.mdw-frame-corner-bl.svelte-1adez18 {
  bottom: 6px;
  left: 6px;
  border-right: 0;
  border-top: 0;
}
.mdw-frame-corner-br.svelte-1adez18 {
  bottom: 6px;
  right: 6px;
  border-left: 0;
  border-top: 0;
}
.mdw-frame-meta.svelte-1adez18 {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translate(-50%);
  padding: 1px 7px;
  border-radius: 2px;
  background: #ffffffd9;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  font-family: Courier New, monospace;
  font-size: 8.5px;
  color: var(--t2);
  letter-spacing: 1.2px;
  font-weight: 700;
  z-index: 3;
}
.mdw-frame-label.svelte-1adez18 {
  margin: 0 0 6px;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 15.5px;
  color: var(--t2);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.mdw-frame-body.svelte-1adez18 {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.6;
  color: #475569;
}
.mdw-closing.svelte-1adez18 {
  max-width: 780px;
  margin: 30px auto 0;
  text-align: center;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 14.5px;
  color: #c2185b;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .mdw-grid.svelte-1adez18 {
    grid-template-columns: repeat(2, 1fr);
  }
  .mdw-grid.svelte-1adez18 > :where(.svelte-1adez18):nth-child(3),
  .mdw-grid.svelte-1adez18 > :where(.svelte-1adez18):nth-child(4),
  .mdw-grid.svelte-1adez18 > :where(.svelte-1adez18):nth-child(5) {
    grid-column: auto;
    border-top: 1px dashed rgba(15, 23, 42, 0.1);
  }
  .mdw-frame.svelte-1adez18 {
    border-right: none;
  }
  .mdw-frame.svelte-1adez18:nth-child(odd) {
    border-right: 1px dashed rgba(15, 23, 42, 0.1);
  }
  .mdw-frame.svelte-1adez18:nth-child(3n) {
    border-right: 1px dashed rgba(15, 23, 42, 0.1);
  }
  .mdw-frame.svelte-1adez18:last-child {
    border-right: none;
    grid-column: 1 / span 2;
  }
}
@media (max-width: 560px) {
  .mdw-grid.svelte-1adez18 {
    grid-template-columns: 1fr;
  }
  .mdw-frame.svelte-1adez18 {
    border-right: none !important;
    border-top: 1px dashed rgba(15, 23, 42, 0.1);
  }
  .mdw-frame.svelte-1adez18:first-child {
    border-top: none;
  }
  .mdw-frame.svelte-1adez18:last-child {
    grid-column: auto;
  }
  .mdw-section.svelte-1adez18 {
    padding: 72px 0 88px;
  }
}
.mdt-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 100px 0 114px;
  background: radial-gradient(
      900px 480px at 0% 90%,
      rgba(194, 24, 91, 0.05),
      transparent 70%
    ),
    #fffdfa;
}
.mdt-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.4;
}
.mdt-orb-1.svelte-1adez18 {
  width: 340px;
  height: 340px;
  bottom: -100px;
  left: -60px;
  background: radial-gradient(circle, rgba(194, 24, 91, 0.28), transparent 70%);
}
.mdt-head.svelte-1adez18 {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.mdt-kicker.svelte-1adez18 {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: #c2185b0f;
  color: #c2185b;
  border: 1px dashed rgba(194, 24, 91, 0.3);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  letter-spacing: 1.4px;
}
.mdt-title.svelte-1adez18 {
  margin: 14px auto 12px;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.18;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #c2185b, #b45309);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.mdt-lead.svelte-1adez18 {
  max-width: 720px;
  margin: 12px auto 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: #64748b;
  text-align: center;
}
.mdh-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 90px 0 96px;
  background: radial-gradient(
      900px 480px at 100% 0%,
      rgba(217, 119, 6, 0.06),
      transparent 70%
    ),
    radial-gradient(
      800px 460px at 0% 100%,
      rgba(194, 24, 91, 0.05),
      transparent 70%
    ),
    #fffdf9;
}
.mdh-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.4;
}
.mdh-orb-1.svelte-1adez18 {
  width: 360px;
  height: 360px;
  top: -120px;
  right: -70px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.22), transparent 70%);
}
.mdh-card.svelte-1adez18 {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 44px 38px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #fffbf2);
  border: 1px solid rgba(180, 83, 9, 0.18);
  box-shadow: 0 22px 54px #b4530914;
}
.mdh-kicker.svelte-1adez18 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 999px;
  background: #d9770612;
  color: #b45309;
  border: 1px dashed rgba(217, 119, 6, 0.32);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  letter-spacing: 1.4px;
}
.mdh-kicker-dot.svelte-1adez18 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d97706;
  animation: svelte-1adez18-lngPulse 1.8s infinite;
}
.mdh-title.svelte-1adez18 {
  margin: 16px auto 14px;
  max-width: 680px;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.18;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #b45309, #c2185b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.mdh-body.svelte-1adez18 {
  max-width: 660px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.75;
  color: #475569;
}
@media (max-width: 540px) {
  .mdh-card.svelte-1adez18 {
    padding: 36px 22px;
  }
}
.mdt-grid.svelte-1adez18 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.mdt-grid.svelte-1adez18 > :where(.svelte-1adez18):nth-child(5) {
  grid-column: 1 / span 2;
  max-width: calc(50% - 9px);
  margin: 0 auto;
  width: 100%;
}
.mdt-tear.svelte-1adez18 {
  position: relative;
  padding: 24px 26px 22px;
  background: linear-gradient(165deg, #fff, #fffaf3);
  border-radius: 4px;
  border: 1px solid var(--tBd);
  box-shadow: 0 10px 26px #0f172a0d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: svelte-1adez18-mdtIn 0.5s ease calc(var(--i, 0) * 0.08s) both;
}
@keyframes svelte-1adez18-mdtIn {
  0% {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.mdt-tear.svelte-1adez18:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px #0f172a14;
}
.mdt-tear--rose.svelte-1adez18 {
  --t1: #e91e8c;
  --t2: #c2185b;
  --tBd: rgba(233, 30, 140, 0.22);
}
.mdt-tear--gold.svelte-1adez18 {
  --t1: #d97706;
  --t2: #b45309;
  --tBd: rgba(217, 119, 6, 0.25);
}
.mdt-tear--coral.svelte-1adez18 {
  --t1: #f43f5e;
  --t2: #e11d48;
  --tBd: rgba(244, 63, 94, 0.22);
}
.mdt-tear--emerald.svelte-1adez18 {
  --t1: #059669;
  --t2: #047857;
  --tBd: rgba(5, 150, 105, 0.22);
}
.mdt-tear--teal.svelte-1adez18 {
  --t1: #0d9488;
  --t2: #0f766e;
  --tBd: rgba(13, 148, 136, 0.22);
}
.mdt-tear.svelte-1adez18:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--t1), var(--t2));
}
.mdt-tear-head.svelte-1adez18 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  gap: 10px;
}
.mdt-tear-shot.svelte-1adez18 {
  font-family: Courier New, monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.6px;
  color: var(--t2);
  text-transform: uppercase;
}
.mdt-tear-tag.svelte-1adez18 {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 11.5px;
  color: #64748b;
}
.mdt-tear-name.svelte-1adez18 {
  margin: 0 0 8px;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 19px;
  color: #1e293b;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.mdt-tear-body.svelte-1adez18 {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: #475569;
}
.mdt-closing.svelte-1adez18 {
  max-width: 720px;
  margin: 30px auto 0;
  text-align: center;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: #64748b;
}
@media (max-width: 820px) {
  .mdt-grid.svelte-1adez18 {
    grid-template-columns: 1fr;
  }
  .mdt-grid.svelte-1adez18 > :where(.svelte-1adez18):nth-child(5) {
    grid-column: auto;
    max-width: none;
  }
}
.mdb-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 112px 0 124px;
  background: radial-gradient(
      1200px 560px at 50% -10%,
      rgba(233, 30, 140, 0.07),
      transparent 65%
    ),
    radial-gradient(
      1000px 500px at 50% 110%,
      rgba(217, 119, 6, 0.06),
      transparent 65%
    ),
    linear-gradient(180deg, #fff8f3, #fffdfa 55%, #fff5e4);
}
.mdb-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(110px);
  opacity: 0.5;
}
.mdb-orb-1.svelte-1adez18 {
  width: 440px;
  height: 440px;
  top: -170px;
  left: 50%;
  transform: translate(-50%);
  background: radial-gradient(circle, rgba(233, 30, 140, 0.3), transparent 70%);
}
.mdb-orb-2.svelte-1adez18 {
  width: 460px;
  height: 460px;
  bottom: -180px;
  left: 50%;
  transform: translate(-50%);
  background: radial-gradient(circle, rgba(217, 119, 6, 0.26), transparent 70%);
}
.mdb-card.svelte-1adez18 {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 54px 44px 42px;
  text-align: center;
  background: #fff;
  border-radius: 4px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 28px 64px #0f172a14;
}
.mdb-sprockets.svelte-1adez18 {
  position: absolute;
  left: 0;
  right: 0;
  display: flex;
  gap: 10px;
  justify-content: center;
  padding: 8px 0;
  background: #0f172a05;
}
.mdb-sprockets-top.svelte-1adez18 {
  top: 0;
  border-bottom: 1px dashed rgba(15, 23, 42, 0.1);
}
.mdb-sprockets-bot.svelte-1adez18 {
  bottom: 0;
  border-top: 1px dashed rgba(15, 23, 42, 0.1);
}
.mdb-sprockets.svelte-1adez18 span:where(.svelte-1adez18) {
  width: 14px;
  height: 10px;
  background: #0f172a1f;
  border-radius: 1px;
}
.mdb-kicker.svelte-1adez18 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 4px;
  background: #c2185b0f;
  border: 1px solid rgba(194, 24, 91, 0.28);
  color: #c2185b;
  font-family: Courier New, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  margin-top: 12px;
}
.mdb-kicker-pulse.svelte-1adez18 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e91e8c;
  animation: svelte-1adez18-mdbPulse 1.8s infinite;
}
@keyframes svelte-1adez18-mdbPulse {
  0%,
  to {
    box-shadow: 0 0 #e91e8c8c;
  }
  50% {
    box-shadow: 0 0 0 10px #e91e8c00;
  }
}
.mdb-title.svelte-1adez18 {
  margin: 16px auto 14px;
  max-width: 760px;
  font-size: clamp(1.85rem, 3.4vw, 2.55rem);
  line-height: 1.15;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #c2185b, #b45309);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.mdb-lead.svelte-1adez18 {
  max-width: 720px;
  margin: 0 auto 10px;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}
.mdb-body.svelte-1adez18 {
  max-width: 720px;
  margin: 0 auto 22px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #475569;
}
.mdb-chips.svelte-1adez18 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 26px;
}
.mdb-chip.svelte-1adez18 {
  padding: 5px 13px;
  border-radius: 4px;
  background: #c2185b12;
  color: #c2185b;
  border: 1px solid rgba(194, 24, 91, 0.22);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  font-weight: 600;
}
.mdb-actions.svelte-1adez18 {
  margin-bottom: 14px;
}
.mdb-btn.svelte-1adez18 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 14px 32px #25d3664d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mdb-btn.svelte-1adez18:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px #25d36661;
}
.mdb-btn-shine.svelte-1adez18 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 60%
  );
  transform: translate(-100%);
  transition: transform 0.9s ease;
}
.mdb-btn.svelte-1adez18:hover .mdb-btn-shine:where(.svelte-1adez18) {
  transform: translate(100%);
}
.mdb-note.svelte-1adez18 {
  display: block;
  margin-top: 10px;
  font-size: 11.5px;
  color: #64748b;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 600;
}
.mdb-signature.svelte-1adez18 {
  margin: 12px 0 0;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: #c2185b;
}
.dgw-section.svelte-1adez18,
.dgc-section.svelte-1adez18,
.dgs-section.svelte-1adez18,
.dgb-section.svelte-1adez18,
.tcw-section.svelte-1adez18,
.tcg-section.svelte-1adez18,
.tcb-section.svelte-1adez18,
.lnw-section.svelte-1adez18,
.lnc-section.svelte-1adez18,
.lnr-section.svelte-1adez18,
.lnb-section.svelte-1adez18,
.lng-section.svelte-1adez18,
.lnp-section.svelte-1adez18,
.lnf-section.svelte-1adez18,
.cvw-section.svelte-1adez18,
.cvt-section.svelte-1adez18,
.cvx-section.svelte-1adez18,
.cvb-section.svelte-1adez18,
.ptw-section.svelte-1adez18,
.ptt-section.svelte-1adez18,
.ptd-section.svelte-1adez18,
.ptb-section.svelte-1adez18,
.bmw-section.svelte-1adez18,
.bmt-section.svelte-1adez18,
.bmr-section.svelte-1adez18,
.bmb-section.svelte-1adez18,
.afw-section.svelte-1adez18,
.afc-section.svelte-1adez18,
.afb-section.svelte-1adez18 {
  border-bottom: 1px solid rgba(233, 30, 140, 0.12);
}
.dgw-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 108px 0 120px;
  background: radial-gradient(
      1100px 540px at 10% 10%,
      rgba(233, 30, 140, 0.05),
      transparent 70%
    ),
    radial-gradient(
      900px 480px at 100% 90%,
      rgba(244, 63, 94, 0.05),
      transparent 70%
    ),
    linear-gradient(180deg, #fff7f4, #fffdfa 55%, #fff4f1);
}
.dgw-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.42;
}
.dgw-orb-1.svelte-1adez18 {
  width: 380px;
  height: 380px;
  top: -110px;
  right: -80px;
  background: radial-gradient(circle, rgba(233, 30, 140, 0.3), transparent 70%);
}
.dgw-orb-2.svelte-1adez18 {
  width: 360px;
  height: 360px;
  bottom: -110px;
  left: -80px;
  background: radial-gradient(circle, rgba(244, 63, 94, 0.28), transparent 70%);
}
.dgw-head.svelte-1adez18 {
  text-align: center;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.dgw-kicker.svelte-1adez18 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
  color: #c2185b;
  border: 1px solid rgba(233, 30, 140, 0.25);
  font-family: Courier New, monospace;
  font-size: 11px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-weight: 700;
}
.dgw-kicker-heart.svelte-1adez18 {
  color: #e91e8c;
  display: inline-flex;
}
.dgw-title.svelte-1adez18 {
  margin: 14px auto 12px;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  line-height: 1.18;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #c2185b, #e11d48);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.dgw-lead.svelte-1adez18 {
  max-width: 720px;
  margin: 0 auto 12px;
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
  font-family: Georgia, serif;
  font-style: italic;
}
.dgw-para.svelte-1adez18 {
  max-width: 720px;
  margin: 0 auto 10px;
  font-size: 14px;
  line-height: 1.7;
  color: #475569;
}
.dgw-enjoys-label.svelte-1adez18 {
  display: inline-block;
  margin-top: 12px;
  padding: 5px 14px;
  border-radius: 999px;
  background: #e91e8c0f;
  color: #c2185b;
  border: 1px dashed rgba(233, 30, 140, 0.3);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  font-weight: 600;
}
.dgw-timeline.svelte-1adez18 {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  padding-left: 40px;
}
.dgw-timeline-rail.svelte-1adez18 {
  position: absolute;
  left: 19px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(
    180deg,
    #e91e8c59,
    #d9770659,
    #f43f5e59,
    #0d948859,
    #05966959
  );
}
.dgw-slot.svelte-1adez18 {
  position: relative;
  padding: 0 0 22px 30px;
  animation: svelte-1adez18-dgwIn 0.5s ease calc(var(--i, 0) * 0.08s) both;
}
@keyframes svelte-1adez18-dgwIn {
  0% {
    opacity: 0;
    transform: translate(-6px);
  }
  to {
    opacity: 1;
    transform: translate(0);
  }
}
.dgw-slot.svelte-1adez18:last-child {
  padding-bottom: 0;
}
.dgw-slot--rose.svelte-1adez18 {
  --t1: #e91e8c;
  --t2: #c2185b;
  --tBg: rgba(233, 30, 140, 0.07);
}
.dgw-slot--gold.svelte-1adez18 {
  --t1: #d97706;
  --t2: #b45309;
  --tBg: rgba(217, 119, 6, 0.07);
}
.dgw-slot--coral.svelte-1adez18 {
  --t1: #f43f5e;
  --t2: #e11d48;
  --tBg: rgba(244, 63, 94, 0.07);
}
.dgw-slot--teal.svelte-1adez18 {
  --t1: #0d9488;
  --t2: #0f766e;
  --tBg: rgba(13, 148, 136, 0.07);
}
.dgw-slot--emerald.svelte-1adez18 {
  --t1: #059669;
  --t2: #047857;
  --tBg: rgba(5, 150, 105, 0.07);
}
.dgw-slot-tick.svelte-1adez18 {
  position: absolute;
  left: -41px;
  top: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--t1), var(--t2));
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--t1), 0 4px 10px #0000001a;
}
.dgw-slot-time.svelte-1adez18 {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  background: #fff;
  color: var(--t2);
  border: 1px solid var(--t1);
  font-family: Courier New, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  margin-bottom: 6px;
}
.dgw-slot-body.svelte-1adez18 {
  padding: 14px 18px;
  border-radius: 10px;
  background: var(--tBg);
  border: 1px dashed var(--t1);
  border-left-width: 3px;
  border-left-style: solid;
}
.dgw-slot-label.svelte-1adez18 {
  margin: 0 0 4px;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 17px;
  color: #1e293b;
  letter-spacing: -0.01em;
}
.dgw-slot-detail.svelte-1adez18 {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: #475569;
}
.dgw-closing.svelte-1adez18 {
  max-width: 780px;
  margin: 28px auto 0;
  text-align: center;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 14.5px;
  color: #c2185b;
  position: relative;
  z-index: 1;
}
.dgc-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 100px 0 114px;
  background: radial-gradient(
      900px 480px at 100% 10%,
      rgba(233, 30, 140, 0.05),
      transparent 70%
    ),
    #fffdfa;
}
.dgc-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.4;
}
.dgc-orb-1.svelte-1adez18 {
  width: 360px;
  height: 360px;
  top: -100px;
  right: -80px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.28),
    transparent 70%
  );
}
.dgc-head.svelte-1adez18 {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.dgc-kicker.svelte-1adez18 {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: #c2185b0f;
  color: #c2185b;
  border: 1px dashed rgba(194, 24, 91, 0.3);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  letter-spacing: 1.4px;
}
.dgc-title.svelte-1adez18 {
  margin: 14px auto 12px;
  max-width: 760px;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.18;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #c2185b, #b45309);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.dgc-lead.svelte-1adez18 {
  max-width: 720px;
  margin: 0 auto;
  font-size: 14.5px;
  line-height: 1.65;
  color: #64748b;
}
.dgc-grid.svelte-1adez18 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.dgc-grid.svelte-1adez18 > :where(.svelte-1adez18):nth-child(4),
.dgc-grid.svelte-1adez18 > :where(.svelte-1adez18):nth-child(5) {
  grid-column: auto;
}
.dgc-card.svelte-1adez18 {
  position: relative;
  padding: 22px 20px 18px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--tBd);
  border-left: 3px solid var(--t1);
  box-shadow: 0 8px 20px #0f172a0a;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dgc-card.svelte-1adez18:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px #0f172a14;
}
.dgc-card--rose.svelte-1adez18 {
  --t1: #e91e8c;
  --tBd: rgba(233, 30, 140, 0.22);
}
.dgc-card--gold.svelte-1adez18 {
  --t1: #d97706;
  --tBd: rgba(217, 119, 6, 0.25);
}
.dgc-card--teal.svelte-1adez18 {
  --t1: #0d9488;
  --tBd: rgba(13, 148, 136, 0.22);
}
.dgc-card--coral.svelte-1adez18 {
  --t1: #f43f5e;
  --tBd: rgba(244, 63, 94, 0.22);
}
.dgc-card--emerald.svelte-1adez18 {
  --t1: #059669;
  --tBd: rgba(5, 150, 105, 0.22);
}
.dgc-card-stub.svelte-1adez18 {
  position: absolute;
  top: 14px;
  right: 12px;
  width: 18px;
  height: 24px;
  background: repeating-linear-gradient(
    90deg,
    var(--t1) 0 3px,
    transparent 3px 6px
  );
  opacity: 0.35;
  border-radius: 2px;
}
.dgc-card-name.svelte-1adez18 {
  margin: 0 0 6px;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 15.5px;
  color: var(--t1);
  letter-spacing: -0.01em;
  line-height: 1.3;
  padding-right: 30px;
}
.dgc-card-body.svelte-1adez18 {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.6;
  color: #475569;
}
.dgc-closing.svelte-1adez18 {
  max-width: 720px;
  margin: 28px auto 0;
  text-align: center;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: #64748b;
}
@media (max-width: 900px) {
  .dgc-grid.svelte-1adez18 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .dgc-grid.svelte-1adez18 {
    grid-template-columns: 1fr;
  }
}
.dgs-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 100px 0 114px;
  background: radial-gradient(
      900px 480px at 0% 90%,
      rgba(217, 119, 6, 0.04),
      transparent 70%
    ),
    #fffcf5;
}
.dgs-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.4;
}
.dgs-orb-1.svelte-1adez18 {
  width: 340px;
  height: 340px;
  bottom: -100px;
  left: -60px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.25), transparent 70%);
}
.dgs-head.svelte-1adez18 {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.dgs-kicker.svelte-1adez18 {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: #d977060f;
  color: #b45309;
  border: 1px dashed rgba(217, 119, 6, 0.3);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  letter-spacing: 1.4px;
}
.dgs-title.svelte-1adez18 {
  margin: 14px auto 12px;
  max-width: 760px;
  font-size: clamp(1.75rem, 3vw, 2.3rem);
  line-height: 1.18;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #b45309, #c2185b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.dgs-lead.svelte-1adez18 {
  max-width: 720px;
  margin: 12px auto 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: #64748b;
  text-align: center;
}
.dgs-list.svelte-1adez18 {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}
.dgs-item.svelte-1adez18 {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 10px;
  background: linear-gradient(135deg, #fff, #fffbf3);
  border: 1px solid rgba(217, 119, 6, 0.12);
  animation: svelte-1adez18-dgsIn 0.5s ease calc(var(--i, 0) * 0.06s) both;
}
@keyframes svelte-1adez18-dgsIn {
  0% {
    opacity: 0;
    transform: translate(-6px);
  }
  to {
    opacity: 1;
    transform: translate(0);
  }
}
.dgs-item--rose.svelte-1adez18 {
  --t1: #e91e8c;
  --t2: #c2185b;
}
.dgs-item--coral.svelte-1adez18 {
  --t1: #f43f5e;
  --t2: #e11d48;
}
.dgs-item--gold.svelte-1adez18 {
  --t1: #d97706;
  --t2: #b45309;
}
.dgs-item--emerald.svelte-1adez18 {
  --t1: #059669;
  --t2: #047857;
}
.dgs-item--teal.svelte-1adez18 {
  --t1: #0d9488;
  --t2: #0f766e;
}
.dgs-item-dot.svelte-1adez18 {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--t1), var(--t2));
  margin-top: 4px;
  box-shadow: 0 0 0 3px #fff, 0 0 0 4px var(--t1);
}
.dgs-item-label.svelte-1adez18 {
  margin: 0 0 4px;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 15.5px;
  color: var(--t2);
  letter-spacing: -0.01em;
}
.dgs-item-text.svelte-1adez18 {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #475569;
}
.dgb-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 112px 0 124px;
  background: radial-gradient(
      1200px 560px at 50% -10%,
      rgba(233, 30, 140, 0.07),
      transparent 65%
    ),
    radial-gradient(
      1000px 500px at 50% 110%,
      rgba(244, 63, 94, 0.06),
      transparent 65%
    ),
    linear-gradient(180deg, #fff5f3, #fffdfa 55%, #fff2ef);
}
.dgb-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(110px);
  opacity: 0.5;
}
.dgb-orb-1.svelte-1adez18 {
  width: 440px;
  height: 440px;
  top: -170px;
  left: 50%;
  transform: translate(-50%);
  background: radial-gradient(circle, rgba(233, 30, 140, 0.3), transparent 70%);
}
.dgb-orb-2.svelte-1adez18 {
  width: 460px;
  height: 460px;
  bottom: -180px;
  left: 50%;
  transform: translate(-50%);
  background: radial-gradient(circle, rgba(244, 63, 94, 0.26), transparent 70%);
}
.dgb-card.svelte-1adez18 {
  position: relative;
  z-index: 1;
  max-width: 840px;
  margin: 0 auto;
  padding: 56px 42px 42px;
  text-align: center;
  background: linear-gradient(180deg, #fff, #fff7f4);
  border-radius: 16px;
  border: 1px solid rgba(233, 30, 140, 0.22);
  box-shadow: 0 28px 64px #e91e8c14;
}
.dgb-card-ribbon.svelte-1adez18 {
  position: absolute;
  top: 0;
  left: 40px;
  right: 40px;
  height: 6px;
  background: linear-gradient(90deg, #e91e8c, #f43f5e, #d97706);
  border-radius: 0 0 8px 8px;
}
.dgb-kicker.svelte-1adez18 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.28);
  color: #c2185b;
  font-family: Courier New, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}
.dgb-kicker-pulse.svelte-1adez18 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e91e8c;
  animation: svelte-1adez18-dgbPulse 1.8s infinite;
}
@keyframes svelte-1adez18-dgbPulse {
  0%,
  to {
    box-shadow: 0 0 #e91e8c8c;
  }
  50% {
    box-shadow: 0 0 0 10px #e91e8c00;
  }
}
.dgb-title.svelte-1adez18 {
  margin: 16px auto 14px;
  max-width: 760px;
  font-size: clamp(1.85rem, 3.4vw, 2.5rem);
  line-height: 1.15;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #c2185b, #e11d48);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.dgb-lead.svelte-1adez18 {
  max-width: 720px;
  margin: 0 auto 10px;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}
.dgb-body.svelte-1adez18 {
  max-width: 720px;
  margin: 0 auto 22px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #475569;
}
.dgb-chips.svelte-1adez18 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 26px;
}
.dgb-chip.svelte-1adez18 {
  padding: 5px 13px;
  border-radius: 999px;
  background: #e91e8c12;
  color: #c2185b;
  border: 1px solid rgba(233, 30, 140, 0.22);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  font-weight: 600;
}
.dgb-actions.svelte-1adez18 {
  margin-bottom: 14px;
}
.dgb-btn.svelte-1adez18 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 14px 32px #25d3664d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dgb-btn.svelte-1adez18:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px #25d36661;
}
.dgb-btn-shine.svelte-1adez18 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 60%
  );
  transform: translate(-100%);
  transition: transform 0.9s ease;
}
.dgb-btn.svelte-1adez18:hover .dgb-btn-shine:where(.svelte-1adez18) {
  transform: translate(100%);
}
.dgb-note.svelte-1adez18 {
  display: block;
  margin-top: 10px;
  font-size: 11.5px;
  color: #64748b;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 600;
}
.dgb-signature.svelte-1adez18 {
  margin: 12px 0 0;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: #c2185b;
}
.tcw-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 108px 0 140px;
  background: radial-gradient(
      1000px 500px at 10% 10%,
      rgba(14, 165, 233, 0.05),
      transparent 70%
    ),
    radial-gradient(
      900px 480px at 100% 90%,
      rgba(217, 119, 6, 0.05),
      transparent 70%
    ),
    linear-gradient(180deg, #fbfeff, #fffdfa 55%, #fff8ed);
}
.tcw-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.4;
}
.tcw-orb-1.svelte-1adez18 {
  width: 380px;
  height: 380px;
  top: -100px;
  right: -80px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.3), transparent 70%);
}
.tcw-orb-2.svelte-1adez18 {
  width: 360px;
  height: 360px;
  bottom: -120px;
  left: -80px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.28), transparent 70%);
}
.tcw-head.svelte-1adez18 {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.tcw-kicker.svelte-1adez18 {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 4px;
  background: #0ea5e90f;
  color: #0369a1;
  border: 1px dashed rgba(14, 165, 233, 0.28);
  font-family: Courier New, monospace;
  font-size: 11px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-weight: 700;
}
.tcw-title.svelte-1adez18 {
  margin: 14px auto 12px;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  line-height: 1.18;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #0369a1, #b45309);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tcw-lead.svelte-1adez18 {
  margin: 0 auto 10px;
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
  font-family: Georgia, serif;
  font-style: italic;
}
.tcw-intro.svelte-1adez18 {
  margin: 0 auto 14px;
  font-size: 14px;
  line-height: 1.7;
  color: #475569;
}
.tcw-heading.svelte-1adez18 {
  margin: 14px auto 0;
  color: #0369a1;
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 14px;
}
.tcw-tags.svelte-1adez18 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-top: 24px;
}
.tcw-tag.svelte-1adez18 {
  position: relative;
  padding: 36px 20px 22px;
  background: linear-gradient(180deg, #fff 0%, var(--tBg) 100%);
  border: 1px solid var(--tBd);
  border-radius: 4px 4px 16px 16px;
  box-shadow: 0 10px 26px #0f172a0f;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: svelte-1adez18-tcwIn 0.5s ease calc(var(--i, 0) * 0.08s) both;
}
@keyframes svelte-1adez18-tcwIn {
  0% {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.tcw-tag.svelte-1adez18:nth-child(2n) {
  transform: rotate(1deg);
}
.tcw-tag.svelte-1adez18:nth-child(odd) {
  transform: rotate(-1deg);
}
.tcw-tag.svelte-1adez18:hover {
  transform: rotate(0) translateY(-5px);
  box-shadow: 0 22px 48px #0f172a1a;
}
.tcw-tag--rose.svelte-1adez18 {
  --t1: #e91e8c;
  --t2: #c2185b;
  --tBg: rgba(233, 30, 140, 0.06);
  --tBd: rgba(233, 30, 140, 0.22);
}
.tcw-tag--gold.svelte-1adez18 {
  --t1: #d97706;
  --t2: #b45309;
  --tBg: rgba(217, 119, 6, 0.06);
  --tBd: rgba(217, 119, 6, 0.25);
}
.tcw-tag--emerald.svelte-1adez18 {
  --t1: #059669;
  --t2: #047857;
  --tBg: rgba(5, 150, 105, 0.06);
  --tBd: rgba(5, 150, 105, 0.22);
}
.tcw-tag--teal.svelte-1adez18 {
  --t1: #0d9488;
  --t2: #0f766e;
  --tBg: rgba(13, 148, 136, 0.06);
  --tBd: rgba(13, 148, 136, 0.22);
}
.tcw-tag-string.svelte-1adez18 {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translate(-50%);
  width: 2px;
  height: 32px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    #94a3b8 50%,
    #94a3b8 100%
  );
  opacity: 0.6;
}
.tcw-tag-hole.svelte-1adez18 {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translate(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--tBd);
  box-shadow: inset 0 2px 3px #00000014;
}
.tcw-tag-route.svelte-1adez18 {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 3px;
  background: var(--tBg);
  color: var(--t2);
  border: 1px dashed var(--tBd);
  font-family: Courier New, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  margin-bottom: 10px;
}
.tcw-tag-label.svelte-1adez18 {
  margin: 0 0 6px;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 15px;
  color: #1e293b;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.tcw-tag-detail.svelte-1adez18 {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: #475569;
}
.tcw-closing.svelte-1adez18 {
  max-width: 780px;
  margin: 34px auto 0;
  text-align: center;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 14.5px;
  color: #0369a1;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .tcw-tags.svelte-1adez18 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .tcw-tags.svelte-1adez18 {
    grid-template-columns: 1fr;
  }
}
.tcg-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 100px 0 114px;
  background: radial-gradient(
      900px 480px at 100% 90%,
      rgba(217, 119, 6, 0.05),
      transparent 70%
    ),
    #fffdf5;
}
.tcg-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.4;
}
.tcg-orb-1.svelte-1adez18 {
  width: 340px;
  height: 340px;
  bottom: -100px;
  right: -60px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.3), transparent 70%);
}
.tcg-head.svelte-1adez18 {
  text-align: center;
  margin-bottom: 38px;
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.tcg-kicker.svelte-1adez18 {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: #d977060f;
  color: #b45309;
  border: 1px dashed rgba(217, 119, 6, 0.3);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  letter-spacing: 1.4px;
}
.tcg-title.svelte-1adez18 {
  margin: 14px auto 12px;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.18;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #b45309, #0369a1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tcg-lead.svelte-1adez18 {
  margin: 0 auto;
  font-size: 14.5px;
  line-height: 1.65;
  color: #64748b;
}
.tcg-grid.svelte-1adez18 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.tcg-card.svelte-1adez18 {
  min-width: 0;
  padding: 22px 16px 18px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--tBd);
  text-align: center;
  box-shadow: 0 8px 22px #0f172a0a;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: svelte-1adez18-tcgIn 0.5s ease calc(var(--i, 0) * 0.07s) both;
}
@keyframes svelte-1adez18-tcgIn {
  0% {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.tcg-card.svelte-1adez18:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px #0f172a14;
}
.tcg-card--rose.svelte-1adez18 {
  --t1: #e91e8c;
  --t2: #c2185b;
  --tBd: rgba(233, 30, 140, 0.22);
}
.tcg-card--gold.svelte-1adez18 {
  --t1: #d97706;
  --t2: #b45309;
  --tBd: rgba(217, 119, 6, 0.25);
}
.tcg-card--coral.svelte-1adez18 {
  --t1: #f43f5e;
  --t2: #e11d48;
  --tBd: rgba(244, 63, 94, 0.22);
}
.tcg-card--emerald.svelte-1adez18 {
  --t1: #059669;
  --t2: #047857;
  --tBd: rgba(5, 150, 105, 0.22);
}
.tcg-card--teal.svelte-1adez18 {
  --t1: #0d9488;
  --t2: #0f766e;
  --tBd: rgba(13, 148, 136, 0.22);
}
.tcg-card-stamp.svelte-1adez18 {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--t1), var(--t2));
  color: #fff;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 12px;
  box-shadow: 0 5px 14px #0000001f;
}
.tcg-card-label.svelte-1adez18 {
  margin: 0 0 6px;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--t2);
  letter-spacing: -0.01em;
  line-height: 1.3;
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}
.tcg-card-body.svelte-1adez18 {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: #475569;
}
@media (max-width: 1000px) {
  .tcg-grid.svelte-1adez18 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 560px) {
  .tcg-grid.svelte-1adez18 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 430px) {
  .tcg-grid.svelte-1adez18 {
    grid-template-columns: 1fr;
  }
}
.tcb-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 112px 0 124px;
  background: radial-gradient(
      1200px 560px at 50% -10%,
      rgba(14, 165, 233, 0.07),
      transparent 65%
    ),
    radial-gradient(
      1000px 500px at 50% 110%,
      rgba(217, 119, 6, 0.06),
      transparent 65%
    ),
    linear-gradient(180deg, #f6fbff, #fffdfa 55%, #fff5e4);
}
.tcb-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(110px);
  opacity: 0.5;
}
.tcb-orb-1.svelte-1adez18 {
  width: 440px;
  height: 440px;
  top: -170px;
  left: 50%;
  transform: translate(-50%);
  background: radial-gradient(
    circle,
    rgba(14, 165, 233, 0.32),
    transparent 70%
  );
}
.tcb-orb-2.svelte-1adez18 {
  width: 460px;
  height: 460px;
  bottom: -180px;
  left: 50%;
  transform: translate(-50%);
  background: radial-gradient(circle, rgba(217, 119, 6, 0.28), transparent 70%);
}
.tcb-card.svelte-1adez18 {
  position: relative;
  z-index: 1;
  max-width: 840px;
  margin: 0 auto;
  padding: 54px 42px 42px;
  text-align: center;
  background: linear-gradient(180deg, #fff, #fafdff);
  border-radius: 18px;
  border: 1px solid rgba(14, 165, 233, 0.25);
  box-shadow: 0 28px 64px #0ea5e914;
}
.tcb-luggage.svelte-1adez18 {
  width: 60px;
  height: 45px;
  margin: 0 auto 14px;
  color: #0369a1;
  animation: svelte-1adez18-tcbFloat 4s ease-in-out infinite;
}
@keyframes svelte-1adez18-tcbFloat {
  0%,
  to {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}
.tcb-luggage.svelte-1adez18 svg:where(.svelte-1adez18) {
  width: 100%;
  height: 100%;
}
.tcb-kicker.svelte-1adez18 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(14, 165, 233, 0.28);
  color: #0369a1;
  font-family: Courier New, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}
.tcb-kicker-pulse.svelte-1adez18 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0ea5e9;
  animation: svelte-1adez18-tcbPulse 1.8s infinite;
}
@keyframes svelte-1adez18-tcbPulse {
  0%,
  to {
    box-shadow: 0 0 #0ea5e98c;
  }
  50% {
    box-shadow: 0 0 0 10px #0ea5e900;
  }
}
.tcb-title.svelte-1adez18 {
  margin: 16px auto 14px;
  max-width: 760px;
  font-size: clamp(1.85rem, 3.4vw, 2.5rem);
  line-height: 1.15;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #0369a1, #b45309);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tcb-lead.svelte-1adez18 {
  max-width: 720px;
  margin: 0 auto 10px;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}
.tcb-body.svelte-1adez18 {
  max-width: 720px;
  margin: 0 auto 22px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #475569;
}
.tcb-chips.svelte-1adez18 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 26px;
}
.tcb-chip.svelte-1adez18 {
  padding: 5px 13px;
  border-radius: 4px;
  background: #0ea5e914;
  color: #0369a1;
  border: 1px solid rgba(14, 165, 233, 0.22);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  font-weight: 600;
}
.tcb-actions.svelte-1adez18 {
  margin-bottom: 14px;
}
.tcb-btn.svelte-1adez18 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 14px 32px #25d3664d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tcb-btn.svelte-1adez18:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px #25d36661;
}
.tcb-btn-shine.svelte-1adez18 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 60%
  );
  transform: translate(-100%);
  transition: transform 0.9s ease;
}
.tcb-btn.svelte-1adez18:hover .tcb-btn-shine:where(.svelte-1adez18) {
  transform: translate(100%);
}
.tcb-note.svelte-1adez18 {
  display: block;
  margin-top: 10px;
  font-size: 11.5px;
  color: #64748b;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 600;
}
.tcb-signature.svelte-1adez18 {
  margin: 12px 0 0;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: #0369a1;
}
.lnw-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 108px 0 124px;
  background: radial-gradient(
      1200px 580px at 50% -10%,
      rgba(217, 119, 6, 0.08),
      transparent 65%
    ),
    radial-gradient(
      1000px 500px at 50% 110%,
      rgba(194, 24, 91, 0.06),
      transparent 65%
    ),
    linear-gradient(180deg, #fff9e9, #fffdf5 55%, #fff5e4);
}
.lnw-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(110px);
  opacity: 0.5;
}
.lnw-orb-1.svelte-1adez18 {
  width: 440px;
  height: 440px;
  top: -170px;
  right: -80px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.3), transparent 70%);
}
.lnw-orb-2.svelte-1adez18 {
  width: 440px;
  height: 440px;
  bottom: -170px;
  left: -80px;
  background: radial-gradient(circle, rgba(194, 24, 91, 0.26), transparent 70%);
}
.lnw-dial.svelte-1adez18 {
  width: 200px;
  height: 200px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  animation: svelte-1adez18-lnwDialSpin 120s linear infinite;
}
@keyframes svelte-1adez18-lnwDialSpin {
  to {
    transform: rotate(360deg);
  }
}
.lnw-dial.svelte-1adez18 svg:where(.svelte-1adez18) {
  width: 100%;
  height: 100%;
}
.lnw-head.svelte-1adez18 {
  text-align: center;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.lnw-kicker.svelte-1adez18 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(217, 119, 6, 0.28);
  color: #b45309;
  font-family: Courier New, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}
.lnw-kicker-pulse.svelte-1adez18 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d97706;
  animation: svelte-1adez18-lnwPulse 1.8s infinite;
}
@keyframes svelte-1adez18-lnwPulse {
  0%,
  to {
    box-shadow: 0 0 #d977068c;
  }
  50% {
    box-shadow: 0 0 0 10px #d9770600;
  }
}
.lnw-title.svelte-1adez18 {
  margin: 14px auto 12px;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  line-height: 1.18;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #b45309, #c2185b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lnw-lead.svelte-1adez18 {
  max-width: 760px;
  margin: 0 auto 12px;
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
  font-family: Georgia, serif;
  font-style: italic;
}
.lnw-intro.svelte-1adez18 {
  max-width: 820px;
  margin: 0 auto 14px;
  font-size: 14px;
  line-height: 1.7;
  color: #475569;
}
.lnw-heading.svelte-1adez18 {
  margin: 14px auto 0;
  color: #b45309;
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 14px;
  max-width: 820px;
}
.lnw-slots.svelte-1adez18 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 28px 0;
}
.lnw-slot.svelte-1adez18 {
  padding: 16px 14px 14px;
  border-radius: 10px;
  background: linear-gradient(165deg, #fff 0%, var(--tBg) 100%);
  border: 1px solid var(--tBd);
  text-align: center;
  animation: svelte-1adez18-lnwIn 0.5s ease calc(var(--i, 0) * 0.08s) both;
}
@keyframes svelte-1adez18-lnwIn {
  0% {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.lnw-slot--gold.svelte-1adez18 {
  --t1: #d97706;
  --t2: #b45309;
  --tBg: rgba(217, 119, 6, 0.07);
  --tBd: rgba(217, 119, 6, 0.25);
}
.lnw-slot--rose.svelte-1adez18 {
  --t1: #e91e8c;
  --t2: #c2185b;
  --tBg: rgba(233, 30, 140, 0.07);
  --tBd: rgba(233, 30, 140, 0.22);
}
.lnw-slot--coral.svelte-1adez18 {
  --t1: #f43f5e;
  --t2: #e11d48;
  --tBg: rgba(244, 63, 94, 0.07);
  --tBd: rgba(244, 63, 94, 0.22);
}
.lnw-slot--teal.svelte-1adez18 {
  --t1: #0d9488;
  --t2: #0f766e;
  --tBg: rgba(13, 148, 136, 0.07);
  --tBd: rgba(13, 148, 136, 0.22);
}
.lnw-slot--emerald.svelte-1adez18 {
  --t1: #059669;
  --t2: #047857;
  --tBg: rgba(5, 150, 105, 0.07);
  --tBd: rgba(5, 150, 105, 0.22);
}
.lnw-slot-time.svelte-1adez18 {
  display: block;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 22px;
  background: linear-gradient(135deg, var(--t1), var(--t2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.01em;
}
.lnw-slot-label.svelte-1adez18 {
  display: block;
  font-size: 11px;
  color: var(--t2);
  font-family: Courier New, monospace;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 4px 0 8px;
}
.lnw-slot-state.svelte-1adez18 {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--tBg);
  color: var(--t2);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
}
.lnw-slot-dot.svelte-1adez18 {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--t1);
  animation: svelte-1adez18-lnwSlotPulse 2s infinite;
}
@keyframes svelte-1adez18-lnwSlotPulse {
  0%,
  to {
    box-shadow: 0 0 #0000004d;
  }
  50% {
    box-shadow: 0 0 0 4px #0000;
  }
}
.lnw-caps.svelte-1adez18 {
  max-width: 760px;
  margin: 0 auto;
  padding: 20px 26px;
  background: #d977060a;
  border: 1px dashed rgba(217, 119, 6, 0.3);
  border-radius: 12px;
  position: relative;
  z-index: 1;
}
.lnw-caps-label.svelte-1adez18 {
  display: block;
  font-family: Courier New, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b45309;
  margin-bottom: 12px;
}
.lnw-caps-list.svelte-1adez18 {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.lnw-caps-list.svelte-1adez18 li:where(.svelte-1adez18) {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.55;
  color: #475569;
}
.lnw-caps-tick.svelte-1adez18 {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #047857);
  color: #fff;
  display: grid;
  place-items: center;
}
.lnw-closing.svelte-1adez18 {
  max-width: 780px;
  margin: 26px auto 0;
  text-align: center;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 14.5px;
  color: #b45309;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .lnw-slots.svelte-1adez18 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 560px) {
  .lnw-slots.svelte-1adez18 {
    grid-template-columns: repeat(2, 1fr);
  }
  .lnw-dial.svelte-1adez18 {
    width: 160px;
    height: 160px;
  }
}
.lnc-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 100px 0 114px;
  background: radial-gradient(
      900px 480px at 0% 90%,
      rgba(194, 24, 91, 0.05),
      transparent 70%
    ),
    #fffdfa;
}
.lnc-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.4;
}
.lnc-orb-1.svelte-1adez18 {
  width: 340px;
  height: 340px;
  bottom: -100px;
  left: -60px;
  background: radial-gradient(circle, rgba(194, 24, 91, 0.26), transparent 70%);
}
.lnc-head.svelte-1adez18 {
  text-align: center;
  margin-bottom: 38px;
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.lnc-kicker.svelte-1adez18 {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: #c2185b0f;
  color: #c2185b;
  border: 1px dashed rgba(194, 24, 91, 0.3);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  letter-spacing: 1.4px;
}
.lnc-title.svelte-1adez18 {
  margin: 14px auto 12px;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.18;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #c2185b, #b45309);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lnc-lead.svelte-1adez18 {
  margin: 0 auto;
  font-size: 14.5px;
  line-height: 1.65;
  color: #64748b;
}
.lnc-grid.svelte-1adez18 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.lnc-card.svelte-1adez18 {
  padding: 20px 20px 18px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--tBd);
  border-top: 3px solid var(--t1);
  box-shadow: 0 8px 20px #0f172a0a;
  animation: svelte-1adez18-lncIn 0.5s ease calc(var(--i, 0) * 0.07s) both;
}
@keyframes svelte-1adez18-lncIn {
  0% {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.lnc-card.svelte-1adez18:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px #0f172a14;
}
.lnc-card--rose.svelte-1adez18 {
  --t1: #e91e8c;
  --tBd: rgba(233, 30, 140, 0.22);
}
.lnc-card--coral.svelte-1adez18 {
  --t1: #f43f5e;
  --tBd: rgba(244, 63, 94, 0.22);
}
.lnc-card--gold.svelte-1adez18 {
  --t1: #d97706;
  --tBd: rgba(217, 119, 6, 0.25);
}
.lnc-card--teal.svelte-1adez18 {
  --t1: #0d9488;
  --tBd: rgba(13, 148, 136, 0.22);
}
.lnc-card--emerald.svelte-1adez18 {
  --t1: #059669;
  --tBd: rgba(5, 150, 105, 0.22);
}
.lnc-card-hour.svelte-1adez18 {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  background: var(--tBd);
  color: var(--t1);
  font-family: Courier New, monospace;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1.4px;
  margin-bottom: 10px;
}
.lnc-card-name.svelte-1adez18 {
  margin: 0 0 6px;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 15.5px;
  color: var(--t1);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.lnc-card-body.svelte-1adez18 {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.6;
  color: #475569;
}
@media (max-width: 900px) {
  .lnc-grid.svelte-1adez18 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .lnc-grid.svelte-1adez18 {
    grid-template-columns: 1fr;
  }
}
.lnr-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 100px 0 114px;
  background: radial-gradient(
      900px 480px at 100% 10%,
      rgba(217, 119, 6, 0.05),
      transparent 70%
    ),
    #fffcf6;
}
.lnr-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.4;
}
.lnr-orb-1.svelte-1adez18 {
  width: 340px;
  height: 340px;
  top: -100px;
  right: -60px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.28), transparent 70%);
}
.lnr-head.svelte-1adez18 {
  text-align: center;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.lnr-kicker.svelte-1adez18 {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: #d977060f;
  color: #b45309;
  border: 1px dashed rgba(217, 119, 6, 0.3);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  letter-spacing: 1.4px;
}
.lnr-title.svelte-1adez18 {
  margin: 14px auto 12px;
  max-width: 760px;
  font-size: clamp(1.75rem, 3vw, 2.3rem);
  line-height: 1.18;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #b45309, #c2185b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lnr-list.svelte-1adez18 {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}
.lnr-item.svelte-1adez18 {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(217, 119, 6, 0.15);
  border-left: 3px solid var(--t1);
  animation: svelte-1adez18-lnrIn 0.5s ease calc(var(--i, 0) * 0.07s) both;
}
@keyframes svelte-1adez18-lnrIn {
  0% {
    opacity: 0;
    transform: translate(-6px);
  }
  to {
    opacity: 1;
    transform: translate(0);
  }
}
.lnr-item--rose.svelte-1adez18 {
  --t1: #e91e8c;
  --t2: #c2185b;
  --tBg: rgba(233, 30, 140, 0.06);
}
.lnr-item--gold.svelte-1adez18 {
  --t1: #d97706;
  --t2: #b45309;
  --tBg: rgba(217, 119, 6, 0.06);
}
.lnr-item--teal.svelte-1adez18 {
  --t1: #0d9488;
  --t2: #0f766e;
  --tBg: rgba(13, 148, 136, 0.06);
}
.lnr-item--emerald.svelte-1adez18 {
  --t1: #059669;
  --t2: #047857;
  --tBg: rgba(5, 150, 105, 0.06);
}
.lnr-item--coral.svelte-1adez18 {
  --t1: #f43f5e;
  --t2: #e11d48;
  --tBg: rgba(244, 63, 94, 0.06);
}
.lnr-item-moon.svelte-1adez18 {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--tBg);
  color: var(--t1);
  border: 1px dashed var(--t1);
}
.lnr-item-label.svelte-1adez18 {
  margin: 0 0 4px;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 15px;
  color: var(--t2);
  letter-spacing: -0.01em;
}
.lnr-item-text.svelte-1adez18 {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #475569;
}
.lnb-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 112px 0 124px;
  background: radial-gradient(
      1200px 560px at 50% -10%,
      rgba(217, 119, 6, 0.08),
      transparent 65%
    ),
    radial-gradient(
      1000px 500px at 50% 110%,
      rgba(194, 24, 91, 0.06),
      transparent 65%
    ),
    linear-gradient(180deg, #fff8e9, #fffdf5 55%, #fff4ea);
}
.lnb-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(110px);
  opacity: 0.5;
}
.lnb-orb-1.svelte-1adez18 {
  width: 440px;
  height: 440px;
  top: -170px;
  left: 50%;
  transform: translate(-50%);
  background: radial-gradient(circle, rgba(217, 119, 6, 0.3), transparent 70%);
}
.lnb-orb-2.svelte-1adez18 {
  width: 460px;
  height: 460px;
  bottom: -180px;
  left: 50%;
  transform: translate(-50%);
  background: radial-gradient(circle, rgba(194, 24, 91, 0.26), transparent 70%);
}
.lnb-card.svelte-1adez18 {
  position: relative;
  z-index: 1;
  max-width: 840px;
  margin: 0 auto;
  padding: 54px 42px 42px;
  text-align: center;
  background: linear-gradient(180deg, #fff, #fffbec);
  border-radius: 18px;
  border: 1px solid rgba(180, 83, 9, 0.22);
  box-shadow: 0 28px 64px #b4530914;
}
.lnb-mini-clock.svelte-1adez18 {
  width: 60px;
  height: 60px;
  margin: 0 auto 14px;
}
.lnb-mini-clock.svelte-1adez18 svg:where(.svelte-1adez18) {
  width: 100%;
  height: 100%;
}
.lnb-kicker.svelte-1adez18 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(180, 83, 9, 0.3);
  color: #78350f;
  font-family: Courier New, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}
.lnb-kicker-pulse.svelte-1adez18 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b45309;
  animation: svelte-1adez18-lnbPulse 1.8s infinite;
}
@keyframes svelte-1adez18-lnbPulse {
  0%,
  to {
    box-shadow: 0 0 #b453098c;
  }
  50% {
    box-shadow: 0 0 0 10px #b4530900;
  }
}
.lnb-title.svelte-1adez18 {
  margin: 16px auto 14px;
  max-width: 760px;
  font-size: clamp(1.85rem, 3.4vw, 2.55rem);
  line-height: 1.15;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #78350f, #c2185b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lnb-lead.svelte-1adez18 {
  max-width: 720px;
  margin: 0 auto 10px;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}
.lnb-body.svelte-1adez18 {
  max-width: 720px;
  margin: 0 auto 22px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #475569;
}
.lnb-chips.svelte-1adez18 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 26px;
}
.lnb-chip.svelte-1adez18 {
  padding: 5px 13px;
  border-radius: 4px;
  background: #b4530914;
  color: #78350f;
  border: 1px solid rgba(180, 83, 9, 0.25);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  font-weight: 600;
}
.lnb-actions.svelte-1adez18 {
  margin-bottom: 14px;
}
.lnb-btn.svelte-1adez18 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 14px 32px #25d3664d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.lnb-btn.svelte-1adez18:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px #25d36661;
}
.lnb-btn-shine.svelte-1adez18 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 60%
  );
  transform: translate(-100%);
  transition: transform 0.9s ease;
}
.lnb-btn.svelte-1adez18:hover .lnb-btn-shine:where(.svelte-1adez18) {
  transform: translate(100%);
}
.lnb-note.svelte-1adez18 {
  display: block;
  margin-top: 10px;
  font-size: 11.5px;
  color: #64748b;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 600;
}
.lnb-signature.svelte-1adez18 {
  margin: 12px 0 0;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: #78350f;
}
.lnb-btn.svelte-1adez18 {
  max-width: 100%;
}
.lnb-btn-label.svelte-1adez18 {
  white-space: nowrap;
}
@media (max-width: 600px) {
  .lnb-section.svelte-1adez18 {
    padding: 72px 0 84px;
  }
  .lnb-card.svelte-1adez18 {
    padding: 40px 20px 32px;
    border-radius: 14px;
  }
  .lnb-mini-clock.svelte-1adez18 {
    width: 52px;
    height: 52px;
  }
  .lnb-btn.svelte-1adez18 {
    width: 100%;
    justify-content: center;
    padding: 15px 18px;
    font-size: 15px;
  }
  .lnb-btn.svelte-1adez18 svg:where(.svelte-1adez18) {
    flex-shrink: 0;
  }
  .lnb-chip.svelte-1adez18 {
    font-size: 12.5px;
  }
}
.lng-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 100px 0 114px;
  background: radial-gradient(
      900px 480px at 100% 0%,
      rgba(13, 148, 136, 0.05),
      transparent 70%
    ),
    radial-gradient(
      800px 460px at 0% 100%,
      rgba(233, 30, 140, 0.05),
      transparent 70%
    ),
    #fffdfb;
}
.lng-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.4;
}
.lng-orb-1.svelte-1adez18 {
  width: 360px;
  height: 360px;
  top: -120px;
  right: -70px;
  background: radial-gradient(
    circle,
    rgba(13, 148, 136, 0.22),
    transparent 70%
  );
}
.lng-orb-2.svelte-1adez18 {
  width: 320px;
  height: 320px;
  bottom: -110px;
  left: -70px;
  background: radial-gradient(circle, rgba(233, 30, 140, 0.2), transparent 70%);
}
.lng-head.svelte-1adez18 {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.lng-kicker.svelte-1adez18 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 999px;
  background: #0d94880f;
  color: #0f766e;
  border: 1px dashed rgba(13, 148, 136, 0.3);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  letter-spacing: 1.4px;
}
.lng-kicker-dot.svelte-1adez18 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0d9488;
  animation: svelte-1adez18-lngPulse 1.8s infinite;
}
@keyframes svelte-1adez18-lngPulse {
  0%,
  to {
    box-shadow: 0 0 #0d948880;
  }
  50% {
    box-shadow: 0 0 0 8px #0d948800;
  }
}
.lng-title.svelte-1adez18 {
  margin: 14px auto 12px;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.18;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #0f766e, #c2185b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lng-lead.svelte-1adez18 {
  margin: 0 auto;
  font-size: 14.5px;
  line-height: 1.65;
  color: #64748b;
}
.lng-grid.svelte-1adez18 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.lng-card.svelte-1adez18 {
  position: relative;
  padding: 22px 20px 20px;
  background: linear-gradient(180deg, #fff, #fffdfb);
  border-radius: 14px;
  border: 1px solid var(--tBd);
  border-top: 3px solid var(--t1);
  box-shadow: 0 10px 26px #0f172a0d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: svelte-1adez18-lngIn 0.5s ease calc(var(--i, 0) * 0.08s) both;
}
@keyframes svelte-1adez18-lngIn {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.lng-card.svelte-1adez18:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px #0f172a1a;
}
.lng-card--rose.svelte-1adez18 {
  --t1: #e91e8c;
  --t2: #c2185b;
  --tBd: rgba(233, 30, 140, 0.2);
  --tSoft: rgba(233, 30, 140, 0.08);
}
.lng-card--gold.svelte-1adez18 {
  --t1: #d97706;
  --t2: #b45309;
  --tBd: rgba(217, 119, 6, 0.22);
  --tSoft: rgba(217, 119, 6, 0.09);
}
.lng-card--teal.svelte-1adez18 {
  --t1: #0d9488;
  --t2: #0f766e;
  --tBd: rgba(13, 148, 136, 0.2);
  --tSoft: rgba(13, 148, 136, 0.08);
}
.lng-card--coral.svelte-1adez18 {
  --t1: #f43f5e;
  --t2: #e11d48;
  --tBd: rgba(244, 63, 94, 0.2);
  --tSoft: rgba(244, 63, 94, 0.08);
}
.lng-card-top.svelte-1adez18 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.lng-pin.svelte-1adez18 {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--tSoft);
  color: var(--t1);
}
.lng-pin.svelte-1adez18 svg:where(.svelte-1adez18) {
  width: 19px;
  height: 19px;
}
.lng-eta.svelte-1adez18 {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--tSoft);
  color: var(--t2);
  font-family: Courier New, monospace;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.6px;
  white-space: nowrap;
}
.lng-card-name.svelte-1adez18 {
  margin: 0 0 8px;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--t2);
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.lng-tag.svelte-1adez18 {
  display: inline-block;
  margin-bottom: 12px;
  padding: 3px 10px;
  border-radius: 4px;
  background: var(--t1);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.lng-chips.svelte-1adez18 {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.lng-chip.svelte-1adez18 {
  padding: 4px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--tBd);
  color: #475569;
  font-size: 11.5px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.lng-chip--link.svelte-1adez18 {
  background: var(--tSoft);
  color: var(--t2);
}
.lng-chip--link.svelte-1adez18:after {
  content: " ›";
  font-weight: 800;
}
.lng-chip--link.svelte-1adez18:hover {
  background: var(--t1);
  color: #fff;
  transform: translateY(-1px);
}
.lng-card-note.svelte-1adez18 {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.6;
  color: #475569;
}
@media (max-width: 1040px) {
  .lng-grid.svelte-1adez18 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .lng-grid.svelte-1adez18 {
    grid-template-columns: 1fr;
  }
}
.lnp-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 100px 0 114px;
  background: radial-gradient(
      900px 480px at 0% 0%,
      rgba(217, 119, 6, 0.05),
      transparent 70%
    ),
    radial-gradient(
      800px 460px at 100% 100%,
      rgba(13, 148, 136, 0.05),
      transparent 70%
    ),
    #fffefb;
}
.lnp-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.4;
}
.lnp-orb-1.svelte-1adez18 {
  width: 360px;
  height: 360px;
  top: -120px;
  left: -70px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.2), transparent 70%);
}
.lnp-head.svelte-1adez18 {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.lnp-kicker.svelte-1adez18 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 999px;
  background: #d977060f;
  color: #b45309;
  border: 1px dashed rgba(217, 119, 6, 0.3);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  letter-spacing: 1.4px;
}
.lnp-kicker-dot.svelte-1adez18 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d97706;
  animation: svelte-1adez18-lngPulse 1.8s infinite;
}
.lnp-title.svelte-1adez18 {
  margin: 14px auto 12px;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.18;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #b45309, #c2185b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lnp-lead.svelte-1adez18 {
  margin: 0 auto;
  font-size: 14.5px;
  line-height: 1.65;
  color: #64748b;
}
.lnp-grid.svelte-1adez18 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
}
.lnp-card.svelte-1adez18 {
  min-width: 0;
  padding: 24px 22px;
  background: linear-gradient(180deg, #fff, #fffdf8);
  border-radius: 14px;
  border: 1px solid var(--tBd);
  border-top: 3px solid var(--t1);
  box-shadow: 0 10px 26px #0f172a0d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: svelte-1adez18-lngIn 0.5s ease calc(var(--i, 0) * 0.08s) both;
}
.lnp-card.svelte-1adez18:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px #0f172a1a;
}
.lnp-card--rose.svelte-1adez18 {
  --t1: #e91e8c;
  --t2: #c2185b;
  --tBd: rgba(233, 30, 140, 0.2);
  --tSoft: rgba(233, 30, 140, 0.07);
}
.lnp-card--gold.svelte-1adez18 {
  --t1: #d97706;
  --t2: #b45309;
  --tBd: rgba(217, 119, 6, 0.22);
  --tSoft: rgba(217, 119, 6, 0.08);
}
.lnp-card--teal.svelte-1adez18 {
  --t1: #0d9488;
  --t2: #0f766e;
  --tBd: rgba(13, 148, 136, 0.2);
  --tSoft: rgba(13, 148, 136, 0.07);
}
.lnp-card-head.svelte-1adez18 {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px dashed var(--tBd);
}
.lnp-tier.svelte-1adez18 {
  margin: 0 0 4px;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--t2);
}
.lnp-who.svelte-1adez18 {
  font-size: 11.5px;
  color: #64748b;
  letter-spacing: 0.4px;
}
.lnp-rows.svelte-1adez18 {
  display: grid;
  gap: 10px;
}
.lnp-row.svelte-1adez18 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 4px 10px;
  padding: 10px 12px;
  border-radius: 9px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
}
.lnp-row--feature.svelte-1adez18 {
  background: var(--tSoft);
  border-color: var(--tBd);
}
.lnp-row-label.svelte-1adez18 {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.lnp-pop.svelte-1adez18 {
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--t1);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.lnp-row-val.svelte-1adez18 {
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--t2);
  white-space: nowrap;
}
.lnp-row-label.svelte-1adez18 {
  min-width: 0;
}
.lnp-row-val.svelte-1adez18 small:where(.svelte-1adez18) {
  font-family: system-ui, sans-serif;
  font-weight: 600;
  font-size: 11px;
  color: #94a3b8;
}
.lnp-note.svelte-1adez18 {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 28px auto 0;
  text-align: center;
  font-size: 13px;
  line-height: 1.65;
  color: #475569;
}
@media (max-width: 760px) {
  .lnp-grid.svelte-1adez18 {
    grid-template-columns: 1fr;
  }
}
.lnf-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 100px 0 114px;
  background: radial-gradient(
      900px 480px at 100% 100%,
      rgba(194, 24, 91, 0.05),
      transparent 70%
    ),
    radial-gradient(
      800px 460px at 0% 0%,
      rgba(13, 148, 136, 0.04),
      transparent 70%
    ),
    #fffdfb;
}
.lnf-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.4;
}
.lnf-orb-1.svelte-1adez18 {
  width: 340px;
  height: 340px;
  bottom: -110px;
  right: -70px;
  background: radial-gradient(circle, rgba(194, 24, 91, 0.2), transparent 70%);
}
.lnf-head.svelte-1adez18 {
  text-align: center;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}
.lnf-kicker.svelte-1adez18 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 999px;
  background: #c2185b0f;
  color: #c2185b;
  border: 1px dashed rgba(194, 24, 91, 0.3);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  letter-spacing: 1.4px;
}
.lnf-kicker-dot.svelte-1adez18 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e91e8c;
  animation: svelte-1adez18-lngPulse 1.8s infinite;
}
.lnf-title.svelte-1adez18 {
  margin: 14px auto 0;
  max-width: 760px;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.18;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #c2185b, #b45309);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lnf-list.svelte-1adez18 {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.lnf-item.svelte-1adez18 {
  background: #fff;
  border: 1px solid rgba(194, 24, 91, 0.16);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px #0f172a0a;
  animation: svelte-1adez18-lngIn 0.5s ease calc(var(--i, 0) * 0.06s) both;
}
.lnf-item[open].svelte-1adez18 {
  border-color: #c2185b57;
  box-shadow: 0 14px 30px #c2185b14;
}
.lnf-q.svelte-1adez18 {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 16px;
  color: #1e293b;
  line-height: 1.4;
}
.lnf-q.svelte-1adez18::-webkit-details-marker {
  display: none;
}
.lnf-q.svelte-1adez18:hover {
  color: #c2185b;
}
.lnf-q-text.svelte-1adez18 {
  flex: 1;
}
.lnf-ic.svelte-1adez18 {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #c2185b14;
  color: #c2185b;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.lnf-ic.svelte-1adez18 svg:where(.svelte-1adez18) {
  width: 15px;
  height: 15px;
}
.lnf-item[open].svelte-1adez18 .lnf-ic:where(.svelte-1adez18) {
  transform: rotate(180deg);
  background: #e91e8c;
  color: #fff;
}
.lnf-a.svelte-1adez18 {
  margin: 0;
  padding: 0 20px 18px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #475569;
}
@media (max-width: 540px) {
  .lnf-q.svelte-1adez18 {
    font-size: 15px;
    padding: 16px;
  }
  .lnf-a.svelte-1adez18 {
    padding: 0 16px 16px;
  }
}
.cvw-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 108px 0 120px;
  background: radial-gradient(
      1100px 540px at 10% 10%,
      rgba(194, 24, 91, 0.05),
      transparent 70%
    ),
    radial-gradient(
      900px 480px at 100% 90%,
      rgba(217, 119, 6, 0.06),
      transparent 70%
    ),
    linear-gradient(180deg, #fff8ef, #fffdf7 55%, #fff2e5);
}
.cvw-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.42;
}
.cvw-orb-1.svelte-1adez18 {
  width: 380px;
  height: 380px;
  top: -110px;
  right: -80px;
  background: radial-gradient(circle, rgba(194, 24, 91, 0.28), transparent 70%);
}
.cvw-orb-2.svelte-1adez18 {
  width: 360px;
  height: 360px;
  bottom: -110px;
  left: -80px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.3), transparent 70%);
}
.cvw-scroll.svelte-1adez18 {
  max-width: 260px;
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
  opacity: 0.85;
}
.cvw-scroll.svelte-1adez18 svg:where(.svelte-1adez18) {
  width: 100%;
  height: 24px;
  display: block;
}
.cvw-head.svelte-1adez18 {
  text-align: center;
  margin-bottom: 42px;
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.cvw-kicker.svelte-1adez18 {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 4px;
  background: #d977060f;
  color: #b45309;
  border: 1px solid rgba(217, 119, 6, 0.3);
  font-family: Courier New, monospace;
  font-size: 11px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  font-weight: 700;
}
.cvw-title.svelte-1adez18 {
  margin: 14px auto 12px;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  line-height: 1.18;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #c2185b, #b45309);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cvw-lead.svelte-1adez18 {
  max-width: 780px;
  margin: 0 auto 12px;
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
  font-family: Georgia, serif;
  font-style: italic;
}
.cvw-bridge.svelte-1adez18 {
  max-width: 820px;
  margin: 0 auto 14px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #475569;
}
.cvw-heading.svelte-1adez18 {
  margin: 14px auto 0;
  color: #c2185b;
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 14px;
}
.cvw-gallery.svelte-1adez18 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.cvw-plaque.svelte-1adez18 {
  position: relative;
  padding: 26px 18px 20px;
  background: linear-gradient(180deg, #fff 0%, var(--tBg) 100%);
  border-radius: 4px;
  border: 1px solid var(--tBd);
  text-align: center;
  box-shadow: 0 10px 26px #0f172a0d;
  animation: svelte-1adez18-cvwIn 0.5s ease calc(var(--i, 0) * 0.08s) both;
}
@keyframes svelte-1adez18-cvwIn {
  0% {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.cvw-plaque.svelte-1adez18:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px #0f172a14;
}
.cvw-plaque--rose.svelte-1adez18 {
  --t1: #e91e8c;
  --t2: #c2185b;
  --tBg: rgba(233, 30, 140, 0.06);
  --tBd: rgba(233, 30, 140, 0.22);
}
.cvw-plaque--coral.svelte-1adez18 {
  --t1: #f43f5e;
  --t2: #e11d48;
  --tBg: rgba(244, 63, 94, 0.06);
  --tBd: rgba(244, 63, 94, 0.22);
}
.cvw-plaque--gold.svelte-1adez18 {
  --t1: #d97706;
  --t2: #b45309;
  --tBg: rgba(217, 119, 6, 0.06);
  --tBd: rgba(217, 119, 6, 0.25);
}
.cvw-plaque--emerald.svelte-1adez18 {
  --t1: #059669;
  --t2: #047857;
  --tBg: rgba(5, 150, 105, 0.06);
  --tBd: rgba(5, 150, 105, 0.22);
}
.cvw-plaque--teal.svelte-1adez18 {
  --t1: #0d9488;
  --t2: #0f766e;
  --tBg: rgba(13, 148, 136, 0.06);
  --tBd: rgba(13, 148, 136, 0.22);
}
.cvw-plaque-frame.svelte-1adez18 {
  position: absolute;
  top: 8px;
  right: 8px;
  bottom: 8px;
  left: 8px;
  border: 1px dashed var(--t1);
  opacity: 0.35;
  pointer-events: none;
  border-radius: 2px;
}
.cvw-plaque-plate.svelte-1adez18 {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 2px;
  background: var(--t1);
  color: #fff;
  font-family: Courier New, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.8px;
  margin-bottom: 12px;
}
.cvw-plaque-label.svelte-1adez18 {
  margin: 0 0 6px;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 15px;
  color: #1e293b;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.cvw-plaque-body.svelte-1adez18 {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.6;
  color: #475569;
}
@media (max-width: 1000px) {
  .cvw-gallery.svelte-1adez18 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 620px) {
  .cvw-gallery.svelte-1adez18 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.cvt-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 100px 0 114px;
  background: radial-gradient(
      900px 480px at 100% 10%,
      rgba(244, 63, 94, 0.05),
      transparent 70%
    ),
    #fffcf6;
}
.cvt-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.4;
}
.cvt-orb-1.svelte-1adez18 {
  width: 360px;
  height: 360px;
  top: -100px;
  right: -80px;
  background: radial-gradient(circle, rgba(244, 63, 94, 0.28), transparent 70%);
}
.cvt-head.svelte-1adez18 {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.cvt-kicker.svelte-1adez18 {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 4px;
  background: #c2185b0f;
  color: #c2185b;
  border: 1px dashed rgba(194, 24, 91, 0.3);
  font-family: Courier New, monospace;
  font-size: 11px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  font-weight: 700;
}
.cvt-title.svelte-1adez18 {
  margin: 14px auto 12px;
  max-width: 820px;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.18;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #c2185b, #b45309);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cvt-lead.svelte-1adez18 {
  max-width: 720px;
  margin: 12px auto 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: #64748b;
  text-align: center;
}
.cvt-grid.svelte-1adez18 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.cvt-grid.svelte-1adez18 > :where(.svelte-1adez18):nth-child(5) {
  grid-column: 1 / span 2;
  max-width: calc(50% - 9px);
  margin: 0 auto;
  width: 100%;
}
.cvt-card.svelte-1adez18 {
  padding: 26px 24px 22px;
  background: #fff;
  border-radius: 4px;
  border: 1px solid var(--tBd);
  box-shadow: 0 10px 26px #0f172a0d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.cvt-card.svelte-1adez18:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--t1), var(--t2));
}
.cvt-card.svelte-1adez18:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px #0f172a14;
}
.cvt-card--rose.svelte-1adez18 {
  --t1: #e91e8c;
  --t2: #c2185b;
  --tBg: rgba(233, 30, 140, 0.08);
  --tBd: rgba(233, 30, 140, 0.22);
}
.cvt-card--coral.svelte-1adez18 {
  --t1: #f43f5e;
  --t2: #e11d48;
  --tBg: rgba(244, 63, 94, 0.08);
  --tBd: rgba(244, 63, 94, 0.22);
}
.cvt-card--gold.svelte-1adez18 {
  --t1: #d97706;
  --t2: #b45309;
  --tBg: rgba(217, 119, 6, 0.08);
  --tBd: rgba(217, 119, 6, 0.25);
}
.cvt-card--emerald.svelte-1adez18 {
  --t1: #059669;
  --t2: #047857;
  --tBg: rgba(5, 150, 105, 0.08);
  --tBd: rgba(5, 150, 105, 0.22);
}
.cvt-card--teal.svelte-1adez18 {
  --t1: #0d9488;
  --t2: #0f766e;
  --tBg: rgba(13, 148, 136, 0.08);
  --tBd: rgba(13, 148, 136, 0.22);
}
.cvt-card-label.svelte-1adez18 {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 2px;
  background: var(--tBg);
  color: var(--t2);
  font-family: Courier New, monospace;
  font-size: 10.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}
.cvt-card-name.svelte-1adez18 {
  margin: 0 0 8px;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 19px;
  color: #1e293b;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.cvt-card-body.svelte-1adez18 {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: #475569;
}
.cvt-closing.svelte-1adez18 {
  max-width: 720px;
  margin: 28px auto 0;
  text-align: center;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: #64748b;
}
@media (max-width: 820px) {
  .cvt-grid.svelte-1adez18 {
    grid-template-columns: 1fr;
  }
  .cvt-grid.svelte-1adez18 > :where(.svelte-1adez18):nth-child(5) {
    grid-column: auto;
    max-width: none;
  }
}
.cvx-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 100px 0 114px;
  background: radial-gradient(
      900px 480px at 0% 50%,
      rgba(217, 119, 6, 0.05),
      transparent 70%
    ),
    #fffdf8;
}
.cvx-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.4;
}
.cvx-orb-1.svelte-1adez18 {
  width: 340px;
  height: 340px;
  top: -100px;
  left: -60px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.28), transparent 70%);
}
.cvx-head.svelte-1adez18 {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.cvx-kicker.svelte-1adez18 {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 4px;
  background: #d977060f;
  color: #b45309;
  border: 1px dashed rgba(217, 119, 6, 0.3);
  font-family: Courier New, monospace;
  font-size: 11px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  font-weight: 700;
}
.cvx-title.svelte-1adez18 {
  margin: 14px auto 12px;
  max-width: 820px;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.18;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #b45309, #c2185b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cvx-lead.svelte-1adez18 {
  max-width: 720px;
  margin: 0 auto;
  font-size: 14.5px;
  line-height: 1.65;
  color: #475569;
  font-family: Georgia, serif;
  font-style: italic;
}
.cvx-body.svelte-1adez18 {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 30px 36px;
  background: linear-gradient(165deg, #fff, #fffbf3);
  border-radius: 6px;
  border: 1px solid rgba(194, 24, 91, 0.15);
}
.cvx-para.svelte-1adez18 {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.75;
  color: #475569;
}
.cvx-quote.svelte-1adez18 {
  position: relative;
  margin: 22px 20px;
  padding: 20px 26px 20px 58px;
  background: #d977060a;
  border-left: 3px solid #b45309;
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 15.5px;
  line-height: 1.6;
  color: #b45309;
  border-radius: 0 6px 6px 0;
}
.cvx-quote-mark.svelte-1adez18 {
  position: absolute;
  top: 10px;
  left: 18px;
  font-size: 48px;
  line-height: 1;
  color: #d97706;
  opacity: 0.5;
  font-family: Georgia, serif;
  font-weight: 800;
}
.cvx-closing.svelte-1adez18 {
  margin: 14px 0 0;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 14px;
  line-height: 1.7;
  color: #b45309;
}
.cvb-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 112px 0 124px;
  background: radial-gradient(
      1200px 560px at 50% -10%,
      rgba(194, 24, 91, 0.07),
      transparent 65%
    ),
    radial-gradient(
      1000px 500px at 50% 110%,
      rgba(217, 119, 6, 0.06),
      transparent 65%
    ),
    linear-gradient(180deg, #fff5ee, #fffdfa 55%, #fff2e4);
}
.cvb-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(110px);
  opacity: 0.5;
}
.cvb-orb-1.svelte-1adez18 {
  width: 440px;
  height: 440px;
  top: -170px;
  left: 50%;
  transform: translate(-50%);
  background: radial-gradient(circle, rgba(194, 24, 91, 0.3), transparent 70%);
}
.cvb-orb-2.svelte-1adez18 {
  width: 460px;
  height: 460px;
  bottom: -180px;
  left: 50%;
  transform: translate(-50%);
  background: radial-gradient(circle, rgba(217, 119, 6, 0.28), transparent 70%);
}
.cvb-card.svelte-1adez18 {
  position: relative;
  z-index: 1;
  max-width: 840px;
  margin: 0 auto;
  padding: 50px 42px 42px;
  text-align: center;
  background: linear-gradient(180deg, #fff, #fff7ea);
  border-radius: 4px;
  border: 2px solid rgba(180, 83, 9, 0.25);
  outline: 1px dashed rgba(180, 83, 9, 0.22);
  outline-offset: 6px;
  box-shadow: 0 28px 64px #b4530914;
}
.cvb-ornament.svelte-1adez18 {
  max-width: 160px;
  margin: 0 auto 14px;
  opacity: 0.85;
}
.cvb-ornament.svelte-1adez18 svg:where(.svelte-1adez18) {
  width: 100%;
  height: 16px;
  display: block;
}
.cvb-kicker.svelte-1adez18 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(180, 83, 9, 0.28);
  color: #78350f;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
}
.cvb-kicker-pulse.svelte-1adez18 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b45309;
  animation: svelte-1adez18-cvbPulse 1.8s infinite;
}
@keyframes svelte-1adez18-cvbPulse {
  0%,
  to {
    box-shadow: 0 0 #b453098c;
  }
  50% {
    box-shadow: 0 0 0 10px #b4530900;
  }
}
.cvb-title.svelte-1adez18 {
  margin: 16px auto 14px;
  max-width: 760px;
  font-size: clamp(1.85rem, 3.4vw, 2.55rem);
  line-height: 1.15;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #78350f, #c2185b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cvb-lead.svelte-1adez18 {
  max-width: 720px;
  margin: 0 auto 10px;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}
.cvb-body.svelte-1adez18 {
  max-width: 720px;
  margin: 0 auto 22px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #475569;
}
.cvb-chips.svelte-1adez18 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 26px;
}
.cvb-chip.svelte-1adez18 {
  padding: 5px 13px;
  border-radius: 2px;
  background: #b4530914;
  color: #78350f;
  border: 1px solid rgba(180, 83, 9, 0.25);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  font-weight: 600;
}
.cvb-actions.svelte-1adez18 {
  margin-bottom: 14px;
}
.cvb-btn.svelte-1adez18 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 14px 32px #25d3664d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cvb-btn.svelte-1adez18:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px #25d36661;
}
.cvb-btn-shine.svelte-1adez18 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 60%
  );
  transform: translate(-100%);
  transition: transform 0.9s ease;
}
.cvb-btn.svelte-1adez18:hover .cvb-btn-shine:where(.svelte-1adez18) {
  transform: translate(100%);
}
.cvb-note.svelte-1adez18 {
  display: block;
  margin-top: 10px;
  font-size: 11.5px;
  color: #64748b;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 600;
}
.cvb-signature.svelte-1adez18 {
  margin: 12px 0 0;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: #78350f;
}
.ptw-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 108px 0 120px;
  background: radial-gradient(
      1000px 500px at 10% 10%,
      rgba(233, 30, 140, 0.05),
      transparent 70%
    ),
    radial-gradient(
      900px 480px at 100% 90%,
      rgba(244, 63, 94, 0.05),
      transparent 70%
    ),
    linear-gradient(180deg, #fffafc, #fffdfa 55%, #fff6f8);
}
.ptw-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.4;
}
.ptw-orb-1.svelte-1adez18 {
  width: 380px;
  height: 380px;
  top: -110px;
  right: -80px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.26),
    transparent 70%
  );
}
.ptw-orb-2.svelte-1adez18 {
  width: 360px;
  height: 360px;
  bottom: -110px;
  left: -80px;
  background: radial-gradient(circle, rgba(244, 63, 94, 0.24), transparent 70%);
}
.ptw-pearls.svelte-1adez18 {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 30px;
}
.ptw-pearl.svelte-1adez18 {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, #fde7f0 55%, #e91e8c);
  box-shadow: 0 2px 4px #c2185b40, inset 0 -2px 3px #c2185b40;
  transform: translateY(calc(sin(var(--j, 0)) * 4px));
}
.ptw-pearl.svelte-1adez18:nth-child(odd) {
  transform: translateY(-4px);
}
.ptw-head.svelte-1adez18 {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.ptw-kicker.svelte-1adez18 {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: #e91e8c0f;
  color: #c2185b;
  border: 1px dashed rgba(233, 30, 140, 0.28);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  letter-spacing: 1.4px;
}
.ptw-title.svelte-1adez18 {
  margin: 14px auto 12px;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  line-height: 1.18;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #c2185b, #e11d48);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ptw-lead.svelte-1adez18 {
  max-width: 720px;
  margin: 0 auto 12px;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}
.ptw-intro.svelte-1adez18 {
  margin: 0 auto;
  color: #c2185b;
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 14px;
}
.ptw-grid.svelte-1adez18 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.ptw-mini.svelte-1adez18 {
  padding: 22px 16px 16px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--tBd);
  text-align: center;
  position: relative;
  box-shadow: 0 8px 22px #0f172a0a;
  animation: svelte-1adez18-ptwIn 0.5s ease calc(var(--i, 0) * 0.08s) both;
}
@keyframes svelte-1adez18-ptwIn {
  0% {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.ptw-mini.svelte-1adez18:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px #0f172a14;
}
.ptw-mini--rose.svelte-1adez18 {
  --t1: #e91e8c;
  --t2: #c2185b;
  --tBd: rgba(233, 30, 140, 0.2);
}
.ptw-mini--coral.svelte-1adez18 {
  --t1: #f43f5e;
  --t2: #e11d48;
  --tBd: rgba(244, 63, 94, 0.2);
}
.ptw-mini--gold.svelte-1adez18 {
  --t1: #d97706;
  --t2: #b45309;
  --tBd: rgba(217, 119, 6, 0.22);
}
.ptw-mini--emerald.svelte-1adez18 {
  --t1: #059669;
  --t2: #047857;
  --tBd: rgba(5, 150, 105, 0.2);
}
.ptw-mini--teal.svelte-1adez18 {
  --t1: #0d9488;
  --t2: #0f766e;
  --tBd: rgba(13, 148, 136, 0.2);
}
.ptw-mini-pearl.svelte-1adez18 {
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translate(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    #fff 0%,
    #fde7f0 55%,
    var(--t1) 100%
  );
  box-shadow: 0 2px 4px #00000026, inset 0 -2px 3px #00000026;
}
.ptw-mini-label.svelte-1adez18 {
  margin: 0 0 6px;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 14.5px;
  color: var(--t2);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.ptw-mini-body.svelte-1adez18 {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: #475569;
}
@media (max-width: 1000px) {
  .ptw-grid.svelte-1adez18 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 620px) {
  .ptw-grid.svelte-1adez18 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.ptt-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 100px 0 114px;
  background: radial-gradient(
      900px 480px at 100% 10%,
      rgba(217, 119, 6, 0.04),
      transparent 70%
    ),
    #fffdfa;
}
.ptt-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.4;
}
.ptt-orb-1.svelte-1adez18 {
  width: 340px;
  height: 340px;
  top: -100px;
  right: -60px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.25), transparent 70%);
}
.ptt-head.svelte-1adez18 {
  text-align: center;
  margin-bottom: 38px;
  position: relative;
  z-index: 1;
}
.ptt-kicker.svelte-1adez18 {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: #e91e8c0f;
  color: #c2185b;
  border: 1px dashed rgba(233, 30, 140, 0.28);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  letter-spacing: 1.4px;
}
.ptt-title.svelte-1adez18 {
  margin: 14px auto 12px;
  max-width: 780px;
  font-size: clamp(1.75rem, 3vw, 2.3rem);
  line-height: 1.18;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #c2185b, #b45309);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ptt-lead.svelte-1adez18 {
  max-width: 720px;
  margin: 12px auto 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: #64748b;
  text-align: center;
}
.ptt-grid.svelte-1adez18 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.ptt-card.svelte-1adez18 {
  padding: 22px 18px 18px;
  background: linear-gradient(180deg, #fff 0%, var(--tBg) 100%);
  border-radius: 18px;
  border: 1px solid var(--tBd);
  text-align: center;
  box-shadow: 0 8px 22px #0f172a0a;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ptt-card.svelte-1adez18:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px #0f172a14;
}
.ptt-card--rose.svelte-1adez18 {
  --t1: #e91e8c;
  --t2: #c2185b;
  --tBg: rgba(233, 30, 140, 0.07);
  --tBd: rgba(233, 30, 140, 0.22);
}
.ptt-card--gold.svelte-1adez18 {
  --t1: #d97706;
  --t2: #b45309;
  --tBg: rgba(217, 119, 6, 0.07);
  --tBd: rgba(217, 119, 6, 0.25);
}
.ptt-card--coral.svelte-1adez18 {
  --t1: #f43f5e;
  --t2: #e11d48;
  --tBg: rgba(244, 63, 94, 0.07);
  --tBd: rgba(244, 63, 94, 0.22);
}
.ptt-card--emerald.svelte-1adez18 {
  --t1: #059669;
  --t2: #047857;
  --tBg: rgba(5, 150, 105, 0.07);
  --tBd: rgba(5, 150, 105, 0.22);
}
.ptt-card--teal.svelte-1adez18 {
  --t1: #0d9488;
  --t2: #0f766e;
  --tBg: rgba(13, 148, 136, 0.07);
  --tBd: rgba(13, 148, 136, 0.22);
}
.ptt-card-tag.svelte-1adez18 {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--t1);
  color: #fff;
  font-family: Courier New, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.ptt-card-name.svelte-1adez18 {
  margin: 0 0 6px;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 15px;
  color: var(--t2);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.ptt-card-body.svelte-1adez18 {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: #475569;
}
.ptt-closing.svelte-1adez18 {
  max-width: 720px;
  margin: 28px auto 0;
  text-align: center;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: #64748b;
}
@media (max-width: 960px) {
  .ptt-grid.svelte-1adez18 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 560px) {
  .ptt-grid.svelte-1adez18 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.ptd-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 100px 0 114px;
  background: radial-gradient(
      900px 480px at 0% 90%,
      rgba(244, 63, 94, 0.04),
      transparent 70%
    ),
    #fffcf9;
}
.ptd-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.4;
}
.ptd-orb-1.svelte-1adez18 {
  width: 340px;
  height: 340px;
  bottom: -100px;
  left: -60px;
  background: radial-gradient(circle, rgba(244, 63, 94, 0.26), transparent 70%);
}
.ptd-head.svelte-1adez18 {
  text-align: center;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.ptd-kicker.svelte-1adez18 {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: #f43f5e0f;
  color: #e11d48;
  border: 1px dashed rgba(244, 63, 94, 0.3);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  letter-spacing: 1.4px;
}
.ptd-title.svelte-1adez18 {
  margin: 14px auto 12px;
  max-width: 780px;
  font-size: clamp(1.75rem, 3vw, 2.3rem);
  line-height: 1.18;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #e11d48, #b45309);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ptd-lead.svelte-1adez18 {
  max-width: 720px;
  margin: 12px auto 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: #64748b;
  text-align: center;
}
.ptd-list.svelte-1adez18 {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}
.ptd-item.svelte-1adez18 {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(244, 63, 94, 0.15);
  animation: svelte-1adez18-ptdIn 0.5s ease calc(var(--i, 0) * 0.06s) both;
}
@keyframes svelte-1adez18-ptdIn {
  0% {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.ptd-item--rose.svelte-1adez18 {
  --t1: #e91e8c;
  --t2: #c2185b;
}
.ptd-item--coral.svelte-1adez18 {
  --t1: #f43f5e;
  --t2: #e11d48;
}
.ptd-item--gold.svelte-1adez18 {
  --t1: #d97706;
  --t2: #b45309;
}
.ptd-item--emerald.svelte-1adez18 {
  --t1: #059669;
  --t2: #047857;
}
.ptd-item--teal.svelte-1adez18 {
  --t1: #0d9488;
  --t2: #0f766e;
}
.ptd-item-mark.svelte-1adez18 {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, var(--t1));
  box-shadow: 0 0 0 3px #fff, 0 0 0 4px var(--t1);
  margin-top: 6px;
}
.ptd-item-label.svelte-1adez18 {
  margin: 0 0 4px;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 14.5px;
  color: var(--t2);
  letter-spacing: -0.01em;
}
.ptd-item-text.svelte-1adez18 {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #475569;
}
.ptb-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 112px 0 124px;
  background: radial-gradient(
      1200px 560px at 50% -10%,
      rgba(233, 30, 140, 0.06),
      transparent 65%
    ),
    radial-gradient(
      1000px 500px at 50% 110%,
      rgba(244, 63, 94, 0.05),
      transparent 65%
    ),
    linear-gradient(180deg, #fff7f9, #fffdfa 55%, #fff4f6);
}
.ptb-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(110px);
  opacity: 0.5;
}
.ptb-orb-1.svelte-1adez18 {
  width: 440px;
  height: 440px;
  top: -170px;
  left: 50%;
  transform: translate(-50%);
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.28),
    transparent 70%
  );
}
.ptb-orb-2.svelte-1adez18 {
  width: 460px;
  height: 460px;
  bottom: -180px;
  left: 50%;
  transform: translate(-50%);
  background: radial-gradient(circle, rgba(244, 63, 94, 0.24), transparent 70%);
}
.ptb-card.svelte-1adez18 {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  padding: 56px 42px 42px;
  text-align: center;
  background: linear-gradient(180deg, #fff, #fff7f9);
  border-radius: 20px;
  border: 1px solid rgba(233, 30, 140, 0.22);
  box-shadow: 0 28px 64px #e91e8c14;
}
.ptb-pearl-deco.svelte-1adez18 {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 14px;
}
.ptb-pearl-deco.svelte-1adez18 span:where(.svelte-1adez18) {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, #e91e8c);
  box-shadow: 0 1px 2px #c2185b4d;
}
.ptb-kicker.svelte-1adez18 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.28);
  color: #c2185b;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
}
.ptb-kicker-pulse.svelte-1adez18 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e91e8c;
  animation: svelte-1adez18-ptbPulse 1.8s infinite;
}
@keyframes svelte-1adez18-ptbPulse {
  0%,
  to {
    box-shadow: 0 0 #e91e8c8c;
  }
  50% {
    box-shadow: 0 0 0 10px #e91e8c00;
  }
}
.ptb-title.svelte-1adez18 {
  margin: 16px auto 14px;
  max-width: 740px;
  font-size: clamp(1.85rem, 3.4vw, 2.45rem);
  line-height: 1.15;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #c2185b, #e11d48);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ptb-lead.svelte-1adez18 {
  max-width: 720px;
  margin: 0 auto 10px;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}
.ptb-body.svelte-1adez18 {
  max-width: 720px;
  margin: 0 auto 22px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #475569;
}
.ptb-chips.svelte-1adez18 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 26px;
}
.ptb-chip.svelte-1adez18 {
  padding: 5px 13px;
  border-radius: 999px;
  background: #e91e8c12;
  color: #c2185b;
  border: 1px solid rgba(233, 30, 140, 0.22);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  font-weight: 600;
}
.ptb-actions.svelte-1adez18 {
  margin-bottom: 14px;
}
.ptb-btn.svelte-1adez18 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 14px 32px #25d3664d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ptb-btn.svelte-1adez18:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px #25d36661;
}
.ptb-btn-shine.svelte-1adez18 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 60%
  );
  transform: translate(-100%);
  transition: transform 0.9s ease;
}
.ptb-btn.svelte-1adez18:hover .ptb-btn-shine:where(.svelte-1adez18) {
  transform: translate(100%);
}
.ptb-note.svelte-1adez18 {
  display: block;
  margin-top: 10px;
  font-size: 11.5px;
  color: #64748b;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 600;
}
.ptb-signature.svelte-1adez18 {
  margin: 12px 0 0;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: #c2185b;
}
.bmw-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 108px 0 120px;
  background: radial-gradient(
      1000px 500px at 10% 10%,
      rgba(5, 150, 105, 0.05),
      transparent 70%
    ),
    radial-gradient(
      900px 480px at 100% 90%,
      rgba(217, 119, 6, 0.04),
      transparent 70%
    ),
    linear-gradient(180deg, #f4fbf5, #fffdfa 55%, #fffaed);
}
.bmw-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.42;
}
.bmw-orb-1.svelte-1adez18 {
  width: 380px;
  height: 380px;
  top: -110px;
  right: -80px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.3), transparent 70%);
}
.bmw-orb-2.svelte-1adez18 {
  width: 360px;
  height: 360px;
  bottom: -110px;
  left: -80px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.24), transparent 70%);
}
.bmw-leaves.svelte-1adez18 {
  max-width: 160px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  opacity: 0.9;
}
.bmw-leaves.svelte-1adez18 svg:where(.svelte-1adez18) {
  width: 100%;
  height: 28px;
  display: block;
}
.bmw-head.svelte-1adez18 {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.bmw-kicker.svelte-1adez18 {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: #0596690f;
  color: #047857;
  border: 1px dashed rgba(5, 150, 105, 0.3);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  letter-spacing: 1.4px;
}
.bmw-title.svelte-1adez18 {
  margin: 14px auto 12px;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  line-height: 1.18;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #047857, #b45309);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.bmw-lead.svelte-1adez18 {
  max-width: 720px;
  margin: 0 auto 10px;
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
  font-family: Georgia, serif;
  font-style: italic;
}
.bmw-bridge.svelte-1adez18 {
  max-width: 720px;
  margin: 0 auto 10px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #047857;
  font-weight: 600;
}
.bmw-intro.svelte-1adez18 {
  max-width: 820px;
  margin: 0 auto 14px;
  font-size: 14px;
  line-height: 1.7;
  color: #475569;
}
.bmw-heading.svelte-1adez18 {
  margin: 14px auto 0;
  color: #047857;
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 14px;
}
.bmw-grid.svelte-1adez18 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.bmw-drop.svelte-1adez18 {
  padding: 24px 16px 16px;
  background: linear-gradient(180deg, #fff, #0596690a);
  border-radius: 14px;
  border: 1px solid var(--tBd);
  text-align: center;
  box-shadow: 0 8px 22px #0596690d;
  animation: svelte-1adez18-bmwIn 0.5s ease calc(var(--i, 0) * 0.08s) both;
}
@keyframes svelte-1adez18-bmwIn {
  0% {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.bmw-drop.svelte-1adez18:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px #0596691a;
}
.bmw-drop--rose.svelte-1adez18 {
  --t1: #e91e8c;
  --t2: #c2185b;
  --tBd: rgba(233, 30, 140, 0.22);
}
.bmw-drop--emerald.svelte-1adez18 {
  --t1: #059669;
  --t2: #047857;
  --tBd: rgba(5, 150, 105, 0.22);
}
.bmw-drop--teal.svelte-1adez18 {
  --t1: #0d9488;
  --t2: #0f766e;
  --tBd: rgba(13, 148, 136, 0.22);
}
.bmw-drop--gold.svelte-1adez18 {
  --t1: #d97706;
  --t2: #b45309;
  --tBd: rgba(217, 119, 6, 0.25);
}
.bmw-drop--coral.svelte-1adez18 {
  --t1: #f43f5e;
  --t2: #e11d48;
  --tBd: rgba(244, 63, 94, 0.22);
}
.bmw-drop-bulb.svelte-1adez18 {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 40px;
  color: var(--t1);
  margin-bottom: 10px;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.1));
}
.bmw-drop-bulb.svelte-1adez18 svg:where(.svelte-1adez18) {
  width: 100%;
  height: 100%;
}
.bmw-drop-label.svelte-1adez18 {
  margin: 0 0 6px;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--t2);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.bmw-drop-body.svelte-1adez18 {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: #475569;
}
@media (max-width: 1000px) {
  .bmw-grid.svelte-1adez18 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 560px) {
  .bmw-grid.svelte-1adez18 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.bmt-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 100px 0 114px;
  background: radial-gradient(
      900px 480px at 0% 90%,
      rgba(217, 119, 6, 0.05),
      transparent 70%
    ),
    #fffdf5;
}
.bmt-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.4;
}
.bmt-orb-1.svelte-1adez18 {
  width: 340px;
  height: 340px;
  bottom: -100px;
  left: -60px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.26), transparent 70%);
}
.bmt-head.svelte-1adez18 {
  text-align: center;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}
.bmt-kicker.svelte-1adez18 {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: #0596690f;
  color: #047857;
  border: 1px dashed rgba(5, 150, 105, 0.3);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  letter-spacing: 1.4px;
}
.bmt-title.svelte-1adez18 {
  margin: 14px auto 12px;
  max-width: 780px;
  font-size: clamp(1.75rem, 3vw, 2.3rem);
  line-height: 1.18;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #047857, #b45309);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.bmt-lead.svelte-1adez18 {
  max-width: 720px;
  margin: 12px auto 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: #64748b;
  text-align: center;
}
.bmt-menu.svelte-1adez18 {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  padding: 26px 32px;
  background: linear-gradient(180deg, #fff, #fffdf0);
  border-radius: 12px;
  border: 1px solid rgba(5, 150, 105, 0.18);
  box-shadow: 0 14px 34px #0596690d;
}
.bmt-row.svelte-1adez18 {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px dashed rgba(5, 150, 105, 0.2);
  animation: svelte-1adez18-bmtIn 0.5s ease calc(var(--i, 0) * 0.07s) both;
}
@keyframes svelte-1adez18-bmtIn {
  0% {
    opacity: 0;
    transform: translate(-6px);
  }
  to {
    opacity: 1;
    transform: translate(0);
  }
}
.bmt-row.svelte-1adez18:last-child {
  border-bottom: none;
}
.bmt-row--rose.svelte-1adez18 {
  --t1: #e91e8c;
  --t2: #c2185b;
}
.bmt-row--emerald.svelte-1adez18 {
  --t1: #059669;
  --t2: #047857;
}
.bmt-row--teal.svelte-1adez18 {
  --t1: #0d9488;
  --t2: #0f766e;
}
.bmt-row--gold.svelte-1adez18 {
  --t1: #d97706;
  --t2: #b45309;
}
.bmt-row--coral.svelte-1adez18 {
  --t1: #f43f5e;
  --t2: #e11d48;
}
.bmt-row-leaf.svelte-1adez18 {
  color: var(--t1);
  font-size: 22px;
  line-height: 1.2;
  font-family: Georgia, serif;
  opacity: 0.8;
}
.bmt-row-head.svelte-1adez18 {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
}
.bmt-row-name.svelte-1adez18 {
  margin: 0;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 17px;
  color: #1e293b;
  letter-spacing: -0.01em;
}
.bmt-row-duration.svelte-1adez18 {
  font-family: Courier New, monospace;
  font-size: 11px;
  color: var(--t2);
  letter-spacing: 1.2px;
  font-weight: 700;
}
.bmt-row-desc.svelte-1adez18 {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: #475569;
}
.bmt-closing.svelte-1adez18 {
  max-width: 720px;
  margin: 30px auto 0;
  text-align: center;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: #64748b;
  position: relative;
  z-index: 1;
}
.bmr-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 90px 0 100px;
  background: radial-gradient(
      900px 480px at 100% 0%,
      rgba(5, 150, 105, 0.06),
      transparent 70%
    ),
    radial-gradient(
      800px 460px at 0% 100%,
      rgba(13, 148, 136, 0.05),
      transparent 70%
    ),
    #fbfffd;
}
.bmr-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.4;
}
.bmr-orb-1.svelte-1adez18 {
  width: 340px;
  height: 340px;
  top: -110px;
  right: -70px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.2), transparent 70%);
}
.bmr-head.svelte-1adez18 {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.bmr-kicker.svelte-1adez18 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 999px;
  background: #05966912;
  color: #047857;
  border: 1px dashed rgba(5, 150, 105, 0.32);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  letter-spacing: 1.4px;
}
.bmr-kicker-dot.svelte-1adez18 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #059669;
  animation: svelte-1adez18-lngPulse 1.8s infinite;
}
.bmr-title.svelte-1adez18 {
  margin: 14px auto 12px;
  font-size: clamp(1.75rem, 3vw, 2.3rem);
  line-height: 1.18;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #047857, #b45309);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.bmr-lead.svelte-1adez18 {
  margin: 0 auto;
  font-size: 14.5px;
  line-height: 1.65;
  color: #64748b;
}
.bmr-menu.svelte-1adez18 {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(5, 150, 105, 0.16);
  border-radius: 14px;
  padding: 8px 22px;
  box-shadow: 0 12px 30px #0f172a0d;
}
.bmr-row.svelte-1adez18 {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: baseline;
  gap: 10px;
  padding: 15px 0;
  border-bottom: 1px dashed rgba(5, 150, 105, 0.16);
  animation: svelte-1adez18-lngIn 0.5s ease calc(var(--i, 0) * 0.06s) both;
}
.bmr-row.svelte-1adez18:last-child {
  border-bottom: none;
}
.bmr-name.svelte-1adez18 {
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 15px;
  color: #1e293b;
}
.bmr-dur.svelte-1adez18 {
  font-family: Courier New, monospace;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: #047857;
  background: #05966914;
  padding: 3px 8px;
  border-radius: 999px;
  white-space: nowrap;
}
.bmr-leaders.svelte-1adez18 {
  height: 1px;
  align-self: center;
  background: repeating-linear-gradient(
    90deg,
    rgba(5, 150, 105, 0.45) 0 2px,
    transparent 2px 6px
  );
  opacity: 0.6;
}
.bmr-price.svelte-1adez18 {
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 16px;
  color: #047857;
  white-space: nowrap;
}
.bmr-note.svelte-1adez18 {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 22px auto 0;
  text-align: center;
  font-size: 13px;
  line-height: 1.65;
  color: #475569;
}
@media (max-width: 560px) {
  .bmr-menu.svelte-1adez18 {
    padding: 4px 16px;
  }
  .bmr-row.svelte-1adez18 {
    grid-template-columns: 1fr auto;
    grid-template-areas: "name name" "dur price";
    gap: 8px 10px;
    align-items: center;
    padding: 16px 0;
  }
  .bmr-leaders.svelte-1adez18 {
    display: none;
  }
  .bmr-name.svelte-1adez18 {
    grid-area: name;
    font-size: 15.5px;
    line-height: 1.3;
  }
  .bmr-dur.svelte-1adez18 {
    grid-area: dur;
    justify-self: start;
  }
  .bmr-price.svelte-1adez18 {
    grid-area: price;
    justify-self: end;
    font-size: 17px;
  }
}
.bmb-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 112px 0 124px;
  background: radial-gradient(
      1200px 560px at 50% -10%,
      rgba(5, 150, 105, 0.07),
      transparent 65%
    ),
    radial-gradient(
      1000px 500px at 50% 110%,
      rgba(217, 119, 6, 0.06),
      transparent 65%
    ),
    linear-gradient(180deg, #f2fbf3, #fffdfa 55%, #fff8ed);
}
.bmb-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(110px);
  opacity: 0.5;
}
.bmb-orb-1.svelte-1adez18 {
  width: 440px;
  height: 440px;
  top: -170px;
  left: 50%;
  transform: translate(-50%);
  background: radial-gradient(circle, rgba(5, 150, 105, 0.3), transparent 70%);
}
.bmb-orb-2.svelte-1adez18 {
  width: 460px;
  height: 460px;
  bottom: -180px;
  left: 50%;
  transform: translate(-50%);
  background: radial-gradient(circle, rgba(217, 119, 6, 0.26), transparent 70%);
}
.bmb-card.svelte-1adez18 {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  padding: 54px 42px 42px;
  text-align: center;
  background: linear-gradient(180deg, #fff, #fafefb);
  border-radius: 18px;
  border: 1px solid rgba(5, 150, 105, 0.25);
  box-shadow: 0 28px 64px #05966914;
}
.bmb-leaf.svelte-1adez18 {
  width: 60px;
  height: 60px;
  margin: 0 auto 14px;
  animation: svelte-1adez18-bmbLeaf 4s ease-in-out infinite;
}
@keyframes svelte-1adez18-bmbLeaf {
  0%,
  to {
    transform: rotate(-3deg);
  }
  50% {
    transform: rotate(3deg);
  }
}
.bmb-leaf.svelte-1adez18 svg:where(.svelte-1adez18) {
  width: 100%;
  height: 100%;
}
.bmb-kicker.svelte-1adez18 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(5, 150, 105, 0.28);
  color: #047857;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
}
.bmb-kicker-pulse.svelte-1adez18 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #059669;
  animation: svelte-1adez18-bmbPulse 1.8s infinite;
}
@keyframes svelte-1adez18-bmbPulse {
  0%,
  to {
    box-shadow: 0 0 #0596698c;
  }
  50% {
    box-shadow: 0 0 0 10px #05966900;
  }
}
.bmb-title.svelte-1adez18 {
  margin: 16px auto 14px;
  max-width: 720px;
  font-size: clamp(1.85rem, 3.4vw, 2.5rem);
  line-height: 1.15;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #047857, #b45309);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.bmb-lead.svelte-1adez18 {
  max-width: 720px;
  margin: 0 auto 10px;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}
.bmb-body.svelte-1adez18 {
  max-width: 720px;
  margin: 0 auto 22px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #475569;
}
.bmb-chips.svelte-1adez18 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 26px;
}
.bmb-chip.svelte-1adez18 {
  padding: 5px 13px;
  border-radius: 999px;
  background: #05966912;
  color: #047857;
  border: 1px solid rgba(5, 150, 105, 0.22);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  font-weight: 600;
}
.bmb-actions.svelte-1adez18 {
  margin-bottom: 14px;
}
.bmb-btn.svelte-1adez18 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 14px 32px #25d3664d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bmb-btn.svelte-1adez18:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px #25d36661;
}
.bmb-btn-shine.svelte-1adez18 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 60%
  );
  transform: translate(-100%);
  transition: transform 0.9s ease;
}
.bmb-btn.svelte-1adez18:hover .bmb-btn-shine:where(.svelte-1adez18) {
  transform: translate(100%);
}
.bmb-note.svelte-1adez18 {
  display: block;
  margin-top: 10px;
  font-size: 11.5px;
  color: #64748b;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 600;
}
.bmb-signature.svelte-1adez18 {
  margin: 12px 0 0;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: #047857;
}
.afw-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 108px 0 120px;
  background: radial-gradient(
      1000px 500px at 10% 10%,
      rgba(5, 150, 105, 0.05),
      transparent 70%
    ),
    radial-gradient(
      900px 480px at 100% 90%,
      rgba(233, 30, 140, 0.04),
      transparent 70%
    ),
    linear-gradient(180deg, #f4fbf5, #fffdfa 55%, #fff6f8);
}
.afw-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.4;
}
.afw-orb-1.svelte-1adez18 {
  width: 380px;
  height: 380px;
  top: -110px;
  right: -80px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.3), transparent 70%);
}
.afw-orb-2.svelte-1adez18 {
  width: 360px;
  height: 360px;
  bottom: -110px;
  left: -80px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.24),
    transparent 70%
  );
}
.afw-head.svelte-1adez18 {
  text-align: center;
  margin-bottom: 34px;
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.afw-kicker.svelte-1adez18 {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: #0596690f;
  color: #047857;
  border: 1px dashed rgba(5, 150, 105, 0.3);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  letter-spacing: 1.4px;
}
.afw-title.svelte-1adez18 {
  margin: 14px auto 12px;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  line-height: 1.18;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #047857, #c2185b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.afw-lead.svelte-1adez18 {
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
  font-family: Georgia, serif;
  font-style: italic;
}
.afw-receipt.svelte-1adez18 {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 18px 44px #0f172a14;
  border: 1px solid rgba(15, 23, 42, 0.08);
  overflow: hidden;
  --zig: 12px;
  -webkit-mask-image: linear-gradient(
      #000 calc(100% - var(--zig)),
      transparent calc(100% - var(--zig))
    ),
    radial-gradient(circle at 0 100%, transparent 6px, #000 7px);
  -webkit-mask-composite: source-over;
}
.afw-receipt-head.svelte-1adez18 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  background: linear-gradient(135deg, #fefce8, #fef3c7);
  border-bottom: 2px dashed rgba(180, 83, 9, 0.3);
}
.afw-receipt-logo.svelte-1adez18 {
  font-family: Courier New, monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #78350f;
}
.afw-receipt-num.svelte-1adez18 {
  font-family: Courier New, monospace;
  font-size: 11px;
  color: #78350f;
  letter-spacing: 1.2px;
}
.afw-receipt-body.svelte-1adez18 {
  padding: 20px 24px;
}
.afw-line.svelte-1adez18 {
  padding: 14px 0;
  border-bottom: 1px dashed rgba(15, 23, 42, 0.12);
  animation: svelte-1adez18-afwIn 0.5s ease calc(var(--i, 0) * 0.08s) both;
}
@keyframes svelte-1adez18-afwIn {
  0% {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.afw-line.svelte-1adez18:last-child {
  border-bottom: none;
}
.afw-line--emerald.svelte-1adez18 {
  --t1: #059669;
  --t2: #047857;
}
.afw-line--rose.svelte-1adez18 {
  --t1: #e91e8c;
  --t2: #c2185b;
}
.afw-line--gold.svelte-1adez18 {
  --t1: #d97706;
  --t2: #b45309;
}
.afw-line--teal.svelte-1adez18 {
  --t1: #0d9488;
  --t2: #0f766e;
}
.afw-line-head.svelte-1adez18 {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}
.afw-line-label.svelte-1adez18 {
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 15px;
  color: var(--t2);
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.afw-line-leaders.svelte-1adez18 {
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    var(--t1) 0 2px,
    transparent 2px 6px
  );
  opacity: 0.4;
  margin-top: 6px;
}
.afw-line-value.svelte-1adez18 {
  font-family: Courier New, monospace;
  font-size: 12px;
  color: var(--t1);
  font-weight: 800;
  letter-spacing: 1.2px;
  flex-shrink: 0;
  padding: 2px 8px;
  background: #00000005;
  border-radius: 3px;
}
.afw-line-body.svelte-1adez18 {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.6;
  color: #475569;
}
.afw-receipt-foot.svelte-1adez18 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px 20px;
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
  border-top: 2px dashed rgba(5, 150, 105, 0.3);
  font-family: Courier New, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: #047857;
}
.afw-receipt-stamp.svelte-1adez18 {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #047857);
  color: #fff;
}
.afw-closing.svelte-1adez18 {
  max-width: 780px;
  margin: 28px auto 0;
  text-align: center;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 14.5px;
  color: #047857;
  position: relative;
  z-index: 1;
}
.afc-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 100px 0 114px;
  background: radial-gradient(
      900px 480px at 100% 10%,
      rgba(217, 119, 6, 0.05),
      transparent 70%
    ),
    #fffdf6;
}
.afc-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.4;
}
.afc-orb-1.svelte-1adez18 {
  width: 340px;
  height: 340px;
  top: -100px;
  right: -60px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.26), transparent 70%);
}
.afc-head.svelte-1adez18 {
  text-align: center;
  margin-bottom: 34px;
  position: relative;
  z-index: 1;
}
.afc-kicker.svelte-1adez18 {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: #0596690f;
  color: #047857;
  border: 1px dashed rgba(5, 150, 105, 0.3);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  letter-spacing: 1.4px;
}
.afc-title.svelte-1adez18 {
  margin: 14px auto 12px;
  max-width: 780px;
  font-size: clamp(1.75rem, 3vw, 2.3rem);
  line-height: 1.18;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #047857, #b45309);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.afc-lead.svelte-1adez18 {
  max-width: 720px;
  margin: 0 auto;
  font-size: 14.5px;
  line-height: 1.65;
  color: #64748b;
}
.afc-grid.svelte-1adez18 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.afc-card.svelte-1adez18 {
  padding: 22px 16px 16px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--tBd);
  text-align: center;
  box-shadow: 0 8px 22px #0f172a0a;
  animation: svelte-1adez18-afcIn 0.5s ease calc(var(--i, 0) * 0.07s) both;
}
@keyframes svelte-1adez18-afcIn {
  0% {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.afc-card.svelte-1adez18:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px #0f172a14;
}
.afc-card--rose.svelte-1adez18 {
  --t1: #e91e8c;
  --t2: #c2185b;
  --tBd: rgba(233, 30, 140, 0.22);
}
.afc-card--gold.svelte-1adez18 {
  --t1: #d97706;
  --t2: #b45309;
  --tBd: rgba(217, 119, 6, 0.25);
}
.afc-card--coral.svelte-1adez18 {
  --t1: #f43f5e;
  --t2: #e11d48;
  --tBd: rgba(244, 63, 94, 0.22);
}
.afc-card--emerald.svelte-1adez18 {
  --t1: #059669;
  --t2: #047857;
  --tBd: rgba(5, 150, 105, 0.22);
}
.afc-card--teal.svelte-1adez18 {
  --t1: #0d9488;
  --t2: #0f766e;
  --tBd: rgba(13, 148, 136, 0.22);
}
.afc-card-tick.svelte-1adez18 {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--t1), var(--t2));
  color: #fff;
  margin-bottom: 10px;
  box-shadow: 0 3px 10px #0000001a;
}
.afc-card-name.svelte-1adez18 {
  margin: 0 0 6px;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--t2);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.afc-card-body.svelte-1adez18 {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: #475569;
}
.afc-closing.svelte-1adez18 {
  max-width: 780px;
  margin: 28px auto 0;
  text-align: center;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: #64748b;
}
@media (max-width: 1000px) {
  .afc-grid.svelte-1adez18 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 560px) {
  .afc-grid.svelte-1adez18 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.afb-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: 112px 0 124px;
  background: radial-gradient(
      1200px 560px at 50% -10%,
      rgba(5, 150, 105, 0.07),
      transparent 65%
    ),
    radial-gradient(
      1000px 500px at 50% 110%,
      rgba(217, 119, 6, 0.06),
      transparent 65%
    ),
    linear-gradient(180deg, #f2fbf3, #fffdfa 55%, #fff4e8);
}
.afb-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(110px);
  opacity: 0.5;
}
.afb-orb-1.svelte-1adez18 {
  width: 440px;
  height: 440px;
  top: -170px;
  left: 50%;
  transform: translate(-50%);
  background: radial-gradient(circle, rgba(5, 150, 105, 0.3), transparent 70%);
}
.afb-orb-2.svelte-1adez18 {
  width: 460px;
  height: 460px;
  bottom: -180px;
  left: 50%;
  transform: translate(-50%);
  background: radial-gradient(circle, rgba(217, 119, 6, 0.26), transparent 70%);
}
.afb-card.svelte-1adez18 {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  padding: 54px 42px 42px;
  text-align: center;
  background: linear-gradient(180deg, #fff, #f5fbf6);
  border-radius: 16px;
  border: 2px dashed rgba(5, 150, 105, 0.25);
  box-shadow: 0 28px 64px #05966914;
}
.afb-stamp.svelte-1adez18 {
  width: 60px;
  height: 60px;
  margin: 0 auto 14px;
  animation: svelte-1adez18-afbStamp 5s ease-in-out infinite;
}
@keyframes svelte-1adez18-afbStamp {
  0%,
  to {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(4deg);
  }
}
.afb-stamp.svelte-1adez18 svg:where(.svelte-1adez18) {
  width: 100%;
  height: 100%;
}
.afb-kicker.svelte-1adez18 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(5, 150, 105, 0.28);
  color: #047857;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
}
.afb-kicker-pulse.svelte-1adez18 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #059669;
  animation: svelte-1adez18-afbPulse 1.8s infinite;
}
@keyframes svelte-1adez18-afbPulse {
  0%,
  to {
    box-shadow: 0 0 #0596698c;
  }
  50% {
    box-shadow: 0 0 0 10px #05966900;
  }
}
.afb-title.svelte-1adez18 {
  margin: 16px auto 14px;
  max-width: 760px;
  font-size: clamp(1.85rem, 3.4vw, 2.5rem);
  line-height: 1.15;
  font-family: Georgia, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #047857, #b45309);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.afb-lead.svelte-1adez18 {
  max-width: 720px;
  margin: 0 auto 10px;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}
.afb-body.svelte-1adez18 {
  max-width: 720px;
  margin: 0 auto 22px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #475569;
}
.afb-chips.svelte-1adez18 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 26px;
}
.afb-chip.svelte-1adez18 {
  padding: 5px 13px;
  border-radius: 999px;
  background: #05966912;
  color: #047857;
  border: 1px solid rgba(5, 150, 105, 0.22);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  font-weight: 600;
}
.afb-actions.svelte-1adez18 {
  margin-bottom: 14px;
}
.afb-btn.svelte-1adez18 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 14px 32px #25d3664d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.afb-btn.svelte-1adez18:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px #25d36661;
}
.afb-btn-shine.svelte-1adez18 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 60%
  );
  transform: translate(-100%);
  transition: transform 0.9s ease;
}
.afb-btn.svelte-1adez18:hover .afb-btn-shine:where(.svelte-1adez18) {
  transform: translate(100%);
}
.afb-note.svelte-1adez18 {
  display: block;
  margin-top: 10px;
  font-size: 11.5px;
  color: #64748b;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 600;
}
.afb-signature.svelte-1adez18 {
  margin: 12px 0 0;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: #047857;
}
.cta-more-link.svelte-1adez18 {
  margin: 14px 0 2px;
  text-align: center;
  font-family: Georgia, serif;
  font-size: 14px;
  color: #475569;
}
.cta-more-link.svelte-1adez18 a:where(.svelte-1adez18) {
  color: #c2185b;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(194, 24, 91, 0.35);
  transition: color 0.2s ease;
}
.cta-more-link.svelte-1adez18 a:where(.svelte-1adez18):hover {
  color: #e91e8c;
}
.cew-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 9vw, 104px) 0;
  background: radial-gradient(
      900px 460px at 50% -10%,
      rgba(217, 119, 6, 0.07),
      transparent 65%
    ),
    linear-gradient(180deg, #fffdf8, #fff7f2);
}
.cew-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.4;
}
.cew-orb-1.svelte-1adez18 {
  width: 340px;
  height: 340px;
  top: -110px;
  right: -70px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.22),
    transparent 70%
  );
}
.cew-head.svelte-1adez18 {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(34px, 5vw, 48px);
  padding: 0 16px;
}
.cew-kicker.svelte-1adez18 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 15px;
  border-radius: 999px;
  background: #d9770612;
  color: #b45309;
  border: 1px dashed rgba(217, 119, 6, 0.32);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.cew-kicker-dot.svelte-1adez18 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e91e8c;
  box-shadow: 0 0 0 4px #e91e8c24;
}
.cew-title.svelte-1adez18 {
  margin: 16px 0 12px;
  font-family: Georgia, serif;
  font-weight: 800;
  line-height: 1.16;
  font-size: clamp(1.7rem, 4.6vw, 2.5rem);
  background: linear-gradient(135deg, #1e293b, #c2185b 55%, #b45309);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cew-lead.svelte-1adez18 {
  margin: 0 auto;
  max-width: 720px;
  font-size: clamp(15px, 2.4vw, 16.5px);
  line-height: 1.7;
  color: #475569;
}
.cew-lead.svelte-1adez18 a:where(.svelte-1adez18) {
  color: #c2185b;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(194, 24, 91, 0.35);
}
.cew-list.svelte-1adez18 {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  gap: 14px;
}
.cew-item.svelte-1adez18 {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid rgba(217, 119, 6, 0.16);
  border-radius: 14px;
  box-shadow: 0 10px 26px #0f172a0d;
  animation: svelte-1adez18-cewIn 0.5s ease calc(var(--i, 0) * 0.07s) both;
}
@keyframes svelte-1adez18-cewIn {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.cew-star.svelte-1adez18 {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fcd34d, #d97706);
  color: #fff;
  font-size: 17px;
  box-shadow: 0 6px 16px #d977064d;
}
.cew-item-label.svelte-1adez18 {
  margin: 2px 0 4px;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: clamp(16px, 2.6vw, 18px);
  color: #1e293b;
}
.cew-item-body.svelte-1adez18 {
  margin: 0;
  font-size: clamp(13.5px, 2.3vw, 14.5px);
  line-height: 1.6;
  color: #475569;
}
.cet-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 9vw, 104px) 0;
  background: linear-gradient(180deg, #fff7f2, #fffdf8);
}
.cet-head.svelte-1adez18 {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(30px, 5vw, 44px);
  padding: 0 16px;
}
.cet-kicker.svelte-1adez18 {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 999px;
  background: #c2185b0f;
  color: #c2185b;
  border: 1px dashed rgba(194, 24, 91, 0.3);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.cet-title.svelte-1adez18 {
  margin: 14px 0 12px;
  font-family: Georgia, serif;
  font-weight: 800;
  line-height: 1.16;
  font-size: clamp(1.7rem, 4.6vw, 2.5rem);
  background: linear-gradient(135deg, #1e293b, #b45309 55%, #c2185b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cet-lead.svelte-1adez18 {
  margin: 0 auto;
  max-width: 680px;
  font-size: clamp(15px, 2.4vw, 16.5px);
  line-height: 1.7;
  color: #475569;
}
.cet-grid.svelte-1adez18 {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.cet-card.svelte-1adez18 {
  position: relative;
  padding: 26px 24px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(217, 119, 6, 0.18);
  border-top: 3px solid #d97706;
  box-shadow: 0 12px 30px #0f172a0d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: svelte-1adez18-cewIn 0.5s ease calc(var(--i, 0) * 0.08s) both;
}
.cet-card.svelte-1adez18:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px #c2185b1a;
}
.cet-card-name.svelte-1adez18 {
  margin: 0 0 8px;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: clamp(17px, 2.8vw, 19px);
  background: linear-gradient(135deg, #b45309, #c2185b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cet-card-body.svelte-1adez18 {
  margin: 0;
  font-size: clamp(13.5px, 2.3vw, 14.5px);
  line-height: 1.65;
  color: #475569;
}
.cet-closing.svelte-1adez18 {
  max-width: 760px;
  margin: clamp(26px, 4vw, 36px) auto 0;
  padding: 0 16px;
  text-align: center;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: clamp(14px, 2.4vw, 15.5px);
  line-height: 1.7;
  color: #b45309;
}
.cet-closing.svelte-1adez18 a:where(.svelte-1adez18) {
  color: #c2185b;
  font-weight: 700;
  font-style: normal;
  text-decoration: none;
  border-bottom: 1px solid rgba(194, 24, 91, 0.35);
}
.ceb-section.svelte-1adez18 {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 10vw, 120px) 0;
  background: radial-gradient(
      1000px 480px at 50% -10%,
      rgba(217, 119, 6, 0.08),
      transparent 65%
    ),
    radial-gradient(
      900px 440px at 50% 110%,
      rgba(194, 24, 91, 0.07),
      transparent 65%
    ),
    linear-gradient(180deg, #fffdf8, #fff6ef);
}
.ceb-orb.svelte-1adez18 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(110px);
  opacity: 0.45;
}
.ceb-orb-1.svelte-1adez18 {
  width: 460px;
  height: 460px;
  top: -180px;
  left: 50%;
  transform: translate(-50%);
  background: radial-gradient(circle, rgba(217, 119, 6, 0.3), transparent 70%);
}
.ceb-card.svelte-1adez18 {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(34px, 6vw, 54px) clamp(20px, 5vw, 44px);
  text-align: center;
  background: linear-gradient(180deg, #fff, #fffaf4);
  border-radius: 20px;
  border: 1px solid rgba(217, 119, 6, 0.28);
  box-shadow: 0 30px 70px #c2185b1a;
}
.ceb-kicker.svelte-1adez18 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 15px;
  border-radius: 999px;
  background: #c2185b12;
  color: #c2185b;
  border: 1px solid rgba(194, 24, 91, 0.22);
  font-family: Courier New, monospace;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.ceb-kicker-pulse.svelte-1adez18 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e91e8c;
  animation: svelte-1adez18-cebPulse 1.8s infinite;
}
@keyframes svelte-1adez18-cebPulse {
  0%,
  to {
    box-shadow: 0 0 #e91e8c66;
  }
  50% {
    box-shadow: 0 0 0 6px #e91e8c00;
  }
}
.ceb-title.svelte-1adez18 {
  margin: 16px 0 12px;
  font-family: Georgia, serif;
  font-weight: 800;
  line-height: 1.15;
  font-size: clamp(1.6rem, 5vw, 2.45rem);
  background: linear-gradient(135deg, #1e293b, #b45309 50%, #c2185b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ceb-lead.svelte-1adez18 {
  margin: 0 auto 10px;
  max-width: 640px;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: clamp(15.5px, 2.6vw, 17px);
  line-height: 1.6;
  color: #334155;
}
.ceb-body.svelte-1adez18 {
  margin: 0 auto;
  max-width: 660px;
  font-size: clamp(14px, 2.4vw, 15.5px);
  line-height: 1.7;
  color: #475569;
}
.ceb-actions.svelte-1adez18 {
  margin: 26px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.ceb-btn.svelte-1adez18 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c4a);
  color: #fff;
  font-weight: 700;
  font-size: clamp(15px, 2.6vw, 16px);
  text-decoration: none;
  box-shadow: 0 16px 36px #25d36652;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ceb-btn.svelte-1adez18:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 46px #25d36666;
}
.ceb-note.svelte-1adez18 {
  font-size: 11.5px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 600;
  color: #64748b;
}
.ceb-signature.svelte-1adez18 {
  margin: 22px 0 0;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: clamp(13px, 2.3vw, 14.5px);
  color: #b45309;
}
@media (max-width: 700px) {
  .cet-grid.svelte-1adez18 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .cew-item.svelte-1adez18 {
    padding: 15px 16px;
    gap: 13px;
  }
  .cew-star.svelte-1adez18 {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }
  .ceb-card.svelte-1adez18 {
    border-radius: 16px;
  }
}
.abs-section.svelte-1adez18 p:where(.svelte-1adez18),
.abt-section.svelte-1adez18 p:where(.svelte-1adez18),
.abc-section.svelte-1adez18 p:where(.svelte-1adez18),
.abw-section.svelte-1adez18 p:where(.svelte-1adez18),
.sig-section.svelte-1adez18 p:where(.svelte-1adez18),
.sir-section.svelte-1adez18 p:where(.svelte-1adez18),
.sid-section.svelte-1adez18 p:where(.svelte-1adez18),
.sic-section.svelte-1adez18 p:where(.svelte-1adez18),
.prq-section.svelte-1adez18 p:where(.svelte-1adez18),
.prc-section.svelte-1adez18 p:where(.svelte-1adez18),
.prp-section.svelte-1adez18 p:where(.svelte-1adez18),
.prs-section.svelte-1adez18 p:where(.svelte-1adez18),
.prg-section.svelte-1adez18 p:where(.svelte-1adez18),
.prb-section.svelte-1adez18 p:where(.svelte-1adez18),
.cgy-section.svelte-1adez18 p:where(.svelte-1adez18),
.cgr-section.svelte-1adez18 p:where(.svelte-1adez18),
.cgx-section.svelte-1adez18 p:where(.svelte-1adez18),
.cgv-section.svelte-1adez18 p:where(.svelte-1adez18),
.cgb-section.svelte-1adez18 p:where(.svelte-1adez18),
.hwh-section.svelte-1adez18 p:where(.svelte-1adez18),
.hwt-section.svelte-1adez18 p:where(.svelte-1adez18),
.hwd-section.svelte-1adez18 p:where(.svelte-1adez18),
.hwb-section.svelte-1adez18 p:where(.svelte-1adez18),
.ahw-section.svelte-1adez18 p:where(.svelte-1adez18),
.aht-section.svelte-1adez18 p:where(.svelte-1adez18),
.ahe-section.svelte-1adez18 p:where(.svelte-1adez18),
.ahb-section.svelte-1adez18 p:where(.svelte-1adez18),
.mws-section.svelte-1adez18 p:where(.svelte-1adez18),
.mwt-section.svelte-1adez18 p:where(.svelte-1adez18),
.mwd-section.svelte-1adez18 p:where(.svelte-1adez18),
.mwb-section.svelte-1adez18 p:where(.svelte-1adez18),
.ruw-section.svelte-1adez18 p:where(.svelte-1adez18),
.rub-section.svelte-1adez18 p:where(.svelte-1adez18),
.inw-section.svelte-1adez18 p:where(.svelte-1adez18),
.int-section.svelte-1adez18 p:where(.svelte-1adez18),
.inv-section.svelte-1adez18 p:where(.svelte-1adez18),
.inb-section.svelte-1adez18 p:where(.svelte-1adez18),
.mlw-section.svelte-1adez18 p:where(.svelte-1adez18),
.mlt-section.svelte-1adez18 p:where(.svelte-1adez18),
.mla-section.svelte-1adez18 p:where(.svelte-1adez18),
.mlb-section.svelte-1adez18 p:where(.svelte-1adez18),
.mdw-section.svelte-1adez18 p:where(.svelte-1adez18),
.mdt-section.svelte-1adez18 p:where(.svelte-1adez18),
.mdh-section.svelte-1adez18 p:where(.svelte-1adez18),
.mdb-section.svelte-1adez18 p:where(.svelte-1adez18),
.dgw-section.svelte-1adez18 p:where(.svelte-1adez18),
.dgc-section.svelte-1adez18 p:where(.svelte-1adez18),
.dgs-section.svelte-1adez18 p:where(.svelte-1adez18),
.dgb-section.svelte-1adez18 p:where(.svelte-1adez18),
.tcw-section.svelte-1adez18 p:where(.svelte-1adez18),
.tcg-section.svelte-1adez18 p:where(.svelte-1adez18),
.tcb-section.svelte-1adez18 p:where(.svelte-1adez18),
.lnw-section.svelte-1adez18 p:where(.svelte-1adez18),
.lnc-section.svelte-1adez18 p:where(.svelte-1adez18),
.lnr-section.svelte-1adez18 p:where(.svelte-1adez18),
.lnb-section.svelte-1adez18 p:where(.svelte-1adez18),
.lng-section.svelte-1adez18 p:where(.svelte-1adez18),
.lnp-section.svelte-1adez18 p:where(.svelte-1adez18),
.lnf-section.svelte-1adez18 p:where(.svelte-1adez18),
.cvw-section.svelte-1adez18 p:where(.svelte-1adez18),
.cvt-section.svelte-1adez18 p:where(.svelte-1adez18),
.cvx-section.svelte-1adez18 p:where(.svelte-1adez18),
.cvb-section.svelte-1adez18 p:where(.svelte-1adez18),
.ptw-section.svelte-1adez18 p:where(.svelte-1adez18),
.ptt-section.svelte-1adez18 p:where(.svelte-1adez18),
.ptd-section.svelte-1adez18 p:where(.svelte-1adez18),
.ptb-section.svelte-1adez18 p:where(.svelte-1adez18),
.bmw-section.svelte-1adez18 p:where(.svelte-1adez18),
.bmt-section.svelte-1adez18 p:where(.svelte-1adez18),
.bmr-section.svelte-1adez18 p:where(.svelte-1adez18),
.bmb-section.svelte-1adez18 p:where(.svelte-1adez18),
.afw-section.svelte-1adez18 p:where(.svelte-1adez18),
.afc-section.svelte-1adez18 p:where(.svelte-1adez18),
.afb-section.svelte-1adez18 p:where(.svelte-1adez18) {
  font-size: 15.5px !important;
  line-height: 1.75 !important;
}
.abs-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.abs-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.abs-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.abt-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.abt-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.abt-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.abc-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.abc-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.abc-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.abw-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.abw-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.abw-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.sig-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.sig-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.sig-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.sir-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.sir-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.sir-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.sid-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.sid-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.sid-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.sic-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.sic-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.sic-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.prq-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.prq-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.prq-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.prc-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.prc-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.prc-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.prp-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.prp-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.prp-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.prs-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.prs-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.prs-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.prg-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.prg-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.prg-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.prb-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.prb-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.prb-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.cgy-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.cgy-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.cgy-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.cgr-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.cgr-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.cgr-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.cgx-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.cgx-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.cgx-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.cgv-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.cgv-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.cgv-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.cgb-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.cgb-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.cgb-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.hwh-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.hwh-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.hwh-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.hwt-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.hwt-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.hwt-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.hwd-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.hwd-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.hwd-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.hwb-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.hwb-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.hwb-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.ahw-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.ahw-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.ahw-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.aht-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.aht-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.aht-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.ahe-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.ahe-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.ahe-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.ahb-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.ahb-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.ahb-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.mws-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.mws-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.mws-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.mwt-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.mwt-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.mwt-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.mwd-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.mwd-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.mwd-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.mwb-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.mwb-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.mwb-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.ruw-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.ruw-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.ruw-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.rub-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.rub-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.rub-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.inw-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.inw-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.inw-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.int-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.int-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.int-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.inv-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.inv-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.inv-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.inb-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.inb-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.inb-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.mlw-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.mlw-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.mlw-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.mlt-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.mlt-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.mlt-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.mla-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.mla-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.mla-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.mlb-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.mlb-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.mlb-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.mdw-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.mdw-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.mdw-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.mdt-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.mdt-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.mdt-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.mdh-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.mdh-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.mdh-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.mdb-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.mdb-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.mdb-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.dgw-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.dgw-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.dgw-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.dgc-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.dgc-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.dgc-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.dgs-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.dgs-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.dgs-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.dgb-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.dgb-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.dgb-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.tcw-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.tcw-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.tcw-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.tcg-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.tcg-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.tcg-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.tcb-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.tcb-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.tcb-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.lnw-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.lnw-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.lnw-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.lnc-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.lnc-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.lnc-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.lnr-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.lnr-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.lnr-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.lnb-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.lnb-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.lnb-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.lng-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.lng-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.lng-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.lnp-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.lnp-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.lnp-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.lnf-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.lnf-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.lnf-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.cvw-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.cvw-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.cvw-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.cvt-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.cvt-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.cvt-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.cvx-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.cvx-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.cvx-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.cvb-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.cvb-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.cvb-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.ptw-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.ptw-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.ptw-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.ptt-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.ptt-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.ptt-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.ptd-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.ptd-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.ptd-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.ptb-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.ptb-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.ptb-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.bmw-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.bmw-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.bmw-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.bmt-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.bmt-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.bmt-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.bmr-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.bmr-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.bmr-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.bmb-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.bmb-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.bmb-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.afw-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.afw-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.afw-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.afc-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.afc-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.afc-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18),
.afb-section.svelte-1adez18 [class*="-lead"]:where(.svelte-1adez18),
.afb-section.svelte-1adez18 [class*="-intro"]:where(.svelte-1adez18),
.afb-section.svelte-1adez18 [class*="-bridge"]:where(.svelte-1adez18) {
  font-size: 16.5px !important;
  line-height: 1.7 !important;
}
.abs-section.svelte-1adez18 h3:where(.svelte-1adez18),
.abt-section.svelte-1adez18 h3:where(.svelte-1adez18),
.abc-section.svelte-1adez18 h3:where(.svelte-1adez18),
.abw-section.svelte-1adez18 h3:where(.svelte-1adez18),
.sig-section.svelte-1adez18 h3:where(.svelte-1adez18),
.sir-section.svelte-1adez18 h3:where(.svelte-1adez18),
.sid-section.svelte-1adez18 h3:where(.svelte-1adez18),
.sic-section.svelte-1adez18 h3:where(.svelte-1adez18),
.prq-section.svelte-1adez18 h3:where(.svelte-1adez18),
.prc-section.svelte-1adez18 h3:where(.svelte-1adez18),
.prp-section.svelte-1adez18 h3:where(.svelte-1adez18),
.prs-section.svelte-1adez18 h3:where(.svelte-1adez18),
.prg-section.svelte-1adez18 h3:where(.svelte-1adez18),
.prb-section.svelte-1adez18 h3:where(.svelte-1adez18),
.cgy-section.svelte-1adez18 h3:where(.svelte-1adez18),
.cgr-section.svelte-1adez18 h3:where(.svelte-1adez18),
.cgx-section.svelte-1adez18 h3:where(.svelte-1adez18),
.cgv-section.svelte-1adez18 h3:where(.svelte-1adez18),
.cgb-section.svelte-1adez18 h3:where(.svelte-1adez18),
.hwh-section.svelte-1adez18 h3:where(.svelte-1adez18),
.hwt-section.svelte-1adez18 h3:where(.svelte-1adez18),
.hwd-section.svelte-1adez18 h3:where(.svelte-1adez18),
.hwb-section.svelte-1adez18 h3:where(.svelte-1adez18),
.ahw-section.svelte-1adez18 h3:where(.svelte-1adez18),
.aht-section.svelte-1adez18 h3:where(.svelte-1adez18),
.ahe-section.svelte-1adez18 h3:where(.svelte-1adez18),
.ahb-section.svelte-1adez18 h3:where(.svelte-1adez18),
.mws-section.svelte-1adez18 h3:where(.svelte-1adez18),
.mwt-section.svelte-1adez18 h3:where(.svelte-1adez18),
.mwd-section.svelte-1adez18 h3:where(.svelte-1adez18),
.mwb-section.svelte-1adez18 h3:where(.svelte-1adez18),
.ruw-section.svelte-1adez18 h3:where(.svelte-1adez18),
.rub-section.svelte-1adez18 h3:where(.svelte-1adez18),
.inw-section.svelte-1adez18 h3:where(.svelte-1adez18),
.int-section.svelte-1adez18 h3:where(.svelte-1adez18),
.inv-section.svelte-1adez18 h3:where(.svelte-1adez18),
.inb-section.svelte-1adez18 h3:where(.svelte-1adez18),
.mlw-section.svelte-1adez18 h3:where(.svelte-1adez18),
.mlt-section.svelte-1adez18 h3:where(.svelte-1adez18),
.mla-section.svelte-1adez18 h3:where(.svelte-1adez18),
.mlb-section.svelte-1adez18 h3:where(.svelte-1adez18),
.mdw-section.svelte-1adez18 h3:where(.svelte-1adez18),
.mdt-section.svelte-1adez18 h3:where(.svelte-1adez18),
.mdh-section.svelte-1adez18 h3:where(.svelte-1adez18),
.mdb-section.svelte-1adez18 h3:where(.svelte-1adez18),
.dgw-section.svelte-1adez18 h3:where(.svelte-1adez18),
.dgc-section.svelte-1adez18 h3:where(.svelte-1adez18),
.dgs-section.svelte-1adez18 h3:where(.svelte-1adez18),
.dgb-section.svelte-1adez18 h3:where(.svelte-1adez18),
.tcw-section.svelte-1adez18 h3:where(.svelte-1adez18),
.tcg-section.svelte-1adez18 h3:where(.svelte-1adez18),
.tcb-section.svelte-1adez18 h3:where(.svelte-1adez18),
.lnw-section.svelte-1adez18 h3:where(.svelte-1adez18),
.lnc-section.svelte-1adez18 h3:where(.svelte-1adez18),
.lnr-section.svelte-1adez18 h3:where(.svelte-1adez18),
.lnb-section.svelte-1adez18 h3:where(.svelte-1adez18),
.lng-section.svelte-1adez18 h3:where(.svelte-1adez18),
.lnp-section.svelte-1adez18 h3:where(.svelte-1adez18),
.lnf-section.svelte-1adez18 h3:where(.svelte-1adez18),
.cvw-section.svelte-1adez18 h3:where(.svelte-1adez18),
.cvt-section.svelte-1adez18 h3:where(.svelte-1adez18),
.cvx-section.svelte-1adez18 h3:where(.svelte-1adez18),
.cvb-section.svelte-1adez18 h3:where(.svelte-1adez18),
.ptw-section.svelte-1adez18 h3:where(.svelte-1adez18),
.ptt-section.svelte-1adez18 h3:where(.svelte-1adez18),
.ptd-section.svelte-1adez18 h3:where(.svelte-1adez18),
.ptb-section.svelte-1adez18 h3:where(.svelte-1adez18),
.bmw-section.svelte-1adez18 h3:where(.svelte-1adez18),
.bmt-section.svelte-1adez18 h3:where(.svelte-1adez18),
.bmr-section.svelte-1adez18 h3:where(.svelte-1adez18),
.bmb-section.svelte-1adez18 h3:where(.svelte-1adez18),
.afw-section.svelte-1adez18 h3:where(.svelte-1adez18),
.afc-section.svelte-1adez18 h3:where(.svelte-1adez18),
.afb-section.svelte-1adez18 h3:where(.svelte-1adez18) {
  font-size: 18px !important;
  line-height: 1.3 !important;
}
.abs-section.svelte-1adez18 h2:where(.svelte-1adez18),
.abt-section.svelte-1adez18 h2:where(.svelte-1adez18),
.abc-section.svelte-1adez18 h2:where(.svelte-1adez18),
.abw-section.svelte-1adez18 h2:where(.svelte-1adez18),
.sig-section.svelte-1adez18 h2:where(.svelte-1adez18),
.sir-section.svelte-1adez18 h2:where(.svelte-1adez18),
.sid-section.svelte-1adez18 h2:where(.svelte-1adez18),
.sic-section.svelte-1adez18 h2:where(.svelte-1adez18),
.prq-section.svelte-1adez18 h2:where(.svelte-1adez18),
.prc-section.svelte-1adez18 h2:where(.svelte-1adez18),
.prp-section.svelte-1adez18 h2:where(.svelte-1adez18),
.prs-section.svelte-1adez18 h2:where(.svelte-1adez18),
.prg-section.svelte-1adez18 h2:where(.svelte-1adez18),
.prb-section.svelte-1adez18 h2:where(.svelte-1adez18),
.cgy-section.svelte-1adez18 h2:where(.svelte-1adez18),
.cgr-section.svelte-1adez18 h2:where(.svelte-1adez18),
.cgx-section.svelte-1adez18 h2:where(.svelte-1adez18),
.cgv-section.svelte-1adez18 h2:where(.svelte-1adez18),
.cgb-section.svelte-1adez18 h2:where(.svelte-1adez18),
.hwh-section.svelte-1adez18 h2:where(.svelte-1adez18),
.hwt-section.svelte-1adez18 h2:where(.svelte-1adez18),
.hwd-section.svelte-1adez18 h2:where(.svelte-1adez18),
.hwb-section.svelte-1adez18 h2:where(.svelte-1adez18),
.ahw-section.svelte-1adez18 h2:where(.svelte-1adez18),
.aht-section.svelte-1adez18 h2:where(.svelte-1adez18),
.ahe-section.svelte-1adez18 h2:where(.svelte-1adez18),
.ahb-section.svelte-1adez18 h2:where(.svelte-1adez18),
.mws-section.svelte-1adez18 h2:where(.svelte-1adez18),
.mwt-section.svelte-1adez18 h2:where(.svelte-1adez18),
.mwd-section.svelte-1adez18 h2:where(.svelte-1adez18),
.mwb-section.svelte-1adez18 h2:where(.svelte-1adez18),
.ruw-section.svelte-1adez18 h2:where(.svelte-1adez18),
.rub-section.svelte-1adez18 h2:where(.svelte-1adez18),
.inw-section.svelte-1adez18 h2:where(.svelte-1adez18),
.int-section.svelte-1adez18 h2:where(.svelte-1adez18),
.inv-section.svelte-1adez18 h2:where(.svelte-1adez18),
.inb-section.svelte-1adez18 h2:where(.svelte-1adez18),
.mlw-section.svelte-1adez18 h2:where(.svelte-1adez18),
.mlt-section.svelte-1adez18 h2:where(.svelte-1adez18),
.mla-section.svelte-1adez18 h2:where(.svelte-1adez18),
.mlb-section.svelte-1adez18 h2:where(.svelte-1adez18),
.mdw-section.svelte-1adez18 h2:where(.svelte-1adez18),
.mdt-section.svelte-1adez18 h2:where(.svelte-1adez18),
.mdh-section.svelte-1adez18 h2:where(.svelte-1adez18),
.mdb-section.svelte-1adez18 h2:where(.svelte-1adez18),
.dgw-section.svelte-1adez18 h2:where(.svelte-1adez18),
.dgc-section.svelte-1adez18 h2:where(.svelte-1adez18),
.dgs-section.svelte-1adez18 h2:where(.svelte-1adez18),
.dgb-section.svelte-1adez18 h2:where(.svelte-1adez18),
.tcw-section.svelte-1adez18 h2:where(.svelte-1adez18),
.tcg-section.svelte-1adez18 h2:where(.svelte-1adez18),
.tcb-section.svelte-1adez18 h2:where(.svelte-1adez18),
.lnw-section.svelte-1adez18 h2:where(.svelte-1adez18),
.lnc-section.svelte-1adez18 h2:where(.svelte-1adez18),
.lnr-section.svelte-1adez18 h2:where(.svelte-1adez18),
.lnb-section.svelte-1adez18 h2:where(.svelte-1adez18),
.lng-section.svelte-1adez18 h2:where(.svelte-1adez18),
.lnp-section.svelte-1adez18 h2:where(.svelte-1adez18),
.lnf-section.svelte-1adez18 h2:where(.svelte-1adez18),
.cvw-section.svelte-1adez18 h2:where(.svelte-1adez18),
.cvt-section.svelte-1adez18 h2:where(.svelte-1adez18),
.cvx-section.svelte-1adez18 h2:where(.svelte-1adez18),
.cvb-section.svelte-1adez18 h2:where(.svelte-1adez18),
.ptw-section.svelte-1adez18 h2:where(.svelte-1adez18),
.ptt-section.svelte-1adez18 h2:where(.svelte-1adez18),
.ptd-section.svelte-1adez18 h2:where(.svelte-1adez18),
.ptb-section.svelte-1adez18 h2:where(.svelte-1adez18),
.bmw-section.svelte-1adez18 h2:where(.svelte-1adez18),
.bmt-section.svelte-1adez18 h2:where(.svelte-1adez18),
.bmr-section.svelte-1adez18 h2:where(.svelte-1adez18),
.bmb-section.svelte-1adez18 h2:where(.svelte-1adez18),
.afw-section.svelte-1adez18 h2:where(.svelte-1adez18),
.afc-section.svelte-1adez18 h2:where(.svelte-1adez18),
.afb-section.svelte-1adez18 h2:where(.svelte-1adez18) {
  font-size: clamp(1.95rem, 3.4vw, 2.65rem) !important;
}
.abs-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.abs-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.abs-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.abt-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.abt-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.abt-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.abc-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.abc-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.abc-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.abw-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.abw-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.abw-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.sig-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.sig-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.sig-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.sir-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.sir-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.sir-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.sid-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.sid-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.sid-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.sic-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.sic-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.sic-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.prq-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.prq-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.prq-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.prc-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.prc-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.prc-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.prp-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.prp-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.prp-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.prs-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.prs-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.prs-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.prg-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.prg-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.prg-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.prb-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.prb-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.prb-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.cgy-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.cgy-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.cgy-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.cgr-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.cgr-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.cgr-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.cgx-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.cgx-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.cgx-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.cgv-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.cgv-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.cgv-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.cgb-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.cgb-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.cgb-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.hwh-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.hwh-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.hwh-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.hwt-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.hwt-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.hwt-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.hwd-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.hwd-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.hwd-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.hwb-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.hwb-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.hwb-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.ahw-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.ahw-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.ahw-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.aht-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.aht-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.aht-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.ahe-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.ahe-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.ahe-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.ahb-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.ahb-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.ahb-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.mws-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.mws-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.mws-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.mwt-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.mwt-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.mwt-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.mwd-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.mwd-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.mwd-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.mwb-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.mwb-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.mwb-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.ruw-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.ruw-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.ruw-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.rub-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.rub-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.rub-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.inw-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.inw-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.inw-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.int-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.int-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.int-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.inv-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.inv-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.inv-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.inb-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.inb-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.inb-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.mlw-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.mlw-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.mlw-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.mlt-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.mlt-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.mlt-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.mla-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.mla-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.mla-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.mlb-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.mlb-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.mlb-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.mdw-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.mdw-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.mdw-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.mdt-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.mdt-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.mdt-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.mdh-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.mdh-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.mdh-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.mdb-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.mdb-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.mdb-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.dgw-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.dgw-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.dgw-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.dgc-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.dgc-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.dgc-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.dgs-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.dgs-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.dgs-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.dgb-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.dgb-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.dgb-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.tcw-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.tcw-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.tcw-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.tcg-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.tcg-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.tcg-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.tcb-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.tcb-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.tcb-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.lnw-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.lnw-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.lnw-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.lnc-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.lnc-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.lnc-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.lnr-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.lnr-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.lnr-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.lnb-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.lnb-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.lnb-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.lng-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.lng-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.lng-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.lnp-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.lnp-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.lnp-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.lnf-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.lnf-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.lnf-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.cvw-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.cvw-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.cvw-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.cvt-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.cvt-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.cvt-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.cvx-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.cvx-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.cvx-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.cvb-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.cvb-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.cvb-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.ptw-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.ptw-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.ptw-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.ptt-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.ptt-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.ptt-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.ptd-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.ptd-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.ptd-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.ptb-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.ptb-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.ptb-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.bmw-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.bmw-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.bmw-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.bmt-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.bmt-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.bmt-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.bmr-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.bmr-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.bmr-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.bmb-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.bmb-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.bmb-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.afw-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.afw-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.afw-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.afc-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.afc-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.afc-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18),
.afb-section.svelte-1adez18
  [class*="-tag"]:where(.svelte-1adez18):not(a):not(.cvb-chip):not(
    .ptb-chip
  ):not(.dgb-chip):not(.cgb-chip):not(.abw-chip):not(.mlb-chip):not(
    .afb-chip
  ):not(.ahb-chip):not(.mwb-chip):not(.rub-chip):not(.inb-chip):not(
    .mdb-chip
  ):not(.bmb-chip):not(.lnb-chip):not(.tcb-chip):not(.tcw-tag):not(
    .sic-chip
  ):not(.prb-chip):not(.sib-chip),
.afb-section.svelte-1adez18 [class*="-code"]:where(.svelte-1adez18),
.afb-section.svelte-1adez18 [class*="-badge"]:where(.svelte-1adez18) {
  font-size: 11.5px !important;
}
.abs-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.abt-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.abc-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.abw-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.sig-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.sir-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.sid-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.sic-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.prq-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.prc-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.prp-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.prs-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.prg-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.prb-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.cgy-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.cgr-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.cgx-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.cgv-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.cgb-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.hwh-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.hwt-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.hwd-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.hwb-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.ahw-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.aht-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.ahe-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.ahb-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.mws-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.mwt-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.mwd-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.mwb-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.ruw-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.rub-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.inw-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.int-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.inv-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.inb-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.mlw-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.mlt-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.mla-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.mlb-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.mdw-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.mdt-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.mdh-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.mdb-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.dgw-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.dgc-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.dgs-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.dgb-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.tcw-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.tcg-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.tcb-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.lnw-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.lnc-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.lnr-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.lnb-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.lng-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.lnp-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.lnf-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.cvw-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.cvt-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.cvx-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.cvb-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.ptw-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.ptt-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.ptd-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.ptb-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.bmw-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.bmt-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.bmr-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.bmb-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.afw-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.afc-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18),
.afb-section.svelte-1adez18 [class*="-kicker"]:where(.svelte-1adez18) {
  font-size: 12px !important;
}
@media (max-width: 560px) {
  .rub-card.svelte-1adez18,
  .sic-card.svelte-1adez18,
  .ahb-card.svelte-1adez18,
  .mwb-card.svelte-1adez18,
  .inb-card.svelte-1adez18,
  .mlb-card.svelte-1adez18,
  .mdb-card.svelte-1adez18,
  .dgb-card.svelte-1adez18,
  .tcb-card.svelte-1adez18,
  .lnb-card.svelte-1adez18,
  .cvb-card.svelte-1adez18,
  .ptb-card.svelte-1adez18,
  .bmb-card.svelte-1adez18,
  .afb-card.svelte-1adez18,
  .cgb-card.svelte-1adez18,
  .abw-box.svelte-1adez18 {
    padding: 36px 20px 32px !important;
  }
  .rub-section.svelte-1adez18 .rub-title:where(.svelte-1adez18),
  .sic-section.svelte-1adez18 .sic-title:where(.svelte-1adez18),
  .ahb-section.svelte-1adez18 .ahb-title:where(.svelte-1adez18),
  .mwb-section.svelte-1adez18 .mwb-title:where(.svelte-1adez18),
  .inb-section.svelte-1adez18 .inb-title:where(.svelte-1adez18),
  .mlb-section.svelte-1adez18 .mlb-title:where(.svelte-1adez18),
  .mdb-section.svelte-1adez18 .mdb-title:where(.svelte-1adez18),
  .dgb-section.svelte-1adez18 .dgb-title:where(.svelte-1adez18),
  .tcb-section.svelte-1adez18 .tcb-title:where(.svelte-1adez18),
  .lnb-section.svelte-1adez18 .lnb-title:where(.svelte-1adez18),
  .cvb-section.svelte-1adez18 .cvb-title:where(.svelte-1adez18),
  .ptb-section.svelte-1adez18 .ptb-title:where(.svelte-1adez18),
  .bmb-section.svelte-1adez18 .bmb-title:where(.svelte-1adez18),
  .afb-section.svelte-1adez18 .afb-title:where(.svelte-1adez18),
  .cgb-section.svelte-1adez18 .cgb-title:where(.svelte-1adez18),
  .abw-section.svelte-1adez18 .abw-cta-title:where(.svelte-1adez18) {
    font-size: clamp(1.6rem, 7vw, 2rem) !important;
    line-height: 1.2 !important;
  }
}
.abs-reason-text.svelte-1adez18,
.abs-reason-label.svelte-1adez18,
.abt-case-body.svelte-1adez18,
.abt-case-tagline.svelte-1adez18,
.abt-case-name.svelte-1adez18,
.abc-pane-body.svelte-1adez18,
.abc-tag.svelte-1adez18,
.abw-benefit-desc.svelte-1adez18,
.abw-benefit-title.svelte-1adez18,
.abw-bridge.svelte-1adez18,
.abw-cta-lead.svelte-1adez18,
.abw-cta-title.svelte-1adez18,
.sig-para.svelte-1adez18,
.sir-body.svelte-1adez18,
.sir-tagline.svelte-1adez18,
.sid-para.svelte-1adez18,
.sid-highlight-value.svelte-1adez18,
.prq-trait-text.svelte-1adez18,
.prq-trait-label.svelte-1adez18,
.prq-intro.svelte-1adez18,
.prq-heading.svelte-1adez18,
.prc-card-body.svelte-1adez18,
.prp-card-body.svelte-1adez18,
.prp-heading.svelte-1adez18,
.prs-card-body.svelte-1adez18,
.prs-card-name.svelte-1adez18,
.prg-item-text.svelte-1adez18,
.prg-item-label.svelte-1adez18,
.prb-body.svelte-1adez18,
.prb-chip.svelte-1adez18,
.cgy-para.svelte-1adez18,
.cgr-body.svelte-1adez18,
.cgr-name.svelte-1adez18,
.cgx-note-text.svelte-1adez18,
.cgx-note-heading.svelte-1adez18,
.cgv-card-body.svelte-1adez18,
.cgv-card-name.svelte-1adez18,
.cgb-body.svelte-1adez18,
.hwh-reason-body.svelte-1adez18,
.hwh-reason-label.svelte-1adez18,
.hwh-intro.svelte-1adez18,
.hwt-body.svelte-1adez18,
.hwt-tagline.svelte-1adez18,
.hwt-name.svelte-1adez18,
.hwb-body.svelte-1adez18,
.ahw-trait-body.svelte-1adez18,
.ahw-trait-label.svelte-1adez18,
.ahw-heading.svelte-1adez18,
.aht-card-body.svelte-1adez18,
.aht-card-name.svelte-1adez18,
.ahe-beat-text.svelte-1adez18,
.ahe-beat-heading.svelte-1adez18,
.ahb-body.svelte-1adez18,
.mws-trait-body.svelte-1adez18,
.mws-trait-label.svelte-1adez18,
.mws-intro.svelte-1adez18,
.mwt-body.svelte-1adez18,
.mwt-name.svelte-1adez18,
.mwd-point-text.svelte-1adez18,
.mwd-point-label.svelte-1adez18,
.mwd-heading.svelte-1adez18,
.mwb-body.svelte-1adez18,
.ruw-pillar-body.svelte-1adez18,
.ruw-pillar-label.svelte-1adez18,
.rub-body.svelte-1adez18,
.inw-point-body.svelte-1adez18,
.inw-point-label.svelte-1adez18,
.inw-heading.svelte-1adez18,
.int-entry-text.svelte-1adez18,
.int-entry-name.svelte-1adez18,
.inv-explainer-pane.svelte-1adez18 p:where(.svelte-1adez18),
.inv-ledger-text.svelte-1adez18 span:where(.svelte-1adez18),
.inv-ledger-text.svelte-1adez18 strong:where(.svelte-1adez18),
.inb-body.svelte-1adez18,
.mlw-beat-body.svelte-1adez18,
.mlw-beat-label.svelte-1adez18,
.mlt-body.svelte-1adez18,
.mlt-name.svelte-1adez18,
.mla-para.svelte-1adez18,
.mla-footer.svelte-1adez18,
.mla-highlight-value.svelte-1adez18,
.mlb-body.svelte-1adez18,
.mdw-frame-body.svelte-1adez18,
.mdw-frame-label.svelte-1adez18,
.mdt-tear-body.svelte-1adez18,
.mdt-tear-name.svelte-1adez18,
.mdb-body.svelte-1adez18,
.dgw-para.svelte-1adez18,
.dgw-slot-detail.svelte-1adez18,
.dgw-slot-label.svelte-1adez18,
.dgc-card-body.svelte-1adez18,
.dgc-card-name.svelte-1adez18,
.dgs-item-text.svelte-1adez18,
.dgs-item-label.svelte-1adez18,
.dgb-body.svelte-1adez18,
.tcw-tag-detail.svelte-1adez18,
.tcw-tag-label.svelte-1adez18,
.tcw-intro.svelte-1adez18,
.tcg-card-body.svelte-1adez18,
.tcg-card-label.svelte-1adez18,
.tcb-body.svelte-1adez18,
.lnw-intro.svelte-1adez18,
.lnw-heading.svelte-1adez18,
.lnw-caps-list.svelte-1adez18 li:where(.svelte-1adez18),
.lnc-card-body.svelte-1adez18,
.lnc-card-name.svelte-1adez18,
.lnr-item-text.svelte-1adez18,
.lnr-item-label.svelte-1adez18,
.lnb-body.svelte-1adez18,
.cvw-plaque-body.svelte-1adez18,
.cvw-plaque-label.svelte-1adez18,
.cvw-bridge.svelte-1adez18,
.cvw-heading.svelte-1adez18,
.cvt-card-body.svelte-1adez18,
.cvt-card-name.svelte-1adez18,
.cvx-para.svelte-1adez18,
.cvx-quote.svelte-1adez18,
.cvb-body.svelte-1adez18,
.ptw-mini-body.svelte-1adez18,
.ptw-mini-label.svelte-1adez18,
.ptw-intro.svelte-1adez18,
.ptt-card-body.svelte-1adez18,
.ptt-card-name.svelte-1adez18,
.ptd-item-text.svelte-1adez18,
.ptd-item-label.svelte-1adez18,
.ptb-body.svelte-1adez18,
.bmw-drop-body.svelte-1adez18,
.bmw-drop-label.svelte-1adez18,
.bmw-bridge.svelte-1adez18,
.bmw-intro.svelte-1adez18,
.bmw-heading.svelte-1adez18,
.bmt-row-desc.svelte-1adez18,
.bmt-row-name.svelte-1adez18,
.bmb-body.svelte-1adez18,
.afw-line-body.svelte-1adez18,
.afw-line-label.svelte-1adez18,
.afc-card-body.svelte-1adez18,
.afc-card-name.svelte-1adez18,
.afb-body.svelte-1adez18 {
  font-size: 15px !important;
  line-height: 1.7 !important;
}
.abs-reason-label.svelte-1adez18,
.abt-case-name.svelte-1adez18,
.abc-pane-name.svelte-1adez18,
.sig-pillar-label.svelte-1adez18,
.sir-name.svelte-1adez18,
.prq-trait-label.svelte-1adez18,
.prc-card-name.svelte-1adez18,
.prp-card-name.svelte-1adez18,
.prs-card-name.svelte-1adez18,
.prg-item-label.svelte-1adez18,
.cgr-name.svelte-1adez18,
.cgx-note-heading.svelte-1adez18,
.cgv-card-name.svelte-1adez18,
.hwh-reason-label.svelte-1adez18,
.hwt-name.svelte-1adez18,
.ahw-trait-label.svelte-1adez18,
.aht-card-name.svelte-1adez18,
.ahe-beat-heading.svelte-1adez18,
.mws-trait-label.svelte-1adez18,
.mwt-name.svelte-1adez18,
.mwd-point-label.svelte-1adez18,
.ruw-pillar-label.svelte-1adez18,
.inw-point-label.svelte-1adez18,
.int-entry-name.svelte-1adez18,
.mlw-beat-label.svelte-1adez18,
.mlt-name.svelte-1adez18,
.mdw-frame-label.svelte-1adez18,
.mdt-tear-name.svelte-1adez18,
.dgw-slot-label.svelte-1adez18,
.dgc-card-name.svelte-1adez18,
.dgs-item-label.svelte-1adez18,
.tcw-tag-label.svelte-1adez18,
.tcg-card-label.svelte-1adez18,
.lnc-card-name.svelte-1adez18,
.lnr-item-label.svelte-1adez18,
.cvw-plaque-label.svelte-1adez18,
.cvt-card-name.svelte-1adez18,
.ptw-mini-label.svelte-1adez18,
.ptt-card-name.svelte-1adez18,
.ptd-item-label.svelte-1adez18,
.bmw-drop-label.svelte-1adez18,
.bmt-row-name.svelte-1adez18,
.afw-line-label.svelte-1adez18,
.afc-card-name.svelte-1adez18 {
  font-size: 17px !important;
  line-height: 1.35 !important;
}
@media (max-width: 560px) {
  .abs-section.svelte-1adez18 p:where(.svelte-1adez18),
  .abt-section.svelte-1adez18 p:where(.svelte-1adez18),
  .abc-section.svelte-1adez18 p:where(.svelte-1adez18),
  .abw-section.svelte-1adez18 p:where(.svelte-1adez18),
  .sig-section.svelte-1adez18 p:where(.svelte-1adez18),
  .sir-section.svelte-1adez18 p:where(.svelte-1adez18),
  .sid-section.svelte-1adez18 p:where(.svelte-1adez18),
  .sic-section.svelte-1adez18 p:where(.svelte-1adez18),
  .prq-section.svelte-1adez18 p:where(.svelte-1adez18),
  .prc-section.svelte-1adez18 p:where(.svelte-1adez18),
  .prp-section.svelte-1adez18 p:where(.svelte-1adez18),
  .prs-section.svelte-1adez18 p:where(.svelte-1adez18),
  .prg-section.svelte-1adez18 p:where(.svelte-1adez18),
  .prb-section.svelte-1adez18 p:where(.svelte-1adez18),
  .cgy-section.svelte-1adez18 p:where(.svelte-1adez18),
  .cgr-section.svelte-1adez18 p:where(.svelte-1adez18),
  .cgx-section.svelte-1adez18 p:where(.svelte-1adez18),
  .cgv-section.svelte-1adez18 p:where(.svelte-1adez18),
  .cgb-section.svelte-1adez18 p:where(.svelte-1adez18),
  .hwh-section.svelte-1adez18 p:where(.svelte-1adez18),
  .hwt-section.svelte-1adez18 p:where(.svelte-1adez18),
  .hwb-section.svelte-1adez18 p:where(.svelte-1adez18),
  .ahw-section.svelte-1adez18 p:where(.svelte-1adez18),
  .aht-section.svelte-1adez18 p:where(.svelte-1adez18),
  .ahe-section.svelte-1adez18 p:where(.svelte-1adez18),
  .ahb-section.svelte-1adez18 p:where(.svelte-1adez18),
  .mws-section.svelte-1adez18 p:where(.svelte-1adez18),
  .mwt-section.svelte-1adez18 p:where(.svelte-1adez18),
  .mwd-section.svelte-1adez18 p:where(.svelte-1adez18),
  .mwb-section.svelte-1adez18 p:where(.svelte-1adez18),
  .ruw-section.svelte-1adez18 p:where(.svelte-1adez18),
  .rub-section.svelte-1adez18 p:where(.svelte-1adez18),
  .inw-section.svelte-1adez18 p:where(.svelte-1adez18),
  .int-section.svelte-1adez18 p:where(.svelte-1adez18),
  .inv-section.svelte-1adez18 p:where(.svelte-1adez18),
  .inb-section.svelte-1adez18 p:where(.svelte-1adez18),
  .mlw-section.svelte-1adez18 p:where(.svelte-1adez18),
  .mlt-section.svelte-1adez18 p:where(.svelte-1adez18),
  .mla-section.svelte-1adez18 p:where(.svelte-1adez18),
  .mlb-section.svelte-1adez18 p:where(.svelte-1adez18),
  .mdw-section.svelte-1adez18 p:where(.svelte-1adez18),
  .mdt-section.svelte-1adez18 p:where(.svelte-1adez18),
  .mdb-section.svelte-1adez18 p:where(.svelte-1adez18),
  .dgw-section.svelte-1adez18 p:where(.svelte-1adez18),
  .dgc-section.svelte-1adez18 p:where(.svelte-1adez18),
  .dgs-section.svelte-1adez18 p:where(.svelte-1adez18),
  .dgb-section.svelte-1adez18 p:where(.svelte-1adez18),
  .tcw-section.svelte-1adez18 p:where(.svelte-1adez18),
  .tcg-section.svelte-1adez18 p:where(.svelte-1adez18),
  .tcb-section.svelte-1adez18 p:where(.svelte-1adez18),
  .lnw-section.svelte-1adez18 p:where(.svelte-1adez18),
  .lnc-section.svelte-1adez18 p:where(.svelte-1adez18),
  .lnr-section.svelte-1adez18 p:where(.svelte-1adez18),
  .lnb-section.svelte-1adez18 p:where(.svelte-1adez18),
  .cvw-section.svelte-1adez18 p:where(.svelte-1adez18),
  .cvt-section.svelte-1adez18 p:where(.svelte-1adez18),
  .cvx-section.svelte-1adez18 p:where(.svelte-1adez18),
  .cvb-section.svelte-1adez18 p:where(.svelte-1adez18),
  .ptw-section.svelte-1adez18 p:where(.svelte-1adez18),
  .ptt-section.svelte-1adez18 p:where(.svelte-1adez18),
  .ptd-section.svelte-1adez18 p:where(.svelte-1adez18),
  .ptb-section.svelte-1adez18 p:where(.svelte-1adez18),
  .bmw-section.svelte-1adez18 p:where(.svelte-1adez18),
  .bmt-section.svelte-1adez18 p:where(.svelte-1adez18),
  .bmb-section.svelte-1adez18 p:where(.svelte-1adez18),
  .afw-section.svelte-1adez18 p:where(.svelte-1adez18),
  .afc-section.svelte-1adez18 p:where(.svelte-1adez18),
  .afb-section.svelte-1adez18 p:where(.svelte-1adez18) {
    font-size: 14.5px !important;
    line-height: 1.7 !important;
  }
}


/*ends here*/


/*Area Single Page*/

.cdp-hero.svelte-7fpoih,
.cat-main.svelte-7fpoih,
.lab-section.svelte-7fpoih,
.faq-section.svelte-7fpoih,
.xtype-wrap.svelte-7fpoih,
.rcx-section.svelte-7fpoih,
.zones-section.svelte-7fpoih,
.mg-section.svelte-7fpoih,
.ad-section.svelte-7fpoih,
.ns-section.svelte-7fpoih,
.zl-section.svelte-7fpoih,
.em-section.svelte-7fpoih,
.lm-section.svelte-7fpoih,
.tp-section.svelte-7fpoih,
.ei-section.svelte-7fpoih,
.na-section.svelte-7fpoih,
.bn-section.svelte-7fpoih,
.fa-section.svelte-7fpoih,
.nm-section.svelte-7fpoih,
.tb-section.svelte-7fpoih,
.bc-section.svelte-7fpoih,
.pf-section.svelte-7fpoih,
.tl-section.svelte-7fpoih,
.pc-section.svelte-7fpoih,
.txm-section.svelte-7fpoih,
.mc-section.svelte-7fpoih,
.ews-section.svelte-7fpoih,
.cl-section.svelte-7fpoih,
.gc-section.svelte-7fpoih,
.kwh-section.svelte-7fpoih,
.kr-section.svelte-7fpoih,
.kzi-section.svelte-7fpoih,
.kho-section.svelte-7fpoih,
.ksp-section.svelte-7fpoih,
.kbf-section.svelte-7fpoih,
.kna-section.svelte-7fpoih,
.kct-section.svelte-7fpoih,
.biw-section.svelte-7fpoih,
.bir-section.svelte-7fpoih,
.bih-section.svelte-7fpoih,
.bina-section.svelte-7fpoih,
.bict-section.svelte-7fpoih,
.cbw-section.svelte-7fpoih,
.cbr-section.svelte-7fpoih,
.cbct-section.svelte-7fpoih,
.twy-section.svelte-7fpoih,
.tct-section.svelte-7fpoih,
.kyk-section.svelte-7fpoih,
.kys-section.svelte-7fpoih,
.kyr-section.svelte-7fpoih,
.kybk-section.svelte-7fpoih,
.mrq-section.svelte-7fpoih,
.mrt-section.svelte-7fpoih,
.mrct-section.svelte-7fpoih,
.sme-section.svelte-7fpoih,
.smr-section.svelte-7fpoih,
.smct-section.svelte-7fpoih,
.dwh-section.svelte-7fpoih,
.dzn-section.svelte-7fpoih,
.drs-section.svelte-7fpoih,
.dct-section.svelte-7fpoih,
.wsf-section.svelte-7fpoih,
.wlt-section.svelte-7fpoih,
.wsr-section.svelte-7fpoih,
.wbk-section.svelte-7fpoih,
.skt-section.svelte-7fpoih,
.skg-section.svelte-7fpoih,
.skc-section.svelte-7fpoih,
.skd-section.svelte-7fpoih,
.cpd-section.svelte-7fpoih,
.cha-section.svelte-7fpoih,
.cge-section.svelte-7fpoih,
.cws-section.svelte-7fpoih {
  border-bottom: 1px solid rgba(233, 30, 140, 0.12);
}
.ews-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 104px 0 114px;
  background: radial-gradient(
      800px 520px at 10% 10%,
      rgba(233, 30, 140, 0.06) 0%,
      transparent 60%
    ),
    radial-gradient(
      800px 520px at 90% 90%,
      rgba(217, 119, 6, 0.06) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #fffafc, #fff, #fffdf5);
}
.ews-bg-orb.svelte-7fpoih {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: 0;
}
.ews-bg-orb-1.svelte-7fpoih {
  top: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.22) 0%,
    transparent 70%
  );
}
.ews-bg-orb-2.svelte-7fpoih {
  bottom: -90px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(217, 119, 6, 0.22) 0%,
    transparent 70%
  );
}
.ews-head.svelte-7fpoih {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto 40px;
  text-align: center;
}
.ews-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #be185d;
  margin-bottom: 22px;
}
.ews-kicker-track.svelte-7fpoih {
  width: 26px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(233, 30, 140, 0.5),
    transparent
  );
  border-radius: 1px;
}
.ews-kicker-dot.svelte-7fpoih {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e91e8c;
  box-shadow: 0 0 0 3px #e91e8c38;
}
.ews-title.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(1.95rem, 3.4vw, 2.75rem);
  font-weight: 700 !important;
  line-height: 1.13;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  background: linear-gradient(115deg, #1e293b, #e91e8c, #d97706);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.ews-leads.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}
.ews-leads.svelte-7fpoih p:where(.svelte-7fpoih) {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(15px, 1.42vw, 17px);
  line-height: 1.72;
  color: #334155;
  margin: 0;
}
.ews-punch.svelte-7fpoih {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 36px auto 52px;
  padding: 26px 36px 24px 56px;
  border-left: 3px solid transparent;
  border-image: linear-gradient(180deg, #e91e8c, #d97706) 1;
  background: linear-gradient(110deg, #fdf2f880, #fef3c780);
  border-radius: 0 16px 16px 0;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.ews-punch-mark.svelte-7fpoih {
  position: absolute;
  top: 0;
  left: 14px;
  font-family: Cormorant Garamond, serif;
  font-size: 72px;
  line-height: 1;
  color: #e91e8c47;
  pointer-events: none;
}
.ews-punch.svelte-7fpoih blockquote:where(.svelte-7fpoih) {
  margin: 0;
  font-family: Cormorant Garamond, serif;
  font-size: clamp(17px, 1.6vw, 20px);
  font-style: italic;
  font-weight: 600;
  line-height: 1.48;
  background: linear-gradient(110deg, #1e293b, #e91e8c, #d97706 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.ews-split.svelte-7fpoih {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}
.ews-rail.svelte-7fpoih {
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 50%;
  width: 40px;
  transform: translate(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.ews-rail-track.svelte-7fpoih {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translate(-50%);
  background: repeating-linear-gradient(
    180deg,
    #e91e8c 0 8px,
    transparent 8px 14px,
    #d97706 14px 22px,
    transparent 22px 28px
  );
  opacity: 0.55;
}
.ews-rail-pulse.svelte-7fpoih {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  width: 3px;
  height: 40px;
  background: linear-gradient(180deg, transparent, #e91e8c, transparent);
  animation: svelte-7fpoih-ews-train 6s ease-in-out infinite;
}
@keyframes svelte-7fpoih-ews-train {
  0% {
    top: 0;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  to {
    top: calc(100% - 40px);
    opacity: 0;
  }
}
.ews-rail-station.svelte-7fpoih {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.ews-rail-station-dot.svelte-7fpoih {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e91e8c, #d97706);
  box-shadow: 0 0 0 4px #fff, 0 0 0 5px #e91e8c4d, 0 8px 18px -4px #e91e8c66;
}
.ews-rail-station-label.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #1e293b;
  padding: 4px 9px;
  border-radius: 6px;
  background: #fff;
  border: 1.5px solid #1e293b;
  white-space: nowrap;
}
.ews-panel.svelte-7fpoih {
  position: relative;
  padding: 36px 34px 30px;
  border-radius: 22px;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.96) 0%,
    var(--ews-bg) 100%
  );
  border: 1px solid var(--ews-border);
  box-shadow: 0 18px 48px -22px #0f172a24;
  overflow: hidden;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.55s,
    border-color 0.55s;
}
.ews-panel.svelte-7fpoih:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 62px -22px var(--ews-shadow);
  border-color: var(--ews-border-strong);
}
.ews-panel-compass.svelte-7fpoih {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: Cormorant Garamond, serif;
  font-size: 140px;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.4px var(--ews-color);
  opacity: 0.14;
  pointer-events: none;
  letter-spacing: -0.04em;
  transition: opacity 0.5s, transform 0.8s;
}
.ews-panel.svelte-7fpoih:hover .ews-panel-compass:where(.svelte-7fpoih) {
  opacity: 0.32;
  transform: scale(1.06) rotate(-5deg);
}
.ews-panel-kicker.svelte-7fpoih {
  display: inline-block;
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--ews-color), var(--ews-color-2));
  margin-bottom: 14px;
}
.ews-panel-name.svelte-7fpoih {
  position: relative;
  z-index: 1;
  font-family: Cormorant Garamond, serif;
  font-size: clamp(1.65rem, 2.6vw, 2.2rem);
  font-weight: 700 !important;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  background: linear-gradient(120deg, #1e293b 0%, var(--ews-color) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.ews-panel-subs.svelte-7fpoih {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.ews-sub.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: Inter, sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ews-color);
  padding: 5px 11px;
  border-radius: 8px;
  background: var(--ews-pill-bg);
  border: 1px solid var(--ews-border-strong);
}
.ews-sub-dot.svelte-7fpoih {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ews-color);
}
.ews-panel-desc.svelte-7fpoih {
  position: relative;
  z-index: 1;
  font-size: 14px;
  line-height: 1.72;
  color: #475569;
  margin: 0 0 16px;
}
.ews-panel-note.svelte-7fpoih {
  position: relative;
  z-index: 1;
  padding: 14px 18px;
  border-radius: 12px;
  background: linear-gradient(
    120deg,
    var(--ews-pill-bg) 0%,
    rgba(255, 255, 255, 0.5) 100%
  );
  border-left: 3px solid var(--ews-color);
  margin-bottom: 20px;
}
.ews-note-label.svelte-7fpoih {
  display: inline-block;
  font-family: Inter, sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ews-color);
  margin-bottom: 4px;
}
.ews-panel-note.svelte-7fpoih p:where(.svelte-7fpoih) {
  font-family: Cormorant Garamond, serif;
  font-size: 14px;
  font-style: italic;
  line-height: 1.55;
  color: #334155;
  margin: 0;
}
.ews-panel-foot.svelte-7fpoih {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px dashed var(--ews-border-strong);
  gap: 12px;
  flex-wrap: wrap;
}
.ews-panel-foot-label.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #94a3b8;
}
.ews-panel-foot-value.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--ews-color);
}
.ews-panel--rose.svelte-7fpoih {
  --ews-color: #e91e8c;
  --ews-color-2: #f43f5e;
  --ews-bg: rgba(253, 242, 248, 0.5);
  --ews-border: rgba(233, 30, 140, 0.16);
  --ews-border-strong: rgba(233, 30, 140, 0.3);
  --ews-shadow: rgba(233, 30, 140, 0.3);
  --ews-pill-bg: rgba(253, 242, 248, 0.7);
}
.ews-panel--gold.svelte-7fpoih {
  --ews-color: #d97706;
  --ews-color-2: #f59e0b;
  --ews-bg: rgba(254, 243, 199, 0.5);
  --ews-border: rgba(217, 119, 6, 0.16);
  --ews-border-strong: rgba(217, 119, 6, 0.3);
  --ews-shadow: rgba(217, 119, 6, 0.28);
  --ews-pill-bg: rgba(254, 243, 199, 0.7);
}
@media (max-width: 900px) {
  .ews-section.svelte-7fpoih {
    padding: 80px 0 88px;
  }
  .ews-split.svelte-7fpoih {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0;
  }
  .ews-rail.svelte-7fpoih {
    bottom: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: 40px;
    flex-direction: row;
  }
  .ews-rail-track.svelte-7fpoih {
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 2px;
    background: repeating-linear-gradient(
      90deg,
      #e91e8c 0 8px,
      transparent 8px 14px,
      #d97706 14px 22px,
      transparent 22px 28px
    );
  }
  .ews-rail-pulse.svelte-7fpoih {
    display: none;
  }
  .ews-panel.svelte-7fpoih {
    padding: 28px 24px 24px;
  }
  .ews-panel-compass.svelte-7fpoih {
    font-size: 100px;
  }
  .ews-leads.svelte-7fpoih {
    text-align: left;
  }
}
@media (max-width: 560px) {
  .ews-panel-foot.svelte-7fpoih {
    flex-direction: column;
    align-items: flex-start;
  }
}
.cl-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 104px 0 114px;
  background: radial-gradient(
      700px 500px at 20% 10%,
      rgba(217, 119, 6, 0.06) 0%,
      transparent 60%
    ),
    radial-gradient(
      700px 500px at 80% 90%,
      rgba(233, 30, 140, 0.06) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #fffdf8, #fff, #fff8fc);
}
.cl-bg-orb.svelte-7fpoih {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: 0;
}
.cl-bg-orb-1.svelte-7fpoih {
  top: -90px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(217, 119, 6, 0.2) 0%,
    transparent 70%
  );
}
.cl-bg-orb-2.svelte-7fpoih {
  bottom: -100px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.2) 0%,
    transparent 70%
  );
}
.cl-grain.svelte-7fpoih {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  background-image: repeating-linear-gradient(
    0deg,
    transparent 0 3px,
    rgba(30, 41, 59, 0.03) 3px 4px
  );
}
.cl-head.svelte-7fpoih {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto 52px;
  text-align: center;
}
.cl-clapper.svelte-7fpoih {
  position: relative;
  display: inline-flex;
  width: 44px;
  height: 34px;
  margin-bottom: 16px;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.cl-clapper.svelte-7fpoih:hover {
  transform: rotate(-18deg);
}
.cl-clapper-top.svelte-7fpoih {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: linear-gradient(135deg, #1e293b, #475569);
  border-radius: 3px 3px 0 0;
  transform-origin: left center;
  background-image: repeating-linear-gradient(
    45deg,
    #1e293b 0,
    #1e293b 8px,
    #fff 8px,
    #fff 10px,
    #1e293b 10px,
    #1e293b 14px
  );
}
.cl-clapper-body.svelte-7fpoih {
  position: absolute;
  top: 12px;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #1e293b, #334155);
  border-radius: 0 0 3px 3px;
}
.cl-kicker.svelte-7fpoih {
  display: inline-block;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #be185d;
  margin-bottom: 18px;
  padding: 6px 16px;
  border: 1.5px solid rgba(233, 30, 140, 0.25);
  border-radius: 4px;
}
.cl-title.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(1.95rem, 3.4vw, 2.75rem);
  font-weight: 700 !important;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  background: linear-gradient(115deg, #1e293b, #d97706 45%, #e91e8c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.cl-lead.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(15px, 1.42vw, 17px);
  font-style: italic;
  line-height: 1.7;
  color: #475569;
  max-width: 680px;
  margin: 0 auto;
}
.cl-grid.svelte-7fpoih {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.cl-frame.svelte-7fpoih {
  position: relative;
  padding: 28px 48px 26px;
  border-radius: 14px;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.97) 0%,
    var(--cl-bg) 100%
  );
  border: 2px solid #1e293b;
  box-shadow: 0 16px 40px -20px #0f172a38, inset 0 0 0 6px #fffffff2;
  overflow: hidden;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.55s;
  animation: svelte-7fpoih-cl-develop 0.8s ease-out both;
  animation-delay: var(--cl-delay, 0s);
}
@keyframes svelte-7fpoih-cl-develop {
  0% {
    opacity: 0;
    transform: scale(0.95);
    filter: blur(3px);
  }
  to {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}
.cl-frame.svelte-7fpoih:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 28px 56px -20px var(--cl-shadow), inset 0 0 0 6px #fffffff2;
}
.cl-frame.is-feature.svelte-7fpoih {
  grid-column: 1 / -1;
}
.cl-sprockets.svelte-7fpoih {
  position: absolute;
  top: 14px;
  bottom: 14px;
  width: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  pointer-events: none;
}
.cl-sprockets--left.svelte-7fpoih {
  left: 6px;
}
.cl-sprockets--right.svelte-7fpoih {
  right: 6px;
}
.cl-sprocket.svelte-7fpoih {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: #1e293b;
  opacity: 0.82;
}
.cl-reel.svelte-7fpoih {
  position: absolute;
  top: 18px;
  right: 36px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  opacity: 0.5;
  pointer-events: none;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.cl-frame.svelte-7fpoih:hover .cl-reel:where(.svelte-7fpoih) {
  transform: rotate(180deg);
}
.cl-reel-ring.svelte-7fpoih {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  border: 1.5px solid var(--cl-color);
}
.cl-reel-hub.svelte-7fpoih {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cl-color);
  box-shadow: 0 0 0 2px #fff;
}
.cl-frame-inner.svelte-7fpoih {
  position: relative;
  z-index: 1;
  padding-top: 12px;
}
.cl-frame-top.svelte-7fpoih {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.cl-take.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  background: linear-gradient(135deg, #1e293b, #475569);
}
.cl-role.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cl-color);
  padding: 5px 10px;
  border-radius: 4px;
  background: var(--cl-pill-bg);
  border: 1px solid var(--cl-border-strong);
}
.cl-name.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(1.3rem, 1.9vw, 1.65rem);
  font-weight: 700 !important;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
  background: linear-gradient(120deg, #1e293b 0%, var(--cl-color) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.cl-range.svelte-7fpoih {
  display: block;
  font-family: Cormorant Garamond, serif;
  font-size: 13.5px;
  font-style: italic;
  color: #64748b;
  margin-bottom: 14px;
}
.cl-rule.svelte-7fpoih {
  display: block;
  width: 38px;
  height: 2px;
  border-radius: 1px;
  background: linear-gradient(90deg, var(--cl-color), var(--cl-color-2));
  margin-bottom: 14px;
  transition: width 0.5s;
}
.cl-frame.svelte-7fpoih:hover .cl-rule:where(.svelte-7fpoih) {
  width: 72px;
}
.cl-desc.svelte-7fpoih {
  font-size: 13.5px;
  line-height: 1.7;
  color: #475569;
  margin: 0 0 16px;
}
.cl-avail.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--cl-color);
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--cl-pill-bg);
  border: 1px solid var(--cl-border-strong);
}
.cl-avail-dot.svelte-7fpoih {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cl-color);
  box-shadow: 0 0 0 3px var(--cl-pulse);
  animation: svelte-7fpoih-em-pulse 2.4s ease-in-out infinite;
}
.cl-frame--rose.svelte-7fpoih {
  --cl-color: #e91e8c;
  --cl-color-2: #f43f5e;
  --cl-bg: rgba(253, 242, 248, 0.5);
  --cl-shadow: rgba(233, 30, 140, 0.3);
  --cl-pill-bg: rgba(253, 242, 248, 0.7);
  --cl-border-strong: rgba(233, 30, 140, 0.3);
  --cl-pulse: rgba(233, 30, 140, 0.3);
}
.cl-frame--coral.svelte-7fpoih {
  --cl-color: #ea580c;
  --cl-color-2: #fb923c;
  --cl-bg: rgba(255, 237, 213, 0.5);
  --cl-shadow: rgba(234, 88, 12, 0.28);
  --cl-pill-bg: rgba(255, 237, 213, 0.7);
  --cl-border-strong: rgba(234, 88, 12, 0.3);
  --cl-pulse: rgba(234, 88, 12, 0.3);
}
.cl-frame--gold.svelte-7fpoih {
  --cl-color: #d97706;
  --cl-color-2: #f59e0b;
  --cl-bg: rgba(254, 243, 199, 0.5);
  --cl-shadow: rgba(217, 119, 6, 0.28);
  --cl-pill-bg: rgba(254, 243, 199, 0.7);
  --cl-border-strong: rgba(217, 119, 6, 0.3);
  --cl-pulse: rgba(245, 158, 11, 0.3);
}
.cl-frame--teal.svelte-7fpoih {
  --cl-color: #0d9488;
  --cl-color-2: #14b8a6;
  --cl-bg: rgba(240, 253, 250, 0.5);
  --cl-shadow: rgba(13, 148, 136, 0.26);
  --cl-pill-bg: rgba(240, 253, 250, 0.7);
  --cl-border-strong: rgba(13, 148, 136, 0.3);
  --cl-pulse: rgba(20, 184, 166, 0.3);
}
.cl-frame--emerald.svelte-7fpoih {
  --cl-color: #059669;
  --cl-color-2: #10b981;
  --cl-bg: rgba(236, 253, 245, 0.5);
  --cl-shadow: rgba(5, 150, 105, 0.26);
  --cl-pill-bg: rgba(236, 253, 245, 0.7);
  --cl-border-strong: rgba(5, 150, 105, 0.3);
  --cl-pulse: rgba(16, 185, 129, 0.3);
}
.cl-marquee.svelte-7fpoih {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 40px auto 0;
  overflow: hidden;
  border-radius: 10px;
  background: linear-gradient(135deg, #1e293b, #334155);
  padding: 10px 0;
  color: #fff;
  white-space: nowrap;
}
.cl-marquee-track.svelte-7fpoih {
  display: inline-flex;
  gap: 40px;
  font-family: Inter, sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  animation: svelte-7fpoih-cl-scroll 24s linear infinite;
  will-change: transform;
}
@keyframes svelte-7fpoih-cl-scroll {
  0% {
    transform: translate(0);
  }
  to {
    transform: translate(-50%);
  }
}
@media (max-width: 760px) {
  .cl-section.svelte-7fpoih {
    padding: 80px 0 90px;
  }
  .cl-grid.svelte-7fpoih {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .cl-frame.svelte-7fpoih {
    padding: 24px 42px 22px;
  }
  .cl-frame.is-feature.svelte-7fpoih {
    grid-column: auto;
  }
}
@media (max-width: 460px) {
  .cl-frame.svelte-7fpoih {
    padding: 22px 36px 20px;
  }
  .cl-sprockets.svelte-7fpoih {
    width: 18px;
  }
  .cl-sprocket.svelte-7fpoih {
    width: 8px;
    height: 8px;
  }
  .cl-frame-top.svelte-7fpoih {
    gap: 8px;
  }
}
.grt-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 7vw, 96px) 0;
  background: radial-gradient(120% 90% at 12% 0%, #fff6fb, #fff6fb00 55%),
    radial-gradient(120% 90% at 92% 100%, #fffaf0, #fffaf000 55%),
    linear-gradient(180deg, #fffafd, #fdf4f9);
}
.grt-orb.svelte-7fpoih {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.grt-orb-1.svelte-7fpoih {
  width: 340px;
  height: 340px;
  top: -90px;
  left: -80px;
  background: radial-gradient(circle, #e91e8c29, #e91e8c00 70%);
}
.grt-orb-2.svelte-7fpoih {
  width: 380px;
  height: 380px;
  bottom: -120px;
  right: -90px;
  background: radial-gradient(circle, #f59e0b29, #f59e0b00 70%);
}
.grt-grain.svelte-7fpoih {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(
    rgba(233, 30, 140, 0.06) 1px,
    transparent 1px
  );
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent,
    #000 30%,
    #000 70%,
    transparent
  );
  mask-image: linear-gradient(
    180deg,
    transparent,
    #000 30%,
    #000 70%,
    transparent
  );
}
.grt-head.svelte-7fpoih {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto clamp(30px, 4.5vw, 54px);
  text-align: center;
}
.grt-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  border-radius: 999px;
  background: #e91e8c14;
  border: 1px solid rgba(233, 30, 140, 0.18);
  color: var(--rose-dark, #c2185b);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.grt-title.svelte-7fpoih {
  margin: 16px 0 0;
  font-size: clamp(1.55rem, 3.6vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--heading, #110520);
  background: linear-gradient(100deg, #110520, #c2185b 55%, #d97706);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.grt-sub.svelte-7fpoih {
  margin: 14px auto 0;
  max-width: 600px;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  line-height: 1.65;
  color: var(--text-muted, #4a2870);
}
.grt-rail.svelte-7fpoih {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 4px 0;
  list-style: none;
  counter-reset: grt;
}
.grt-rail.svelte-7fpoih:before {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 27px;
  width: 2px;
  background: linear-gradient(
    180deg,
    #e91e8c,
    #f59e0b 42%,
    #0ea5e9 74%,
    #f5734a
  );
  opacity: 0.45;
  border-radius: 2px;
}
.grt-row.svelte-7fpoih {
  --grt-accent: #e91e8c;
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: clamp(14px, 2vw, 24px);
  padding: 0 0 clamp(26px, 3.4vw, 40px);
}
.grt-row.svelte-7fpoih:last-child {
  padding-bottom: 0;
}
.grt-row--rose.svelte-7fpoih {
  --grt-accent: #e91e8c;
}
.grt-row--gold.svelte-7fpoih {
  --grt-accent: #f59e0b;
}
.grt-row--teal.svelte-7fpoih {
  --grt-accent: #0ea5e9;
}
.grt-row--coral.svelte-7fpoih {
  --grt-accent: #f5734a;
}
.grt-node.svelte-7fpoih {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff;
  color: var(--grt-accent);
  border: 1.5px solid color-mix(in srgb, var(--grt-accent) 35%, #f0e0ec);
  box-shadow: 0 0 0 6px #fdf6fb,
    0 10px 24px -14px color-mix(in srgb, var(--grt-accent) 70%, transparent);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.grt-row.svelte-7fpoih:hover .grt-node:where(.svelte-7fpoih) {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 0 0 6px #fdf6fb,
    0 16px 30px -14px color-mix(in srgb, var(--grt-accent) 80%, transparent);
}
.grt-row-text.svelte-7fpoih {
  padding-top: 5px;
}
.grt-row-title.svelte-7fpoih {
  margin: 0 0 5px;
  font-size: 1.1rem;
  font-weight: 750;
  letter-spacing: -0.01em;
  color: var(--heading, #110520);
}
.grt-row-desc.svelte-7fpoih {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.64;
  color: var(--text-muted, #4a2870);
}
.grt-row-note.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  padding: 8px 14px;
  border: 1px dashed color-mix(in srgb, var(--grt-accent) 55%, #e6cfe0);
  border-radius: 999px;
  background: color-mix(in srgb, var(--grt-accent) 9%, #fff);
  color: var(--grt-accent);
  font-size: 0.82rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.3;
}
.grt-row-note.svelte-7fpoih svg:where(.svelte-7fpoih) {
  flex: none;
  opacity: 0.85;
}
.grt-row.is-feature.svelte-7fpoih .grt-node:where(.svelte-7fpoih) {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--grt-accent) 14%, #fff),
    #fff
  );
}
.grt-row.is-feature.svelte-7fpoih .grt-row-title:where(.svelte-7fpoih) {
  font-size: clamp(1.18rem, 2.4vw, 1.45rem);
  background: linear-gradient(100deg, #110520 0%, var(--grt-accent) 120%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.grt-row.is-feature.svelte-7fpoih .grt-row-desc:where(.svelte-7fpoih) {
  font-size: 1.04rem;
}
@media (max-width: 560px) {
  .grt-rail.svelte-7fpoih:before {
    left: 23px;
  }
  .grt-row.svelte-7fpoih {
    grid-template-columns: 46px 1fr;
    gap: 14px;
  }
  .grt-node.svelte-7fpoih {
    width: 46px;
    height: 46px;
    box-shadow: 0 0 0 5px #fdf6fb,
      0 10px 22px -14px color-mix(in srgb, var(--grt-accent) 70%, transparent);
  }
  .grt-node.svelte-7fpoih svg:where(.svelte-7fpoih) {
    width: 18px;
    height: 18px;
  }
  .grt-row.is-feature.svelte-7fpoih .grt-node:where(.svelte-7fpoih) {
    width: 50px;
    height: 50px;
  }
  .grt-row-note.svelte-7fpoih {
    white-space: normal;
  }
}
.gfq-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 7vw, 96px) 0;
  background: radial-gradient(110% 80% at 88% 0%, #fff6fb, #fff6fb00 55%),
    linear-gradient(180deg, #fdf4f9, #fffafd);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.gfq-orb.svelte-7fpoih {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}
.gfq-orb-1.svelte-7fpoih {
  width: 320px;
  height: 320px;
  top: -80px;
  right: -70px;
  background: radial-gradient(circle, #f59e0b29, #f59e0b00 70%);
}
.gfq-orb-2.svelte-7fpoih {
  width: 360px;
  height: 360px;
  bottom: -120px;
  left: -90px;
  background: radial-gradient(circle, #e91e8c29, #e91e8c00 70%);
}
.gfq-head.svelte-7fpoih {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto clamp(28px, 4vw, 48px);
  text-align: center;
}
.gfq-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  border-radius: 999px;
  background: #e91e8c14;
  border: 1px solid rgba(233, 30, 140, 0.18);
  color: var(--rose-dark, #c2185b);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.gfq-title.svelte-7fpoih {
  margin: 16px 0 0;
  font-size: clamp(1.55rem, 3.6vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--heading, #110520);
  background: linear-gradient(100deg, #110520, #c2185b 55%, #d97706);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gfq-lead.svelte-7fpoih {
  margin: 14px auto 0;
  max-width: 600px;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  line-height: 1.65;
  color: var(--text-muted, #4a2870);
}
.gfq-list.svelte-7fpoih {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.gfq-item.svelte-7fpoih {
  position: relative;
  background: #fff;
  border: 1.5px solid var(--border, #ead8f0);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.28s ease, box-shadow 0.28s ease,
    background 0.28s ease;
}
.gfq-item.svelte-7fpoih:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: linear-gradient(180deg, #e91e8c, #f59e0b);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
}
.gfq-item.svelte-7fpoih:hover {
  border-color: color-mix(in srgb, #e91e8c 28%, var(--border, #ead8f0));
  box-shadow: 0 12px 30px -22px #28083c80;
}
.gfq-item.is-open.svelte-7fpoih {
  border-color: color-mix(in srgb, #e91e8c 42%, var(--border, #ead8f0));
  background: linear-gradient(180deg, #fff, #fff8fc);
  box-shadow: 0 16px 38px -24px #e91e8c73;
}
.gfq-item.is-open.svelte-7fpoih:before {
  transform: scaleY(1);
}
.gfq-q.svelte-7fpoih {
  margin: 0;
}
.gfq-q-btn.svelte-7fpoih {
  width: 100%;
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.8vw, 18px);
  padding: clamp(16px, 2.2vw, 22px) clamp(16px, 2.4vw, 26px);
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: var(--heading, #110520);
}
.gfq-q-num.svelte-7fpoih {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: #e91e8c17;
  color: var(--rose-dark, #c2185b);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: background 0.28s ease, color 0.28s ease;
}
.gfq-item.is-open.svelte-7fpoih .gfq-q-num:where(.svelte-7fpoih) {
  background: linear-gradient(135deg, #e91e8c, #f59e0b);
  color: #fff;
}
.gfq-q-text.svelte-7fpoih {
  flex: 1;
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.gfq-q-ic.svelte-7fpoih {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--border-light, #d8c4e8);
  color: var(--rose, #e91e8c);
  transition: transform 0.32s cubic-bezier(0.4, 0.2, 0.2, 1),
    background 0.28s ease, border-color 0.28s ease, color 0.28s ease;
}
.gfq-item.is-open.svelte-7fpoih .gfq-q-ic:where(.svelte-7fpoih) {
  transform: rotate(135deg);
  background: #e91e8c1a;
  border-color: transparent;
}
.gfq-ans.svelte-7fpoih {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.34s ease;
}
.gfq-item.is-open.svelte-7fpoih .gfq-ans:where(.svelte-7fpoih) {
  grid-template-rows: 1fr;
}
.gfq-ans-inner.svelte-7fpoih {
  overflow: hidden;
}
.gfq-ans-inner.svelte-7fpoih p:where(.svelte-7fpoih) {
  margin: 0;
  padding: 0 clamp(16px, 2.4vw, 26px) clamp(18px, 2.4vw, 24px)
    clamp(66px, 7vw, 80px);
  font-size: clamp(0.94rem, 1.6vw, 1.02rem);
  line-height: 1.7;
  color: var(--text-muted, #4a2870);
}
@media (max-width: 560px) {
  .gfq-q-num.svelte-7fpoih {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    font-size: 0.78rem;
  }
  .gfq-q-btn.svelte-7fpoih {
    gap: 12px;
  }
  .gfq-ans-inner.svelte-7fpoih p:where(.svelte-7fpoih) {
    padding-left: clamp(16px, 5vw, 20px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .gfq-ans.svelte-7fpoih,
  .gfq-q-ic.svelte-7fpoih,
  .gfq-item.svelte-7fpoih:before,
  .gfq-item.svelte-7fpoih {
    transition: none;
  }
}
.gc-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 100px 0 110px;
  background: radial-gradient(
      700px 500px at 20% 10%,
      rgba(233, 30, 140, 0.06) 0%,
      transparent 60%
    ),
    radial-gradient(
      700px 500px at 80% 90%,
      rgba(217, 119, 6, 0.06) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #fffafc, #fff, #fffdf5);
}
.gc-bg-orb.svelte-7fpoih {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: 0;
}
.gc-bg-orb-1.svelte-7fpoih {
  top: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.2) 0%,
    transparent 70%
  );
}
.gc-bg-orb-2.svelte-7fpoih {
  bottom: -90px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(217, 119, 6, 0.2) 0%,
    transparent 70%
  );
}
.gc-ticket.svelte-7fpoih {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  padding: 56px 54px 54px;
  border-radius: 28px;
  background: linear-gradient(160deg, #fffffffa, #fdf2f88c 45%, #fef3c780);
  border: 2px solid rgba(233, 30, 140, 0.22);
  box-shadow: 0 32px 80px -28px #e91e8c47;
  overflow: hidden;
}
.gc-marquee.svelte-7fpoih {
  position: absolute;
  left: 18px;
  right: 18px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.gc-marquee--top.svelte-7fpoih {
  top: 14px;
}
.gc-marquee--bottom.svelte-7fpoih {
  bottom: 14px;
}
.gc-light.svelte-7fpoih {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e91e8c, #d97706);
  box-shadow: 0 0 6px #e91e8c99;
  animation: svelte-7fpoih-gc-blink 1.6s ease-in-out infinite;
  animation-delay: var(--gc-light-delay, 0s);
}
@keyframes svelte-7fpoih-gc-blink {
  0%,
  to {
    opacity: 0.35;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.25);
    box-shadow: 0 0 10px #e91e8cd9;
  }
}
.gc-reel-corner.svelte-7fpoih {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 140px;
  height: 140px;
  pointer-events: none;
  opacity: 0.35;
  animation: svelte-7fpoih-cl-scroll-rotate 22s linear infinite;
}
@keyframes svelte-7fpoih-cl-scroll-rotate {
  to {
    transform: rotate(360deg);
  }
}
.gc-reel-ring.svelte-7fpoih {
  position: absolute;
  top: 14px;
  right: 14px;
  bottom: 14px;
  left: 14px;
  border-radius: 50%;
  border: 1.5px dashed rgba(233, 30, 140, 0.5);
}
.gc-reel-core.svelte-7fpoih {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e91e8c, #d97706);
}
.gc-reel-hole.svelte-7fpoih {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid rgba(233, 30, 140, 0.6);
}
.gc-reel-hole-1.svelte-7fpoih {
  top: 32px;
  left: 50%;
  transform: translate(-50%);
}
.gc-reel-hole-2.svelte-7fpoih {
  top: 50%;
  right: 32px;
  transform: translateY(-50%);
}
.gc-reel-hole-3.svelte-7fpoih {
  bottom: 32px;
  left: 50%;
  transform: translate(-50%);
}
.gc-reel-hole-4.svelte-7fpoih {
  top: 50%;
  left: 32px;
  transform: translateY(-50%);
}
.gc-ticket-inner.svelte-7fpoih {
  position: relative;
  z-index: 1;
}
.gc-head.svelte-7fpoih {
  text-align: center;
  margin-bottom: 30px;
}
.gc-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #be185d;
  padding: 8px 18px;
  border-radius: 999px;
  background: #fdf2f8b3;
  border: 1px solid rgba(233, 30, 140, 0.3);
  margin-bottom: 22px;
}
.gc-kicker-ping.svelte-7fpoih {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e91e8c;
  box-shadow: 0 0 0 3px #e91e8c40;
  animation: svelte-7fpoih-em-pulse 2s ease-in-out infinite;
}
.gc-title.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-weight: 700 !important;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
  background: linear-gradient(115deg, #1e293b, #e91e8c, #d97706 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.gc-tagline.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(16px, 1.55vw, 19px);
  font-style: italic;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 14px;
  background: linear-gradient(110deg, #e91e8c, #d97706);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.gc-lead.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(14.5px, 1.38vw, 16.5px);
  line-height: 1.68;
  color: #475569;
  max-width: 640px;
  margin: 0 auto;
}
.gc-zones.svelte-7fpoih {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 22px 0;
  margin-bottom: 26px;
  border-top: 1px dashed rgba(233, 30, 140, 0.25);
  border-bottom: 1px dashed rgba(233, 30, 140, 0.25);
}
.gc-zone.svelte-7fpoih {
  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gc-zone-tag.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #be185d;
}
.gc-zone-name.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(1.1rem, 1.55vw, 1.35rem);
  font-weight: 700 !important;
  letter-spacing: -0.01em;
  background: linear-gradient(120deg, #1e293b, #e91e8c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gc-zone-sub.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #64748b;
  letter-spacing: 0.02em;
}
.gc-zones-sep.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 4px;
}
.gc-zones-sep-dot.svelte-7fpoih {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #e91e8c;
}
.gc-zones-sep-line.svelte-7fpoih {
  width: 1.5px;
  height: 30px;
  background: linear-gradient(180deg, #e91e8c, #d97706);
  opacity: 0.5;
}
.gc-trust.svelte-7fpoih {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}
.gc-trust-item.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: Inter, sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: #1e293b;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(110deg, #ecfdf5bf, #fdf2f8bf);
  border: 1px solid rgba(16, 185, 129, 0.22);
}
.gc-trust-icon.svelte-7fpoih {
  display: inline-flex;
  color: #059669;
}
.gc-cta.svelte-7fpoih {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.gc-cta-btn.svelte-7fpoih {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 30px 18px 26px;
  border-radius: 16px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 18px 40px -10px #25d36680;
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s;
}
.gc-cta-btn.svelte-7fpoih:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 52px -10px #25d36699;
}
.gc-cta-btn-shine.svelte-7fpoih {
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.5) 50%,
    transparent 70%
  );
  pointer-events: none;
  transition: left 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.gc-cta-btn.svelte-7fpoih:hover .gc-cta-btn-shine:where(.svelte-7fpoih) {
  left: 130%;
}
.gc-cta-btn-icon.svelte-7fpoih {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  background: #ffffff2e;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.gc-cta-btn-body.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}
.gc-cta-btn-label.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 700;
}
.gc-cta-btn-note.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #ffffffd9;
  letter-spacing: 0.04em;
}
.gc-cta-btn-arrow.svelte-7fpoih {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff3;
  transition: transform 0.4s;
}
.gc-cta-btn.svelte-7fpoih:hover .gc-cta-btn-arrow:where(.svelte-7fpoih) {
  transform: translate(4px);
}
.gc-closing.svelte-7fpoih {
  text-align: center;
  font-family: Cormorant Garamond, serif;
  font-size: clamp(13.5px, 1.28vw, 15px);
  font-style: italic;
  color: #64748b;
  margin: 0;
}
@media (max-width: 900px) {
  .gc-section.svelte-7fpoih {
    padding: 78px 0 88px;
  }
  .gc-ticket.svelte-7fpoih {
    padding: 44px 28px;
    border-radius: 24px;
  }
  .gc-reel-corner.svelte-7fpoih {
    width: 100px;
    height: 100px;
    top: -20px;
    right: -20px;
  }
  .gc-zones.svelte-7fpoih {
    gap: 14px;
    padding: 18px 0;
  }
  .gc-zones-sep.svelte-7fpoih {
    display: none;
  }
  .gc-zone.svelte-7fpoih {
    min-width: 140px;
    padding: 0 10px;
  }
}
@media (max-width: 560px) {
  .gc-title.svelte-7fpoih {
    font-size: 1.85rem;
  }
  .gc-cta-btn.svelte-7fpoih {
    width: 100%;
    padding: 14px 14px 14px 12px;
    gap: 10px;
  }
  .gc-cta-btn-icon.svelte-7fpoih {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }
  .gc-cta-btn-body.svelte-7fpoih {
    flex: 1;
    min-width: 0;
  }
  .gc-cta-btn-label.svelte-7fpoih {
    font-size: 13.5px;
  }
  .gc-cta-btn-note.svelte-7fpoih {
    font-size: 10.5px;
  }
  .gc-cta-btn-arrow.svelte-7fpoih {
    width: 26px;
    height: 26px;
  }
  .gc-zones.svelte-7fpoih {
    flex-direction: column;
    align-items: stretch;
  }
  .gc-zone.svelte-7fpoih {
    text-align: left;
    padding: 10px 0;
    border-top: 1px dashed rgba(233, 30, 140, 0.22);
  }
  .gc-zone.svelte-7fpoih:first-child {
    border-top: none;
  }
}
.alt-contact-cluster.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.alt-contact-btn.svelte-7fpoih {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s;
}
.alt-contact-btn-shine.svelte-7fpoih {
  position: absolute;
  top: 0;
  left: -110%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 70%
  );
  pointer-events: none;
  transition: left 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.alt-contact-btn.svelte-7fpoih:hover {
  transform: translateY(-3px) rotate(-8deg);
}
.alt-contact-btn.svelte-7fpoih:hover
  .alt-contact-btn-shine:where(.svelte-7fpoih) {
  left: 110%;
}
.alt-contact-btn--phone.svelte-7fpoih {
  background: linear-gradient(135deg, #0d9488, #14b8a6);
  box-shadow: 0 12px 28px -8px #0d948873;
}
.alt-contact-btn--phone.svelte-7fpoih:hover {
  box-shadow: 0 18px 38px -8px #0d94888c;
}
.alt-contact-btn--email.svelte-7fpoih {
  background: linear-gradient(135deg, #d97706, #f59e0b);
  box-shadow: 0 12px 28px -8px #d9770673;
}
.alt-contact-btn--email.svelte-7fpoih:hover {
  box-shadow: 0 18px 38px -8px #d977068c;
}
.alt-contact-row-below.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}
.alt-contact-row-below-label.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #94a3b8;
}
@media (max-width: 560px) {
  .alt-contact-btn.svelte-7fpoih {
    width: 48px;
    height: 48px;
  }
}
.txm-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 104px 0 112px;
  background: radial-gradient(
      800px 500px at 15% 10%,
      rgba(233, 30, 140, 0.06) 0%,
      transparent 60%
    ),
    radial-gradient(
      800px 500px at 85% 90%,
      rgba(16, 185, 129, 0.06) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #fffafc, #fff, #f8fffa);
}
.txm-bg-orb.svelte-7fpoih {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: 0;
}
.txm-bg-orb-1.svelte-7fpoih {
  top: -80px;
  left: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.2) 0%,
    transparent 70%
  );
}
.txm-bg-orb-2.svelte-7fpoih {
  bottom: -100px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(16, 185, 129, 0.2) 0%,
    transparent 70%
  );
}
.txm-grid-bg.svelte-7fpoih {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  background-image: linear-gradient(
      rgba(233, 30, 140, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(233, 30, 140, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.txm-head.svelte-7fpoih {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto 46px;
  text-align: center;
}
.txm-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #be185d;
  margin-bottom: 22px;
}
.txm-kicker-bar.svelte-7fpoih {
  width: 28px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(233, 30, 140, 0.5),
    transparent
  );
  border-radius: 1px;
}
.txm-kicker-glyph.svelte-7fpoih {
  color: #e91e8c;
  font-size: 10px;
  transform: translateY(-1px);
}
.txm-title.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(1.95rem, 3.4vw, 2.7rem);
  font-weight: 700 !important;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  background: linear-gradient(115deg, #1e293b, #e91e8c, #059669);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.txm-lead.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(15px, 1.42vw, 17px);
  font-style: italic;
  line-height: 1.7;
  color: #475569;
  max-width: 740px;
  margin: 0 auto;
}
.txm-table-wrap.svelte-7fpoih {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto 50px;
  padding: 4px;
  border-radius: 22px;
  background: linear-gradient(135deg, #e91e8c4d, #d9770640, #10b9814d);
  box-shadow: 0 24px 56px -22px #0f172a29;
}
.txm-table.svelte-7fpoih {
  position: relative;
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
}
.txm-thead.svelte-7fpoih {
  display: grid;
  grid-template-columns: 1.3fr 1.2fr 1fr 1.3fr;
  gap: 0;
  padding: 14px 20px;
  background: linear-gradient(110deg, #1e293b, #334155);
  color: #fff;
}
.txm-th.svelte-7fpoih {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: Inter, sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffffeb;
}
.txm-th-icon.svelte-7fpoih {
  display: inline-flex;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  background: #ffffff1f;
  color: #fff;
}
.txm-th-label.svelte-7fpoih {
  line-height: 1.3;
}
.txm-tbody.svelte-7fpoih {
  display: flex;
  flex-direction: column;
}
.txm-tr.svelte-7fpoih {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1.2fr 1fr 1.3fr;
  gap: 0;
  padding: 20px;
  border-top: 1px solid rgba(148, 163, 184, 0.15);
  transition: background 0.35s, transform 0.4s;
  animation: svelte-7fpoih-txm-fade 0.7s ease-out both;
  animation-delay: var(--txm-row-delay, 0s);
}
@keyframes svelte-7fpoih-txm-fade {
  0% {
    opacity: 0;
    transform: translate(-10px);
  }
  to {
    opacity: 1;
    transform: translate(0);
  }
}
.txm-tr.svelte-7fpoih:nth-child(odd) {
  background: #f8fafc8c;
}
.txm-tr.svelte-7fpoih:hover {
  background: linear-gradient(
    100deg,
    var(--txm-row-bg) 0%,
    rgba(255, 255, 255, 0.9) 100%
  );
}
.txm-row-rail.svelte-7fpoih {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 0;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--txm-color), var(--txm-color-2));
  opacity: 0;
  transition: opacity 0.35s;
}
.txm-tr.svelte-7fpoih:hover .txm-row-rail:where(.svelte-7fpoih) {
  opacity: 1;
}
.txm-td.svelte-7fpoih {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: #334155;
  padding-right: 14px;
}
.txm-cell-mobile-label.svelte-7fpoih {
  display: none;
}
.txm-dot.svelte-7fpoih {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--txm-color);
  box-shadow: 0 0 0 3px var(--txm-pulse);
}
.txm-type-body.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.txm-type-name.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: 15.5px;
  font-weight: 700 !important;
  line-height: 1.2;
  color: #1e293b;
  letter-spacing: -0.01em;
}
.txm-type-sub.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 11px;
  color: var(--txm-color);
  letter-spacing: 0.02em;
  font-weight: 500;
}
.txm-zone.svelte-7fpoih,
.txm-hours.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 12.5px;
  color: #475569;
  line-height: 1.45;
  font-weight: 500;
}
.txm-booked.svelte-7fpoih {
  display: inline-block;
  font-family: Inter, sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--txm-color);
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--txm-pill-bg);
  border: 1px solid var(--txm-border-strong);
  line-height: 1.35;
}
.txm-tr--rose.svelte-7fpoih {
  --txm-color: #e91e8c;
  --txm-color-2: #f43f5e;
  --txm-row-bg: rgba(253, 242, 248, 0.4);
  --txm-pill-bg: rgba(253, 242, 248, 0.8);
  --txm-border-strong: rgba(233, 30, 140, 0.28);
  --txm-pulse: rgba(233, 30, 140, 0.22);
}
.txm-tr--coral.svelte-7fpoih {
  --txm-color: #ea580c;
  --txm-color-2: #fb923c;
  --txm-row-bg: rgba(255, 237, 213, 0.4);
  --txm-pill-bg: rgba(255, 237, 213, 0.8);
  --txm-border-strong: rgba(234, 88, 12, 0.28);
  --txm-pulse: rgba(234, 88, 12, 0.22);
}
.txm-tr--teal.svelte-7fpoih {
  --txm-color: #0d9488;
  --txm-color-2: #14b8a6;
  --txm-row-bg: rgba(240, 253, 250, 0.4);
  --txm-pill-bg: rgba(240, 253, 250, 0.8);
  --txm-border-strong: rgba(13, 148, 136, 0.28);
  --txm-pulse: rgba(20, 184, 166, 0.22);
}
.txm-tr--emerald.svelte-7fpoih {
  --txm-color: #059669;
  --txm-color-2: #10b981;
  --txm-row-bg: rgba(236, 253, 245, 0.4);
  --txm-pill-bg: rgba(236, 253, 245, 0.8);
  --txm-border-strong: rgba(5, 150, 105, 0.28);
  --txm-pulse: rgba(16, 185, 129, 0.22);
}
.txm-tr--gold.svelte-7fpoih {
  --txm-color: #d97706;
  --txm-color-2: #f59e0b;
  --txm-row-bg: rgba(254, 243, 199, 0.4);
  --txm-pill-bg: rgba(254, 243, 199, 0.8);
  --txm-border-strong: rgba(217, 119, 6, 0.28);
  --txm-pulse: rgba(245, 158, 11, 0.22);
}
.txm-details-head.svelte-7fpoih {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 720px;
  margin: 0 auto 40px;
  justify-content: center;
}
.txm-details-line.svelte-7fpoih {
  flex: 1;
  height: 1px;
  max-width: 180px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(233, 30, 140, 0.3),
    transparent
  );
}
.txm-details-tag.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  background: linear-gradient(135deg, #1e293b, #475569);
}
.txm-details.svelte-7fpoih {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
}
.txm-detail.svelte-7fpoih {
  position: relative;
  padding: 28px 28px 24px;
  border-radius: 18px;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.96) 0%,
    var(--txm-detail-bg) 100%
  );
  border: 1px solid var(--txm-detail-border);
  box-shadow: 0 14px 40px -18px #0f172a1a;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s,
    border-color 0.5s;
  animation: svelte-7fpoih-txm-fade 0.7s ease-out both;
  animation-delay: var(--txm-detail-delay, 0s);
}
.txm-detail.svelte-7fpoih:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px -18px var(--txm-detail-shadow);
  border-color: var(--txm-detail-border-strong);
}
.txm-detail-halo.svelte-7fpoih {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--txm-detail-halo);
  filter: blur(50px);
  opacity: 0.35;
  pointer-events: none;
  transition: opacity 0.5s;
}
.txm-detail.svelte-7fpoih:hover .txm-detail-halo:where(.svelte-7fpoih) {
  opacity: 0.65;
}
.txm-detail-top.svelte-7fpoih {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.txm-detail-num.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: transparent;
  -webkit-text-stroke: 1.3px var(--txm-detail-color);
  opacity: 0.32;
}
.txm-detail-tag.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--txm-detail-color);
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--txm-detail-pill-bg);
  border: 1px solid var(--txm-detail-border-strong);
}
.txm-detail-name.svelte-7fpoih {
  position: relative;
  z-index: 1;
  font-family: Cormorant Garamond, serif;
  font-size: clamp(1.2rem, 1.7vw, 1.5rem);
  font-weight: 700 !important;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  background: linear-gradient(120deg, #1e293b 0%, var(--txm-detail-color) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.txm-detail-rule.svelte-7fpoih {
  display: block;
  width: 32px;
  height: 2.5px;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    var(--txm-detail-color),
    var(--txm-detail-color-2)
  );
  margin-bottom: 14px;
  transition: width 0.5s;
}
.txm-detail.svelte-7fpoih:hover .txm-detail-rule:where(.svelte-7fpoih) {
  width: 62px;
}
.txm-detail-desc.svelte-7fpoih {
  position: relative;
  z-index: 1;
  font-size: 14px;
  line-height: 1.72;
  color: #475569;
  margin: 0;
}
.txm-detail--rose.svelte-7fpoih {
  --txm-detail-color: #e91e8c;
  --txm-detail-color-2: #f43f5e;
  --txm-detail-bg: rgba(253, 242, 248, 0.55);
  --txm-detail-border: rgba(233, 30, 140, 0.16);
  --txm-detail-border-strong: rgba(233, 30, 140, 0.3);
  --txm-detail-shadow: rgba(233, 30, 140, 0.28);
  --txm-detail-pill-bg: rgba(253, 242, 248, 0.7);
  --txm-detail-halo: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.5) 0%,
    transparent 70%
  );
}
.txm-detail--coral.svelte-7fpoih {
  --txm-detail-color: #ea580c;
  --txm-detail-color-2: #fb923c;
  --txm-detail-bg: rgba(255, 237, 213, 0.55);
  --txm-detail-border: rgba(234, 88, 12, 0.16);
  --txm-detail-border-strong: rgba(234, 88, 12, 0.3);
  --txm-detail-shadow: rgba(234, 88, 12, 0.26);
  --txm-detail-pill-bg: rgba(255, 237, 213, 0.7);
  --txm-detail-halo: radial-gradient(
    circle,
    rgba(251, 146, 60, 0.5) 0%,
    transparent 70%
  );
}
.txm-detail--teal.svelte-7fpoih {
  --txm-detail-color: #0d9488;
  --txm-detail-color-2: #14b8a6;
  --txm-detail-bg: rgba(240, 253, 250, 0.55);
  --txm-detail-border: rgba(13, 148, 136, 0.16);
  --txm-detail-border-strong: rgba(13, 148, 136, 0.3);
  --txm-detail-shadow: rgba(13, 148, 136, 0.26);
  --txm-detail-pill-bg: rgba(240, 253, 250, 0.7);
  --txm-detail-halo: radial-gradient(
    circle,
    rgba(20, 184, 166, 0.5) 0%,
    transparent 70%
  );
}
.txm-detail--emerald.svelte-7fpoih {
  --txm-detail-color: #059669;
  --txm-detail-color-2: #10b981;
  --txm-detail-bg: rgba(236, 253, 245, 0.55);
  --txm-detail-border: rgba(5, 150, 105, 0.16);
  --txm-detail-border-strong: rgba(5, 150, 105, 0.3);
  --txm-detail-shadow: rgba(5, 150, 105, 0.26);
  --txm-detail-pill-bg: rgba(236, 253, 245, 0.7);
  --txm-detail-halo: radial-gradient(
    circle,
    rgba(16, 185, 129, 0.5) 0%,
    transparent 70%
  );
}
@media (max-width: 860px) {
  .txm-section.svelte-7fpoih {
    padding: 80px 0 88px;
  }
  .txm-thead.svelte-7fpoih {
    display: none;
  }
  .txm-tr.svelte-7fpoih {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px 22px 22px 28px;
    border-top: none;
    background: #fff !important;
    border-radius: 14px;
    margin-bottom: 10px;
    border: 1px solid rgba(148, 163, 184, 0.18);
  }
  .txm-tr.svelte-7fpoih:last-child {
    margin-bottom: 0;
  }
  .txm-tr.svelte-7fpoih:hover {
    transform: translateY(-2px);
  }
  .txm-row-rail.svelte-7fpoih {
    opacity: 1;
  }
  .txm-td.svelte-7fpoih {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 10px;
    align-items: center;
    padding: 0;
  }
  .txm-cell-mobile-label.svelte-7fpoih {
    display: inline-block;
    font-family: Inter, sans-serif;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #94a3b8;
  }
  .txm-td.txm-col-0.svelte-7fpoih {
    border-bottom: 1px dashed rgba(148, 163, 184, 0.25);
    padding-bottom: 12px;
    margin-bottom: 4px;
  }
  .txm-td.txm-col-0.svelte-7fpoih .txm-cell-mobile-label:where(.svelte-7fpoih) {
    display: none;
  }
  .txm-td.txm-col-0.svelte-7fpoih {
    grid-template-columns: auto 1fr;
    display: flex;
  }
  .txm-details.svelte-7fpoih {
    grid-template-columns: 1fr;
  }
  .txm-details-line.svelte-7fpoih {
    max-width: 60px;
  }
}
.mc-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 100px 0 110px;
  background: radial-gradient(
      700px 500px at 15% 10%,
      rgba(217, 119, 6, 0.06) 0%,
      transparent 60%
    ),
    radial-gradient(
      700px 500px at 85% 90%,
      rgba(233, 30, 140, 0.06) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #fffdf5, #fff, #fff8fc);
}
.mc-bg-orb.svelte-7fpoih {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: 0;
}
.mc-bg-orb-1.svelte-7fpoih {
  top: -90px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(217, 119, 6, 0.2) 0%,
    transparent 70%
  );
}
.mc-bg-orb-2.svelte-7fpoih {
  bottom: -90px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.2) 0%,
    transparent 70%
  );
}
.mc-grid-bg.svelte-7fpoih {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  background-image: repeating-linear-gradient(
    45deg,
    transparent 0 18px,
    rgba(217, 119, 6, 0.03) 18px 19px
  );
}
.mc-head.svelte-7fpoih {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto 52px;
  text-align: center;
}
.mc-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #be185d;
  padding: 8px 18px;
  border-radius: 999px;
  background: #fdf2f8b3;
  border: 1px solid rgba(233, 30, 140, 0.28);
  margin-bottom: 22px;
}
.mc-kicker-pin.svelte-7fpoih {
  color: #e91e8c;
  display: inline-flex;
}
.mc-title.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-weight: 700 !important;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
  background: linear-gradient(115deg, #1e293b, #d97706 45%, #e91e8c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.mc-lead.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(15px, 1.42vw, 17px);
  line-height: 1.68;
  color: #475569;
  font-style: italic;
  max-width: 680px;
  margin: 0 auto;
}
.mc-split.svelte-7fpoih {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 32px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: stretch;
}
.mc-zones.svelte-7fpoih {
  padding: 36px;
  border-radius: 22px;
  background: linear-gradient(155deg, #fffffff5, #fef3c766);
  border: 1px solid rgba(217, 119, 6, 0.2);
  box-shadow: 0 18px 48px -22px #d9770633;
}
.mc-zones-head.svelte-7fpoih {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.mc-zones-rule.svelte-7fpoih {
  width: 26px;
  height: 2px;
  border-radius: 1px;
  background: linear-gradient(90deg, #d97706, transparent);
}
.mc-zones-label.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #b45309;
}
.mc-zones-list.svelte-7fpoih {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.mc-zone-item.svelte-7fpoih {
  display: grid;
  grid-template-columns: 40px 1fr 28px;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(217, 119, 6, 0.22);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), padding-left 0.4s;
  animation: svelte-7fpoih-mc-zone-in 0.7s ease-out both;
  animation-delay: var(--mc-zone-delay, 0s);
  cursor: default;
}
.mc-zone-item.svelte-7fpoih:last-child {
  border-bottom: none;
}
@keyframes svelte-7fpoih-mc-zone-in {
  0% {
    opacity: 0;
    transform: translate(-14px);
  }
  to {
    opacity: 1;
    transform: translate(0);
  }
}
.mc-zone-item.svelte-7fpoih:hover {
  padding-left: 6px;
}
.mc-zone-num.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: transparent;
  -webkit-text-stroke: 1.3px #d97706;
  transition: color 0.4s, -webkit-text-stroke-color 0.4s;
}
.mc-zone-item.svelte-7fpoih:hover .mc-zone-num:where(.svelte-7fpoih) {
  color: #d97706;
  -webkit-text-stroke-color: transparent;
}
.mc-zone-body.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.mc-zone-name.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  font-weight: 700 !important;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #1e293b;
  background: linear-gradient(120deg, #1e293b, #d97706);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mc-zone-sub.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 11.5px;
  color: #b45309;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.mc-zone-arrow.svelte-7fpoih {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d97706;
  background: #fef3c7a6;
  border: 1px solid rgba(217, 119, 6, 0.28);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.mc-zone-item.svelte-7fpoih:hover .mc-zone-arrow:where(.svelte-7fpoih) {
  background: linear-gradient(135deg, #d97706, #f59e0b);
  color: #fff;
  border-color: transparent;
  transform: translate(4px) rotate(-6deg);
}
.mc-cta-card.svelte-7fpoih {
  position: relative;
  padding: 4px;
  border-radius: 24px;
  background: linear-gradient(135deg, #e91e8c66, #d977064d, #e91e8c66);
  box-shadow: 0 28px 70px -26px #e91e8c4d;
  overflow: hidden;
}
.mc-cta-orb.svelte-7fpoih {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.mc-cta-orb-1.svelte-7fpoih {
  top: -30px;
  left: -30px;
  width: 160px;
  height: 160px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.5) 0%,
    transparent 70%
  );
}
.mc-cta-orb-2.svelte-7fpoih {
  bottom: -30px;
  right: -30px;
  width: 160px;
  height: 160px;
  background: radial-gradient(
    circle,
    rgba(217, 119, 6, 0.5) 0%,
    transparent 70%
  );
}
.mc-cta-inner.svelte-7fpoih {
  position: relative;
  z-index: 1;
  padding: 38px 38px 34px;
  border-radius: 22px;
  background: linear-gradient(165deg, #fffffffa, #fdf2f8d9);
  text-align: center;
}
.mc-cta-badge.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  margin-bottom: 18px;
  box-shadow: 0 12px 28px -8px #25d36680;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.mc-cta-card.svelte-7fpoih:hover .mc-cta-badge:where(.svelte-7fpoih) {
  transform: rotate(-8deg) scale(1.08);
}
.mc-cta-h.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  font-weight: 700 !important;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
  background: linear-gradient(120deg, #1e293b, #e91e8c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.mc-cta-p.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(14px, 1.35vw, 15.5px);
  font-style: italic;
  line-height: 1.6;
  color: #52525b;
  margin: 0 0 22px;
}
.mc-trust.svelte-7fpoih {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mc-trust-item.svelte-7fpoih {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  color: #1e293b;
  padding: 10px 14px;
  border-radius: 12px;
  background: linear-gradient(100deg, #ecfdf5a6, #fdf2f8a6);
  border: 1px solid rgba(16, 185, 129, 0.22);
  text-align: left;
}
.mc-trust-icon.svelte-7fpoih {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #059669, #10b981);
  color: #fff;
}
.mc-cta-btn.svelte-7fpoih {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px 18px 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 18px 40px -10px #25d36680;
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s;
  width: 100%;
  margin-bottom: 14px;
}
.mc-cta-btn.svelte-7fpoih:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 52px -10px #25d36699;
}
.mc-cta-btn-shine.svelte-7fpoih {
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.5) 50%,
    transparent 70%
  );
  pointer-events: none;
  transition: left 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.mc-cta-btn.svelte-7fpoih:hover .mc-cta-btn-shine:where(.svelte-7fpoih) {
  left: 130%;
}
.mc-cta-btn-icon.svelte-7fpoih {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  align-items: center;
  justify-content: center;
  background: #ffffff2e;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  flex-shrink: 0;
}
.mc-cta-btn-body.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
  flex: 1;
}
.mc-cta-btn-label.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 14.5px;
  font-weight: 700;
}
.mc-cta-btn-note.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #ffffffd9;
  letter-spacing: 0.02em;
}
.mc-cta-btn-arrow.svelte-7fpoih {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff3;
  transition: transform 0.4s;
  flex-shrink: 0;
}
.mc-cta-btn.svelte-7fpoih:hover .mc-cta-btn-arrow:where(.svelte-7fpoih) {
  transform: translate(4px);
}
.mc-cta-closing.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: 13px;
  font-style: italic;
  color: #64748b;
  margin: 0;
}
@media (max-width: 900px) {
  .mc-section.svelte-7fpoih {
    padding: 78px 0 88px;
  }
  .mc-split.svelte-7fpoih {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .mc-zones.svelte-7fpoih {
    padding: 26px 24px;
  }
  .mc-cta-inner.svelte-7fpoih {
    padding: 30px 26px 28px;
  }
}
@media (max-width: 560px) {
  .mc-title.svelte-7fpoih {
    font-size: 1.8rem;
  }
  .mc-zone-item.svelte-7fpoih {
    grid-template-columns: 32px 1fr 26px;
    gap: 10px;
  }
  .mc-zone-num.svelte-7fpoih {
    font-size: 22px;
  }
  .mc-cta-btn.svelte-7fpoih {
    padding: 14px 14px 14px 12px;
    gap: 10px;
  }
  .mc-cta-btn-icon.svelte-7fpoih {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }
  .mc-cta-btn-body.svelte-7fpoih {
    flex: 1;
    min-width: 0;
  }
  .mc-cta-btn-label.svelte-7fpoih {
    font-size: 13.5px;
  }
  .mc-cta-btn-note.svelte-7fpoih {
    font-size: 10.5px;
  }
  .mc-cta-btn-arrow.svelte-7fpoih {
    width: 26px;
    height: 26px;
  }
}
.pf-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 104px 0 112px;
  background: radial-gradient(
      800px 500px at 10% 5%,
      rgba(217, 119, 6, 0.06) 0%,
      transparent 60%
    ),
    radial-gradient(
      800px 500px at 95% 95%,
      rgba(233, 30, 140, 0.06) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #fffdf5, #fff 45%, #fff8fa);
}
.pf-bg-orb.svelte-7fpoih {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: 0;
}
.pf-bg-orb-1.svelte-7fpoih {
  top: -80px;
  left: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(217, 119, 6, 0.2) 0%,
    transparent 70%
  );
}
.pf-bg-orb-2.svelte-7fpoih {
  bottom: -100px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.2) 0%,
    transparent 70%
  );
}
.pf-paper.svelte-7fpoih {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
  background-image: repeating-linear-gradient(
    0deg,
    transparent 0 39px,
    rgba(217, 119, 6, 0.03) 39px 40px
  );
}
.pf-serif-mark.svelte-7fpoih {
  position: absolute;
  top: 60px;
  right: 5%;
  font-family: Cormorant Garamond, serif;
  font-size: 160px;
  font-weight: 700;
  color: #d977060f;
  line-height: 1;
  pointer-events: none;
}
.pf-head.svelte-7fpoih {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto 40px;
  text-align: center;
}
.pf-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #78350f;
  margin-bottom: 22px;
}
.pf-kicker-dash.svelte-7fpoih {
  width: 32px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(217, 119, 6, 0.5),
    transparent
  );
}
.pf-title.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(1.95rem, 3.4vw, 2.75rem);
  font-weight: 700 !important;
  line-height: 1.13;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
  background: linear-gradient(115deg, #1e293b, #d97706, #e91e8c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.pf-leads.svelte-7fpoih {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto 40px;
}
.pf-lead-para.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(15.5px, 1.45vw, 17.5px);
  line-height: 1.72;
  color: #334155;
  margin: 0 0 18px;
}
.pf-lead-para.svelte-7fpoih:last-child {
  margin-bottom: 0;
}
.pf-dropcap.svelte-7fpoih {
  float: left;
  font-family: Cormorant Garamond, serif;
  font-size: 58px;
  font-weight: 700;
  line-height: 0.9;
  padding: 4px 12px 0 0;
  background: linear-gradient(135deg, #d97706, #e91e8c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.pf-punch.svelte-7fpoih {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto 56px;
  padding: 32px 40px 30px 56px;
  border-left: 3px solid transparent;
  border-image: linear-gradient(180deg, #d97706, #e91e8c) 1;
  background: linear-gradient(110deg, #fef3c780, #fdf2f880);
  border-radius: 0 16px 16px 0;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.pf-punch-mark.svelte-7fpoih {
  position: absolute;
  top: 0;
  left: 14px;
  font-family: Cormorant Garamond, serif;
  font-size: 72px;
  line-height: 1;
  color: #d977064d;
  pointer-events: none;
}
.pf-punch.svelte-7fpoih blockquote:where(.svelte-7fpoih) {
  margin: 0;
  font-family: Cormorant Garamond, serif;
  font-size: clamp(17px, 1.6vw, 21px);
  font-style: italic;
  font-weight: 600;
  line-height: 1.45;
  background: linear-gradient(110deg, #1e293b, #d97706, #e91e8c 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.pf-sub-head.svelte-7fpoih {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.pf-h3-tag.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.28em;
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  background: linear-gradient(135deg, #1e293b, #475569);
}
.pf-sub-title.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 700 !important;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.015em;
  background: linear-gradient(120deg, #1e293b, #d97706);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.pf-story.svelte-7fpoih {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto 54px;
  padding: 34px 38px;
  border-radius: 22px;
  background: linear-gradient(155deg, #fffffff5, #fef3c759);
  border: 1px solid rgba(217, 119, 6, 0.18);
  box-shadow: 0 18px 50px -22px #d9770633;
}
.pf-story-grid.svelte-7fpoih {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 22px;
}
.pf-story-body.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pf-story-badge.svelte-7fpoih {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: Inter, sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #b45309;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fef3c7b3;
  border: 1px solid rgba(217, 119, 6, 0.3);
}
.pf-story-narrative.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(15px, 1.42vw, 17px);
  line-height: 1.72;
  color: #334155;
  margin: 0;
}
.pf-story-attr.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: 14.5px;
  font-style: italic;
  color: #64748b;
  margin: 0;
}
.pf-story-quote.svelte-7fpoih {
  position: relative;
  margin: 0;
  padding: 28px 28px 26px 48px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fdf2f8b3, #fef3c7b3);
  border: 1px dashed rgba(233, 30, 140, 0.3);
}
.pf-story-quote-mark.svelte-7fpoih {
  position: absolute;
  top: 8px;
  left: 16px;
  font-family: Cormorant Garamond, serif;
  font-size: 90px;
  line-height: 1;
  color: #e91e8c47;
  pointer-events: none;
}
.pf-story-quote.svelte-7fpoih blockquote:where(.svelte-7fpoih) {
  margin: 0;
  font-family: Cormorant Garamond, serif;
  font-size: clamp(18px, 1.8vw, 22px);
  font-style: italic;
  font-weight: 700;
  line-height: 1.3;
  color: #1e293b;
  position: relative;
  z-index: 1;
}
.pf-story-resolution.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(15px, 1.42vw, 17px);
  line-height: 1.72;
  color: #334155;
  margin: 0;
  padding-top: 22px;
  border-top: 1px dashed rgba(217, 119, 6, 0.3);
}
.pf-require.svelte-7fpoih {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  padding: 34px 38px;
  border-radius: 22px;
  background: linear-gradient(155deg, #fffffff5, #fdf2f866);
  border: 1px solid rgba(233, 30, 140, 0.16);
  box-shadow: 0 18px 50px -22px #e91e8c33;
}
.pf-require-lead.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(15px, 1.42vw, 17px);
  line-height: 1.72;
  color: #334155;
  margin: 0 0 22px;
}
.pf-checks.svelte-7fpoih {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}
.pf-check.svelte-7fpoih {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  background: linear-gradient(100deg, #fdf2f880, #fff9);
  border: 1px solid rgba(233, 30, 140, 0.18);
  animation: svelte-7fpoih-pf-check-in 0.7s ease-out both;
  animation-delay: var(--pf-check-delay, 0s);
}
@keyframes svelte-7fpoih-pf-check-in {
  0% {
    opacity: 0;
    transform: translate(-10px);
  }
  to {
    opacity: 1;
    transform: translate(0);
  }
}
.pf-check-icon.svelte-7fpoih {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e91e8c, #f43f5e);
  color: #fff;
  box-shadow: 0 4px 10px -2px #e91e8c59;
}
.pf-check-body.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.pf-check-label.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: 15px;
  font-weight: 700 !important;
  line-height: 1.25;
  color: #1e293b;
}
.pf-check-note.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #be185d;
  letter-spacing: 0.02em;
}
.pf-require-closing.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.72;
  color: #334155;
  margin: 0 0 14px;
}
.pf-require-punch.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(16px, 1.5vw, 19px);
  font-style: italic;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
  padding-top: 18px;
  border-top: 1px dashed rgba(217, 119, 6, 0.3);
  background: linear-gradient(110deg, #1e293b, #d97706, #e91e8c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
@media (max-width: 900px) {
  .pf-section.svelte-7fpoih {
    padding: 80px 0 88px;
  }
  .pf-serif-mark.svelte-7fpoih {
    display: none;
  }
  .pf-story.svelte-7fpoih,
  .pf-require.svelte-7fpoih {
    padding: 26px 24px;
  }
  .pf-story-grid.svelte-7fpoih {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .pf-checks.svelte-7fpoih {
    grid-template-columns: 1fr;
  }
  .pf-punch.svelte-7fpoih {
    padding: 24px 28px 22px 42px;
  }
}
@media (max-width: 560px) {
  .pf-dropcap.svelte-7fpoih {
    font-size: 46px;
  }
  .pf-sub-head.svelte-7fpoih {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
.tl-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 104px 0 114px;
  background: radial-gradient(
      700px 500px at 85% 10%,
      rgba(233, 30, 140, 0.06) 0%,
      transparent 60%
    ),
    radial-gradient(
      700px 500px at 15% 90%,
      rgba(13, 148, 136, 0.06) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #fffafc, #fff, #f8fffd);
}
.tl-bg-orb.svelte-7fpoih {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: 0;
}
.tl-bg-orb-1.svelte-7fpoih {
  top: -90px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.22) 0%,
    transparent 70%
  );
}
.tl-bg-orb-2.svelte-7fpoih {
  bottom: -100px;
  left: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(13, 148, 136, 0.22) 0%,
    transparent 70%
  );
}
.tl-head.svelte-7fpoih {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto 52px;
  text-align: center;
}
.tl-manifest-bar.svelte-7fpoih {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 22px;
}
.tl-manifest-rule.svelte-7fpoih {
  flex: 1;
  max-width: 120px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #1e293b 40%,
    #1e293b 60%,
    transparent
  );
  border-radius: 1px;
}
.tl-manifest-tag.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #1e293b;
  padding: 8px 16px;
  border: 2px solid #1e293b;
  border-radius: 4px;
  background: #fff;
}
.tl-title.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(1.95rem, 3.4vw, 2.75rem);
  font-weight: 700 !important;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  background: linear-gradient(115deg, #1e293b, #e91e8c 55%, #0d9488);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.tl-lead.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(15px, 1.4vw, 17px);
  font-style: italic;
  line-height: 1.7;
  color: #475569;
  max-width: 660px;
  margin: 0 auto;
}
.tl-list.svelte-7fpoih {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1080px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.tl-entry.svelte-7fpoih {
  position: relative;
  padding: 30px 34px 26px;
  border-radius: 18px;
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0.97) 0%,
    var(--tl-bg) 100%
  );
  border: 1px solid var(--tl-border);
  box-shadow: 0 14px 36px -18px #0f172a1f;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s,
    border-color 0.5s;
  animation: svelte-7fpoih-tl-rise 0.7s ease-out both;
  animation-delay: var(--tl-delay, 0s);
}
@keyframes svelte-7fpoih-tl-rise {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.tl-entry.svelte-7fpoih:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px -18px var(--tl-shadow);
  border-color: var(--tl-border-strong);
}
.tl-entry-monogram.svelte-7fpoih {
  position: absolute;
  top: -20px;
  right: 16px;
  font-family: Cormorant Garamond, serif;
  font-size: 150px;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.4px var(--tl-color);
  opacity: 0.16;
  pointer-events: none;
  letter-spacing: -0.05em;
  transition: opacity 0.6s, transform 0.8s;
}
.tl-entry.svelte-7fpoih:hover .tl-entry-monogram:where(.svelte-7fpoih) {
  opacity: 0.36;
  transform: scale(1.04) rotate(-4deg);
}
.tl-entry-head.svelte-7fpoih {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
.tl-entry-num.svelte-7fpoih {
  display: inline-block;
  font-family: Inter, sans-serif;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--tl-color);
  margin-bottom: 10px;
}
.tl-entry-title-row.svelte-7fpoih {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px 14px;
  margin-bottom: 12px;
}
.tl-entry-name.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 700 !important;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0;
  background: linear-gradient(120deg, #1e293b 0%, var(--tl-color) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.tl-entry-range.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(13.5px, 1.25vw, 15px);
  font-style: italic;
  color: var(--tl-color);
  opacity: 0.9;
}
.tl-entry-rule.svelte-7fpoih {
  display: block;
  height: 2px;
  width: 50px;
  background: linear-gradient(90deg, var(--tl-color), var(--tl-color-2));
  border-radius: 1px;
  transition: width 0.5s;
}
.tl-entry.svelte-7fpoih:hover .tl-entry-rule:where(.svelte-7fpoih) {
  width: 100px;
}
.tl-entry-body.svelte-7fpoih {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
  align-items: start;
  margin-bottom: 22px;
}
.tl-entry-desc.svelte-7fpoih {
  font-size: 14.5px;
  line-height: 1.72;
  color: #475569;
  margin: 0;
}
.tl-entry-meta.svelte-7fpoih {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tl-meta.svelte-7fpoih {
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--tl-pill-bg);
  border: 1px dashed var(--tl-border-strong);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tl-meta-label.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tl-color);
}
.tl-meta-value.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: #1e293b;
  letter-spacing: 0.01em;
}
.tl-entry-foot.svelte-7fpoih {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}
.tl-entry-foot-line.svelte-7fpoih {
  flex: 1;
  height: 1px;
  background: var(--tl-border-strong);
}
.tl-entry-foot-tag.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--tl-color);
}
.tl-entry--rose.svelte-7fpoih {
  --tl-color: #e91e8c;
  --tl-color-2: #f43f5e;
  --tl-bg: rgba(253, 242, 248, 0.5);
  --tl-border: rgba(233, 30, 140, 0.15);
  --tl-border-strong: rgba(233, 30, 140, 0.3);
  --tl-shadow: rgba(233, 30, 140, 0.28);
  --tl-pill-bg: rgba(253, 242, 248, 0.7);
}
.tl-entry--coral.svelte-7fpoih {
  --tl-color: #ea580c;
  --tl-color-2: #fb923c;
  --tl-bg: rgba(255, 237, 213, 0.5);
  --tl-border: rgba(234, 88, 12, 0.15);
  --tl-border-strong: rgba(234, 88, 12, 0.3);
  --tl-shadow: rgba(234, 88, 12, 0.26);
  --tl-pill-bg: rgba(255, 237, 213, 0.7);
}
.tl-entry--teal.svelte-7fpoih {
  --tl-color: #0d9488;
  --tl-color-2: #14b8a6;
  --tl-bg: rgba(240, 253, 250, 0.5);
  --tl-border: rgba(13, 148, 136, 0.15);
  --tl-border-strong: rgba(13, 148, 136, 0.3);
  --tl-shadow: rgba(13, 148, 136, 0.26);
  --tl-pill-bg: rgba(240, 253, 250, 0.7);
}
.tl-entry--gold.svelte-7fpoih {
  --tl-color: #d97706;
  --tl-color-2: #f59e0b;
  --tl-bg: rgba(254, 243, 199, 0.5);
  --tl-border: rgba(217, 119, 6, 0.15);
  --tl-border-strong: rgba(217, 119, 6, 0.3);
  --tl-shadow: rgba(217, 119, 6, 0.26);
  --tl-pill-bg: rgba(254, 243, 199, 0.7);
}
.tl-qa.svelte-7fpoih {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 40px auto 0;
  padding: 24px 28px;
  border-radius: 18px;
  background: linear-gradient(110deg, #ecfdf58c, #ffffffe6, #fdf2f880);
  border: 1px solid rgba(16, 185, 129, 0.22);
  box-shadow: 0 14px 36px -18px #10b98138;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: start;
}
.tl-qa-icon.svelte-7fpoih {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #059669, #10b981);
  color: #fff;
  box-shadow: 0 6px 16px -4px #10b98166;
}
.tl-qa-body.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.tl-qa-q.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(15px, 1.4vw, 17px);
  font-style: italic;
  font-weight: 700;
  line-height: 1.4;
  color: #059669;
  margin: 0;
}
.tl-qa-a.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(14.5px, 1.35vw, 16px);
  line-height: 1.7;
  color: #334155;
  margin: 0;
}
@media (max-width: 900px) {
  .tl-section.svelte-7fpoih {
    padding: 80px 0 88px;
  }
  .tl-entry.svelte-7fpoih {
    padding: 24px 22px 22px;
  }
  .tl-entry-body.svelte-7fpoih {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .tl-entry-monogram.svelte-7fpoih {
    font-size: 110px;
    top: -14px;
  }
  .tl-qa.svelte-7fpoih {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px;
  }
  .tl-qa-icon.svelte-7fpoih {
    width: 40px;
    height: 40px;
  }
}
.pc-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 100px 0 110px;
  background: radial-gradient(
      700px 500px at 50% 50%,
      rgba(13, 148, 136, 0.08) 0%,
      transparent 65%
    ),
    radial-gradient(
      600px 400px at 10% 10%,
      rgba(217, 119, 6, 0.05) 0%,
      transparent 60%
    ),
    radial-gradient(
      600px 400px at 90% 90%,
      rgba(233, 30, 140, 0.05) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #f7fffc, #fffef8, #fff8fc);
}
.pc-bg-orb.svelte-7fpoih {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: 0;
}
.pc-bg-orb-1.svelte-7fpoih {
  top: -80px;
  left: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(20, 184, 166, 0.22) 0%,
    transparent 70%
  );
}
.pc-bg-orb-2.svelte-7fpoih {
  bottom: -100px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.2) 0%,
    transparent 70%
  );
}
.pc-ripple.svelte-7fpoih {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(420px, 50vw, 700px);
  height: clamp(420px, 50vw, 700px);
  pointer-events: none;
  z-index: 0;
  animation: svelte-7fpoih-pc-pulse 9s ease-in-out infinite;
}
@keyframes svelte-7fpoih-pc-pulse {
  0%,
  to {
    opacity: 0.65;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.95;
    transform: translate(-50%, -50%) scale(1.05);
  }
}
.pc-frame.svelte-7fpoih {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  padding: 54px 54px 50px;
  border-radius: 28px;
  background: linear-gradient(160deg, #fffffff5, #f0fdfaa6 45%, #fef3c78c);
  border: 1px solid rgba(13, 148, 136, 0.2);
  box-shadow: 0 30px 80px -30px #0d948840;
  overflow: hidden;
}
.pc-head.svelte-7fpoih {
  text-align: center;
  margin-bottom: 38px;
}
.pc-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #0f766e;
  padding: 8px 18px;
  border-radius: 999px;
  background: #f0fdfacc;
  border: 1px solid rgba(13, 148, 136, 0.28);
  margin-bottom: 22px;
}
.pc-kicker-drop.svelte-7fpoih {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0d9488;
  box-shadow: 0 0 0 3px #0d948840;
  animation: svelte-7fpoih-em-pulse 2.2s ease-in-out infinite;
}
.pc-title.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-weight: 700 !important;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
  background: linear-gradient(
    115deg,
    #1e293b,
    #0d9488 45%,
    #d97706 75%,
    #e91e8c
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.pc-lead.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(15px, 1.42vw, 17px);
  line-height: 1.68;
  color: #475569;
  font-style: italic;
  max-width: 640px;
  margin: 0 auto;
}
.pc-knowledge.svelte-7fpoih {
  margin: 0 0 28px;
  padding: 26px 28px;
  border-radius: 18px;
  background: linear-gradient(110deg, #f0fdfa8c, #ffffffd9, #fef3c780);
  border: 1px dashed rgba(13, 148, 136, 0.3);
}
.pc-knowledge-label.svelte-7fpoih {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #0f766e;
  margin-bottom: 20px;
}
.pc-knowledge-line.svelte-7fpoih {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(13, 148, 136, 0.4),
    transparent
  );
}
.pc-knowledge-grid.svelte-7fpoih {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.pc-know.svelte-7fpoih {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  border-radius: 12px;
  background: #fffc;
  border: 1px solid rgba(13, 148, 136, 0.18);
  animation: svelte-7fpoih-pc-know-in 0.7s ease-out both;
  animation-delay: var(--pc-know-delay, 0s);
  transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
}
@keyframes svelte-7fpoih-pc-know-in {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.pc-know.svelte-7fpoih:hover {
  transform: translateY(-2px);
  border-color: #0d948861;
  box-shadow: 0 6px 16px -4px #0d948838;
}
.pc-know-mark.svelte-7fpoih {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0d9488, #14b8a6);
  color: #fff;
  box-shadow: 0 4px 10px -2px #0d948866;
}
.pc-know-body.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.pc-know-name.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: 14.5px;
  font-weight: 700 !important;
  line-height: 1.2;
  color: #1e293b;
  letter-spacing: -0.01em;
}
.pc-know-sub.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 10.5px;
  font-weight: 500;
  color: #0f766e;
  letter-spacing: 0.02em;
}
.pc-slabs.svelte-7fpoih {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 30px;
}
.pc-slab.svelte-7fpoih {
  position: relative;
  padding: 18px 20px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1e293b, #334155);
  color: #fff;
  overflow: hidden;
  animation: svelte-7fpoih-pc-slab-in 0.7s ease-out both;
  animation-delay: var(--pc-slab-delay, 0s);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s;
}
@keyframes svelte-7fpoih-pc-slab-in {
  0% {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.pc-slab.svelte-7fpoih:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px -10px #0f172a66;
}
.pc-slab.svelte-7fpoih:nth-child(1) {
  background: linear-gradient(135deg, #e91e8c, #f43f5e);
}
.pc-slab.svelte-7fpoih:nth-child(2) {
  background: linear-gradient(135deg, #d97706, #f59e0b);
}
.pc-slab.svelte-7fpoih:nth-child(3) {
  background: linear-gradient(135deg, #0d9488, #14b8a6);
}
.pc-slab-index.svelte-7fpoih {
  display: block;
  font-family: Cormorant Garamond, serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  color: #ffffff80;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.pc-slab-text.svelte-7fpoih {
  display: block;
  font-family: Cormorant Garamond, serif;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  font-weight: 700 !important;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.pc-slab-sub.svelte-7fpoih {
  display: block;
  font-family: Inter, sans-serif;
  font-size: 10.5px;
  font-weight: 500;
  color: #ffffffd9;
  letter-spacing: 0.02em;
}
.pc-cta.svelte-7fpoih {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.pc-cta-btn.svelte-7fpoih {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 30px 18px 26px;
  border-radius: 16px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 18px 40px -10px #25d36680;
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s;
}
.pc-cta-btn.svelte-7fpoih:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 52px -10px #25d36699;
}
.pc-cta-btn-shine.svelte-7fpoih {
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.5) 50%,
    transparent 70%
  );
  pointer-events: none;
  transition: left 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.pc-cta-btn.svelte-7fpoih:hover .pc-cta-btn-shine:where(.svelte-7fpoih) {
  left: 130%;
}
.pc-cta-btn-icon.svelte-7fpoih {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  background: #ffffff2e;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.pc-cta-btn-body.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}
.pc-cta-btn-label.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 700;
}
.pc-cta-btn-note.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #ffffffd9;
  letter-spacing: 0.04em;
}
.pc-cta-btn-arrow.svelte-7fpoih {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff3;
  transition: transform 0.4s;
}
.pc-cta-btn.svelte-7fpoih:hover .pc-cta-btn-arrow:where(.svelte-7fpoih) {
  transform: translate(4px);
}
.pc-closing.svelte-7fpoih {
  text-align: center;
  font-family: Cormorant Garamond, serif;
  font-size: clamp(13.5px, 1.28vw, 15px);
  font-style: italic;
  color: #64748b;
  margin: 0;
}
@media (max-width: 900px) {
  .pc-section.svelte-7fpoih {
    padding: 78px 0 88px;
  }
  .pc-frame.svelte-7fpoih {
    padding: 40px 24px 36px;
    border-radius: 24px;
  }
  .pc-knowledge-grid.svelte-7fpoih {
    grid-template-columns: repeat(2, 1fr);
  }
  .pc-slabs.svelte-7fpoih {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .pc-cta-btn.svelte-7fpoih {
    padding: 16px 22px;
    gap: 12px;
  }
}
@media (max-width: 560px) {
  .pc-title.svelte-7fpoih {
    font-size: 1.75rem;
  }
  .pc-knowledge-grid.svelte-7fpoih {
    grid-template-columns: 1fr;
  }
  .pc-knowledge-line.svelte-7fpoih {
    max-width: 30px;
  }
  .pc-cta-btn.svelte-7fpoih {
    width: 100%;
    padding: 14px 14px 14px 12px;
    gap: 10px;
  }
  .pc-cta-btn-icon.svelte-7fpoih {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }
  .pc-cta-btn-body.svelte-7fpoih {
    flex: 1;
    min-width: 0;
  }
  .pc-cta-btn-label.svelte-7fpoih {
    font-size: 13.5px;
  }
  .pc-cta-btn-note.svelte-7fpoih {
    font-size: 10.5px;
  }
  .pc-cta-btn-arrow.svelte-7fpoih {
    width: 26px;
    height: 26px;
  }
}
.fa-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 104px 0 114px;
  background: radial-gradient(
      700px 480px at 15% 10%,
      rgba(233, 30, 140, 0.06) 0%,
      transparent 60%
    ),
    radial-gradient(
      700px 480px at 85% 90%,
      rgba(5, 150, 105, 0.06) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #fffafc, #fff 45%, #f6fffa);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.fa-bg-orb.svelte-7fpoih {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: 0;
}
.fa-bg-orb-1.svelte-7fpoih {
  top: -80px;
  left: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.2) 0%,
    transparent 70%
  );
}
.fa-bg-orb-2.svelte-7fpoih {
  bottom: -90px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(5, 150, 105, 0.2) 0%,
    transparent 70%
  );
}
.fa-grid.svelte-7fpoih {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  background-image: linear-gradient(
      rgba(233, 30, 140, 0.035) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(233, 30, 140, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
}
.fa-stamp.svelte-7fpoih {
  position: absolute;
  top: 72px;
  right: 6%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0.55;
}
.fa-stamp-inner.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.28em;
  color: #e91e8c73;
  text-transform: uppercase;
  transform: rotate(-12deg);
}
.fa-stamp-ring.svelte-7fpoih {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  border: 1.5px dashed rgba(233, 30, 140, 0.4);
}
.fa-head.svelte-7fpoih {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}
.fa-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Inter, sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #be185d;
  margin-bottom: 22px;
}
.fa-kicker-bar.svelte-7fpoih {
  width: 32px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(233, 30, 140, 0.5),
    transparent
  );
  border-radius: 1px;
}
.fa-kicker-flag.svelte-7fpoih {
  color: #e91e8c;
  display: inline-flex;
}
.fa-title.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(1.95rem, 3.4vw, 2.75rem);
  font-weight: 700 !important;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  background: linear-gradient(115deg, #1e293b, #e91e8c 55%, #059669);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.fa-lead.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(16px, 1.55vw, 20px);
  line-height: 1.68;
  color: #475569;
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}
.fa-dropcap.svelte-7fpoih {
  float: left;
  font-family: Cormorant Garamond, serif;
  font-size: 62px;
  font-weight: 700;
  line-height: 0.9;
  padding: 4px 12px 0 0;
  background: linear-gradient(135deg, #e91e8c, #059669);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.fa-scenario.svelte-7fpoih {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 24px;
  max-width: 1020px;
  margin: 44px auto 52px;
  padding: 32px 34px;
  border-radius: 20px;
  background: linear-gradient(120deg, #fdf2f873, #fffffff2, #ecfdf566);
  border: 1px solid rgba(233, 30, 140, 0.18);
  box-shadow: 0 16px 44px -18px #e91e8c33;
  overflow: hidden;
}
.fa-scenario-body.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fa-scenario-tag.svelte-7fpoih {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: Inter, sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #be185d;
  padding: 7px 14px;
  border-radius: 999px;
  background: #fdf2f8b3;
  border: 1px solid rgba(233, 30, 140, 0.25);
}
.fa-scenario-pulse.svelte-7fpoih {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e91e8c;
  box-shadow: 0 0 0 3px #e91e8c40;
  animation: svelte-7fpoih-em-pulse 2s ease-in-out infinite;
}
.fa-scenario-text.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(15.5px, 1.45vw, 18px);
  line-height: 1.7;
  color: #334155;
  margin: 0;
  font-style: italic;
}
.fa-scenario-stat.svelte-7fpoih {
  padding: 22px 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, #e91e8c, #f43f5e);
  color: #fff;
  text-align: center;
  box-shadow: 0 14px 32px -10px #e91e8c73;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.fa-scenario-stat-icon.svelte-7fpoih {
  opacity: 0.9;
}
.fa-scenario-stat-value.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(2rem, 2.8vw, 2.4rem);
  font-weight: 700 !important;
  line-height: 1;
  letter-spacing: -0.02em;
}
.fa-scenario-stat-label.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffffe0;
  line-height: 1.35;
}
.fa-diag-head.svelte-7fpoih {
  position: relative;
  z-index: 1;
  max-width: 1020px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 8px;
}
.fa-diag-h3-tag.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.28em;
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  background: linear-gradient(135deg, #1e293b, #475569);
}
.fa-diag-title.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 700 !important;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.015em;
  color: #1e293b;
}
.fa-split.svelte-7fpoih {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 22px;
  max-width: 1020px;
  margin: 0 auto;
}
.fa-fail.svelte-7fpoih {
  position: relative;
  padding: 28px;
  border-radius: 18px;
  background: #f1f5f999;
  border: 1px dashed rgba(148, 163, 184, 0.4);
}
.fa-badge.svelte-7fpoih {
  display: inline-flex;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.fa-badge--fail.svelte-7fpoih {
  background: #94a3b838;
  color: #64748b;
}
.fa-badge--ours.svelte-7fpoih {
  background: linear-gradient(135deg, #059669, #10b981);
  color: #fff;
  box-shadow: 0 6px 16px -4px #05966973;
}
.fa-fail-label.svelte-7fpoih {
  display: block;
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 8px;
}
.fa-fail-text.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(14.5px, 1.4vw, 16.5px);
  line-height: 1.68;
  color: #64748b;
  margin: 0;
  font-style: italic;
}
.fa-ours.svelte-7fpoih {
  position: relative;
  padding: 30px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ecfdf580, #ffffffe6 60%, #fdf2f84d);
  border: 1px solid rgba(5, 150, 105, 0.22);
  box-shadow: 0 16px 40px -18px #05966938;
  overflow: hidden;
}
.fa-ours-halo.svelte-7fpoih {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(16, 185, 129, 0.3) 0%,
    transparent 70%
  );
  filter: blur(40px);
  pointer-events: none;
}
.fa-ours-label.svelte-7fpoih {
  position: relative;
  z-index: 1;
  display: block;
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #059669;
  margin-bottom: 8px;
}
.fa-ours-text.svelte-7fpoih {
  position: relative;
  z-index: 1;
  font-size: 14.5px;
  line-height: 1.72;
  color: #334155;
  margin: 0 0 20px;
  font-weight: 500;
}
.fa-cities.svelte-7fpoih {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
}
.fa-cities-label.svelte-7fpoih {
  display: inline-block;
  font-family: Inter, sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #059669;
  margin-bottom: 8px;
}
.fa-cities-row.svelte-7fpoih {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.fa-city.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #059669;
  padding: 6px 12px;
  border-radius: 999px;
  background: #ecfdf5cc;
  border: 1px solid rgba(16, 185, 129, 0.28);
}
.fa-city-dot.svelte-7fpoih {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #059669;
}
.fa-stat.svelte-7fpoih {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, #059669, #10b981);
  color: #fff;
  box-shadow: 0 10px 24px -8px #05966966;
}
.fa-stat-value.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(1.25rem, 1.7vw, 1.5rem);
  font-weight: 700 !important;
  line-height: 1;
  letter-spacing: -0.01em;
}
.fa-stat-label.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffffe0;
}
@media (max-width: 900px) {
  .fa-section.svelte-7fpoih {
    padding: 80px 0 88px;
  }
  .fa-stamp.svelte-7fpoih {
    display: none;
  }
  .fa-scenario.svelte-7fpoih {
    grid-template-columns: 1fr;
    padding: 26px 24px;
    gap: 18px;
  }
  .fa-split.svelte-7fpoih {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .fa-diag-head.svelte-7fpoih {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
@media (max-width: 560px) {
  .fa-dropcap.svelte-7fpoih {
    font-size: 48px;
  }
}
.nm-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 104px 0 114px;
  background: radial-gradient(
      700px 500px at 90% 5%,
      rgba(20, 184, 166, 0.06) 0%,
      transparent 60%
    ),
    radial-gradient(
      700px 500px at 10% 95%,
      rgba(233, 30, 140, 0.06) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #f8fffd, #fff, #fffafc);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.nm-bg-orb.svelte-7fpoih {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: 0;
}
.nm-bg-orb-1.svelte-7fpoih {
  top: -90px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(20, 184, 166, 0.22) 0%,
    transparent 70%
  );
}
.nm-bg-orb-2.svelte-7fpoih {
  bottom: -100px;
  left: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.2) 0%,
    transparent 70%
  );
}
.nm-head.svelte-7fpoih {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto 40px;
  text-align: center;
}
.nm-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #0f766e;
  margin-bottom: 22px;
}
.nm-kicker-track.svelte-7fpoih {
  width: 34px;
  height: 2px;
  border-radius: 1px;
  background: linear-gradient(90deg, transparent, #14b8a6, transparent);
}
.nm-kicker-pin.svelte-7fpoih {
  color: #e91e8c;
  display: inline-flex;
}
.nm-title.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(1.95rem, 3.4vw, 2.75rem);
  font-weight: 700 !important;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  background: linear-gradient(115deg, #1e293b, #0d9488 45%, #e91e8c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.nm-lead.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(15px, 1.42vw, 17.5px);
  font-style: italic;
  line-height: 1.7;
  color: #475569;
  max-width: 680px;
  margin: 0 auto;
}
.nm-legend.svelte-7fpoih {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin: 0 auto 48px;
  font-family: Inter, sans-serif;
  font-size: 10.5px;
  color: #64748b;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nm-legend-item.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nm-legend-dot.svelte-7fpoih {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e91e8c, #14b8a6);
}
.nm-legend-line.svelte-7fpoih {
  width: 22px;
  height: 2px;
  border-radius: 1px;
  background: linear-gradient(90deg, #e91e8c, #14b8a6);
  position: relative;
}
.nm-legend-line.svelte-7fpoih:before,
.nm-legend-line.svelte-7fpoih:after {
  content: "";
  position: absolute;
  top: -3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #14b8a6;
}
.nm-legend-line.svelte-7fpoih:before {
  left: -5px;
}
.nm-legend-line.svelte-7fpoih:after {
  right: -5px;
  border-color: #e91e8c;
}
.nm-legend-pill.svelte-7fpoih {
  width: 18px;
  height: 8px;
  border-radius: 4px;
  background: #e91e8c33;
  border: 1px solid rgba(233, 30, 140, 0.35);
}
.nm-legend-dash.svelte-7fpoih {
  width: 6px;
  height: 1px;
  background: #cbd5e1;
}
.nm-line.svelte-7fpoih {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  padding-left: 64px;
}
.nm-track.svelte-7fpoih {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 30px;
  width: 3px;
  border-radius: 2px;
  background: repeating-linear-gradient(
    180deg,
    #e91e8c 0 14px,
    transparent 14px 20px,
    #ea580c 20px 34px,
    transparent 34px 40px,
    #d97706 40px 54px,
    transparent 54px 60px,
    #10b981 60px 74px,
    transparent 74px 80px,
    #14b8a6 80px 94px
  );
  opacity: 0.7;
}
.nm-stop.svelte-7fpoih {
  position: relative;
  margin-bottom: 32px;
  animation: svelte-7fpoih-nm-appear 0.7s ease-out both;
  animation-delay: var(--nm-delay, 0s);
}
@keyframes svelte-7fpoih-nm-appear {
  0% {
    opacity: 0;
    transform: translate(20px);
  }
  to {
    opacity: 1;
    transform: translate(0);
  }
}
.nm-stop.svelte-7fpoih:last-child {
  margin-bottom: 0;
}
.nm-marker.svelte-7fpoih {
  position: absolute;
  top: 32px;
  left: -46px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.nm-marker-ring.svelte-7fpoih {
  position: absolute;
  top: -4px;
  right: -4px;
  bottom: -4px;
  left: -4px;
  border-radius: 50%;
  border: 1.5px dashed var(--nm-color);
  opacity: 0.55;
  animation: svelte-7fpoih-nm-spin 14s linear infinite;
}
@keyframes svelte-7fpoih-nm-spin {
  to {
    transform: rotate(360deg);
  }
}
.nm-marker-dot.svelte-7fpoih {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--nm-color), var(--nm-color-2));
  box-shadow: 0 0 0 4px #fff, 0 6px 16px -4px var(--nm-shadow);
}
.nm-marker-num.svelte-7fpoih {
  position: relative;
  z-index: 1;
  font-family: Inter, sans-serif;
  font-size: 10.5px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.04em;
}
.nm-card.svelte-7fpoih {
  position: relative;
  padding: 28px 30px 26px;
  border-radius: 18px;
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0.96) 0%,
    var(--nm-bg) 100%
  );
  border: 1px solid var(--nm-border);
  box-shadow: 0 14px 38px -18px #0f172a1a;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s,
    border-color 0.5s;
}
.nm-card.svelte-7fpoih:hover {
  transform: translate(4px) translateY(-2px);
  box-shadow: 0 22px 50px -18px var(--nm-shadow);
  border-color: var(--nm-border-strong);
}
.nm-card-halo.svelte-7fpoih {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--nm-halo);
  filter: blur(50px);
  opacity: 0.3;
  pointer-events: none;
  transition: opacity 0.5s;
}
.nm-card.svelte-7fpoih:hover .nm-card-halo:where(.svelte-7fpoih) {
  opacity: 0.6;
}
.nm-card-top.svelte-7fpoih {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}
.nm-card-titles.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.nm-card-index.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--nm-color);
  opacity: 0.8;
}
.nm-card-name.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(1.45rem, 2vw, 1.75rem);
  font-weight: 700 !important;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0;
  background: linear-gradient(120deg, #1e293b 0%, var(--nm-color) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.nm-card-tagline.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: 14px;
  font-style: italic;
  color: #64748b;
  margin-top: 2px;
}
.nm-card-volume.svelte-7fpoih {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: Inter, sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nm-color);
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--nm-pill-bg);
  border: 1px solid var(--nm-border-strong);
}
.nm-card-volume-dot.svelte-7fpoih {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--nm-color);
  box-shadow: 0 0 0 3px var(--nm-pulse);
  animation: svelte-7fpoih-em-pulse 2.4s ease-in-out infinite;
}
.nm-card-accent.svelte-7fpoih {
  display: block;
  width: 34px;
  height: 2.5px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--nm-color), var(--nm-color-2));
  margin-bottom: 14px;
  transition: width 0.5s;
}
.nm-card.svelte-7fpoih:hover .nm-card-accent:where(.svelte-7fpoih) {
  width: 64px;
}
.nm-card-desc.svelte-7fpoih {
  position: relative;
  z-index: 1;
  font-size: 14px;
  line-height: 1.72;
  color: #475569;
  margin: 0 0 16px;
}
.nm-card-pattern.svelte-7fpoih {
  position: relative;
  z-index: 1;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--nm-pill-bg);
  border: 1px dashed var(--nm-border-strong);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.nm-pattern-label.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--nm-color);
}
.nm-pattern-text.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: #1e293b;
}
.nm-stop--rose.svelte-7fpoih {
  --nm-color: #e91e8c;
  --nm-color-2: #f43f5e;
  --nm-bg: rgba(253, 242, 248, 0.5);
  --nm-border: rgba(233, 30, 140, 0.16);
  --nm-border-strong: rgba(233, 30, 140, 0.3);
  --nm-shadow: rgba(233, 30, 140, 0.3);
  --nm-pill-bg: rgba(253, 242, 248, 0.7);
  --nm-pulse: rgba(233, 30, 140, 0.3);
  --nm-halo: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.5) 0%,
    transparent 70%
  );
}
.nm-stop--coral.svelte-7fpoih {
  --nm-color: #ea580c;
  --nm-color-2: #fb923c;
  --nm-bg: rgba(255, 237, 213, 0.5);
  --nm-border: rgba(234, 88, 12, 0.16);
  --nm-border-strong: rgba(234, 88, 12, 0.3);
  --nm-shadow: rgba(234, 88, 12, 0.28);
  --nm-pill-bg: rgba(255, 237, 213, 0.7);
  --nm-pulse: rgba(234, 88, 12, 0.3);
  --nm-halo: radial-gradient(
    circle,
    rgba(251, 146, 60, 0.5) 0%,
    transparent 70%
  );
}
.nm-stop--gold.svelte-7fpoih {
  --nm-color: #d97706;
  --nm-color-2: #f59e0b;
  --nm-bg: rgba(254, 243, 199, 0.5);
  --nm-border: rgba(217, 119, 6, 0.16);
  --nm-border-strong: rgba(217, 119, 6, 0.3);
  --nm-shadow: rgba(217, 119, 6, 0.28);
  --nm-pill-bg: rgba(254, 243, 199, 0.7);
  --nm-pulse: rgba(245, 158, 11, 0.3);
  --nm-halo: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.5) 0%,
    transparent 70%
  );
}
.nm-stop--emerald.svelte-7fpoih {
  --nm-color: #059669;
  --nm-color-2: #10b981;
  --nm-bg: rgba(236, 253, 245, 0.5);
  --nm-border: rgba(5, 150, 105, 0.16);
  --nm-border-strong: rgba(5, 150, 105, 0.3);
  --nm-shadow: rgba(5, 150, 105, 0.28);
  --nm-pill-bg: rgba(236, 253, 245, 0.7);
  --nm-pulse: rgba(16, 185, 129, 0.3);
  --nm-halo: radial-gradient(
    circle,
    rgba(16, 185, 129, 0.5) 0%,
    transparent 70%
  );
}
.nm-stop--teal.svelte-7fpoih {
  --nm-color: #0d9488;
  --nm-color-2: #14b8a6;
  --nm-bg: rgba(240, 253, 250, 0.5);
  --nm-border: rgba(13, 148, 136, 0.16);
  --nm-border-strong: rgba(13, 148, 136, 0.3);
  --nm-shadow: rgba(13, 148, 136, 0.28);
  --nm-pill-bg: rgba(240, 253, 250, 0.7);
  --nm-pulse: rgba(20, 184, 166, 0.3);
  --nm-halo: radial-gradient(
    circle,
    rgba(20, 184, 166, 0.5) 0%,
    transparent 70%
  );
}
.nm-terminus.svelte-7fpoih {
  position: absolute;
  bottom: -20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nm-terminus-dot.svelte-7fpoih {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #cbd5e1;
}
@media (max-width: 900px) {
  .nm-section.svelte-7fpoih {
    padding: 80px 0 90px;
  }
  .nm-line.svelte-7fpoih {
    padding-left: 52px;
  }
  .nm-track.svelte-7fpoih {
    left: 22px;
  }
  .nm-marker.svelte-7fpoih {
    left: -38px;
    width: 28px;
    height: 28px;
  }
  .nm-card.svelte-7fpoih {
    padding: 24px 22px 22px;
  }
}
@media (max-width: 560px) {
  .nm-card-top.svelte-7fpoih {
    flex-direction: column;
    gap: 10px;
  }
}
.tb-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 104px 0 114px;
  background: radial-gradient(
      700px 500px at 15% 5%,
      rgba(233, 30, 140, 0.07) 0%,
      transparent 60%
    ),
    radial-gradient(
      700px 500px at 85% 95%,
      rgba(16, 185, 129, 0.07) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #fffafd, #fff, #f8fffa);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.tb-bg-orb.svelte-7fpoih {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: 0;
}
.tb-bg-orb-1.svelte-7fpoih {
  top: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.22) 0%,
    transparent 70%
  );
}
.tb-bg-orb-2.svelte-7fpoih {
  bottom: -100px;
  right: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(16, 185, 129, 0.22) 0%,
    transparent 70%
  );
}
.tb-head.svelte-7fpoih {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto 56px;
  text-align: center;
}
.tb-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #be185d;
  margin-bottom: 22px;
}
.tb-kicker-diamond.svelte-7fpoih {
  font-size: 10px;
  color: #e91e8c;
}
.tb-title.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(1.95rem, 3.4vw, 2.7rem);
  font-weight: 700 !important;
  line-height: 1.14;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  background: linear-gradient(115deg, #1e293b, #e91e8c, #059669 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.tb-lead.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(15px, 1.42vw, 17.5px);
  font-style: italic;
  line-height: 1.7;
  color: #475569;
  max-width: 640px;
  margin: 0 auto;
}
.tb-grid.svelte-7fpoih {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 1140px;
  margin: 0 auto;
}
.tb-tile.svelte-7fpoih {
  position: relative;
  padding: 28px 28px 26px;
  border-radius: 22px;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.96) 0%,
    var(--tb-bg) 100%
  );
  border: 1px solid var(--tb-border);
  box-shadow: 0 16px 42px -20px #0f172a1f;
  overflow: hidden;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.55s,
    border-color 0.55s;
  display: flex;
  flex-direction: column;
  animation: svelte-7fpoih-tb-rise 0.7s ease-out both;
  animation-delay: var(--tb-delay, 0s);
}
@keyframes svelte-7fpoih-tb-rise {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.tb-tile.is-featured.svelte-7fpoih {
  grid-column: 1 / -1;
  padding: 40px 44px 36px;
}
.tb-tile.is-featured.svelte-7fpoih .tb-tile-num:where(.svelte-7fpoih) {
  font-size: 120px;
  top: 28px;
  right: 36px;
  opacity: 0.14;
}
.tb-tile.is-featured.svelte-7fpoih .tb-tile-desc:where(.svelte-7fpoih) {
  max-width: 720px;
}
.tb-tile.is-featured.svelte-7fpoih .tb-tile-highlight:where(.svelte-7fpoih) {
  max-width: 640px;
}
.tb-tile.svelte-7fpoih:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 62px -20px var(--tb-shadow);
  border-color: var(--tb-border-strong);
}
.tb-tile-halo.svelte-7fpoih {
  position: absolute;
  top: -70px;
  right: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--tb-halo);
  filter: blur(60px);
  opacity: 0.35;
  pointer-events: none;
  transition: opacity 0.6s;
}
.tb-tile.svelte-7fpoih:hover .tb-tile-halo:where(.svelte-7fpoih) {
  opacity: 0.7;
}
.tb-tile-shine.svelte-7fpoih {
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.5) 50%,
    transparent 70%
  );
  pointer-events: none;
  transition: left 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.tb-tile.svelte-7fpoih:hover .tb-tile-shine:where(.svelte-7fpoih) {
  left: 130%;
}
.tb-tile-num.svelte-7fpoih {
  position: absolute;
  top: 14px;
  right: 18px;
  font-family: Cormorant Garamond, serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--tb-color);
  opacity: 0.24;
  pointer-events: none;
  z-index: 1;
}
.tb-tile-icon.svelte-7fpoih {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--tb-color), var(--tb-color-2));
  color: #fff;
  box-shadow: 0 10px 24px -6px var(--tb-shadow);
  margin-bottom: 18px;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.tb-tile.is-featured.svelte-7fpoih .tb-tile-icon:where(.svelte-7fpoih) {
  width: 60px;
  height: 60px;
  border-radius: 18px;
}
.tb-tile.svelte-7fpoih:hover .tb-tile-icon:where(.svelte-7fpoih) {
  transform: rotate(-8deg) scale(1.08);
}
.tb-tile-name.svelte-7fpoih {
  position: relative;
  z-index: 1;
  font-family: Cormorant Garamond, serif;
  font-size: clamp(1.25rem, 1.75vw, 1.55rem);
  font-weight: 700 !important;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  background: linear-gradient(120deg, #1e293b 0%, var(--tb-color) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.tb-tile.is-featured.svelte-7fpoih .tb-tile-name:where(.svelte-7fpoih) {
  font-size: clamp(1.8rem, 2.6vw, 2.2rem);
}
.tb-tile-tagline.svelte-7fpoih {
  position: relative;
  z-index: 1;
  display: block;
  font-family: Inter, sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--tb-color);
  letter-spacing: 0.04em;
  opacity: 0.85;
  margin-bottom: 14px;
}
.tb-tile.is-featured.svelte-7fpoih .tb-tile-tagline:where(.svelte-7fpoih) {
  font-family: Cormorant Garamond, serif;
  font-size: 15px;
  font-style: italic;
  opacity: 0.95;
}
.tb-tile-accent.svelte-7fpoih {
  position: relative;
  z-index: 1;
  display: block;
  width: 30px;
  height: 2.5px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--tb-color), var(--tb-color-2));
  margin-bottom: 14px;
  transition: width 0.5s;
}
.tb-tile.svelte-7fpoih:hover .tb-tile-accent:where(.svelte-7fpoih) {
  width: 60px;
}
.tb-tile-desc.svelte-7fpoih {
  position: relative;
  z-index: 1;
  font-size: 13.5px;
  line-height: 1.68;
  color: #475569;
  margin: 0 0 auto;
}
.tb-tile.is-featured.svelte-7fpoih .tb-tile-desc:where(.svelte-7fpoih) {
  font-size: 14.5px;
  line-height: 1.72;
}
.tb-tile-highlight.svelte-7fpoih {
  position: relative;
  z-index: 1;
  margin: 16px 0 0;
  padding: 14px 18px;
  border-radius: 12px;
  background: linear-gradient(
    120deg,
    var(--tb-pill-bg) 0%,
    rgba(255, 255, 255, 0.5) 100%
  );
  border-left: 3px solid var(--tb-color);
  font-family: Cormorant Garamond, serif;
  font-size: 15px;
  font-style: italic;
  font-weight: 600;
  color: #1e293b;
}
.tb-tile-highlight-mark.svelte-7fpoih {
  font-size: 22px;
  color: var(--tb-color);
  margin-right: 6px;
  opacity: 0.6;
  line-height: 1;
}
.tb-tile-tags.svelte-7fpoih {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}
.tb-tile-tag.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--tb-color);
  padding: 5px 10px;
  border-radius: 8px;
  background: var(--tb-pill-bg);
  border: 1px solid var(--tb-border-strong);
}
.tb-tile--rose.svelte-7fpoih {
  --tb-color: #e91e8c;
  --tb-color-2: #f43f5e;
  --tb-bg: rgba(253, 242, 248, 0.55);
  --tb-border: rgba(233, 30, 140, 0.16);
  --tb-border-strong: rgba(233, 30, 140, 0.3);
  --tb-shadow: rgba(233, 30, 140, 0.3);
  --tb-pill-bg: rgba(253, 242, 248, 0.7);
  --tb-halo: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.5) 0%,
    transparent 70%
  );
}
.tb-tile--coral.svelte-7fpoih {
  --tb-color: #ea580c;
  --tb-color-2: #fb923c;
  --tb-bg: rgba(255, 237, 213, 0.55);
  --tb-border: rgba(234, 88, 12, 0.16);
  --tb-border-strong: rgba(234, 88, 12, 0.3);
  --tb-shadow: rgba(234, 88, 12, 0.28);
  --tb-pill-bg: rgba(255, 237, 213, 0.7);
  --tb-halo: radial-gradient(
    circle,
    rgba(251, 146, 60, 0.5) 0%,
    transparent 70%
  );
}
.tb-tile--teal.svelte-7fpoih {
  --tb-color: #0d9488;
  --tb-color-2: #14b8a6;
  --tb-bg: rgba(240, 253, 250, 0.55);
  --tb-border: rgba(13, 148, 136, 0.16);
  --tb-border-strong: rgba(13, 148, 136, 0.3);
  --tb-shadow: rgba(13, 148, 136, 0.28);
  --tb-pill-bg: rgba(240, 253, 250, 0.7);
  --tb-halo: radial-gradient(
    circle,
    rgba(20, 184, 166, 0.5) 0%,
    transparent 70%
  );
}
.tb-tile--emerald.svelte-7fpoih {
  --tb-color: #059669;
  --tb-color-2: #10b981;
  --tb-bg: rgba(236, 253, 245, 0.55);
  --tb-border: rgba(5, 150, 105, 0.16);
  --tb-border-strong: rgba(5, 150, 105, 0.3);
  --tb-shadow: rgba(5, 150, 105, 0.28);
  --tb-pill-bg: rgba(236, 253, 245, 0.7);
  --tb-halo: radial-gradient(
    circle,
    rgba(16, 185, 129, 0.5) 0%,
    transparent 70%
  );
}
.tb-tile--gold.svelte-7fpoih {
  --tb-color: #d97706;
  --tb-color-2: #f59e0b;
  --tb-bg: rgba(254, 243, 199, 0.55);
  --tb-border: rgba(217, 119, 6, 0.16);
  --tb-border-strong: rgba(217, 119, 6, 0.3);
  --tb-shadow: rgba(217, 119, 6, 0.28);
  --tb-pill-bg: rgba(254, 243, 199, 0.7);
  --tb-halo: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.5) 0%,
    transparent 70%
  );
}
@media (max-width: 720px) {
  .tb-section.svelte-7fpoih {
    padding: 80px 0 88px;
  }
  .tb-grid.svelte-7fpoih {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .tb-tile.svelte-7fpoih {
    padding: 26px 22px 22px;
  }
  .tb-tile.is-featured.svelte-7fpoih {
    padding: 30px 24px 26px;
  }
  .tb-tile.is-featured.svelte-7fpoih .tb-tile-num:where(.svelte-7fpoih) {
    font-size: 80px;
    top: 18px;
    right: 22px;
  }
}
.bc-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 100px 0 110px;
  background: radial-gradient(
      700px 500px at 15% 10%,
      rgba(233, 30, 140, 0.06) 0%,
      transparent 60%
    ),
    radial-gradient(
      700px 500px at 85% 90%,
      rgba(217, 119, 6, 0.06) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #fffafc, #fff 45%, #fffaf0);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.bc-bg-orb.svelte-7fpoih {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: 0;
}
.bc-bg-orb-1.svelte-7fpoih {
  top: -90px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.2) 0%,
    transparent 70%
  );
}
.bc-bg-orb-2.svelte-7fpoih {
  bottom: -90px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(217, 119, 6, 0.2) 0%,
    transparent 70%
  );
}
.bc-compass.svelte-7fpoih {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(360px, 45vw, 620px);
  height: clamp(360px, 45vw, 620px);
  opacity: 0.75;
  pointer-events: none;
  z-index: 0;
  animation: svelte-7fpoih-nm-spin 40s linear infinite;
}
.bc-compass.svelte-7fpoih svg:where(.svelte-7fpoih) {
  width: 100%;
  height: 100%;
}
.bc-frame.svelte-7fpoih {
  position: relative;
  z-index: 1;
  max-width: 940px;
  margin: 0 auto;
  padding: 54px 52px 50px;
  border-radius: 28px;
  background: linear-gradient(160deg, #fffffff5, #fdf2f8b3 40%, #fef3c799);
  border: 1px solid rgba(233, 30, 140, 0.18);
  box-shadow: 0 30px 80px -30px #e91e8c38;
  overflow: hidden;
}
.bc-head.svelte-7fpoih {
  text-align: center;
  margin-bottom: 32px;
}
.bc-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #be185d;
  padding: 8px 18px;
  border-radius: 999px;
  background: #fdf2f8b3;
  border: 1px solid rgba(233, 30, 140, 0.28);
  margin-bottom: 22px;
}
.bc-kicker-ping.svelte-7fpoih {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #e91e8c;
  box-shadow: 0 0 0 3px #e91e8c40;
  animation: svelte-7fpoih-em-pulse 2s ease-in-out infinite;
}
.bc-title.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-weight: 700 !important;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
  background: linear-gradient(115deg, #1e293b, #e91e8c 45%, #d97706 85%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.bc-lead.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(15px, 1.42vw, 17px);
  line-height: 1.68;
  color: #475569;
  max-width: 640px;
  margin: 0 auto;
  font-style: italic;
}
.bc-coverage.svelte-7fpoih {
  margin: 0 0 32px;
  padding: 28px 30px;
  border-radius: 18px;
  background: linear-gradient(110deg, #fdf2f88c, #ffffffbf, #fef3c780);
  border: 1px dashed rgba(233, 30, 140, 0.25);
}
.bc-coverage-label.svelte-7fpoih {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  font-family: Inter, sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #be185d;
  margin-bottom: 20px;
}
.bc-coverage-line.svelte-7fpoih {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(233, 30, 140, 0.4),
    transparent
  );
}
.bc-nodes.svelte-7fpoih {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.bc-node.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: Cormorant Garamond, serif;
  font-size: clamp(14px, 1.3vw, 15.5px);
  font-weight: 700 !important;
  color: #1e293b;
  padding: 9px 16px;
  border-radius: 12px;
  background: #ffffffd9;
  border: 1px solid rgba(233, 30, 140, 0.2);
  box-shadow: 0 4px 12px -4px #e91e8c1f;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  animation: svelte-7fpoih-bc-pop 0.6s ease-out both;
  animation-delay: var(--bc-node-delay, 0s);
}
@keyframes svelte-7fpoih-bc-pop {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.bc-node.svelte-7fpoih:hover {
  background: linear-gradient(135deg, #fdf2f8e6, #fef3c7e6);
  border-color: #e91e8c66;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px -4px #e91e8c38;
}
.bc-node-pin.svelte-7fpoih {
  color: #e91e8c;
  display: inline-flex;
}
.bc-commitments.svelte-7fpoih {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}
.bc-commit.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(110deg, #ecfdf5cc, #fdf2f8cc);
  border: 1px solid rgba(16, 185, 129, 0.25);
}
.bc-commit-icon.svelte-7fpoih {
  display: inline-flex;
  color: #059669;
}
.bc-cta.svelte-7fpoih {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.bc-cta-btn.svelte-7fpoih {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 30px 18px 26px;
  border-radius: 16px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 18px 40px -10px #25d36680;
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s;
}
.bc-cta-btn.svelte-7fpoih:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 52px -10px #25d36699;
}
.bc-cta-btn-shine.svelte-7fpoih {
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.5) 50%,
    transparent 70%
  );
  pointer-events: none;
  transition: left 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.bc-cta-btn.svelte-7fpoih:hover .bc-cta-btn-shine:where(.svelte-7fpoih) {
  left: 130%;
}
.bc-cta-btn-icon.svelte-7fpoih {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  background: #ffffff2e;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.bc-cta-btn-body.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}
.bc-cta-btn-label.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 700;
}
.bc-cta-btn-note.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #ffffffd9;
  letter-spacing: 0.04em;
}
.bc-cta-btn-arrow.svelte-7fpoih {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff3;
  transition: transform 0.4s;
}
.bc-cta-btn.svelte-7fpoih:hover .bc-cta-btn-arrow:where(.svelte-7fpoih) {
  transform: translate(4px);
}
.bc-closing.svelte-7fpoih {
  text-align: center;
  font-family: Cormorant Garamond, serif;
  font-size: clamp(13.5px, 1.28vw, 15px);
  font-style: italic;
  color: #64748b;
  margin: 0;
}
@media (max-width: 900px) {
  .bc-section.svelte-7fpoih {
    padding: 78px 0 88px;
  }
  .bc-compass.svelte-7fpoih {
    width: 300px;
    height: 300px;
    opacity: 0.55;
  }
  .bc-frame.svelte-7fpoih {
    padding: 40px 26px 36px;
    border-radius: 24px;
  }
  .bc-coverage.svelte-7fpoih {
    padding: 22px 20px;
  }
  .bc-cta-btn.svelte-7fpoih {
    padding: 16px 22px;
    gap: 12px;
  }
}
@media (max-width: 560px) {
  .bc-title.svelte-7fpoih {
    font-size: 1.75rem;
  }
  .bc-coverage-line.svelte-7fpoih {
    max-width: 30px;
  }
  .bc-cta-btn.svelte-7fpoih {
    width: 100%;
    padding: 14px 14px 14px 12px;
    gap: 10px;
  }
  .bc-cta-btn-icon.svelte-7fpoih {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }
  .bc-cta-btn-body.svelte-7fpoih {
    flex: 1;
    min-width: 0;
  }
  .bc-cta-btn-label.svelte-7fpoih {
    font-size: 13.5px;
  }
  .bc-cta-btn-note.svelte-7fpoih {
    font-size: 10.5px;
  }
  .bc-cta-btn-arrow.svelte-7fpoih {
    width: 26px;
    height: 26px;
  }
}
.tp-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 104px 0 112px;
  background: radial-gradient(
      800px 500px at 15% 10%,
      rgba(233, 30, 140, 0.06) 0%,
      transparent 60%
    ),
    radial-gradient(
      800px 500px at 85% 90%,
      rgba(13, 148, 136, 0.06) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #fffafc, #fff, #f8fffd);
}
.tp-bg-orb.svelte-7fpoih {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: 0;
}
.tp-bg-orb-1.svelte-7fpoih {
  top: -90px;
  left: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.2) 0%,
    transparent 70%
  );
}
.tp-bg-orb-2.svelte-7fpoih {
  bottom: -100px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(13, 148, 136, 0.2) 0%,
    transparent 70%
  );
}
.tp-grid-pattern.svelte-7fpoih {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.35;
  pointer-events: none;
  background-image: linear-gradient(
      rgba(233, 30, 140, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(233, 30, 140, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}
.tp-head.svelte-7fpoih {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto 62px;
  text-align: center;
}
.tp-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #be185d;
  margin-bottom: 22px;
}
.tp-kicker-line.svelte-7fpoih {
  width: 30px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(233, 30, 140, 0.4),
    transparent
  );
}
.tp-kicker-shield.svelte-7fpoih {
  color: #e91e8c;
  display: inline-flex;
}
.tp-title.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(1.9rem, 3.3vw, 2.7rem);
  font-weight: 700 !important;
  line-height: 1.14;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  background: linear-gradient(115deg, #1e293b, #e91e8c, #0d9488);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.tp-lead.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(15px, 1.4vw, 17.5px);
  font-style: italic;
  line-height: 1.7;
  color: #475569;
  max-width: 680px;
  margin: 0 auto;
}
.tp-grid.svelte-7fpoih {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}
.tp-pillar.svelte-7fpoih {
  position: relative;
  padding: 40px 30px 30px;
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96) 0%,
    var(--tp-bg) 100%
  );
  border: 1px solid var(--tp-border);
  box-shadow: 0 20px 50px -22px #0f172a24;
  overflow: hidden;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.55s,
    border-color 0.55s;
  animation: svelte-7fpoih-tp-rise 0.75s ease-out both;
  animation-delay: var(--tp-delay, 0s);
}
@keyframes svelte-7fpoih-tp-rise {
  0% {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.tp-pillar.svelte-7fpoih:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 66px -22px var(--tp-shadow);
  border-color: var(--tp-border-strong);
}
.tp-rail.svelte-7fpoih {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--tp-color), var(--tp-color-2));
}
.tp-numeral.svelte-7fpoih {
  position: absolute;
  top: 8px;
  right: 14px;
  font-family: Cormorant Garamond, serif;
  font-size: 140px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.4px var(--tp-color);
  opacity: 0.14;
  pointer-events: none;
  transition: opacity 0.6s, transform 0.8s;
}
.tp-pillar.svelte-7fpoih:hover .tp-numeral:where(.svelte-7fpoih) {
  opacity: 0.32;
  transform: scale(1.04) rotate(-3deg);
}
.tp-them.svelte-7fpoih {
  position: relative;
  z-index: 1;
  padding: 16px 18px;
  border-radius: 12px;
  background: #e2e8f073;
  border: 1px dashed rgba(148, 163, 184, 0.35);
  margin-bottom: 10px;
}
.tp-them-head.svelte-7fpoih {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.tp-them-icon.svelte-7fpoih {
  display: inline-flex;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: #94a3b82e;
  color: #64748b;
}
.tp-them-label.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #64748b;
}
.tp-them-text.svelte-7fpoih {
  font-size: 13.5px;
  line-height: 1.65;
  color: #64748b;
  margin: 0;
  font-style: italic;
}
.tp-pivot.svelte-7fpoih {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 6px 0;
  justify-content: center;
}
.tp-pivot-line.svelte-7fpoih {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--tp-border-strong),
    transparent
  );
}
.tp-pivot-badge.svelte-7fpoih {
  display: inline-flex;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--tp-color), var(--tp-color-2));
  color: #fff;
  box-shadow: 0 4px 12px -2px var(--tp-shadow);
}
.tp-ours.svelte-7fpoih {
  position: relative;
  z-index: 1;
  padding: 18px 20px;
  border-radius: 14px;
  background: linear-gradient(
    120deg,
    var(--tp-ours-bg) 0%,
    rgba(255, 255, 255, 0.5) 100%
  );
  border: 1px solid var(--tp-border-strong);
  margin-bottom: 22px;
}
.tp-ours-head.svelte-7fpoih {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.tp-ours-icon.svelte-7fpoih {
  display: inline-flex;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--tp-color), var(--tp-color-2));
  color: #fff;
  box-shadow: 0 3px 8px -2px var(--tp-shadow);
}
.tp-ours-label.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tp-color);
}
.tp-ours-text.svelte-7fpoih {
  font-size: 14px;
  line-height: 1.7;
  color: #334155;
  margin: 0;
  font-weight: 500;
}
.tp-stat-bar.svelte-7fpoih {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--tp-color), var(--tp-color-2));
  color: #fff;
  box-shadow: 0 12px 28px -10px var(--tp-shadow);
}
.tp-stat-orb.svelte-7fpoih {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fffffff2;
  box-shadow: 0 0 0 4px #fff3;
}
.tp-stat-body.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tp-stat-value.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(1.25rem, 1.7vw, 1.55rem);
  font-weight: 700 !important;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.01em;
}
.tp-stat-label.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffffd9;
}
.tp-pillar--rose.svelte-7fpoih {
  --tp-color: #e91e8c;
  --tp-color-2: #f43f5e;
  --tp-bg: rgba(253, 242, 248, 0.55);
  --tp-border: rgba(233, 30, 140, 0.16);
  --tp-border-strong: rgba(233, 30, 140, 0.32);
  --tp-shadow: rgba(233, 30, 140, 0.36);
  --tp-ours-bg: rgba(253, 242, 248, 0.7);
}
.tp-pillar--gold.svelte-7fpoih {
  --tp-color: #d97706;
  --tp-color-2: #f59e0b;
  --tp-bg: rgba(254, 243, 199, 0.5);
  --tp-border: rgba(217, 119, 6, 0.16);
  --tp-border-strong: rgba(217, 119, 6, 0.32);
  --tp-shadow: rgba(217, 119, 6, 0.36);
  --tp-ours-bg: rgba(254, 243, 199, 0.7);
}
.tp-pillar--teal.svelte-7fpoih {
  --tp-color: #0d9488;
  --tp-color-2: #14b8a6;
  --tp-bg: rgba(240, 253, 250, 0.55);
  --tp-border: rgba(13, 148, 136, 0.16);
  --tp-border-strong: rgba(13, 148, 136, 0.32);
  --tp-shadow: rgba(13, 148, 136, 0.36);
  --tp-ours-bg: rgba(240, 253, 250, 0.7);
}
@media (max-width: 900px) {
  .tp-section.svelte-7fpoih {
    padding: 80px 0 88px;
  }
  .tp-head.svelte-7fpoih {
    margin-bottom: 44px;
  }
  .tp-grid.svelte-7fpoih {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .tp-pillar.svelte-7fpoih {
    padding: 30px 22px 22px;
  }
  .tp-numeral.svelte-7fpoih {
    font-size: 100px;
  }
}
.ei-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 104px 0 112px;
  background: radial-gradient(
      600px 400px at 10% 10%,
      rgba(245, 158, 11, 0.05) 0%,
      transparent 60%
    ),
    radial-gradient(
      600px 400px at 90% 90%,
      rgba(233, 30, 140, 0.05) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #fffdf8, #fff, #fffafc);
}
.ei-bg-orb.svelte-7fpoih {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}
.ei-bg-orb-1.svelte-7fpoih {
  top: -80px;
  left: -60px;
  width: 340px;
  height: 340px;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.18) 0%,
    transparent 70%
  );
}
.ei-bg-orb-2.svelte-7fpoih {
  bottom: -80px;
  right: -60px;
  width: 360px;
  height: 360px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.18) 0%,
    transparent 70%
  );
}
.ei-head.svelte-7fpoih {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto 40px;
}
.ei-head-row.svelte-7fpoih {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  flex-wrap: wrap;
  gap: 10px;
}
.ei-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #78350f;
}
.ei-kicker-tag.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: 18px;
  color: #d97706;
  font-weight: 700;
}
.ei-pages.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #94a3b8;
  padding: 5px 12px;
  border: 1px dashed rgba(148, 163, 184, 0.4);
  border-radius: 6px;
}
.ei-title.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 700 !important;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
  background: linear-gradient(120deg, #1e293b, #d97706, #e91e8c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.ei-lead.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(15.5px, 1.45vw, 18px);
  font-style: italic;
  line-height: 1.68;
  color: #475569;
  margin: 0 0 24px;
  max-width: 720px;
}
.ei-rule.svelte-7fpoih {
  height: 2px;
  max-width: 900px;
  background: linear-gradient(90deg, #d97706 0%, #e91e8c 50%, transparent 100%);
  border-radius: 1px;
}
.ei-list.svelte-7fpoih {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 900px;
  display: flex;
  flex-direction: column;
}
.ei-entry.svelte-7fpoih {
  position: relative;
  padding: 26px 0 28px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  transition: background 0.4s, padding 0.4s;
  animation: svelte-7fpoih-ei-fade 0.7s ease-out both;
  animation-delay: var(--ei-delay, 0s);
}
@keyframes svelte-7fpoih-ei-fade {
  0% {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.ei-entry.svelte-7fpoih:nth-child(odd) {
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--ei-bg-tint) 50%,
    transparent 100%
  );
}
.ei-entry.svelte-7fpoih:hover {
  padding-left: 8px;
}
.ei-entry-top.svelte-7fpoih {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}
.ei-num.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(56px, 6.5vw, 88px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.4px var(--ei-color);
  transition: color 0.5s, -webkit-text-stroke-color 0.5s, transform 0.5s;
}
.ei-entry.svelte-7fpoih:hover .ei-num:where(.svelte-7fpoih) {
  color: var(--ei-color);
  -webkit-text-stroke-color: transparent;
  transform: translate(-4px) scale(1.03);
}
.ei-mid.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.ei-name.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 700 !important;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
  background: linear-gradient(120deg, #1e293b 0%, var(--ei-color) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.ei-tagline.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(13.5px, 1.3vw, 15.5px);
  font-style: italic;
  color: #64748b;
  letter-spacing: 0.01em;
}
.ei-right.svelte-7fpoih {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.ei-avail.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--ei-color);
  padding: 6px 13px;
  border-radius: 999px;
  background: var(--ei-pill-bg);
  border: 1px solid var(--ei-border);
}
.ei-arrow.svelte-7fpoih {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ei-color);
  background: var(--ei-pill-bg);
  border: 1px solid var(--ei-border);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.ei-entry.svelte-7fpoih:hover .ei-arrow:where(.svelte-7fpoih) {
  background: linear-gradient(135deg, var(--ei-color), var(--ei-color-2));
  color: #fff;
  border-color: transparent;
  transform: translate(4px);
}
.ei-dots.svelte-7fpoih {
  position: relative;
  display: block;
  width: 100%;
  height: 4px;
  color: var(--ei-color);
  margin: 14px 0 12px;
  opacity: 0.55;
  overflow: visible;
}
.ei-desc.svelte-7fpoih {
  font-size: 14.5px;
  line-height: 1.72;
  color: #475569;
  margin: 0;
  max-width: 780px;
  padding-left: clamp(72px, 9vw, 104px);
}
.ei-entry--rose.svelte-7fpoih {
  --ei-color: #e91e8c;
  --ei-color-2: #f43f5e;
  --ei-bg-tint: rgba(253, 242, 248, 0.4);
  --ei-pill-bg: rgba(253, 242, 248, 0.7);
  --ei-border: rgba(233, 30, 140, 0.22);
}
.ei-entry--coral.svelte-7fpoih {
  --ei-color: #ea580c;
  --ei-color-2: #fb923c;
  --ei-bg-tint: rgba(255, 237, 213, 0.4);
  --ei-pill-bg: rgba(255, 237, 213, 0.7);
  --ei-border: rgba(234, 88, 12, 0.22);
}
.ei-entry--teal.svelte-7fpoih {
  --ei-color: #0d9488;
  --ei-color-2: #14b8a6;
  --ei-bg-tint: rgba(240, 253, 250, 0.4);
  --ei-pill-bg: rgba(240, 253, 250, 0.7);
  --ei-border: rgba(13, 148, 136, 0.22);
}
.ei-entry--emerald.svelte-7fpoih {
  --ei-color: #059669;
  --ei-color-2: #10b981;
  --ei-bg-tint: rgba(236, 253, 245, 0.4);
  --ei-pill-bg: rgba(236, 253, 245, 0.7);
  --ei-border: rgba(5, 150, 105, 0.22);
}
.ei-entry--gold.svelte-7fpoih {
  --ei-color: #d97706;
  --ei-color-2: #f59e0b;
  --ei-bg-tint: rgba(254, 243, 199, 0.4);
  --ei-pill-bg: rgba(254, 243, 199, 0.7);
  --ei-border: rgba(217, 119, 6, 0.22);
}
.ei-closing.svelte-7fpoih {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 48px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}
.ei-closing-spark.svelte-7fpoih {
  font-size: 15px;
  color: #d97706;
  opacity: 0.6;
}
.ei-closing.svelte-7fpoih p:where(.svelte-7fpoih) {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(15px, 1.4vw, 17.5px);
  font-style: italic;
  font-weight: 600;
  margin: 0;
  line-height: 1.55;
  background: linear-gradient(110deg, #1e293b, #d97706, #e91e8c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
@media (max-width: 900px) {
  .ei-section.svelte-7fpoih {
    padding: 78px 0 84px;
  }
  .ei-entry-top.svelte-7fpoih {
    grid-template-columns: auto 1fr;
    gap: 16px;
  }
  .ei-right.svelte-7fpoih {
    grid-column: 1 / -1;
    justify-content: space-between;
  }
  .ei-desc.svelte-7fpoih {
    padding-left: 0;
  }
  .ei-num.svelte-7fpoih {
    font-size: 60px;
  }
}
@media (max-width: 560px) {
  .ei-title.svelte-7fpoih {
    font-size: 1.85rem;
  }
  .ei-head-row.svelte-7fpoih {
    flex-direction: column;
    align-items: flex-start;
  }
}
.na-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 104px 0 112px;
  background: radial-gradient(
      700px 500px at 90% 10%,
      rgba(217, 119, 6, 0.06) 0%,
      transparent 60%
    ),
    radial-gradient(
      700px 500px at 10% 90%,
      rgba(13, 148, 136, 0.06) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #fffdf6, #fff, #f0fdfa);
}
.na-bg-orb.svelte-7fpoih {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}
.na-bg-orb-1.svelte-7fpoih {
  top: -90px;
  right: -90px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(217, 119, 6, 0.22) 0%,
    transparent 70%
  );
}
.na-bg-orb-2.svelte-7fpoih {
  bottom: -90px;
  left: -90px;
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(13, 148, 136, 0.22) 0%,
    transparent 70%
  );
}
.na-monogram.svelte-7fpoih {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: Cormorant Garamond, serif;
  font-size: clamp(300px, 40vw, 560px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 2px rgba(233, 30, 140, 0.06);
  opacity: 0.8;
  pointer-events: none;
  z-index: 0;
}
.na-head.svelte-7fpoih {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto 68px;
  text-align: center;
}
.na-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #0f766e;
  margin-bottom: 22px;
  padding: 8px 18px;
  border-radius: 999px;
  background: #ffffffb3;
  border: 1px solid rgba(13, 148, 136, 0.28);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.na-kicker-pin.svelte-7fpoih {
  color: #e91e8c;
  display: inline-flex;
}
.na-title.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(1.9rem, 3.3vw, 2.7rem);
  font-weight: 700 !important;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  background: linear-gradient(115deg, #1e293b, #d97706 40%, #0d9488 85%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.na-lead.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(15.5px, 1.45vw, 18px);
  line-height: 1.72;
  color: #475569;
  max-width: 680px;
  margin: 0 auto 28px;
}
.na-pull.svelte-7fpoih {
  position: relative;
  margin: 26px auto 0;
  max-width: 640px;
  padding: 22px 50px;
  text-align: center;
}
.na-pull-mark.svelte-7fpoih {
  position: absolute;
  font-family: Cormorant Garamond, serif;
  font-size: 54px;
  line-height: 1;
  color: #d9770647;
  pointer-events: none;
}
.na-pull-mark-l.svelte-7fpoih {
  top: 0;
  left: 8px;
}
.na-pull-mark-r.svelte-7fpoih {
  bottom: 0;
  right: 8px;
}
.na-pull.svelte-7fpoih blockquote:where(.svelte-7fpoih) {
  margin: 0;
  font-family: Cormorant Garamond, serif;
  font-size: clamp(17px, 1.6vw, 21px);
  font-style: italic;
  font-weight: 600;
  line-height: 1.45;
  color: #1e293b;
  background: linear-gradient(110deg, #1e293b, #d97706, #0d9488);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.na-zones.svelte-7fpoih {
  position: relative;
  z-index: 1;
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.na-zone.svelte-7fpoih {
  position: relative;
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 40px;
  padding: 34px 36px;
  border-radius: 22px;
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0.96) 0%,
    var(--na-bg) 100%
  );
  border: 1px solid var(--na-border);
  box-shadow: 0 16px 44px -20px #0f172a1f;
  overflow: hidden;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.55s,
    border-color 0.55s;
  animation: svelte-7fpoih-na-slide 0.75s ease-out both;
  animation-delay: var(--na-delay, 0s);
}
@keyframes svelte-7fpoih-na-slide {
  0% {
    opacity: 0;
    transform: translate(-20px);
  }
  to {
    opacity: 1;
    transform: translate(0);
  }
}
.na-zone.is-right.svelte-7fpoih {
  grid-template-columns: 1fr 40%;
  background: linear-gradient(
    260deg,
    rgba(255, 255, 255, 0.96) 0%,
    var(--na-bg) 100%
  );
}
.na-zone.is-right.svelte-7fpoih .na-zone-title-col:where(.svelte-7fpoih) {
  order: 2;
  text-align: right;
}
.na-zone.is-right.svelte-7fpoih .na-zone-body-col:where(.svelte-7fpoih) {
  order: 1;
}
.na-zone.svelte-7fpoih:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 56px -20px var(--na-shadow);
  border-color: var(--na-border-strong);
}
.na-zone-title-col.svelte-7fpoih {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-self: center;
}
.na-zone-index.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--na-color);
  opacity: 0.85;
}
.na-zone-name.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  font-weight: 700 !important;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  background: linear-gradient(120deg, #1e293b 0%, var(--na-color) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.na-zone-context.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #64748b;
  font-style: italic;
}
.na-zone-tag.svelte-7fpoih {
  align-self: flex-start;
  font-family: Inter, sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--na-color);
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--na-pill-bg);
  border: 1px solid var(--na-border-strong);
}
.na-zone.is-right.svelte-7fpoih .na-zone-tag:where(.svelte-7fpoih) {
  align-self: flex-end;
}
.na-zone-body-col.svelte-7fpoih {
  position: relative;
  display: flex;
  align-items: center;
}
.na-zone-hairline.svelte-7fpoih {
  position: absolute;
  left: -20px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    var(--na-border-strong) 20%,
    var(--na-border-strong) 80%,
    transparent
  );
}
.na-zone.is-right.svelte-7fpoih .na-zone-hairline:where(.svelte-7fpoih) {
  left: auto;
  right: -20px;
}
.na-zone-desc.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(15px, 1.42vw, 17px);
  line-height: 1.72;
  color: #334155;
  margin: 0;
}
.na-zone--gold.svelte-7fpoih {
  --na-color: #d97706;
  --na-bg: rgba(254, 243, 199, 0.5);
  --na-border: rgba(217, 119, 6, 0.16);
  --na-border-strong: rgba(217, 119, 6, 0.32);
  --na-shadow: rgba(217, 119, 6, 0.3);
  --na-pill-bg: rgba(254, 243, 199, 0.7);
}
.na-zone--teal.svelte-7fpoih {
  --na-color: #0d9488;
  --na-bg: rgba(240, 253, 250, 0.5);
  --na-border: rgba(13, 148, 136, 0.16);
  --na-border-strong: rgba(13, 148, 136, 0.32);
  --na-shadow: rgba(13, 148, 136, 0.3);
  --na-pill-bg: rgba(240, 253, 250, 0.7);
}
.na-zone--rose.svelte-7fpoih {
  --na-color: #e91e8c;
  --na-bg: rgba(253, 242, 248, 0.5);
  --na-border: rgba(233, 30, 140, 0.16);
  --na-border-strong: rgba(233, 30, 140, 0.32);
  --na-shadow: rgba(233, 30, 140, 0.3);
  --na-pill-bg: rgba(253, 242, 248, 0.7);
}
.na-closing.svelte-7fpoih {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 56px auto 0;
  text-align: center;
}
.na-closing-inner.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 20px 36px;
  border-radius: 999px;
  background: linear-gradient(110deg, #fef3c773, #fffc, #f0fdfa73);
  border: 1px solid rgba(217, 119, 6, 0.2);
  box-shadow: 0 14px 36px -14px #d9770633;
}
.na-closing-dot.svelte-7fpoih {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d97706, #e91e8c);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px #d9770633;
}
.na-closing.svelte-7fpoih p:where(.svelte-7fpoih) {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(14.5px, 1.4vw, 17px);
  font-style: italic;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
  color: #1e293b;
}
@media (max-width: 900px) {
  .na-section.svelte-7fpoih {
    padding: 80px 0 88px;
  }
  .na-head.svelte-7fpoih {
    margin-bottom: 48px;
  }
  .na-zone.svelte-7fpoih,
  .na-zone.is-right.svelte-7fpoih {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 26px 24px;
    text-align: left;
  }
  .na-zone.is-right.svelte-7fpoih .na-zone-title-col:where(.svelte-7fpoih),
  .na-zone.is-right.svelte-7fpoih .na-zone-body-col:where(.svelte-7fpoih) {
    order: unset;
    text-align: left;
  }
  .na-zone.is-right.svelte-7fpoih .na-zone-tag:where(.svelte-7fpoih) {
    align-self: flex-start;
  }
  .na-zone-hairline.svelte-7fpoih {
    display: none;
  }
  .na-closing-inner.svelte-7fpoih {
    flex-direction: column;
    padding: 20px 28px;
    border-radius: 18px;
  }
}
.bn-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 100px 0 110px;
  background: radial-gradient(
      700px 500px at 30% 10%,
      rgba(16, 185, 129, 0.06) 0%,
      transparent 60%
    ),
    radial-gradient(
      700px 500px at 70% 90%,
      rgba(233, 30, 140, 0.06) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #f8fffa, #fff, #fff8fc);
}
.bn-bg-orb.svelte-7fpoih {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: 0;
}
.bn-bg-orb-1.svelte-7fpoih {
  top: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(16, 185, 129, 0.22) 0%,
    transparent 70%
  );
}
.bn-bg-orb-2.svelte-7fpoih {
  bottom: -80px;
  right: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.22) 0%,
    transparent 70%
  );
}
.bn-spark.svelte-7fpoih {
  position: absolute;
  font-size: 16px;
  opacity: 0.6;
  pointer-events: none;
  animation: svelte-7fpoih-ad-twinkle 5s ease-in-out infinite;
}
.bn-spark-1.svelte-7fpoih {
  top: 70px;
  left: 10%;
  color: #e91e8c;
}
.bn-spark-2.svelte-7fpoih {
  top: 110px;
  right: 12%;
  color: #10b981;
  animation-delay: -2s;
}
.bn-frame.svelte-7fpoih {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  padding: 4px;
  border-radius: 30px;
  background: linear-gradient(135deg, #10b98166, #d9770659, #e91e8c66);
  box-shadow: 0 30px 80px -28px #10b9814d;
  overflow: hidden;
}
.bn-conic.svelte-7fpoih {
  position: absolute;
  top: -50%;
  right: -50%;
  bottom: -50%;
  left: -50%;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    rgba(16, 185, 129, 0.5) 15%,
    transparent 30%,
    transparent 65%,
    rgba(233, 30, 140, 0.5) 80%,
    transparent 95%
  );
  animation: svelte-7fpoih-bn-spin 16s linear infinite;
  pointer-events: none;
}
@keyframes svelte-7fpoih-bn-spin {
  to {
    transform: rotate(360deg);
  }
}
.bn-watermark.svelte-7fpoih {
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  font-family: Cormorant Garamond, serif;
  font-size: clamp(320px, 40vw, 480px);
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(233, 30, 140, 0.1);
  pointer-events: none;
  letter-spacing: -0.05em;
  z-index: 0;
}
.bn-inner.svelte-7fpoih {
  position: relative;
  z-index: 1;
  padding: 60px 60px 54px;
  border-radius: 26px;
  background: linear-gradient(165deg, #fffffffa, #fffefcfa);
  text-align: center;
}
.bn-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #059669;
  margin-bottom: 22px;
  padding: 8px 18px;
  border-radius: 999px;
  background: #ecfdf5cc;
  border: 1px solid rgba(16, 185, 129, 0.3);
}
.bn-kicker-dot.svelte-7fpoih {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px #10b98140;
  animation: svelte-7fpoih-em-pulse 2s ease-in-out infinite;
}
.bn-title.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700 !important;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 22px;
  background: linear-gradient(115deg, #1e293b, #059669, #d97706 70%, #e91e8c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.bn-lead.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(15.5px, 1.5vw, 18px);
  line-height: 1.68;
  color: #475569;
  max-width: 640px;
  margin: 0 auto 32px;
  font-style: italic;
}
.bn-trust.svelte-7fpoih {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 26px;
}
.bn-trust-pill.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #1e293b;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(110deg, #ecfdf5cc, #fef3c7cc);
  border: 1px solid rgba(16, 185, 129, 0.25);
}
.bn-trust-icon.svelte-7fpoih {
  display: inline-flex;
  color: #059669;
}
.bn-addresses.svelte-7fpoih {
  margin: 0 0 32px;
  padding: 18px 22px;
  border-radius: 16px;
  background: linear-gradient(110deg, #fdf2f880, #fffc, #fef3c780);
  border: 1px dashed rgba(233, 30, 140, 0.22);
}
.bn-addresses-label.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: Inter, sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #be185d;
  margin-bottom: 10px;
}
.bn-addresses-icon.svelte-7fpoih {
  display: inline-flex;
  color: #e91e8c;
}
.bn-addresses-row.svelte-7fpoih {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  color: #334155;
  font-weight: 500;
}
.bn-address.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.bn-address-icon.svelte-7fpoih {
  display: inline-flex;
  color: #e91e8c;
}
.bn-address-sep.svelte-7fpoih {
  color: #94a3b8;
  font-weight: 700;
}
.bn-cta-row.svelte-7fpoih {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.bn-cta-primary.svelte-7fpoih {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 30px 18px 26px;
  border-radius: 16px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 16px 36px -10px #25d36680;
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s;
}
.bn-cta-primary.svelte-7fpoih:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px -10px #25d36699;
}
.bn-cta-primary-shine.svelte-7fpoih {
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.5) 50%,
    transparent 70%
  );
  pointer-events: none;
  transition: left 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.bn-cta-primary.svelte-7fpoih:hover
  .bn-cta-primary-shine:where(.svelte-7fpoih) {
  left: 130%;
}
.bn-cta-primary-icon.svelte-7fpoih {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  background: #ffffff2e;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.bn-cta-primary-text.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}
.bn-cta-primary-label.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.bn-cta-primary-note.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #ffffffd9;
  letter-spacing: 0.04em;
}
.bn-cta-primary-arrow.svelte-7fpoih {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff3;
  transition: transform 0.4s;
}
.bn-cta-primary.svelte-7fpoih:hover
  .bn-cta-primary-arrow:where(.svelte-7fpoih) {
  transform: translate(4px);
}
.bn-closing.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(13.5px, 1.25vw, 15px);
  font-style: italic;
  color: #64748b;
  margin: 0;
}
@media (max-width: 900px) {
  .bn-section.svelte-7fpoih {
    padding: 78px 0 86px;
  }
  .bn-frame.svelte-7fpoih {
    border-radius: 24px;
  }
  .bn-inner.svelte-7fpoih {
    padding: 44px 26px 40px;
    border-radius: 22px;
  }
  .bn-cta-primary.svelte-7fpoih {
    padding: 16px 22px 16px 20px;
    gap: 12px;
  }
  .bn-cta-primary-icon.svelte-7fpoih {
    width: 36px;
    height: 36px;
  }
  .bn-watermark.svelte-7fpoih {
    font-size: 240px;
    right: -20px;
  }
}
@media (max-width: 560px) {
  .bn-title.svelte-7fpoih {
    font-size: 1.75rem;
  }
  .bn-trust.svelte-7fpoih,
  .bn-addresses-row.svelte-7fpoih {
    gap: 6px;
  }
  .bn-spark.svelte-7fpoih {
    display: none;
  }
  .bn-cta-primary.svelte-7fpoih {
    width: 100%;
    padding: 14px 14px 14px 12px;
    gap: 10px;
  }
  .bn-cta-primary-icon.svelte-7fpoih {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }
  .bn-cta-primary-text.svelte-7fpoih {
    flex: 1;
    min-width: 0;
  }
  .bn-cta-primary-label.svelte-7fpoih {
    font-size: 13.5px;
  }
  .bn-cta-primary-note.svelte-7fpoih {
    font-size: 10.5px;
  }
  .bn-cta-primary-arrow.svelte-7fpoih {
    width: 26px;
    height: 26px;
  }
}
.zl-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 104px 0 110px;
  background: radial-gradient(
      800px 500px at 20% 10%,
      rgba(217, 119, 6, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      800px 500px at 80% 90%,
      rgba(233, 30, 140, 0.06) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #fffaf2, #fff, #fef7f2);
}
.zl-bg-orb.svelte-7fpoih {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}
.zl-bg-orb-1.svelte-7fpoih {
  top: -90px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(217, 119, 6, 0.22) 0%,
    transparent 70%
  );
}
.zl-bg-orb-2.svelte-7fpoih {
  bottom: -100px;
  right: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.18) 0%,
    transparent 70%
  );
}
.zl-compass.svelte-7fpoih {
  position: absolute;
  top: 48px;
  right: 6%;
  opacity: 0.5;
  pointer-events: none;
  animation: svelte-7fpoih-zl-spin 28s linear infinite;
}
@keyframes svelte-7fpoih-zl-spin {
  to {
    transform: rotate(360deg);
  }
}
.zl-head.svelte-7fpoih {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto 54px;
  text-align: center;
}
.zl-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #78350f;
  margin-bottom: 22px;
}
.zl-kicker-dot.svelte-7fpoih {
  font-size: 10px;
  color: #d97706;
}
.zl-title.svelte-7fpoih {
  font-family: Cormorant Garamond, Georgia, serif;
  font-size: clamp(1.9rem, 3.3vw, 2.7rem);
  font-weight: 700 !important;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  background: linear-gradient(115deg, #1e293b, #d97706, #e91e8c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.zl-lead.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(15px, 1.4vw, 17.5px);
  font-style: italic;
  line-height: 1.7;
  color: #475569;
  max-width: 680px;
  margin: 0 auto;
}
.zl-map.svelte-7fpoih {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto 56px;
  padding: 50px 30px 40px;
  border-radius: 22px;
  background: repeating-linear-gradient(
      45deg,
      transparent,
      transparent 28px,
      rgba(217, 119, 6, 0.03) 28px,
      rgba(217, 119, 6, 0.03) 29px
    ),
    linear-gradient(180deg, #fffbf0d9, #fdf2f880);
  border: 1px solid rgba(217, 119, 6, 0.18);
  box-shadow: 0 20px 60px -24px #d977062e;
  overflow: hidden;
}
.zl-map-line.svelte-7fpoih {
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  height: 80px;
  pointer-events: none;
}
.zl-map-anchors.svelte-7fpoih {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px 0 30px;
}
.zl-anchor.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.zl-anchor-dot.svelte-7fpoih {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d97706, #f59e0b);
  color: #fff;
  box-shadow: 0 6px 18px -4px #d9770673;
  z-index: 2;
}
.zl-anchor.is-hub.svelte-7fpoih .zl-anchor-dot:where(.svelte-7fpoih) {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #e91e8c, #d97706);
  box-shadow: 0 10px 26px -6px #e91e8c80;
}
.zl-anchor-ring.svelte-7fpoih {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px dashed rgba(217, 119, 6, 0.5);
  animation: svelte-7fpoih-zl-spin 12s linear infinite;
}
.zl-anchor.is-hub.svelte-7fpoih .zl-anchor-ring:where(.svelte-7fpoih) {
  width: 62px;
  height: 62px;
  border-color: #e91e8c73;
}
.zl-anchor-name.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 700 !important;
  color: #1e293b;
  letter-spacing: -0.01em;
}
.zl-anchor.is-hub.svelte-7fpoih .zl-anchor-name:where(.svelte-7fpoih) {
  background: linear-gradient(120deg, #1e293b, #e91e8c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.zl-anchor-tag.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #b45309;
  padding: 3px 10px;
  border-radius: 999px;
  background: #fef3c799;
  border: 1px solid rgba(217, 119, 6, 0.25);
}
.zl-anchor.is-hub.svelte-7fpoih .zl-anchor-tag:where(.svelte-7fpoih) {
  color: #be185d;
  background: #fdf2f8b3;
  border-color: #e91e8c40;
}
.zl-map-legs.svelte-7fpoih {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding-top: 24px;
  border-top: 1px dashed rgba(217, 119, 6, 0.25);
}
.zl-leg.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Inter, sans-serif;
  font-size: 12.5px;
  color: #52525b;
  padding: 10px 16px;
  border-radius: 999px;
  background: #ffffffbf;
  border: 1px solid rgba(217, 119, 6, 0.2);
}
.zl-leg-arrow.svelte-7fpoih {
  color: #d97706;
  display: inline-flex;
}
.zl-leg-text.svelte-7fpoih strong:where(.svelte-7fpoih) {
  color: #1e293b;
  font-weight: 600;
}
.zl-leg-time.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-style: italic;
  font-weight: 600;
  color: #d97706;
}
.zl-body.svelte-7fpoih {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto 52px;
  padding: 26px 32px 26px 60px;
  font-family: Cormorant Garamond, serif;
  font-size: clamp(15.5px, 1.42vw, 17.5px);
  line-height: 1.75;
  color: #334155;
  background: #ffffff8c;
  border-left: 3px solid transparent;
  border-image: linear-gradient(180deg, #d97706, #e91e8c) 1;
  border-radius: 0 14px 14px 0;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.zl-body-mark.svelte-7fpoih {
  position: absolute;
  top: 14px;
  left: 22px;
  font-family: Cormorant Garamond, serif;
  font-size: 32px;
  font-weight: 700;
  color: #d97706;
  opacity: 0.4;
}
.zl-cards.svelte-7fpoih {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
}
.zl-card.svelte-7fpoih {
  position: relative;
  padding: 30px 28px 28px;
  border-radius: 20px;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.94) 0%,
    var(--zl-bg) 100%
  );
  border: 1px solid var(--zl-border);
  box-shadow: 0 16px 40px -18px #0f172a1f;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s;
  animation: svelte-7fpoih-zl-rise 0.7s ease-out both;
  animation-delay: var(--zl-delay, 0s);
}
@keyframes svelte-7fpoih-zl-rise {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.zl-card.svelte-7fpoih:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px -18px var(--zl-shadow);
}
.zl-card-ring.svelte-7fpoih {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1.4px dashed var(--zl-border-strong);
  opacity: 0.45;
  pointer-events: none;
  transition: opacity 0.5s;
}
.zl-card.svelte-7fpoih:hover .zl-card-ring:where(.svelte-7fpoih) {
  opacity: 0.85;
  animation: svelte-7fpoih-zl-spin 14s linear infinite;
}
.zl-card-num.svelte-7fpoih {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: Cormorant Garamond, serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--zl-color);
  opacity: 0.28;
  transition: opacity 0.5s;
}
.zl-card.svelte-7fpoih:hover .zl-card-num:where(.svelte-7fpoih) {
  opacity: 0.55;
}
.zl-stat-block.svelte-7fpoih {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 16px;
}
.zl-stat.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(1.5rem, 2.1vw, 1.8rem);
  font-weight: 700 !important;
  line-height: 1.1;
  background: linear-gradient(120deg, var(--zl-color), var(--zl-color-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.zl-stat-label.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #94a3b8;
}
.zl-card-title.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  font-weight: 700 !important;
  line-height: 1.3;
  margin: 0 0 10px;
  color: #1e293b;
}
.zl-card-accent.svelte-7fpoih {
  display: block;
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--zl-color), var(--zl-color-2));
  margin-bottom: 14px;
  transition: width 0.5s;
}
.zl-card.svelte-7fpoih:hover .zl-card-accent:where(.svelte-7fpoih) {
  width: 56px;
}
.zl-card-body.svelte-7fpoih {
  font-size: 13.5px;
  line-height: 1.7;
  color: #475569;
  margin: 0;
}
.zl-card--gold.svelte-7fpoih {
  --zl-color: #d97706;
  --zl-color-2: #f59e0b;
  --zl-bg: rgba(254, 243, 199, 0.45);
  --zl-border: rgba(217, 119, 6, 0.16);
  --zl-border-strong: rgba(217, 119, 6, 0.34);
  --zl-shadow: rgba(217, 119, 6, 0.28);
}
.zl-card--rose.svelte-7fpoih {
  --zl-color: #e91e8c;
  --zl-color-2: #f43f5e;
  --zl-bg: rgba(253, 242, 248, 0.55);
  --zl-border: rgba(233, 30, 140, 0.16);
  --zl-border-strong: rgba(233, 30, 140, 0.32);
  --zl-shadow: rgba(233, 30, 140, 0.3);
}
.zl-card--teal.svelte-7fpoih {
  --zl-color: #0d9488;
  --zl-color-2: #14b8a6;
  --zl-bg: rgba(240, 253, 250, 0.55);
  --zl-border: rgba(13, 148, 136, 0.16);
  --zl-border-strong: rgba(13, 148, 136, 0.32);
  --zl-shadow: rgba(13, 148, 136, 0.28);
}
@media (max-width: 900px) {
  .zl-section.svelte-7fpoih {
    padding: 80px 0 88px;
  }
  .zl-compass.svelte-7fpoih {
    display: none;
  }
  .zl-map.svelte-7fpoih {
    padding: 40px 20px 30px;
  }
  .zl-map-line.svelte-7fpoih {
    top: 56px;
  }
  .zl-map-anchors.svelte-7fpoih {
    padding: 10px 0 22px;
  }
  .zl-anchor-name.svelte-7fpoih {
    font-size: 15px;
  }
  .zl-cards.svelte-7fpoih {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .zl-body.svelte-7fpoih {
    padding: 22px 22px 22px 48px;
  }
  .zl-body-mark.svelte-7fpoih {
    left: 18px;
  }
}
@media (max-width: 560px) {
  .zl-map-line.svelte-7fpoih {
    display: none;
  }
  .zl-map-anchors.svelte-7fpoih {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .zl-anchor.svelte-7fpoih {
    position: relative;
    padding-bottom: 26px;
  }
  .zl-anchor.svelte-7fpoih:last-child {
    padding-bottom: 0;
  }
  .zl-anchor.svelte-7fpoih:not(:last-child):after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%);
    width: 2px;
    height: 26px;
    background: repeating-linear-gradient(
      180deg,
      rgba(217, 119, 6, 0.4) 0 4px,
      transparent 4px 8px
    );
    z-index: 0;
  }
  .zl-leg.svelte-7fpoih {
    font-size: 11.5px;
    padding: 8px 12px;
    flex-wrap: wrap;
  }
}
.em-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 104px 0 112px;
  background: radial-gradient(
      700px 500px at 90% 10%,
      rgba(233, 30, 140, 0.06) 0%,
      transparent 60%
    ),
    radial-gradient(
      700px 500px at 10% 90%,
      rgba(5, 150, 105, 0.06) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #fff, #fffafc, #f8fffa);
}
.em-bg-orb.svelte-7fpoih {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: 0;
}
.em-bg-orb-1.svelte-7fpoih {
  top: -80px;
  right: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.2) 0%,
    transparent 70%
  );
}
.em-bg-orb-2.svelte-7fpoih {
  bottom: -100px;
  left: -90px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(5, 150, 105, 0.18) 0%,
    transparent 70%
  );
}
.em-head.svelte-7fpoih {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto 62px;
  text-align: center;
}
.em-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Inter, sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #be185d;
  margin-bottom: 22px;
}
.em-kicker-line.svelte-7fpoih {
  width: 32px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(233, 30, 140, 0.4),
    transparent
  );
}
.em-kicker-gem.svelte-7fpoih {
  font-size: 11px;
  color: #e91e8c;
}
.em-title.svelte-7fpoih {
  font-family: Cormorant Garamond, Georgia, serif;
  font-size: clamp(1.9rem, 3.3vw, 2.65rem);
  font-weight: 700 !important;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  background: linear-gradient(115deg, #1e293b, #e91e8c, #059669);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.em-lead.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.7;
  color: #475569;
  max-width: 660px;
  margin: 0 auto;
  font-style: italic;
}
.em-list.svelte-7fpoih {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.em-row.svelte-7fpoih {
  position: relative;
  display: grid;
  grid-template-columns: 88px 1fr 180px;
  align-items: center;
  gap: 26px;
  padding: 28px 30px;
  border-radius: 20px;
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0.96) 0%,
    var(--em-bg) 100%
  );
  border: 1px solid var(--em-border);
  box-shadow: 0 14px 40px -18px #0f172a1a;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s,
    border-color 0.5s;
  animation: svelte-7fpoih-em-rise 0.7s ease-out both;
  animation-delay: var(--em-delay, 0s);
}
@keyframes svelte-7fpoih-em-rise {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.em-row.svelte-7fpoih:hover {
  transform: translate(4px) translateY(-3px);
  box-shadow: 0 22px 52px -18px var(--em-shadow);
  border-color: var(--em-border-strong);
}
.em-monogram.svelte-7fpoih {
  position: absolute;
  top: -24px;
  left: -14px;
  font-family: Cormorant Garamond, serif;
  font-size: 160px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1.4px var(--em-color);
  opacity: 0.18;
  pointer-events: none;
  transition: opacity 0.5s, transform 0.8s;
}
.em-row.svelte-7fpoih:hover .em-monogram:where(.svelte-7fpoih) {
  opacity: 0.36;
  transform: scale(1.05) rotate(-4deg);
}
.em-left.svelte-7fpoih {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.em-icon.svelte-7fpoih {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--em-color), var(--em-color-2));
  color: #fff;
  box-shadow: 0 8px 22px -6px var(--em-shadow);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.em-row.svelte-7fpoih:hover .em-icon:where(.svelte-7fpoih) {
  transform: rotate(-8deg) scale(1.08);
}
.em-mid.svelte-7fpoih {
  position: relative;
  z-index: 2;
  min-width: 0;
}
.em-row-top.svelte-7fpoih {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.em-name.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(1.15rem, 1.55vw, 1.4rem);
  font-weight: 700 !important;
  line-height: 1.2;
  margin: 0;
  background: linear-gradient(120deg, #1e293b 0%, var(--em-color) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.em-connection.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--em-color);
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--em-pill-bg);
  border: 1px solid var(--em-border-strong);
}
.em-connection-pulse.svelte-7fpoih {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--em-color);
  box-shadow: 0 0 0 3px var(--em-pulse);
  animation: svelte-7fpoih-em-pulse 2.4s ease-in-out infinite;
}
@keyframes svelte-7fpoih-em-pulse {
  0%,
  to {
    box-shadow: 0 0 0 3px var(--em-pulse);
  }
  50% {
    box-shadow: 0 0 0 6px transparent;
  }
}
.em-desc.svelte-7fpoih {
  font-size: 14px;
  line-height: 1.68;
  color: #475569;
  margin: 0;
}
.em-right.svelte-7fpoih {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 18px;
  border-radius: 14px;
  background: var(--em-right-bg);
  border: 1px dashed var(--em-border-strong);
}
.em-best-label.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--em-color);
}
.em-best-text.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: 14.5px;
  font-weight: 700 !important;
  line-height: 1.3;
  color: #1e293b;
}
.em-best-arrow.svelte-7fpoih {
  align-self: flex-end;
  margin-top: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--em-color);
  background: var(--em-pill-bg);
  border: 1px solid var(--em-border-strong);
  transition: transform 0.4s;
}
.em-row.svelte-7fpoih:hover .em-best-arrow:where(.svelte-7fpoih) {
  background: linear-gradient(135deg, var(--em-color), var(--em-color-2));
  color: #fff;
  border-color: transparent;
  transform: translate(3px);
}
.em-row--rose.svelte-7fpoih {
  --em-color: #e91e8c;
  --em-color-2: #f43f5e;
  --em-bg: rgba(253, 242, 248, 0.5);
  --em-border: rgba(233, 30, 140, 0.15);
  --em-border-strong: rgba(233, 30, 140, 0.3);
  --em-shadow: rgba(233, 30, 140, 0.28);
  --em-pill-bg: rgba(253, 242, 248, 0.7);
  --em-right-bg: rgba(253, 242, 248, 0.5);
  --em-pulse: rgba(233, 30, 140, 0.3);
}
.em-row--coral.svelte-7fpoih {
  --em-color: #ea580c;
  --em-color-2: #fb923c;
  --em-bg: rgba(255, 237, 213, 0.5);
  --em-border: rgba(234, 88, 12, 0.15);
  --em-border-strong: rgba(234, 88, 12, 0.3);
  --em-shadow: rgba(234, 88, 12, 0.26);
  --em-pill-bg: rgba(255, 237, 213, 0.7);
  --em-right-bg: rgba(255, 247, 237, 0.55);
  --em-pulse: rgba(234, 88, 12, 0.3);
}
.em-row--gold.svelte-7fpoih {
  --em-color: #d97706;
  --em-color-2: #f59e0b;
  --em-bg: rgba(254, 243, 199, 0.5);
  --em-border: rgba(217, 119, 6, 0.16);
  --em-border-strong: rgba(217, 119, 6, 0.3);
  --em-shadow: rgba(217, 119, 6, 0.28);
  --em-pill-bg: rgba(254, 243, 199, 0.7);
  --em-right-bg: rgba(255, 251, 235, 0.55);
  --em-pulse: rgba(245, 158, 11, 0.3);
}
.em-row--teal.svelte-7fpoih {
  --em-color: #0d9488;
  --em-color-2: #14b8a6;
  --em-bg: rgba(240, 253, 250, 0.5);
  --em-border: rgba(13, 148, 136, 0.16);
  --em-border-strong: rgba(13, 148, 136, 0.3);
  --em-shadow: rgba(13, 148, 136, 0.26);
  --em-pill-bg: rgba(240, 253, 250, 0.7);
  --em-right-bg: rgba(248, 255, 253, 0.55);
  --em-pulse: rgba(20, 184, 166, 0.3);
}
.em-row--emerald.svelte-7fpoih {
  --em-color: #059669;
  --em-color-2: #10b981;
  --em-bg: rgba(236, 253, 245, 0.5);
  --em-border: rgba(5, 150, 105, 0.16);
  --em-border-strong: rgba(5, 150, 105, 0.3);
  --em-shadow: rgba(5, 150, 105, 0.26);
  --em-pill-bg: rgba(236, 253, 245, 0.7);
  --em-right-bg: rgba(245, 255, 250, 0.55);
  --em-pulse: rgba(16, 185, 129, 0.3);
}
@media (max-width: 900px) {
  .em-section.svelte-7fpoih {
    padding: 80px 0 88px;
  }
  .em-head.svelte-7fpoih {
    margin-bottom: 44px;
  }
  .em-row.svelte-7fpoih {
    grid-template-columns: 64px 1fr;
    gap: 18px;
    padding: 22px 22px 22px 24px;
  }
  .em-right.svelte-7fpoih {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
  }
  .em-best-label.svelte-7fpoih {
    flex-shrink: 0;
  }
  .em-best-text.svelte-7fpoih {
    flex: 1;
    font-size: 13px;
  }
  .em-best-arrow.svelte-7fpoih {
    margin-top: 0;
  }
  .em-icon.svelte-7fpoih {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }
  .em-monogram.svelte-7fpoih {
    font-size: 120px;
    top: -18px;
    left: -10px;
  }
}
@media (max-width: 560px) {
  .em-row.svelte-7fpoih {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .em-left.svelte-7fpoih {
    justify-content: flex-start;
  }
  .em-row-top.svelte-7fpoih {
    flex-direction: column;
    align-items: flex-start;
  }
  .em-row.svelte-7fpoih {
    text-align: left;
  }
}
.lm-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 104px 0 112px;
  background: radial-gradient(
      800px 500px at 10% 10%,
      rgba(251, 146, 60, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      800px 500px at 90% 90%,
      rgba(20, 184, 166, 0.08) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #fff7f0, #fff 45%, #f0fdfa);
}
.lm-bg-orb.svelte-7fpoih {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}
.lm-bg-orb-1.svelte-7fpoih {
  top: -80px;
  left: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(251, 146, 60, 0.25) 0%,
    transparent 70%
  );
}
.lm-bg-orb-2.svelte-7fpoih {
  bottom: -100px;
  right: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(20, 184, 166, 0.22) 0%,
    transparent 70%
  );
}
.lm-wave.svelte-7fpoih {
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  height: 80px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.lm-head.svelte-7fpoih {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto 60px;
  text-align: center;
}
.lm-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #0f766e;
  margin-bottom: 22px;
  padding: 8px 18px;
  border-radius: 999px;
  background: #ffffffb3;
  border: 1px solid rgba(20, 184, 166, 0.25);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.lm-kicker-spark.svelte-7fpoih {
  font-size: 12px;
  color: #fb923c;
}
.lm-title.svelte-7fpoih {
  font-family: Cormorant Garamond, Georgia, serif;
  font-size: clamp(1.9rem, 3.2vw, 2.55rem);
  font-weight: 700 !important;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  background: linear-gradient(115deg, #1e293b, #fb923c 45%, #0d9488);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.lm-lead.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(15.5px, 1.45vw, 18px);
  line-height: 1.72;
  color: #475569;
  max-width: 680px;
  margin: 0 auto 24px;
  text-align: left;
}
.lm-pull.svelte-7fpoih {
  margin: 28px auto 0;
  max-width: 620px;
  padding: 24px 30px;
  position: relative;
  border-left: 2px solid transparent;
  border-image: linear-gradient(180deg, #fb923c, #0d9488) 1;
  background: linear-gradient(105deg, #fff7ed99, #f0fdfa99);
  border-radius: 0 14px 14px 0;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.lm-pull-mark.svelte-7fpoih {
  position: absolute;
  top: -10px;
  left: 12px;
  font-family: Cormorant Garamond, serif;
  font-size: 72px;
  line-height: 1;
  color: #fb923c47;
  pointer-events: none;
}
.lm-pull.svelte-7fpoih blockquote:where(.svelte-7fpoih) {
  margin: 0;
  font-family: Cormorant Garamond, serif;
  font-size: clamp(17px, 1.55vw, 20px);
  font-style: italic;
  line-height: 1.5;
  color: #1e293b;
  position: relative;
  z-index: 1;
}
.lm-philosophy.svelte-7fpoih {
  margin: 24px auto 0;
  max-width: 680px;
  font-family: Cormorant Garamond, serif;
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.75;
  color: #52525b;
  text-align: left;
}
.lm-grid.svelte-7fpoih {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.lm-card.svelte-7fpoih {
  position: relative;
  padding: 34px 32px 32px;
  border-radius: 22px;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.94) 0%,
    var(--lm-bg) 100%
  );
  border: 1px solid var(--lm-border);
  box-shadow: 0 18px 48px -20px #0f172a1f;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s,
    border-color 0.5s;
  animation: svelte-7fpoih-lm-rise 0.7s ease-out both;
  animation-delay: var(--lm-delay, 0s);
}
@keyframes svelte-7fpoih-lm-rise {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.lm-card.svelte-7fpoih:nth-child(2) {
  transform: translateY(20px);
}
.lm-card.svelte-7fpoih:nth-child(3) {
  transform: translateY(-10px);
}
@media (max-width: 900px) {
  .lm-card.svelte-7fpoih:nth-child(2),
  .lm-card.svelte-7fpoih:nth-child(3) {
    transform: translateY(0);
  }
}
.lm-card.svelte-7fpoih:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 28px 60px -20px var(--lm-shadow);
  border-color: var(--lm-border-strong);
}
.lm-card-glow.svelte-7fpoih {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--lm-glow);
  filter: blur(60px);
  opacity: 0.35;
  pointer-events: none;
  transition: opacity 0.6s, transform 0.6s;
}
.lm-card.svelte-7fpoih:hover .lm-card-glow:where(.svelte-7fpoih) {
  opacity: 0.65;
  transform: translate(-10px, 14px);
}
.lm-card-shine.svelte-7fpoih {
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.5) 50%,
    transparent 70%
  );
  pointer-events: none;
  transition: left 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.lm-card.svelte-7fpoih:hover .lm-card-shine:where(.svelte-7fpoih) {
  left: 130%;
}
.lm-card-top.svelte-7fpoih {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.lm-icon.svelte-7fpoih {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--lm-color), var(--lm-color-2));
  color: #fff;
  box-shadow: 0 10px 24px -6px var(--lm-shadow);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.lm-card.svelte-7fpoih:hover .lm-icon:where(.svelte-7fpoih) {
  transform: rotate(-10deg) scale(1.1);
}
.lm-num.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--lm-color);
  opacity: 0.34;
}
.lm-name.svelte-7fpoih {
  position: relative;
  z-index: 2;
  font-family: Cormorant Garamond, serif;
  font-size: clamp(1.45rem, 2vw, 1.75rem);
  font-weight: 700 !important;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 4px;
  background: linear-gradient(120deg, #1e293b 0%, var(--lm-color) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.lm-area.svelte-7fpoih {
  position: relative;
  z-index: 2;
  display: inline-block;
  font-family: Inter, sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--lm-color);
  opacity: 0.85;
  margin-bottom: 14px;
}
.lm-accent.svelte-7fpoih {
  position: relative;
  z-index: 2;
  display: block;
  width: 32px;
  height: 2.5px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--lm-color), var(--lm-color-2));
  margin-bottom: 16px;
  transition: width 0.5s;
}
.lm-card.svelte-7fpoih:hover .lm-accent:where(.svelte-7fpoih) {
  width: 64px;
}
.lm-desc.svelte-7fpoih {
  position: relative;
  z-index: 2;
  font-size: 14px;
  line-height: 1.72;
  color: #475569;
  margin: 0 0 18px;
}
.lm-time.svelte-7fpoih {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: Inter, sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--lm-color);
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--lm-pill-bg);
  border: 1px solid var(--lm-border-strong);
}
.lm-time-dot.svelte-7fpoih {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lm-color);
  box-shadow: 0 0 0 3px var(--lm-pulse);
  animation: svelte-7fpoih-em-pulse 2.4s ease-in-out infinite;
}
.lm-card--coral.svelte-7fpoih {
  --lm-color: #ea580c;
  --lm-color-2: #fb923c;
  --lm-bg: rgba(255, 247, 237, 0.8);
  --lm-border: rgba(234, 88, 12, 0.16);
  --lm-border-strong: rgba(234, 88, 12, 0.3);
  --lm-shadow: rgba(234, 88, 12, 0.3);
  --lm-pill-bg: rgba(255, 237, 213, 0.7);
  --lm-pulse: rgba(234, 88, 12, 0.3);
  --lm-glow: radial-gradient(
    circle,
    rgba(251, 146, 60, 0.5) 0%,
    transparent 70%
  );
}
.lm-card--gold.svelte-7fpoih {
  --lm-color: #d97706;
  --lm-color-2: #f59e0b;
  --lm-bg: rgba(255, 251, 235, 0.8);
  --lm-border: rgba(217, 119, 6, 0.16);
  --lm-border-strong: rgba(217, 119, 6, 0.3);
  --lm-shadow: rgba(217, 119, 6, 0.28);
  --lm-pill-bg: rgba(254, 243, 199, 0.7);
  --lm-pulse: rgba(245, 158, 11, 0.3);
  --lm-glow: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.5) 0%,
    transparent 70%
  );
}
.lm-card--rose.svelte-7fpoih {
  --lm-color: #e91e8c;
  --lm-color-2: #f43f5e;
  --lm-bg: rgba(253, 242, 248, 0.8);
  --lm-border: rgba(233, 30, 140, 0.16);
  --lm-border-strong: rgba(233, 30, 140, 0.3);
  --lm-shadow: rgba(233, 30, 140, 0.28);
  --lm-pill-bg: rgba(253, 242, 248, 0.7);
  --lm-pulse: rgba(233, 30, 140, 0.3);
  --lm-glow: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.5) 0%,
    transparent 70%
  );
}
.lm-card--teal.svelte-7fpoih {
  --lm-color: #0d9488;
  --lm-color-2: #14b8a6;
  --lm-bg: rgba(240, 253, 250, 0.8);
  --lm-border: rgba(13, 148, 136, 0.16);
  --lm-border-strong: rgba(13, 148, 136, 0.3);
  --lm-shadow: rgba(13, 148, 136, 0.26);
  --lm-pill-bg: rgba(240, 253, 250, 0.7);
  --lm-pulse: rgba(20, 184, 166, 0.3);
  --lm-glow: radial-gradient(
    circle,
    rgba(20, 184, 166, 0.5) 0%,
    transparent 70%
  );
}
.lm-closing.svelte-7fpoih {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  max-width: 860px;
  margin: 60px auto 0;
  text-align: center;
}
.lm-closing-line.svelte-7fpoih {
  flex: 1;
  height: 1px;
  max-width: 140px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(251, 146, 60, 0.4),
    transparent
  );
}
.lm-closing.svelte-7fpoih p:where(.svelte-7fpoih) {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(15.5px, 1.45vw, 18px);
  font-style: italic;
  font-weight: 600;
  line-height: 1.55;
  margin: 0;
  max-width: 500px;
  background: linear-gradient(110deg, #1e293b, #fb923c 45%, #0d9488);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
@media (max-width: 900px) {
  .lm-section.svelte-7fpoih {
    padding: 80px 0 88px;
  }
  .lm-head.svelte-7fpoih {
    margin-bottom: 48px;
  }
  .lm-grid.svelte-7fpoih {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .lm-card.svelte-7fpoih {
    padding: 26px 24px 24px;
  }
  .lm-closing.svelte-7fpoih {
    flex-direction: column;
    gap: 14px;
  }
  .lm-closing-line.svelte-7fpoih {
    display: none;
  }
}
@media (max-width: 560px) {
  .lm-lead.svelte-7fpoih,
  .lm-philosophy.svelte-7fpoih {
    text-align: left;
  }
  .lm-pull.svelte-7fpoih {
    padding: 20px 22px;
  }
}
.ad-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 104px 0 112px;
  background: linear-gradient(
    180deg,
    #fff7f3,
    #fff0ec 40%,
    #ffe8f0 75%,
    #fff2f9
  );
}
.ad-sky.svelte-7fpoih {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
      900px 380px at 20% 8%,
      rgba(251, 146, 60, 0.16) 0%,
      transparent 55%
    ),
    radial-gradient(
      900px 380px at 85% 15%,
      rgba(244, 114, 182, 0.14) 0%,
      transparent 55%
    ),
    radial-gradient(
      600px 500px at 50% 100%,
      rgba(233, 30, 140, 0.1) 0%,
      transparent 65%
    );
}
.ad-orb.svelte-7fpoih {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.ad-orb-1.svelte-7fpoih {
  top: -60px;
  left: 12%;
  width: 240px;
  height: 240px;
  background: radial-gradient(
    circle,
    rgba(251, 146, 60, 0.35) 0%,
    transparent 70%
  );
}
.ad-orb-2.svelte-7fpoih {
  bottom: -50px;
  right: 10%;
  width: 280px;
  height: 280px;
  background: radial-gradient(
    circle,
    rgba(244, 114, 182, 0.3) 0%,
    transparent 70%
  );
}
.ad-star.svelte-7fpoih {
  position: absolute;
  color: #f59e0b;
  opacity: 0.55;
  pointer-events: none;
  animation: svelte-7fpoih-ad-twinkle 4s ease-in-out infinite;
}
.ad-star-1.svelte-7fpoih {
  top: 90px;
  left: 8%;
  font-size: 14px;
  animation-delay: 0s;
}
.ad-star-2.svelte-7fpoih {
  top: 140px;
  right: 11%;
  font-size: 12px;
  color: #e91e8c;
  animation-delay: -1.3s;
}
.ad-star-3.svelte-7fpoih {
  top: 60px;
  right: 40%;
  font-size: 16px;
  color: #fb923c;
  animation-delay: -2.7s;
}
@keyframes svelte-7fpoih-ad-twinkle {
  0%,
  to {
    opacity: 0.55;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.25);
  }
}
.ad-wave.svelte-7fpoih {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.7;
}
.ad-head.svelte-7fpoih {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto 68px;
  text-align: center;
}
.ad-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #b45309;
  margin-bottom: 22px;
  padding: 8px 18px;
  border-radius: 999px;
  background: #ffffffb3;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(251, 146, 60, 0.25);
}
.ad-moon.svelte-7fpoih {
  display: inline-flex;
  color: #d97706;
}
.ad-kicker-line.svelte-7fpoih {
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, rgba(251, 146, 60, 0.5), transparent);
}
.ad-title.svelte-7fpoih {
  font-family: Cormorant Garamond, Georgia, serif;
  font-size: clamp(1.9rem, 3.3vw, 2.6rem);
  font-weight: 700 !important;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  background: linear-gradient(110deg, #1e293b, #fb923c, #e91e8c 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.ad-lead.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.7;
  color: #52525b;
  margin: 0 0 28px;
  text-align: left;
}
.ad-dropcap.svelte-7fpoih {
  float: left;
  font-family: Cormorant Garamond, serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 0.9;
  padding: 4px 12px 0 0;
  background: linear-gradient(135deg, #fb923c, #e91e8c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.ad-pull.svelte-7fpoih {
  position: relative;
  margin: 36px auto 0;
  max-width: 640px;
  padding: 28px 36px 26px;
  border-left: 2px solid transparent;
  border-image: linear-gradient(180deg, #fb923c, #e91e8c) 1;
  background: linear-gradient(105deg, #fff7f0b3, #fdf2f8b3);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-radius: 0 14px 14px 0;
}
.ad-pull-mark.svelte-7fpoih {
  position: absolute;
  top: -6px;
  left: 14px;
  font-family: Cormorant Garamond, serif;
  font-size: 84px;
  line-height: 1;
  color: #fb923c40;
  pointer-events: none;
}
.ad-pull.svelte-7fpoih blockquote:where(.svelte-7fpoih) {
  margin: 0;
  font-family: Cormorant Garamond, serif;
  font-size: clamp(18px, 1.7vw, 22px);
  font-style: italic;
  line-height: 1.45;
  color: #1e293b;
  position: relative;
  z-index: 1;
}
.ad-scenes.svelte-7fpoih {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.ad-scene.svelte-7fpoih {
  position: relative;
  padding: 36px 34px 32px;
  border-radius: 22px;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.92) 0%,
    var(--ad-bg-2) 100%
  );
  border: 1px solid var(--ad-border);
  box-shadow: 0 18px 48px -20px #fb923c38, 0 3px 14px -4px #0f172a0f;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s;
}
.ad-scene.is-a.svelte-7fpoih {
  transform: translateY(0);
}
.ad-scene.is-b.svelte-7fpoih {
  transform: translateY(28px);
}
@media (max-width: 900px) {
  .ad-scene.is-a.svelte-7fpoih,
  .ad-scene.is-b.svelte-7fpoih {
    transform: translateY(0);
  }
}
.ad-scene.svelte-7fpoih:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 28px 64px -20px var(--ad-shadow), 0 6px 18px -5px #0f172a1a;
}
.ad-scene-time-watermark.svelte-7fpoih {
  position: absolute;
  top: -18px;
  right: -10px;
  font-family: Cormorant Garamond, serif;
  font-size: 120px;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--ad-color);
  opacity: 0.14;
  pointer-events: none;
  letter-spacing: -0.05em;
  transition: opacity 0.5s, transform 0.8s;
}
.ad-scene.svelte-7fpoih:hover .ad-scene-time-watermark:where(.svelte-7fpoih) {
  opacity: 0.28;
  transform: scale(1.04);
}
.ad-scene-top.svelte-7fpoih {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.ad-scene-time.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: Inter, sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--ad-color);
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--ad-pill-bg);
  border: 1px solid var(--ad-border-strong);
}
.ad-scene-time-dot.svelte-7fpoih {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ad-color);
  box-shadow: 0 0 0 3px var(--ad-pulse);
  animation: svelte-7fpoih-ad-scene-pulse 2.4s ease-in-out infinite;
}
@keyframes svelte-7fpoih-ad-scene-pulse {
  0%,
  to {
    box-shadow: 0 0 0 3px var(--ad-pulse);
  }
  50% {
    box-shadow: 0 0 0 6px transparent;
  }
}
.ad-scene-num.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #94a3b8;
}
.ad-scene-place.svelte-7fpoih {
  position: relative;
  z-index: 2;
  font-family: Cormorant Garamond, serif;
  font-size: clamp(1.9rem, 2.6vw, 2.3rem);
  font-weight: 700 !important;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 6px;
  background: linear-gradient(120deg, #1e293b 0%, var(--ad-color) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.ad-scene-sub.svelte-7fpoih {
  position: relative;
  z-index: 2;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ad-color);
  margin: 0 0 16px;
  text-transform: uppercase;
  opacity: 0.85;
}
.ad-scene-divider.svelte-7fpoih {
  position: relative;
  z-index: 2;
  width: 80px;
  height: 6px;
  color: var(--ad-color);
  margin-bottom: 18px;
  overflow: visible;
}
.ad-scene-desc.svelte-7fpoih {
  position: relative;
  z-index: 2;
  font-size: 14.5px;
  line-height: 1.75;
  color: #475569;
  margin: 0 0 20px;
}
.ad-scene-becomes.svelte-7fpoih {
  position: relative;
  z-index: 2;
  padding: 14px 18px;
  border-radius: 12px;
  background: linear-gradient(
    105deg,
    var(--ad-bg-2) 0%,
    rgba(255, 255, 255, 0.6) 100%
  );
  border-left: 3px solid var(--ad-color);
}
.ad-scene-becomes-label.svelte-7fpoih {
  display: inline-block;
  font-family: Inter, sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ad-color);
  margin-bottom: 4px;
}
.ad-scene-becomes-text.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(15px, 1.3vw, 16.5px);
  font-style: italic;
  font-weight: 600;
  line-height: 1.45;
  color: #1e293b;
  margin: 0;
}
.ad-scene--coral.svelte-7fpoih {
  --ad-color: #ea580c;
  --ad-border: rgba(251, 146, 60, 0.2);
  --ad-border-strong: rgba(251, 146, 60, 0.35);
  --ad-pill-bg: rgba(255, 237, 213, 0.6);
  --ad-bg-2: rgba(255, 247, 237, 0.8);
  --ad-shadow: rgba(251, 146, 60, 0.3);
  --ad-pulse: rgba(251, 146, 60, 0.3);
}
.ad-scene--rose.svelte-7fpoih {
  --ad-color: #e91e8c;
  --ad-border: rgba(233, 30, 140, 0.18);
  --ad-border-strong: rgba(233, 30, 140, 0.32);
  --ad-pill-bg: rgba(253, 242, 248, 0.65);
  --ad-bg-2: rgba(253, 242, 248, 0.8);
  --ad-shadow: rgba(233, 30, 140, 0.3);
  --ad-pulse: rgba(233, 30, 140, 0.3);
}
.ad-closing.svelte-7fpoih {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 64px auto 0;
  text-align: center;
  padding: 0 20px;
}
.ad-closing-star.svelte-7fpoih {
  position: absolute;
  font-size: 16px;
  color: #fb923c;
  opacity: 0.65;
  animation: svelte-7fpoih-ad-twinkle 3.5s ease-in-out infinite;
}
.ad-closing-star-1.svelte-7fpoih {
  top: -10px;
  left: 12%;
  animation-delay: -0.5s;
}
.ad-closing-star-2.svelte-7fpoih {
  top: 10px;
  right: 14%;
  color: #e91e8c;
  animation-delay: -2s;
}
.ad-closing-text.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(16px, 1.55vw, 19px);
  font-style: italic;
  line-height: 1.6;
  font-weight: 600;
  margin: 0;
  background: linear-gradient(110deg, #1e293b, #ea580c 45%, #e91e8c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
@media (max-width: 900px) {
  .ad-section.svelte-7fpoih {
    padding: 80px 0 88px;
  }
  .ad-head.svelte-7fpoih {
    margin-bottom: 48px;
  }
  .ad-scenes.svelte-7fpoih {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .ad-scene.svelte-7fpoih {
    padding: 28px 24px 24px;
  }
  .ad-scene-time-watermark.svelte-7fpoih {
    font-size: 90px;
  }
  .ad-pull.svelte-7fpoih {
    padding: 22px 24px 20px;
  }
}
@media (max-width: 560px) {
  .ad-dropcap.svelte-7fpoih {
    font-size: 48px;
  }
  .ad-scene-top.svelte-7fpoih {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.ns-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 104px 0 112px;
  background: radial-gradient(
      700px 500px at 12% 10%,
      rgba(233, 30, 140, 0.06) 0%,
      transparent 60%
    ),
    radial-gradient(
      700px 500px at 88% 90%,
      rgba(5, 150, 105, 0.06) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #fffafc, #fff, #f8fffc);
}
.ns-bg-orb.svelte-7fpoih {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}
.ns-bg-orb-1.svelte-7fpoih {
  top: -100px;
  left: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.2) 0%,
    transparent 70%
  );
}
.ns-bg-orb-2.svelte-7fpoih {
  bottom: -120px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(5, 150, 105, 0.18) 0%,
    transparent 70%
  );
}
.ns-head.svelte-7fpoih {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto 60px;
  text-align: center;
}
.ns-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #be185d;
  margin-bottom: 24px;
}
.ns-kicker-glyph.svelte-7fpoih {
  font-size: 11px;
  color: #e91e8c;
}
.ns-title.svelte-7fpoih {
  font-family: Cormorant Garamond, Georgia, serif;
  font-size: clamp(1.9rem, 3.3vw, 2.6rem);
  font-weight: 700 !important;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  background: linear-gradient(115deg, #1e293b, #e91e8c 45%, #059669);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.ns-lead.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(15px, 1.4vw, 17px);
  font-style: italic;
  line-height: 1.7;
  color: #475569;
  max-width: 620px;
  margin: 0 auto;
}
.ns-list.svelte-7fpoih {
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ns-row.svelte-7fpoih {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 26px;
  align-items: stretch;
  padding: 30px 34px;
  border-radius: 22px;
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0.94) 0%,
    var(--ns-bg-2) 100%
  );
  border: 1px solid var(--ns-border);
  box-shadow: 0 14px 40px -18px #0f172a1a, 0 3px 12px -5px #0f172a0d;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s,
    border-color 0.5s;
  animation: svelte-7fpoih-ns-rise 0.7s ease-out both;
  animation-delay: var(--ns-delay, 0s);
}
@keyframes svelte-7fpoih-ns-rise {
  0% {
    opacity: 0;
    transform: translate(-20px);
  }
  to {
    opacity: 1;
    transform: translate(0);
  }
}
.ns-row.is-right.svelte-7fpoih {
  background: linear-gradient(
    260deg,
    rgba(255, 255, 255, 0.94) 0%,
    var(--ns-bg-2) 100%
  );
  grid-template-columns: 1fr 120px;
}
.ns-row.is-right.svelte-7fpoih .ns-chapter:where(.svelte-7fpoih) {
  order: 2;
  text-align: right;
}
.ns-row.is-right.svelte-7fpoih .ns-body:where(.svelte-7fpoih) {
  order: 1;
  text-align: right;
}
.ns-row.is-right.svelte-7fpoih .ns-body-top:where(.svelte-7fpoih) {
  justify-content: flex-end;
  flex-direction: row-reverse;
}
.ns-row.is-right.svelte-7fpoih .ns-rail:where(.svelte-7fpoih) {
  left: auto;
  right: 0;
}
.ns-row.is-right.svelte-7fpoih .ns-action:where(.svelte-7fpoih) {
  flex-direction: row-reverse;
}
.ns-row.svelte-7fpoih:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px -18px var(--ns-shadow), 0 5px 16px -6px #0f172a14;
  border-color: var(--ns-border-strong);
}
.ns-rail.svelte-7fpoih {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--ns-color), var(--ns-color-2));
  opacity: 0.85;
}
.ns-chapter.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(72px, 7vw, 96px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ns-color);
  align-self: center;
  transition: color 0.5s, transform 0.5s;
}
.ns-row.svelte-7fpoih:hover .ns-chapter:where(.svelte-7fpoih) {
  color: var(--ns-color);
  -webkit-text-stroke-color: transparent;
  transform: scale(1.05);
}
.ns-body.svelte-7fpoih {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.ns-body-top.svelte-7fpoih {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.ns-persona-dot.svelte-7fpoih {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ns-color);
  box-shadow: 0 0 0 4px var(--ns-pulse);
  flex-shrink: 0;
  animation: svelte-7fpoih-ns-pulse 2.4s ease-in-out infinite;
}
@keyframes svelte-7fpoih-ns-pulse {
  0%,
  to {
    box-shadow: 0 0 0 4px var(--ns-pulse);
  }
  50% {
    box-shadow: 0 0 0 7px transparent;
  }
}
.ns-persona.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  font-weight: 700 !important;
  line-height: 1.2;
  margin: 0;
  background: linear-gradient(120deg, #1e293b 0%, var(--ns-color) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  flex: 1;
  min-width: 0;
}
.ns-time.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: Inter, sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ns-color);
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--ns-pill-bg);
  border: 1px solid var(--ns-border-strong);
  flex-shrink: 0;
}
.ns-time-dot.svelte-7fpoih {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ns-color);
}
.ns-desc.svelte-7fpoih {
  font-size: 14.5px;
  line-height: 1.72;
  color: #475569;
  margin: 0;
}
.ns-action.svelte-7fpoih {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px dashed var(--ns-border-strong);
  flex-wrap: wrap;
}
.ns-action-label.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #94a3b8;
}
.ns-action-text.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--ns-color);
  flex: 1;
}
.ns-action-arrow.svelte-7fpoih {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--ns-color), var(--ns-color-2));
  box-shadow: 0 5px 14px -4px var(--ns-shadow);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.ns-row.svelte-7fpoih:hover .ns-action-arrow:where(.svelte-7fpoih) {
  transform: translate(4px) rotate(-8deg);
}
.ns-row--rose.svelte-7fpoih {
  --ns-color: #e91e8c;
  --ns-color-2: #f43f5e;
  --ns-border: rgba(233, 30, 140, 0.14);
  --ns-border-strong: rgba(233, 30, 140, 0.3);
  --ns-shadow: rgba(233, 30, 140, 0.26);
  --ns-pill-bg: rgba(253, 242, 248, 0.7);
  --ns-bg-2: rgba(253, 242, 248, 0.55);
  --ns-pulse: rgba(233, 30, 140, 0.3);
}
.ns-row--teal.svelte-7fpoih {
  --ns-color: #0d9488;
  --ns-color-2: #14b8a6;
  --ns-border: rgba(13, 148, 136, 0.14);
  --ns-border-strong: rgba(13, 148, 136, 0.3);
  --ns-shadow: rgba(13, 148, 136, 0.26);
  --ns-pill-bg: rgba(240, 253, 250, 0.7);
  --ns-bg-2: rgba(240, 253, 250, 0.55);
  --ns-pulse: rgba(20, 184, 166, 0.3);
}
.ns-row--gold.svelte-7fpoih {
  --ns-color: #d97706;
  --ns-color-2: #f59e0b;
  --ns-border: rgba(217, 119, 6, 0.14);
  --ns-border-strong: rgba(217, 119, 6, 0.3);
  --ns-shadow: rgba(217, 119, 6, 0.26);
  --ns-pill-bg: rgba(254, 243, 199, 0.7);
  --ns-bg-2: rgba(254, 243, 199, 0.55);
  --ns-pulse: rgba(245, 158, 11, 0.3);
}
.ns-row--emerald.svelte-7fpoih {
  --ns-color: #059669;
  --ns-color-2: #10b981;
  --ns-border: rgba(5, 150, 105, 0.14);
  --ns-border-strong: rgba(5, 150, 105, 0.3);
  --ns-shadow: rgba(5, 150, 105, 0.26);
  --ns-pill-bg: rgba(236, 253, 245, 0.7);
  --ns-bg-2: rgba(236, 253, 245, 0.55);
  --ns-pulse: rgba(16, 185, 129, 0.3);
}
.ns-closing.svelte-7fpoih {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 56px auto 0;
}
.ns-closing-inner.svelte-7fpoih {
  position: relative;
  padding: 32px 38px 30px 96px;
  border-radius: 22px;
  background: linear-gradient(100deg, #d1fae566, #ffffffe6 45%, #fdf2f880);
  border: 1px solid rgba(16, 185, 129, 0.2);
  box-shadow: 0 18px 48px -20px #10b98138;
  overflow: hidden;
}
.ns-closing-orb.svelte-7fpoih {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}
.ns-closing-orb-1.svelte-7fpoih {
  top: -30px;
  left: -30px;
  width: 140px;
  height: 140px;
  background: radial-gradient(
    circle,
    rgba(16, 185, 129, 0.4) 0%,
    transparent 70%
  );
}
.ns-closing-orb-2.svelte-7fpoih {
  bottom: -30px;
  right: -30px;
  width: 140px;
  height: 140px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.3) 0%,
    transparent 70%
  );
}
.ns-closing-wa.svelte-7fpoih {
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 10px 24px -6px #25d36680;
  transition: transform 0.5s;
}
.ns-closing.svelte-7fpoih:hover .ns-closing-wa:where(.svelte-7fpoih) {
  transform: translateY(-50%) rotate(-8deg) scale(1.08);
}
.ns-closing-text.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(15px, 1.45vw, 17.5px);
  font-style: italic;
  font-weight: 600;
  line-height: 1.55;
  margin: 0;
  position: relative;
  z-index: 1;
  color: #1e293b;
}
@media (max-width: 900px) {
  .ns-section.svelte-7fpoih {
    padding: 80px 0 88px;
  }
  .ns-head.svelte-7fpoih {
    margin-bottom: 44px;
  }
  .ns-row.svelte-7fpoih,
  .ns-row.is-right.svelte-7fpoih {
    grid-template-columns: 80px 1fr;
    gap: 18px;
    padding: 24px 22px 22px;
  }
  .ns-row.is-right.svelte-7fpoih .ns-chapter:where(.svelte-7fpoih),
  .ns-row.is-right.svelte-7fpoih .ns-body:where(.svelte-7fpoih) {
    order: unset;
    text-align: left;
  }
  .ns-row.is-right.svelte-7fpoih .ns-body-top:where(.svelte-7fpoih) {
    justify-content: flex-start;
    flex-direction: row;
  }
  .ns-row.is-right.svelte-7fpoih .ns-action:where(.svelte-7fpoih) {
    flex-direction: row;
  }
  .ns-row.is-right.svelte-7fpoih .ns-rail:where(.svelte-7fpoih) {
    right: auto;
    left: 0;
  }
  .ns-chapter.svelte-7fpoih {
    font-size: 64px;
  }
  .ns-closing-inner.svelte-7fpoih {
    padding: 28px 24px 26px 88px;
  }
  .ns-closing-wa.svelte-7fpoih {
    left: 22px;
    width: 42px;
    height: 42px;
  }
}
@media (max-width: 560px) {
  .ns-row.svelte-7fpoih,
  .ns-row.is-right.svelte-7fpoih {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px 20px;
  }
  .ns-chapter.svelte-7fpoih {
    font-size: 52px;
    text-align: left;
  }
  .ns-body-top.svelte-7fpoih,
  .ns-row.is-right.svelte-7fpoih .ns-body-top:where(.svelte-7fpoih) {
    align-items: flex-start;
  }
  .ns-persona.svelte-7fpoih {
    flex: 1 1 auto;
  }
  .ns-time.svelte-7fpoih {
    order: 3;
    flex: 0 0 100%;
  }
  .ns-closing-inner.svelte-7fpoih {
    padding: 70px 22px 22px;
    text-align: center;
  }
  .ns-closing-wa.svelte-7fpoih {
    left: 50%;
    top: 22px;
    transform: translate(-50%);
  }
  .ns-closing.svelte-7fpoih:hover .ns-closing-wa:where(.svelte-7fpoih) {
    transform: translate(-50%) rotate(-8deg) scale(1.08);
  }
}
.mg-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 100px 0 108px;
  background: radial-gradient(
      700px 500px at 90% 5%,
      rgba(217, 119, 6, 0.06) 0%,
      transparent 60%
    ),
    radial-gradient(
      700px 500px at 10% 95%,
      rgba(20, 184, 166, 0.07) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #fffaf0, #fff, #fef5f7);
}
.mg-bg-orb.svelte-7fpoih {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}
.mg-bg-orb-1.svelte-7fpoih {
  top: -80px;
  right: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(217, 119, 6, 0.22) 0%,
    transparent 70%
  );
}
.mg-bg-orb-2.svelte-7fpoih {
  bottom: -100px;
  left: -100px;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(20, 184, 166, 0.18) 0%,
    transparent 70%
  );
}
.mg-grain.svelte-7fpoih {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.4;
  pointer-events: none;
  background-image: radial-gradient(
      circle at 20% 30%,
      rgba(233, 30, 140, 0.04) 0%,
      transparent 8%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(217, 119, 6, 0.04) 0%,
      transparent 8%
    ),
    radial-gradient(
      circle at 40% 60%,
      rgba(20, 184, 166, 0.03) 0%,
      transparent 8%
    );
  z-index: 0;
}
.mg-head.svelte-7fpoih {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  margin: 0 auto 68px;
}
.mg-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #78350f;
  margin-bottom: 24px;
}
.mg-kicker-line.svelte-7fpoih {
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d97706 50%, transparent);
}
.mg-kicker-diamond.svelte-7fpoih {
  font-size: 13px;
  color: #e91e8c;
}
.mg-title.svelte-7fpoih {
  font-family: Cormorant Garamond, Georgia, serif;
  font-size: clamp(1.95rem, 3.3vw, 2.7rem);
  font-weight: 700 !important;
  line-height: 1.14;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  background: linear-gradient(
    115deg,
    #1e293b,
    #d97706 40%,
    #e91e8c 75%,
    #14b8a6
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.mg-lead.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.7;
  color: #475569;
  max-width: 620px;
  margin: 0 auto;
  font-style: italic;
}
.mg-grid.svelte-7fpoih {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto;
}
.mg-card.svelte-7fpoih {
  position: relative;
  padding: 36px 34px 28px;
  border-radius: 24px;
  background: linear-gradient(160deg, #fffffff5, #ffffffd1);
  border: 1px solid var(--mg-border);
  box-shadow: 0 18px 48px -20px #0f172a1f, 0 4px 14px -5px #0f172a0f;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s,
    border-color 0.5s;
  animation: svelte-7fpoih-mg-rise 0.7s ease-out both;
  animation-delay: var(--mg-delay, 0s);
}
@keyframes svelte-7fpoih-mg-rise {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.mg-card.svelte-7fpoih:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 64px -20px var(--mg-shadow), 0 6px 20px -6px #0f172a1a;
  border-color: var(--mg-border-hover);
}
.mg-watermark.svelte-7fpoih {
  position: absolute;
  top: -22px;
  right: -8px;
  font-family: Cormorant Garamond, serif;
  font-size: 170px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--mg-color);
  opacity: 0.18;
  pointer-events: none;
  transition: opacity 0.5s, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.mg-card.svelte-7fpoih:hover .mg-watermark:where(.svelte-7fpoih) {
  opacity: 0.34;
  transform: scale(1.06) rotate(-3deg);
}
.mg-ring.svelte-7fpoih {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1.2px dashed var(--mg-border-hover);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s;
}
.mg-card.svelte-7fpoih:hover .mg-ring:where(.svelte-7fpoih) {
  opacity: 0.7;
  animation: svelte-7fpoih-mg-rotate 14s linear infinite;
}
@keyframes svelte-7fpoih-mg-rotate {
  to {
    transform: rotate(360deg);
  }
}
.mg-blob.svelte-7fpoih {
  position: absolute;
  bottom: -70px;
  left: -40px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: var(--mg-blob);
  filter: blur(50px);
  opacity: 0.35;
  pointer-events: none;
  transition: opacity 0.6s, transform 0.6s;
}
.mg-card.svelte-7fpoih:hover .mg-blob:where(.svelte-7fpoih) {
  opacity: 0.6;
  transform: translate(12px, -10px);
}
.mg-shine.svelte-7fpoih {
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.5) 50%,
    transparent 70%
  );
  transition: left 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.mg-card.svelte-7fpoih:hover .mg-shine:where(.svelte-7fpoih) {
  left: 130%;
}
.mg-top.svelte-7fpoih {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.mg-chapter-tag.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mg-color);
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--mg-tag-bg);
  border: 1px solid var(--mg-border-hover);
}
.mg-icon.svelte-7fpoih {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mg-icon-bg);
  color: #fff;
  box-shadow: 0 10px 24px -8px var(--mg-shadow);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.mg-card.svelte-7fpoih:hover .mg-icon:where(.svelte-7fpoih) {
  transform: rotate(-8deg) scale(1.1);
}
.mg-scene.svelte-7fpoih {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding: 9px 14px;
  border-radius: 10px;
  background: var(--mg-scene-bg);
  border: 1px dashed var(--mg-border-hover);
}
.mg-scene-label.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mg-color);
  flex-shrink: 0;
}
.mg-scene-text.svelte-7fpoih {
  font-size: 12.5px;
  color: #52525b;
  font-weight: 500;
}
.mg-setting.svelte-7fpoih {
  position: relative;
  z-index: 2;
  font-family: Cormorant Garamond, serif;
  font-size: clamp(1.4rem, 1.9vw, 1.7rem);
  font-weight: 700 !important;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  background: linear-gradient(120deg, #1e293b 0%, var(--mg-color) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.mg-accent.svelte-7fpoih {
  position: relative;
  z-index: 2;
  display: block;
  width: 34px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--mg-color), var(--mg-color-2));
  margin-bottom: 16px;
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.mg-card.svelte-7fpoih:hover .mg-accent:where(.svelte-7fpoih) {
  width: 66px;
}
.mg-desc.svelte-7fpoih {
  position: relative;
  z-index: 2;
  font-size: 14px;
  line-height: 1.72;
  color: #475569;
  margin: 0 0 22px;
}
.mg-match.svelte-7fpoih {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  background: linear-gradient(
    120deg,
    var(--mg-match-bg-1) 0%,
    var(--mg-match-bg-2) 100%
  );
  border: 1px solid var(--mg-border-hover);
  transition: all 0.4s;
}
.mg-card.svelte-7fpoih:hover .mg-match:where(.svelte-7fpoih) {
  transform: translate(4px);
  border-color: var(--mg-color);
}
.mg-match-orb.svelte-7fpoih {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mg-color);
  box-shadow: 0 0 0 4px var(--mg-pulse);
  animation: svelte-7fpoih-mg-pulse 2.4s ease-in-out infinite;
}
@keyframes svelte-7fpoih-mg-pulse {
  0%,
  to {
    box-shadow: 0 0 0 4px var(--mg-pulse);
  }
  50% {
    box-shadow: 0 0 0 8px transparent;
  }
}
.mg-match-body.svelte-7fpoih {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.mg-match-label.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mg-color);
}
.mg-match-text.svelte-7fpoih {
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.4;
}
.mg-match-arrow.svelte-7fpoih {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--mg-icon-bg);
  box-shadow: 0 6px 14px -4px var(--mg-shadow);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.mg-card.svelte-7fpoih:hover .mg-match-arrow:where(.svelte-7fpoih) {
  transform: translate(4px) rotate(-10deg);
}
.mg-card--gold.svelte-7fpoih {
  --mg-color: #d97706;
  --mg-color-2: #f59e0b;
  --mg-border: rgba(217, 119, 6, 0.14);
  --mg-border-hover: rgba(217, 119, 6, 0.3);
  --mg-shadow: rgba(217, 119, 6, 0.3);
  --mg-icon-bg: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
  --mg-tag-bg: rgba(245, 158, 11, 0.1);
  --mg-blob: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.5) 0%,
    transparent 70%
  );
  --mg-scene-bg: rgba(254, 243, 199, 0.45);
  --mg-match-bg-1: rgba(254, 243, 199, 0.5);
  --mg-match-bg-2: rgba(255, 251, 235, 0.65);
  --mg-pulse: rgba(245, 158, 11, 0.32);
}
.mg-card--rose.svelte-7fpoih {
  --mg-color: #e91e8c;
  --mg-color-2: #f43f5e;
  --mg-border: rgba(233, 30, 140, 0.14);
  --mg-border-hover: rgba(233, 30, 140, 0.3);
  --mg-shadow: rgba(233, 30, 140, 0.3);
  --mg-icon-bg: linear-gradient(135deg, #e91e8c 0%, #f43f5e 100%);
  --mg-tag-bg: rgba(233, 30, 140, 0.08);
  --mg-blob: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.5) 0%,
    transparent 70%
  );
  --mg-scene-bg: rgba(253, 242, 248, 0.5);
  --mg-match-bg-1: rgba(253, 242, 248, 0.55);
  --mg-match-bg-2: rgba(255, 247, 250, 0.7);
  --mg-pulse: rgba(233, 30, 140, 0.3);
}
.mg-card--teal.svelte-7fpoih {
  --mg-color: #0d9488;
  --mg-color-2: #14b8a6;
  --mg-border: rgba(13, 148, 136, 0.14);
  --mg-border-hover: rgba(13, 148, 136, 0.3);
  --mg-shadow: rgba(13, 148, 136, 0.3);
  --mg-icon-bg: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
  --mg-tag-bg: rgba(20, 184, 166, 0.1);
  --mg-blob: radial-gradient(
    circle,
    rgba(20, 184, 166, 0.5) 0%,
    transparent 70%
  );
  --mg-scene-bg: rgba(240, 253, 250, 0.55);
  --mg-match-bg-1: rgba(240, 253, 250, 0.55);
  --mg-match-bg-2: rgba(248, 255, 253, 0.7);
  --mg-pulse: rgba(20, 184, 166, 0.3);
}
.mg-card--emerald.svelte-7fpoih {
  --mg-color: #059669;
  --mg-color-2: #10b981;
  --mg-border: rgba(5, 150, 105, 0.14);
  --mg-border-hover: rgba(5, 150, 105, 0.3);
  --mg-shadow: rgba(5, 150, 105, 0.3);
  --mg-icon-bg: linear-gradient(135deg, #059669 0%, #10b981 100%);
  --mg-tag-bg: rgba(16, 185, 129, 0.1);
  --mg-blob: radial-gradient(
    circle,
    rgba(16, 185, 129, 0.5) 0%,
    transparent 70%
  );
  --mg-scene-bg: rgba(236, 253, 245, 0.55);
  --mg-match-bg-1: rgba(236, 253, 245, 0.55);
  --mg-match-bg-2: rgba(245, 255, 250, 0.7);
  --mg-pulse: rgba(16, 185, 129, 0.3);
}
.mg-closing.svelte-7fpoih {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 60px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  text-align: center;
}
.mg-closing-line.svelte-7fpoih {
  flex: 1;
  height: 1px;
  max-width: 140px;
}
.mg-closing-line-1.svelte-7fpoih {
  background: linear-gradient(90deg, transparent, rgba(233, 30, 140, 0.4));
}
.mg-closing-line-2.svelte-7fpoih {
  background: linear-gradient(90deg, rgba(217, 119, 6, 0.4), transparent);
}
.mg-closing-diamond.svelte-7fpoih {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e91e8c, #d97706);
  color: #fff;
  box-shadow: 0 10px 24px -6px #e91e8c59;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.mg-closing.svelte-7fpoih:hover .mg-closing-diamond:where(.svelte-7fpoih) {
  transform: rotate(45deg) scale(1.08);
}
.mg-closing-text.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(15px, 1.4vw, 18px);
  font-style: italic;
  font-weight: 600;
  margin: 0;
  line-height: 1.5;
  max-width: 360px;
  background: linear-gradient(110deg, #1e293b, #d97706, #e91e8c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
@media (max-width: 900px) {
  .mg-section.svelte-7fpoih {
    padding: 76px 0 84px;
  }
  .mg-head.svelte-7fpoih {
    margin-bottom: 48px;
  }
  .mg-grid.svelte-7fpoih {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .mg-card.svelte-7fpoih {
    padding: 28px 26px 24px;
  }
  .mg-watermark.svelte-7fpoih {
    font-size: 130px;
    top: -14px;
  }
  .mg-closing.svelte-7fpoih {
    flex-direction: column;
    gap: 14px;
    margin-top: 44px;
  }
  .mg-closing-line.svelte-7fpoih {
    display: none;
  }
  .mg-closing-text.svelte-7fpoih {
    max-width: none;
  }
}
@media (max-width: 560px) {
  .mg-setting.svelte-7fpoih {
    font-size: 1.25rem;
  }
  .mg-scene.svelte-7fpoih {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}
.zones-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 96px 0 104px;
  background: radial-gradient(
      800px 520px at 12% 10%,
      rgba(233, 30, 140, 0.07) 0%,
      transparent 60%
    ),
    radial-gradient(
      800px 520px at 88% 90%,
      rgba(245, 158, 11, 0.08) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #fff8f4, #fff 55%, #fffaf0);
}
.zones-bg-orb.svelte-7fpoih {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.zones-bg-orb-1.svelte-7fpoih {
  top: -120px;
  left: -100px;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.22) 0%,
    transparent 70%
  );
}
.zones-bg-orb-2.svelte-7fpoih {
  bottom: -140px;
  right: -120px;
  width: 460px;
  height: 460px;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.22) 0%,
    transparent 70%
  );
}
.zones-spark.svelte-7fpoih {
  position: absolute;
  font-size: 18px;
  opacity: 0.55;
  animation: svelte-7fpoih-zones-float 7s ease-in-out infinite;
}
.zones-spark-1.svelte-7fpoih {
  top: 70px;
  left: 8%;
  color: #e91e8c;
  animation-delay: -1s;
}
.zones-spark-2.svelte-7fpoih {
  top: 110px;
  right: 10%;
  color: #d97706;
  animation-delay: -3s;
}
@keyframes svelte-7fpoih-zones-float {
  0%,
  to {
    transform: translateY(0) rotate(0);
    opacity: 0.55;
  }
  50% {
    transform: translateY(-14px) rotate(10deg);
    opacity: 0.85;
  }
}
.zones-head.svelte-7fpoih {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
  margin: 0 auto 60px;
}
.zones-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #78350f;
  margin-bottom: 22px;
}
.zones-kicker-line.svelte-7fpoih {
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d97706, transparent);
}
.zones-kicker-dot.svelte-7fpoih {
  font-size: 10px;
  color: #e91e8c;
}
.zones-title.svelte-7fpoih {
  font-family: Cormorant Garamond, Georgia, serif;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-weight: 700 !important;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  background: linear-gradient(110deg, #1e293b, #d97706 45%, #e91e8c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.zones-lead.svelte-7fpoih {
  font-size: 15px;
  line-height: 1.7;
  color: #52525b;
  max-width: 620px;
  margin: 0 auto;
  font-style: italic;
}
.zones-split.svelte-7fpoih {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
}
.zones-vs.svelte-7fpoih {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0 8px 30px #e91e8c2e, 0 0 0 1px #e91e8c1f,
    inset 0 0 0 4px #ffffffe6;
  z-index: 3;
}
.zones-vs-ring.svelte-7fpoih {
  position: absolute;
  top: -6px;
  right: -6px;
  bottom: -6px;
  left: -6px;
  border-radius: 50%;
  border: 1.5px dashed rgba(233, 30, 140, 0.35);
  animation: svelte-7fpoih-zones-rotate 14s linear infinite;
}
@keyframes svelte-7fpoih-zones-rotate {
  to {
    transform: rotate(360deg);
  }
}
.zones-vs-inner.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, #e91e8c, #d97706);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.zones-panel.svelte-7fpoih {
  position: relative;
  padding: 36px 32px 30px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffffeb, #ffffffc7);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(233, 30, 140, 0.12);
  box-shadow: 0 20px 50px -20px #0f172a1f, 0 4px 16px -6px #0f172a14;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s;
  transform-style: preserve-3d;
}
.zones-panel.is-left.svelte-7fpoih:hover {
  transform: perspective(1200px) rotateY(2deg) translateY(-4px);
  box-shadow: 0 30px 70px -20px #e91e8c40, 0 6px 22px -6px #0f172a1f;
}
.zones-panel.is-right.svelte-7fpoih:hover {
  transform: perspective(1200px) rotateY(-2deg) translateY(-4px);
  box-shadow: 0 30px 70px -20px #f59e0b47, 0 6px 22px -6px #0f172a1f;
}
.zones-panel-halo.svelte-7fpoih {
  position: absolute;
  pointer-events: none;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.35;
  top: -60px;
  right: -60px;
  transition: opacity 0.5s;
}
.zones-panel.svelte-7fpoih:hover .zones-panel-halo:where(.svelte-7fpoih) {
  opacity: 0.65;
}
.zones-panel-conic.svelte-7fpoih {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  border-radius: 23px;
  padding: 1px;
  pointer-events: none;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    var(--zone-color, #e91e8c) 50%,
    transparent 100%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.6s;
}
.zones-panel.svelte-7fpoih:hover .zones-panel-conic:where(.svelte-7fpoih) {
  opacity: 0.8;
  animation: svelte-7fpoih-zones-rotate 8s linear infinite;
}
.zones-panel-shine.svelte-7fpoih {
  position: absolute;
  top: 0;
  left: -100%;
  width: 70%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(
    100deg,
    transparent 20%,
    rgba(255, 255, 255, 0.6) 50%,
    transparent 80%
  );
  transition: left 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.zones-panel.svelte-7fpoih:hover .zones-panel-shine:where(.svelte-7fpoih) {
  left: 120%;
}
.zones-panel-top.svelte-7fpoih {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.zones-panel-icon.svelte-7fpoih {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--zone-icon-bg);
  color: #fff;
  box-shadow: 0 8px 20px -6px var(--zone-shadow);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.zones-panel.svelte-7fpoih:hover .zones-panel-icon:where(.svelte-7fpoih) {
  transform: rotate(-6deg) scale(1.08);
}
.zones-panel-tag.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--zone-color);
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--zone-tag-bg);
  border: 1px solid var(--zone-tag-border);
}
.zones-panel-name.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(1.75rem, 2.4vw, 2.1rem);
  font-weight: 700 !important;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  background: linear-gradient(120deg, #1e293b 0%, var(--zone-color) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  position: relative;
  z-index: 1;
}
.zones-panel-accent.svelte-7fpoih {
  display: block;
  width: 40px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--zone-color), var(--zone-color-2));
  margin-bottom: 18px;
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.zones-panel.svelte-7fpoih:hover .zones-panel-accent:where(.svelte-7fpoih) {
  width: 72px;
}
.zones-panel-vibe.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--zone-color);
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--zone-tag-bg);
  border: 1px solid var(--zone-tag-border);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.zones-panel-vibe-dot.svelte-7fpoih {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--zone-color);
  box-shadow: 0 0 0 3px var(--zone-pulse);
  animation: svelte-7fpoih-zones-pulse 2.2s ease-in-out infinite;
}
@keyframes svelte-7fpoih-zones-pulse {
  0%,
  to {
    box-shadow: 0 0 0 3px var(--zone-pulse);
  }
  50% {
    box-shadow: 0 0 0 6px transparent;
  }
}
.zones-panel-desc.svelte-7fpoih {
  font-size: 14.5px;
  line-height: 1.75;
  color: #475569;
  margin: 0 0 22px;
  position: relative;
  z-index: 1;
}
.zones-panel-tags.svelte-7fpoih {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.zones-panel-pill.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  color: #52525b;
  padding: 6px 11px;
  border-radius: 8px;
  background: #ffffffbf;
  border: 1px solid var(--zone-tag-border);
  transition: all 0.3s;
}
.zones-panel-pill.svelte-7fpoih:hover {
  background: var(--zone-tag-bg);
  color: var(--zone-color);
  transform: translateY(-1px);
}
.zones-panel-foot.svelte-7fpoih {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px dashed rgba(100, 116, 139, 0.2);
  position: relative;
  z-index: 1;
}
.zones-panel-foot-label.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #64748b;
}
.zones-panel-foot-arrow.svelte-7fpoih {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--zone-color);
  background: var(--zone-tag-bg);
  border: 1px solid var(--zone-tag-border);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.zones-panel.svelte-7fpoih:hover .zones-panel-foot-arrow:where(.svelte-7fpoih) {
  background: linear-gradient(135deg, var(--zone-color), var(--zone-color-2));
  color: #fff;
  transform: translate(4px) rotate(-8deg);
  border-color: transparent;
}
.zones-panel--rose.svelte-7fpoih {
  --zone-color: #e91e8c;
  --zone-color-2: #f43f5e;
  --zone-icon-bg: linear-gradient(135deg, #e91e8c 0%, #f43f5e 100%);
  --zone-shadow: rgba(233, 30, 140, 0.45);
  --zone-tag-bg: rgba(233, 30, 140, 0.08);
  --zone-tag-border: rgba(233, 30, 140, 0.2);
  --zone-pulse: rgba(233, 30, 140, 0.25);
}
.zones-panel--rose.svelte-7fpoih .zones-panel-halo:where(.svelte-7fpoih) {
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.4) 0%,
    transparent 70%
  );
}
.zones-panel--gold.svelte-7fpoih {
  --zone-color: #d97706;
  --zone-color-2: #f59e0b;
  --zone-icon-bg: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
  --zone-shadow: rgba(217, 119, 6, 0.45);
  --zone-tag-bg: rgba(245, 158, 11, 0.1);
  --zone-tag-border: rgba(245, 158, 11, 0.25);
  --zone-pulse: rgba(245, 158, 11, 0.3);
}
.zones-panel--gold.svelte-7fpoih .zones-panel-halo:where(.svelte-7fpoih) {
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.4) 0%,
    transparent 70%
  );
  left: -60px;
  right: auto;
}
.zones-closing.svelte-7fpoih {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 56px auto 0;
  padding: 34px 38px;
  border-radius: 20px;
  background: linear-gradient(135deg, #ffffffe6, #fff8f0e6);
  border: 1px solid rgba(233, 30, 140, 0.15);
  box-shadow: 0 20px 60px -20px #e91e8c26;
  overflow: hidden;
  text-align: center;
}
.zones-closing-orb.svelte-7fpoih {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
}
.zones-closing-orb-1.svelte-7fpoih {
  top: -40px;
  left: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.3) 0%,
    transparent 70%
  );
}
.zones-closing-orb-2.svelte-7fpoih {
  bottom: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.3) 0%,
    transparent 70%
  );
}
.zones-closing-jewel.svelte-7fpoih {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #e91e8c, #d97706);
  color: #fff;
  box-shadow: 0 10px 28px -6px #e91e8c66;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.zones-closing.svelte-7fpoih:hover .zones-closing-jewel:where(.svelte-7fpoih) {
  transform: rotate(60deg);
}
.zones-closing-jewel-ring.svelte-7fpoih {
  position: absolute;
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
  border-radius: 50%;
  border: 1.5px dashed rgba(233, 30, 140, 0.4);
  animation: svelte-7fpoih-zones-rotate 12s linear infinite;
}
.zones-closing-text.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(16px, 1.6vw, 19px);
  font-style: italic;
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 1;
  background: linear-gradient(120deg, #1e293b, #d97706, #e91e8c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
@media (max-width: 900px) {
  .zones-section.svelte-7fpoih {
    padding: 72px 0 80px;
  }
  .zones-head.svelte-7fpoih {
    margin-bottom: 44px;
  }
  .zones-split.svelte-7fpoih {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .zones-vs.svelte-7fpoih {
    top: 50%;
    left: 50%;
  }
  .zones-panel.svelte-7fpoih {
    padding: 28px 24px 24px;
  }
  .zones-closing.svelte-7fpoih {
    margin-top: 40px;
    padding: 28px 24px;
  }
}
@media (max-width: 560px) {
  .zones-title.svelte-7fpoih {
    font-size: 1.55rem;
  }
  .zones-panel-name.svelte-7fpoih {
    font-size: 1.45rem;
  }
  .zones-spark.svelte-7fpoih {
    display: none;
  }
}
.cdp-hero.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 72px 0 80px;
  background: radial-gradient(
      900px 500px at 50% 0%,
      rgba(233, 30, 140, 0.1) 0%,
      transparent 55%
    ),
    radial-gradient(
      900px 500px at 0% 50%,
      rgba(245, 158, 11, 0.09) 0%,
      transparent 55%
    ),
    radial-gradient(
      900px 500px at 100% 50%,
      rgba(233, 30, 140, 0.09) 0%,
      transparent 55%
    ),
    linear-gradient(180deg, #fff0f7, #fdf4ff);
}
.cdp-hero.svelte-7fpoih:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(
      rgba(233, 30, 140, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(233, 30, 140, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, #000 40%, transparent 75%);
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    #000 40%,
    transparent 75%
  );
  pointer-events: none;
}
.cdp-hero.svelte-7fpoih > .grid-container:where(.svelte-7fpoih) {
  position: relative;
  z-index: 1;
}
.cdp-orb.svelte-7fpoih {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.55;
}
.cdp-orb-1.svelte-7fpoih {
  top: -120px;
  left: -100px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(233, 30, 140, 0.4), transparent 70%);
}
.cdp-orb-2.svelte-7fpoih {
  top: 40px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.35),
    transparent 70%
  );
}
.cdp-orb-3.svelte-7fpoih {
  bottom: -120px;
  left: 30%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(233, 30, 140, 0.3), transparent 70%);
}
.cdp-hero-inner.svelte-7fpoih {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.cdp-hero-text.svelte-7fpoih {
  max-width: 620px;
}
.cdp-quick-answer.svelte-7fpoih {
  margin: 16px 0 20px;
  padding: 14px 18px;
  border-left: 3px solid var(--rose);
  background: #e91e8c0f;
  border-radius: 8px;
}
.cdp-qa-q.svelte-7fpoih {
  margin: 0 0 4px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--rose);
}
.cdp-qa-a.svelte-7fpoih {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}
.cdp-crumb.svelte-7fpoih {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  margin-bottom: 14px;
  background: #ffffffd9;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 14px #2d12480f;
}
.cdp-crumb.svelte-7fpoih a:where(.svelte-7fpoih) {
  color: var(--rose-dark);
  text-decoration: none;
  font-weight: 600;
}
.cdp-crumb.svelte-7fpoih a:where(.svelte-7fpoih):hover {
  text-decoration: underline;
}
.cdp-crumb.svelte-7fpoih span:where(.svelte-7fpoih):last-child {
  color: var(--heading);
  font-weight: 600;
}
.cdp-crumb.svelte-7fpoih svg:where(.svelte-7fpoih) {
  color: var(--text-dim);
}
.cdp-chip.svelte-7fpoih {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 12px;
  margin-bottom: 20px;
  background: #ffffffd9;
  border: 1px solid rgba(233, 30, 140, 0.3);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #0369a1;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 18px #e91e8c26;
}
.cdp-chip-dot.svelte-7fpoih {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px #10b98133, 0 0 10px #10b98199;
  animation: svelte-7fpoih-cdpPulse 2.2s ease-in-out infinite;
}
@keyframes svelte-7fpoih-cdpPulse {
  0%,
  to {
    box-shadow: 0 0 0 3px #10b98133, 0 0 10px #10b98199;
  }
  50% {
    box-shadow: 0 0 0 6px #10b9810d, 0 0 18px #10b981cc;
  }
}
.cdp-h1.svelte-7fpoih {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--heading);
  margin: 0 0 14px;
}
.cdp-grad.svelte-7fpoih {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cdp-h1.cdp-h1--long.svelte-7fpoih {
  font-size: clamp(1.45rem, 2.4vw, 2.05rem);
  font-weight: 700 !important;
  line-height: 1.22;
  letter-spacing: -0.02em;
  max-width: 620px;
  background: linear-gradient(135deg, #0f172a, #d97706 55%, #e91e8c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cdp-lead.svelte-7fpoih + .cdp-lead:where(.svelte-7fpoih) {
  margin-top: -14px;
}
.cdp-lead.svelte-7fpoih {
  max-width: 580px;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 28px;
}
.cdp-meta.svelte-7fpoih {
  display: inline-flex;
  align-items: stretch;
  flex-wrap: wrap;
  padding: 10px 6px;
  background: #ffffffd9;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 36px #e91e8c14;
  margin-bottom: 28px;
}
.cdp-meta-item.svelte-7fpoih {
  padding: 6px 22px;
  text-align: center;
  min-width: 82px;
}
.cdp-meta-item.svelte-7fpoih + .cdp-meta-item:where(.svelte-7fpoih) {
  border-left: 1px solid rgba(45, 18, 72, 0.08);
}
.cdp-meta-val.svelte-7fpoih {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.cdp-meta-val.svelte-7fpoih span:where(.svelte-7fpoih) {
  font-size: 0.85em;
}
.cdp-live-dot.svelte-7fpoih {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px #10b98133;
  animation: svelte-7fpoih-cdpPulse 2.2s ease-in-out infinite;
  -webkit-text-fill-color: initial;
}
.cdp-meta-lbl.svelte-7fpoih {
  margin-top: 4px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.cdp-features.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.cdp-feat.svelte-7fpoih {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
.cdp-feat.svelte-7fpoih svg:where(.svelte-7fpoih) {
  flex-shrink: 0;
  margin-top: 2px;
}
.cdp-feat.svelte-7fpoih strong:where(.svelte-7fpoih) {
  color: var(--heading);
  font-weight: 500;
}
.cdp-actions.svelte-7fpoih {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cdp-phone-number.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--rose, #e91e8c);
}
.cdp-phone-number.svelte-7fpoih a:where(.svelte-7fpoih) {
  color: inherit;
  text-decoration: none;
}
.cdp-phone-number.svelte-7fpoih a:where(.svelte-7fpoih):hover {
  text-decoration: underline;
}
.cdp-btn-wa.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25d366, #1aab52);
  color: #fff !important;
  border: none;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  box-shadow: 0 4px 18px #25d3664d;
}
.cdp-btn-wa.svelte-7fpoih:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px #25d36666;
  color: #fff !important;
}
.cdp-btn-call.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #e63946, #c1121f);
  color: #fff !important;
  border: none;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  box-shadow: 0 4px 18px #e639464d;
  text-decoration: none;
}
.cdp-btn-call.svelte-7fpoih:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px #e6394666;
  color: #fff !important;
}
.cdp-hero-visual.svelte-7fpoih {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin-left: auto;
}
.cdp-vis-glow.svelte-7fpoih {
  position: absolute;
  top: 5%;
  right: 5%;
  bottom: 5%;
  left: 5%;
  border-radius: 40px;
  background: radial-gradient(
      circle at 30% 30%,
      rgba(233, 30, 140, 0.2) 0%,
      transparent 55%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(245, 158, 11, 0.15) 0%,
      transparent 55%
    );
  filter: blur(35px);
  pointer-events: none;
}
.lv-phone.svelte-7fpoih {
  position: relative;
  z-index: 2;
  background: #fff;
  border: 1.5px solid rgba(233, 30, 140, 0.1);
  border-radius: 32px;
  padding: 12px 16px 18px;
  box-shadow: 0 30px 70px #2d124826, 0 4px 12px #0000000a, inset 0 1px #ffffffe6;
  overflow: hidden;
}
.lv-statusbar.svelte-7fpoih {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 4px 10px;
  font-size: 12px;
  font-weight: 500;
  color: var(--heading);
}
.lv-statusbar-r.svelte-7fpoih {
  display: flex;
  gap: 6px;
  align-items: center;
}
.lv-search-head.svelte-7fpoih {
  margin-bottom: 14px;
}
.lv-search-bar.svelte-7fpoih {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: linear-gradient(135deg, #e91e8c0a, #f59e0b08);
  border: 1.5px solid rgba(233, 30, 140, 0.12);
  border-radius: 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--heading);
}
.lv-result.svelte-7fpoih {
  background: linear-gradient(155deg, #fff0f7, #f5f0ff, #fef6ff);
  border: 1.5px solid rgba(233, 30, 140, 0.12);
  border-radius: 18px;
  padding: 16px;
  margin-bottom: 12px;
}
.lv-result-head.svelte-7fpoih {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.lv-result-pin.svelte-7fpoih {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px #e91e8c4d;
  flex-shrink: 0;
}
.lv-result-name.svelte-7fpoih {
  font-size: 15px;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: -0.02em;
}
.lv-result-area.svelte-7fpoih {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
}
.lv-result-live.svelte-7fpoih {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
  color: #059669;
  padding: 3px 8px;
  border-radius: 50px;
  background: #10b98114;
  border: 1px solid rgba(16, 185, 129, 0.18);
}
.lv-live-dot.svelte-7fpoih {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 2px #10b98133;
  animation: svelte-7fpoih-cdpPulse 2.2s ease-in-out infinite;
}
.lv-result-stats.svelte-7fpoih {
  display: flex;
  align-items: center;
  background: #ffffffb3;
  border: 1px solid rgba(233, 30, 140, 0.06);
  border-radius: 12px;
  padding: 10px 4px;
  margin-bottom: 12px;
}
.lv-rs.svelte-7fpoih {
  flex: 1;
  text-align: center;
}
.lv-rs-val.svelte-7fpoih {
  font-size: 15px;
  font-weight: 700;
  color: var(--heading);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  line-height: 1;
  margin-bottom: 2px;
}
.lv-rs-lbl.svelte-7fpoih {
  font-size: 8.5px;
  font-weight: 500;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.lv-rs-sep.svelte-7fpoih {
  width: 1px;
  height: 24px;
  background: #e91e8c14;
  flex-shrink: 0;
}
.lv-result-profiles.svelte-7fpoih {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.lv-rp-avatars.svelte-7fpoih {
  display: flex;
}
.lv-rp-av.svelte-7fpoih {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px #00000014;
  margin-left: -6px;
}
.lv-rp-av.svelte-7fpoih:first-child {
  margin-left: 0;
}
.lv-rp-av.svelte-7fpoih img:where(.svelte-7fpoih) {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lv-rp-text.svelte-7fpoih {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
}
.lv-result-cta.svelte-7fpoih {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  box-shadow: 0 4px 16px #e91e8c40;
}
.lv-phone-tags.svelte-7fpoih {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-top: 12px;
}
.lv-ptag.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 4px 10px;
  border-radius: 50px;
  background: #e91e8c0a;
  border: 1px solid rgba(233, 30, 140, 0.08);
}
.lv-float.svelte-7fpoih {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.1);
  border-radius: 50px;
  box-shadow: 0 8px 24px #2d12481a;
  font-size: 11px;
  color: var(--heading);
}
.lv-float.svelte-7fpoih strong:where(.svelte-7fpoih) {
  font-weight: 600;
}
.lv-float-1.svelte-7fpoih {
  top: 8%;
  left: -10%;
  animation: svelte-7fpoih-lvFloatBob 6s ease-in-out infinite;
}
.lv-float-2.svelte-7fpoih {
  bottom: 12%;
  right: -8%;
  animation: svelte-7fpoih-lvFloatBob 6s ease-in-out infinite reverse;
  animation-delay: -2s;
}
@keyframes svelte-7fpoih-lvFloatBob {
  0%,
  to {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.cat-main.svelte-7fpoih {
  background: linear-gradient(180deg, #fff, #fff0f7, #fdf4ff 60%, #fff0f7);
  padding: 48px 0 72px;
}
.toolbar.svelte-7fpoih {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
  background: #fff;
  border: 1.5px solid rgba(233, 30, 140, 0.1);
  border-radius: 18px;
  padding: 14px 20px;
  box-shadow: 0 4px 20px #e91e8c0d;
}
.toolbar-left.svelte-7fpoih {
  display: flex;
  align-items: center;
  gap: 14px;
}
.toolbar-right.svelte-7fpoih {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.tb-count-badge.svelte-7fpoih {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px #e91e8c4d;
  flex-shrink: 0;
}
.tb-count-num.svelte-7fpoih {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.tb-count-text.svelte-7fpoih strong:where(.svelte-7fpoih) {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--heading);
  letter-spacing: -0.01em;
}
.tb-count-text.svelte-7fpoih span:where(.svelte-7fpoih) {
  font-size: 12px;
  color: var(--text-muted);
}
.tb-chip.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #e91e8c14, #e91e8c0a);
  color: var(--rose-dark);
  border: 1px solid rgba(233, 30, 140, 0.18);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s ease;
}
.tb-chip.svelte-7fpoih:hover {
  background: #e91e8c1f;
  border-color: #e91e8c4d;
}
.tb-chip-x.svelte-7fpoih {
  opacity: 0.5;
}
.tb-chip.svelte-7fpoih:hover .tb-chip-x:where(.svelte-7fpoih) {
  opacity: 1;
}
.tb-select-wrap.svelte-7fpoih {
  position: relative;
  display: flex;
  align-items: center;
}
.tb-select-icon.svelte-7fpoih {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: linear-gradient(135deg, #e91e8c1a, #e91e8c0a);
  color: var(--rose-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}
.tb-select-icon-violet.svelte-7fpoih {
  background: linear-gradient(135deg, #f59e0b1a, #f59e0b0a);
  color: var(--gold);
}
.tb-select.svelte-7fpoih {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: linear-gradient(135deg, #e91e8c08, #f59e0b05);
  border: 1.5px solid rgba(233, 30, 140, 0.1);
  border-radius: 12px;
  padding: 10px 36px 10px 42px;
  font-size: 13px;
  font-weight: 500;
  color: var(--heading);
  font-family: inherit;
  cursor: pointer;
  transition: all 0.25s ease;
  min-width: 160px;
  outline: none;
}
.tb-select.svelte-7fpoih:hover {
  border-color: #e91e8c40;
  background: #e91e8c0d;
}
.tb-select.svelte-7fpoih:focus {
  border-color: var(--rose-dark);
  box-shadow: 0 0 0 3px #e91e8c14;
}
.tb-select-chevron.svelte-7fpoih {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-dim);
  pointer-events: none;
}
.profiles-grid.svelte-7fpoih {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.empty-state.svelte-7fpoih {
  text-align: center;
  padding: 80px 20px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 18px;
}
.empty-icon.svelte-7fpoih {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.empty-state.svelte-7fpoih h3:where(.svelte-7fpoih) {
  font-size: 20px;
  color: var(--heading);
  margin-bottom: 8px;
}
.empty-state.svelte-7fpoih p:where(.svelte-7fpoih) {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 24px;
}
.empty-actions.svelte-7fpoih {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.hiw-section.svelte-7fpoih {
  padding: 80px 0 90px;
  background: linear-gradient(180deg, #fff, #faf5ff, #fff5f9);
}
.hiw-header.svelte-7fpoih {
  text-align: center;
  margin-bottom: 52px;
}
.hiw-title.svelte-7fpoih {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--heading);
  letter-spacing: -0.03em;
  margin: 0 0 14px;
}
.hiw-title.svelte-7fpoih span:where(.svelte-7fpoih) {
  background: linear-gradient(135deg, var(--rose), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hiw-sub.svelte-7fpoih {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0 auto;
  max-width: 520px;
  line-height: 1.7;
}
.hiw-grid.svelte-7fpoih {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
.hiw-card.svelte-7fpoih {
  position: relative;
  border-radius: 28px;
  padding: 32px 30px 28px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  border: none;
}
.hiw-card.svelte-7fpoih:hover {
  transform: translateY(-6px);
}
.hiw-card--lg.svelte-7fpoih {
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.hiw-card.svelte-7fpoih:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
  background: linear-gradient(145deg, #ede5ff, #f5f0ff 40%, #faf8ff);
  box-shadow: 0 8px 30px #f59e0b14;
}
.hiw-card.svelte-7fpoih:nth-child(1):hover {
  box-shadow: 0 16px 48px #f59e0b24;
}
.hiw-card.svelte-7fpoih:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
  background: linear-gradient(145deg, #ffe4ef, #fff0f6 40%, #fff8fb);
  box-shadow: 0 8px 30px #e91e8c0f;
}
.hiw-card.svelte-7fpoih:nth-child(2):hover {
  box-shadow: 0 16px 48px #e91e8c1f;
}
.hiw-card.svelte-7fpoih:nth-child(3) {
  grid-column: 1;
  grid-row: 2;
  background: linear-gradient(145deg, #fff3d6, #fffbf0 40%, #fffdf8);
  box-shadow: 0 8px 30px #f59e0b0f;
}
.hiw-card.svelte-7fpoih:nth-child(3):hover {
  box-shadow: 0 16px 48px #f59e0b1f;
}
.hiw-card.svelte-7fpoih:nth-child(4) {
  grid-column: 2;
  grid-row: 2;
  background: linear-gradient(145deg, #d1fae5, #ecfdf5 40%, #f5fdf8);
  box-shadow: 0 8px 30px #10b9810f;
}
.hiw-card.svelte-7fpoih:nth-child(4):hover {
  box-shadow: 0 16px 48px #10b9811f;
}
.hiw-card__num.svelte-7fpoih {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
  margin-bottom: 16px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.hiw-card__body.svelte-7fpoih {
  flex: 1;
  min-width: 0;
}
.hiw-card__body.svelte-7fpoih h3:where(.svelte-7fpoih) {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading);
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.hiw-card__body.svelte-7fpoih p:where(.svelte-7fpoih) {
  font-size: 13.5px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}
.hiw-card__img.svelte-7fpoih {
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media (max-width: 768px) {
  .hiw-section.svelte-7fpoih {
    padding: 50px 0 60px;
  }
  .hiw-grid.svelte-7fpoih {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .hiw-card--lg.svelte-7fpoih {
    flex-direction: column;
  }
  .hiw-card.svelte-7fpoih {
    padding: 24px 22px 20px;
    border-radius: 22px;
  }
}
@media (max-width: 480px) {
  .hiw-grid.svelte-7fpoih {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .hiw-card.svelte-7fpoih:nth-child(1),
  .hiw-card.svelte-7fpoih:nth-child(4) {
    grid-column: 1;
  }
  .hiw-card--lg.svelte-7fpoih {
    flex-direction: row;
    gap: 16px;
  }
  .hiw-card.svelte-7fpoih {
    padding: 20px 18px;
    border-radius: 20px;
  }
}
.lab-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  background: radial-gradient(
      800px 400px at 20% 50%,
      rgba(233, 30, 140, 0.05) 0%,
      transparent 55%
    ),
    radial-gradient(
      800px 400px at 80% 50%,
      rgba(245, 158, 11, 0.04) 0%,
      transparent 55%
    ),
    linear-gradient(180deg, #fff, #fef0f8 40%, #f8f0fe, #fff);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.lab-bg-grid.svelte-7fpoih,
.lab-orb.svelte-7fpoih {
  display: none;
}
.lab-section.svelte-7fpoih > .grid-container:where(.svelte-7fpoih) {
  position: relative;
  z-index: 1;
}
.lab-card.svelte-7fpoih {
  position: relative;
  background: #fff;
  border: 1.5px solid rgba(233, 30, 140, 0.1);
  border-radius: 28px;
  padding: 48px;
  box-shadow: 0 12px 40px #e91e8c0f, 0 2px 8px #2d12480a;
  overflow: hidden;
}
.lab-card.svelte-7fpoih:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--rose),
    var(--gold),
    var(--gold, #f59e0b)
  );
  border-radius: 28px 28px 0 0;
}
.lab-shine.svelte-7fpoih {
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    115deg,
    transparent 40%,
    rgba(233, 30, 140, 0.04) 50%,
    transparent 60%
  );
  transform: skew(-20deg);
  transition: left 1s ease;
  pointer-events: none;
}
.lab-card.svelte-7fpoih:hover .lab-shine:where(.svelte-7fpoih) {
  left: 160%;
}
.lab-inner.svelte-7fpoih {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
.lab-chip.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  background: #e91e8c0f;
  border: 1px solid rgba(233, 30, 140, 0.12);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--rose);
  margin-bottom: 20px;
}
.lab-chip-dot.svelte-7fpoih {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 8px #e91e8c66;
  animation: svelte-7fpoih-cdpPulse 2.2s ease-in-out infinite;
}
.lab-h2.svelte-7fpoih {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--heading);
  line-height: 1.15;
  margin-bottom: 14px;
}
.lab-grad.svelte-7fpoih {
  background: linear-gradient(135deg, var(--rose), #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lab-desc.svelte-7fpoih {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.lab-info-list.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.lab-info.svelte-7fpoih {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.lab-info__ic.svelte-7fpoih {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lab-info__ic--rose.svelte-7fpoih {
  background: #e91e8c14;
  color: #e91e8c;
}
.lab-info__ic--violet.svelte-7fpoih {
  background: #f59e0b14;
  color: #d97706;
}
.lab-info__ic--teal.svelte-7fpoih {
  background: #0d948814;
  color: #0d9488;
}
.lab-info__ic--amber.svelte-7fpoih {
  background: #f59e0b14;
  color: #d97706;
}
.lab-info__text.svelte-7fpoih strong:where(.svelte-7fpoih) {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 3px;
}
.lab-info__text.svelte-7fpoih span:where(.svelte-7fpoih) {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}
.lab-pills.svelte-7fpoih {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.lab-pill.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  background: linear-gradient(135deg, #e91e8c0a, #f59e0b08);
  border: 1px solid rgba(233, 30, 140, 0.1);
  border-radius: 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--heading);
  transition: all 0.25s ease;
}
.lab-pill.svelte-7fpoih:hover {
  background: linear-gradient(135deg, #e91e8c14, #f59e0b0d);
  border-color: #e91e8c33;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px #e91e8c0f;
}
.lab-cats.svelte-7fpoih {
  margin-top: 4px;
}
.lab-cats-label.svelte-7fpoih {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
  display: block;
}
.lab-cats-wrap.svelte-7fpoih {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.lab-cat-link.svelte-7fpoih {
  padding: 5px 12px;
  border-radius: 50px;
  background: #f59e0b0f;
  border: 1px solid rgba(245, 158, 11, 0.12);
  font-size: 11px;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  transition: all 0.2s;
}
.lab-cat-link.svelte-7fpoih:hover {
  background: #f59e0b1f;
  transform: translateY(-1px);
}
.lab-cat-more.svelte-7fpoih {
  background: #f59e0b1a;
}
.lrc.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  background: radial-gradient(
      ellipse at 20% 80%,
      rgba(233, 30, 140, 0.06) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 20%,
      rgba(245, 158, 11, 0.06) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 50% 100%,
      rgba(245, 158, 11, 0.04) 0%,
      transparent 50%
    ),
    linear-gradient(165deg, #fff, #fff5f9, #f5f0ff 60%, #fef8fb);
  border-radius: 28px;
  padding: 36px 28px 20px;
  text-align: center;
  border: 1px solid rgba(233, 30, 140, 0.06);
  box-shadow: 0 8px 32px #2d12480d;
}
.lrc-bg.svelte-7fpoih {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 110px;
  background: linear-gradient(135deg, var(--rose), #f472b6, #f59e0b);
  border-radius: 27px 27px 0 0;
}
.lrc-bg.svelte-7fpoih:after {
  display: none;
}
.lrc-pin.svelte-7fpoih {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), #f472b6);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 6px 20px #e91e8c4d;
  border: 3px solid #fff;
}
.lrc-name.svelte-7fpoih {
  position: relative;
  z-index: 1;
  font-size: 22px;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: -0.02em;
  margin: 0 0 2px;
}
.lrc-area.svelte-7fpoih {
  font-size: 13px;
  color: var(--text-dim);
  margin: 0 0 24px;
}
.lrc-stats.svelte-7fpoih {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 16px 0;
  border-top: 1px solid rgba(45, 18, 72, 0.05);
  border-bottom: 1px solid rgba(45, 18, 72, 0.05);
  margin-bottom: 20px;
}
.lrc-stat.svelte-7fpoih {
  flex: 1;
  text-align: center;
}
.lrc-stat__val.svelte-7fpoih {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: -0.03em;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}
.lrc-stat__val.svelte-7fpoih span:where(.svelte-7fpoih) {
  font-size: 16px;
  color: #f59e0b;
}
.lrc-stat__lbl.svelte-7fpoih {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.lrc-stat__sep.svelte-7fpoih {
  width: 1px;
  height: 32px;
  background: #2d12480f;
}
.lrc-showcase.svelte-7fpoih {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.lrc-showcase.svelte-7fpoih img:where(.svelte-7fpoih) {
  width: 92%;
  height: auto;
  display: block;
  margin: 0 auto;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.lrc-showcase.svelte-7fpoih img:where(.svelte-7fpoih):hover {
  transform: scale(1.04);
}
.rcx-section.svelte-7fpoih {
  padding: 80px 0 88px;
  background: linear-gradient(180deg, #fff, #fef0f8, #fff);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.rcx-grid.svelte-7fpoih {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.loc-card.svelte-7fpoih {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px 18px 16px;
  border-radius: 20px;
  background: #ffffffd1;
  border: 1px solid rgba(255, 255, 255, 0.7);
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease, border-color 0.4s ease;
  box-shadow: 0 6px 20px #2d124814;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  min-height: 200px;
}
.loc-card.svelte-7fpoih:nth-child(4n + 1) {
  --loc-c: 233, 30, 140;
  --loc-c2: 244, 63, 94;
}
.loc-card.svelte-7fpoih:nth-child(4n + 2) {
  --loc-c: 244, 63, 94;
  --loc-c2: 245, 158, 11;
}
.loc-card.svelte-7fpoih:nth-child(4n + 3) {
  --loc-c: 245, 158, 11;
  --loc-c2: 233, 30, 140;
}
.loc-card.svelte-7fpoih:nth-child(4n + 4) {
  --loc-c: 233, 30, 140;
  --loc-c2: 245, 196, 107;
}
.loc-card.svelte-7fpoih:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--loc-c), 0.35);
  box-shadow: 0 22px 48px rgba(var(--loc-c), 0.22);
}
.loc-map.svelte-7fpoih {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
  color: rgb(var(--loc-c));
}
.loc-map-svg.svelte-7fpoih {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 65%;
  opacity: 0.55;
  transition: transform 0.6s ease, opacity 0.4s ease;
}
.loc-card.svelte-7fpoih:hover .loc-map-svg:where(.svelte-7fpoih) {
  transform: scale(1.08) translateY(-4px);
  opacity: 0.85;
}
.loc-gradient.svelte-7fpoih {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: radial-gradient(
      90% 60% at 50% 0%,
      rgba(var(--loc-c), 0.18) 0%,
      rgba(var(--loc-c2), 0.08) 40%,
      transparent 70%
    ),
    linear-gradient(180deg, transparent 40%, #fff 80%);
}
.loc-pin-wrap.svelte-7fpoih {
  position: absolute;
  top: 22px;
  left: 18px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loc-pin-pulse.svelte-7fpoih {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  background: rgba(var(--loc-c), 0.22);
  animation: svelte-7fpoih-locPulseAnim 2s ease-out infinite;
}
.loc-pin-pulse-2.svelte-7fpoih {
  animation-delay: -1s;
}
@keyframes svelte-7fpoih-locPulseAnim {
  0% {
    transform: scale(0.6);
    opacity: 0.9;
  }
  to {
    transform: scale(1.8);
    opacity: 0;
  }
}
.loc-pin.svelte-7fpoih {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgb(var(--loc-c)), rgb(var(--loc-c2)));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(var(--loc-c), 0.45), inset 0 1px #fff6;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 2;
}
.loc-card.svelte-7fpoih:hover .loc-pin:where(.svelte-7fpoih) {
  transform: translateY(-4px) scale(1.1);
}
.loc-count-badge.svelte-7fpoih {
  position: absolute;
  top: 22px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  background: #fffffff2;
  border: 1px solid rgba(var(--loc-c), 0.25);
  border-radius: 50px;
  font-size: 11.5px;
  font-weight: 600;
  color: rgb(var(--loc-c));
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(var(--loc-c), 0.1);
}
.loc-dot.svelte-7fpoih {
  width: 5px;
  height: 5px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 3px #10b98133;
  animation: svelte-7fpoih-cdpPulse 1.6s ease-in-out infinite;
}
.loc-info.svelte-7fpoih {
  margin-bottom: 10px;
}
.loc-name.svelte-7fpoih {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 3px;
}
.loc-sub.svelte-7fpoih {
  font-size: 11.5px;
  color: var(--text-muted);
  font-weight: 600;
}
.loc-foot.svelte-7fpoih {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px dashed rgba(45, 18, 72, 0.1);
}
.loc-avail.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  font-weight: 500;
  color: #059669;
  letter-spacing: 0.02em;
}
.loc-live-dot.svelte-7fpoih {
  width: 5px;
  height: 5px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 3px #10b9812e;
  animation: svelte-7fpoih-cdpPulse 1.5s ease-in-out infinite;
}
.loc-go.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: rgb(var(--loc-c));
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 0.3s ease;
}
.loc-card.svelte-7fpoih:hover .loc-go:where(.svelte-7fpoih) {
  transform: translate(4px);
}
@media (max-width: 1024px) {
  .profiles-grid.svelte-7fpoih {
    grid-template-columns: repeat(3, 1fr);
  }
  .rcx-grid.svelte-7fpoih {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .cdp-hero.svelte-7fpoih {
    padding: 48px 0 56px;
  }
  .cdp-hero-inner.svelte-7fpoih {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
  }
  .cdp-hero-visual.svelte-7fpoih {
    max-width: 300px;
  }
  .cdp-h1.svelte-7fpoih {
    font-size: 1.7rem;
  }
  .cdp-lead.svelte-7fpoih {
    font-size: 13px;
  }
  .cdp-meta-item.svelte-7fpoih {
    padding: 5px 14px;
    min-width: 70px;
  }
  .cdp-meta-val.svelte-7fpoih {
    font-size: 1.15rem;
  }
  .cdp-hero-visual.svelte-7fpoih {
    max-width: 320px;
  }
  .lv-phone.svelte-7fpoih {
    border-radius: 26px;
    padding: 10px 14px 14px;
  }
  .lv-float-1.svelte-7fpoih {
    left: -6%;
  }
  .lv-float-2.svelte-7fpoih {
    right: -4%;
  }
  .profiles-grid.svelte-7fpoih {
    grid-template-columns: repeat(3, 1fr);
  }
  .rcx-grid.svelte-7fpoih {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .loc-card.svelte-7fpoih {
    min-height: 180px;
    padding: 70px 16px 14px;
  }
  .toolbar.svelte-7fpoih {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .toolbar-right.svelte-7fpoih {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .tb-select.svelte-7fpoih {
    min-width: 140px;
    font-size: 12px;
    padding: 9px 32px 9px 38px;
  }
  .lab-inner.svelte-7fpoih {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .lab-card.svelte-7fpoih {
    padding: 32px;
  }
  .lab-pills.svelte-7fpoih {
    gap: 6px;
  }
  .lab-pill.svelte-7fpoih {
    padding: 8px 14px;
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .cdp-hero.svelte-7fpoih {
    padding: 32px 0 36px;
  }
  .cdp-hero-inner.svelte-7fpoih {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .cdp-h1.svelte-7fpoih {
    font-size: 1.5rem;
  }
  .cdp-lead.svelte-7fpoih {
    font-size: 13px;
    margin-bottom: 20px;
  }
  .cdp-meta.svelte-7fpoih {
    padding: 8px;
    border-radius: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 0;
    width: 100%;
  }
  .cdp-meta-item.svelte-7fpoih {
    padding: 6px 4px;
    min-width: auto;
  }
  .cdp-meta-item.svelte-7fpoih + .cdp-meta-item:where(.svelte-7fpoih) {
    border-left: 1px solid rgba(45, 18, 72, 0.08);
  }
  .cdp-meta-val.svelte-7fpoih {
    font-size: 1.05rem;
  }
  .cdp-actions.svelte-7fpoih {
    flex-direction: column;
  }
  .cdp-actions.svelte-7fpoih .btn-orange:where(.svelte-7fpoih),
  .cdp-actions.svelte-7fpoih .cdp-btn-wa:where(.svelte-7fpoih),
  .cdp-actions.svelte-7fpoih .cdp-btn-call:where(.svelte-7fpoih) {
    width: 100%;
    justify-content: center;
  }
  .cdp-hero-visual.svelte-7fpoih {
    max-width: 240px;
    margin: 0 auto;
  }
  .cdp-hero-visual.svelte-7fpoih {
    max-width: 280px;
  }
  .lv-phone.svelte-7fpoih {
    border-radius: 22px;
    padding: 8px 12px 14px;
  }
  .lv-result.svelte-7fpoih {
    padding: 12px;
  }
  .lv-result-name.svelte-7fpoih,
  .lv-rs-val.svelte-7fpoih {
    font-size: 13px;
  }
  .lv-result-cta.svelte-7fpoih {
    font-size: 11px;
    padding: 9px;
  }
  .lv-float.svelte-7fpoih {
    padding: 6px 10px;
    font-size: 10px;
  }
  .lv-float-1.svelte-7fpoih {
    left: -2%;
    top: 4%;
  }
  .lv-float-2.svelte-7fpoih {
    right: -2%;
    bottom: 8%;
  }
  .profiles-grid.svelte-7fpoih {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .cat-main.svelte-7fpoih {
    padding: 32px 0 48px;
  }
  .lab-section.svelte-7fpoih {
    padding: 52px 0;
  }
  .lab-card.svelte-7fpoih {
    padding: 24px;
    border-radius: 22px;
  }
  .lab-stat-val.svelte-7fpoih {
    font-size: 22px;
  }
  .lab-stat.svelte-7fpoih {
    padding: 16px 12px;
  }
  .lab-h2.svelte-7fpoih {
    font-size: 1.4rem;
  }
  .lab-pill.svelte-7fpoih {
    padding: 7px 12px;
    font-size: 11px;
  }
  .rcx-section.svelte-7fpoih {
    padding: 48px 0 56px;
  }
  .rcx-grid.svelte-7fpoih {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .loc-card.svelte-7fpoih {
    min-height: 170px;
    padding: 60px 14px 12px;
  }
  .loc-name.svelte-7fpoih {
    font-size: 15px;
  }
  .loc-pin.svelte-7fpoih {
    width: 26px;
    height: 26px;
  }
  .loc-pin.svelte-7fpoih svg:where(.svelte-7fpoih) {
    width: 13px;
    height: 13px;
  }
}
@media (max-width: 420px) {
  .rcx-grid.svelte-7fpoih {
    gap: 10px;
  }
  .loc-card.svelte-7fpoih {
    padding: 58px 12px 11px;
    min-height: 170px;
    border-radius: 14px;
  }
  .loc-pin-wrap.svelte-7fpoih {
    top: 10px;
    left: 10px;
    width: 30px;
    height: 30px;
  }
  .loc-pin.svelte-7fpoih {
    width: 24px;
    height: 24px;
  }
  .loc-pin.svelte-7fpoih svg:where(.svelte-7fpoih) {
    width: 12px;
    height: 12px;
  }
  .loc-count-badge.svelte-7fpoih {
    top: 10px;
    right: 10px;
    padding: 3px 8px;
    font-size: 11px;
    gap: 4px;
  }
  .loc-count-badge.svelte-7fpoih .loc-dot:where(.svelte-7fpoih) {
    width: 5px;
    height: 5px;
  }
  .loc-name.svelte-7fpoih {
    font-size: 16px;
    margin-bottom: 3px;
  }
  .loc-sub.svelte-7fpoih {
    font-size: 11.5px;
    line-height: 1.3;
  }
  .loc-info.svelte-7fpoih {
    margin-bottom: 9px;
  }
  .loc-foot.svelte-7fpoih {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding-top: 9px;
  }
  .loc-avail.svelte-7fpoih,
  .loc-go.svelte-7fpoih {
    font-size: 11px;
    letter-spacing: 0.02em;
  }
  .loc-avail.svelte-7fpoih {
    white-space: nowrap;
  }
}
@media (max-width: 340px) {
  .rcx-grid.svelte-7fpoih {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .loc-card.svelte-7fpoih {
    padding: 62px 14px 12px;
    min-height: 150px;
  }
  .loc-name.svelte-7fpoih {
    font-size: 17px;
  }
  .loc-sub.svelte-7fpoih,
  .loc-avail.svelte-7fpoih,
  .loc-go.svelte-7fpoih {
    font-size: 12px;
  }
  .loc-foot.svelte-7fpoih {
    flex-direction: row;
  }
}
.area-seo.svelte-7fpoih {
  padding: 72px 0 80px;
  background: linear-gradient(180deg, #fff7fb, #fdf4ff);
  position: relative;
}
.area-seo-wrap.svelte-7fpoih {
  max-width: 940px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.area-seo-hero.svelte-7fpoih {
  text-align: left;
}
.area-seo-tag.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: #e91e8c17;
  color: var(--rose-dark);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.area-seo-tag.svelte-7fpoih span:where(.svelte-7fpoih) {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 3px #e91e8c2e;
}
.area-seo-h1.svelte-7fpoih {
  font-size: clamp(1.9rem, 3.3vw, 2.6rem);
  line-height: 1.18;
  color: var(--heading);
  margin: 0 0 18px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #0f172a, #d97706 55%, #e91e8c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.area-seo-lead.svelte-7fpoih {
  font-size: 16.5px;
  line-height: 1.72;
  color: #475569;
  margin: 0 0 12px;
  max-width: 760px;
}
.area-seo-block.svelte-7fpoih {
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.08);
  border-radius: 22px;
  padding: 36px 36px 40px;
  box-shadow: 0 6px 28px #f59e0b0f;
}
.area-seo-h2.svelte-7fpoih {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  color: var(--heading);
  margin: 0 0 10px;
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.area-seo-h2--center.svelte-7fpoih {
  text-align: center;
  margin-bottom: 16px;
}
.area-seo-sublead.svelte-7fpoih {
  font-size: 15.5px;
  line-height: 1.65;
  color: #64748b;
  margin: 0 0 26px;
  max-width: 720px;
}
.faq-section.svelte-7fpoih {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: radial-gradient(
      1000px 600px at 15% 0%,
      rgba(233, 30, 140, 0.1) 0%,
      transparent 55%
    ),
    radial-gradient(
      900px 600px at 85% 100%,
      rgba(245, 158, 11, 0.1) 0%,
      transparent 55%
    ),
    linear-gradient(180deg, #fff9fc, #fdf4fa, #fff7fc);
}
.faq-bg-orb.svelte-7fpoih {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}
.faq-bg-orb-1.svelte-7fpoih {
  top: -120px;
  right: -90px;
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.28),
    transparent 70%
  );
}
.faq-bg-orb-2.svelte-7fpoih {
  bottom: -140px;
  left: -100px;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.22),
    transparent 70%
  );
}
.faq-section.svelte-7fpoih > .grid-container:where(.svelte-7fpoih) {
  position: relative;
  z-index: 1;
}
.faq-intro.svelte-7fpoih {
  position: relative;
  text-align: center;
  margin: 0 auto 36px;
  max-width: 820px;
  padding: 0 20px;
}
.faq-intro-spark.svelte-7fpoih {
  position: absolute;
  font-size: 16px;
  color: var(--rose);
  opacity: 0.55;
  pointer-events: none;
  animation: svelte-7fpoih-faqIntroFloat 5s ease-in-out infinite;
}
.faq-intro-spark-1.svelte-7fpoih {
  top: 10px;
  left: 18%;
}
.faq-intro-spark-2.svelte-7fpoih {
  bottom: 0;
  right: 18%;
  color: var(--gold);
  animation-delay: 1.8s;
}
@keyframes svelte-7fpoih-faqIntroFloat {
  0%,
  to {
    transform: translateY(0) rotate(0);
    opacity: 0.35;
  }
  50% {
    transform: translateY(-6px) rotate(15deg);
    opacity: 0.9;
  }
}
.faq-intro-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--rose-dark);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.faq-intro-kicker-line.svelte-7fpoih {
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose), transparent);
}
.faq-intro-kicker-gem.svelte-7fpoih {
  color: var(--rose);
  font-size: 8px;
  animation: svelte-7fpoih-xtypeGem 3s ease-in-out infinite;
}
.faq-intro-title.svelte-7fpoih {
  font-size: clamp(1.6rem, 2.8vw, 2.15rem);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin: 0 0 14px;
  background: linear-gradient(135deg, #0f172a, #d97706 55%, #e91e8c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.faq-intro-accent.svelte-7fpoih {
  display: block;
  width: 56px;
  height: 3px;
  margin: 0 auto 14px;
  border-radius: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--rose),
    var(--gold),
    transparent
  );
}
.faq-intro-lead.svelte-7fpoih {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 auto;
  max-width: 640px;
}
.faq-topbar.svelte-7fpoih {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 28px;
  background: #ffffffd9;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 14px 40px #e91e8c14;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.faq-brand.svelte-7fpoih {
  display: flex;
  align-items: center;
  gap: 14px;
}
.faq-brand-icon.svelte-7fpoih {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--rose), #c2185b);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px #e91e8c59;
  flex-shrink: 0;
}
.faq-brand-title.svelte-7fpoih {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--heading);
}
.faq-brand-sub.svelte-7fpoih {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}
.faq-search.svelte-7fpoih {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: #fff;
  border: 1px solid rgba(45, 18, 72, 0.08);
  border-radius: 50px;
  min-width: 300px;
  color: var(--text-muted);
  transition: all 0.3s ease;
}
.faq-search.svelte-7fpoih:focus-within {
  border-color: #e91e8c59;
  box-shadow: 0 0 0 4px #e91e8c14;
}
.faq-search.svelte-7fpoih input:where(.svelte-7fpoih) {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 13.5px;
  color: var(--heading);
}
.faq-body.svelte-7fpoih {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 22px;
  align-items: start;
}
.faq-sidebar.svelte-7fpoih {
  position: sticky;
  top: 20px;
  padding: 22px 18px;
  background: #ffffffd9;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 14px 40px #2d124814;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.faq-sidebar-head.svelte-7fpoih {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 8px 14px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--rose);
  border-bottom: 1px dashed rgba(45, 18, 72, 0.12);
  margin-bottom: 10px;
}
.faq-sidebar-line.svelte-7fpoih {
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), #c2185b);
  border-radius: 2px;
}
.faq-list.svelte-7fpoih {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.faq-list-btn.svelte-7fpoih {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--heading);
  text-align: left;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease,
    transform 0.25s ease;
}
.faq-list-btn.svelte-7fpoih:hover {
  background: #e91e8c0d;
  color: var(--rose);
}
.faq-list-btn.is-active.svelte-7fpoih {
  background: linear-gradient(135deg, #e91e8c1f, #e91e8c14);
  border-color: #e91e8c38;
  color: var(--rose);
  box-shadow: 0 6px 18px #e91e8c14;
}
.faq-list-num.svelte-7fpoih {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: #e91e8c1a;
  color: var(--rose);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
}
.faq-list-btn.is-active.svelte-7fpoih .faq-list-num:where(.svelte-7fpoih) {
  background: linear-gradient(135deg, var(--rose), #c2185b);
  color: #fff;
  box-shadow: 0 4px 10px #e91e8c59;
}
.faq-list-q.svelte-7fpoih {
  flex: 1;
  line-height: 1.35;
}
.faq-list-arrow.svelte-7fpoih {
  opacity: 0;
  transform: translate(-4px);
  transition: all 0.25s ease;
  flex-shrink: 0;
}
.faq-list-btn.is-active.svelte-7fpoih .faq-list-arrow:where(.svelte-7fpoih),
.faq-list-btn.svelte-7fpoih:hover .faq-list-arrow:where(.svelte-7fpoih) {
  opacity: 1;
  transform: translate(0);
}
.faq-still-help.svelte-7fpoih {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  margin-top: 16px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 10px 24px #25d36640;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.faq-still-help.svelte-7fpoih:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px #25d36666;
}
.faq-still-help.svelte-7fpoih svg:where(.svelte-7fpoih) {
  flex-shrink: 0;
  padding: 8px;
  width: 30px;
  height: 30px;
  background: #fff3;
  border-radius: 50%;
}
.faq-still-help-t.svelte-7fpoih {
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.1;
}
.faq-still-help-s.svelte-7fpoih {
  font-size: 11px;
  font-weight: 600;
  opacity: 0.9;
  margin-top: 2px;
}
.faq-panel.svelte-7fpoih {
  padding: 34px 36px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 22px;
  box-shadow: 0 18px 50px #2d124817;
  animation: svelte-7fpoih-faqFadeIn 0.4s ease;
}
@keyframes svelte-7fpoih-faqFadeIn {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.faq-panel-head.svelte-7fpoih {
  margin-bottom: 16px;
}
.faq-panel-crumb.svelte-7fpoih {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.faq-panel-title.svelte-7fpoih {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--heading);
  margin: 0;
}
.faq-panel-lead.svelte-7fpoih {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0 0 22px;
}
.faq-panel-foot.svelte-7fpoih {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px dashed rgba(45, 18, 72, 0.14);
}
.faq-helpful-q.svelte-7fpoih {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}
.faq-helpful-actions.svelte-7fpoih {
  display: flex;
  gap: 8px;
}
.faq-helpful-btn.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid rgba(45, 18, 72, 0.12);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--heading);
  cursor: pointer;
  transition: all 0.25s ease;
}
.faq-helpful-btn.svelte-7fpoih:hover {
  border-color: var(--rose);
  color: var(--rose);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px #e91e8c1f;
}
.faq-highlights.svelte-7fpoih {
  margin: 22px 0 20px;
  padding: 18px 20px;
  background: linear-gradient(135deg, #e91e8c0d, #f59e0b0a);
  border: 1px dashed rgba(233, 30, 140, 0.22);
  border-radius: 16px;
}
.faq-highlights-head.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #c2185b;
  margin-bottom: 12px;
}
.faq-highlights-dot.svelte-7fpoih {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e91e8c;
  box-shadow: 0 0 0 3px #e91e8c38;
  animation: svelte-7fpoih-faqDot 1.8s ease-in-out infinite;
}
@keyframes svelte-7fpoih-faqDot {
  0%,
  to {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.faq-highlights-grid.svelte-7fpoih {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.faq-hl.svelte-7fpoih {
  --a1: #e91e8c;
  --a2: #c2185b;
  padding: 11px 13px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.12);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.faq-hl.svelte-7fpoih:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--a1) 40%, transparent);
  box-shadow: 0 10px 20px -10px color-mix(in srgb, var(--a1) 40%, transparent);
}
.faq-hl--0.svelte-7fpoih {
  --a1: #e91e8c;
  --a2: #c2185b;
}
.faq-hl--1.svelte-7fpoih {
  --a1: #2563eb;
  --a2: #1e40af;
}
.faq-hl--2.svelte-7fpoih {
  --a1: #f59e0b;
  --a2: #d97706;
}
.faq-hl--3.svelte-7fpoih {
  --a1: #10b981;
  --a2: #059669;
}
.faq-hl__v.svelte-7fpoih {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: transparent;
  background: linear-gradient(135deg, var(--a1), var(--a2));
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1.2;
}
.faq-hl__l.svelte-7fpoih {
  font-size: 10.5px;
  font-weight: 500;
  color: #9a7fb8;
  letter-spacing: 0.02em;
}
.faq-cta.svelte-7fpoih {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  margin-bottom: 22px;
  background: radial-gradient(
      700px 280px at 0% 0%,
      rgba(233, 30, 140, 0.12),
      transparent 60%
    ),
    radial-gradient(
      500px 220px at 100% 100%,
      rgba(37, 211, 102, 0.1),
      transparent 60%
    ),
    linear-gradient(135deg, #fff, #fff7fb 60%, #f0fdf4);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  box-shadow: 0 0 0 1px #e91e8c1a, 0 18px 40px -18px #e91e8c40,
    inset 0 1px #ffffffb3;
  overflow: hidden;
  flex-wrap: wrap;
}
.faq-cta-orb.svelte-7fpoih {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.6;
  pointer-events: none;
}
.faq-cta-orb-1.svelte-7fpoih {
  top: -30px;
  left: -20px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(233, 30, 140, 0.5), transparent 70%);
}
.faq-cta-orb-2.svelte-7fpoih {
  bottom: -40px;
  right: -30px;
  width: 160px;
  height: 160px;
  background: radial-gradient(
    circle,
    rgba(37, 211, 102, 0.35),
    transparent 70%
  );
}
.faq-cta-sparkle.svelte-7fpoih {
  position: absolute;
  font-size: 14px;
  color: var(--rose);
  opacity: 0.55;
  pointer-events: none;
  animation: svelte-7fpoih-ctaFloat 4s ease-in-out infinite;
}
.faq-cta-sparkle-1.svelte-7fpoih {
  top: 14px;
  right: 38%;
}
.faq-cta-sparkle-2.svelte-7fpoih {
  bottom: 14px;
  left: 52%;
  color: var(--gold);
  animation-delay: 1.5s;
}
@keyframes svelte-7fpoih-ctaFloat {
  0%,
  to {
    transform: translateY(0) rotate(0);
    opacity: 0.4;
  }
  50% {
    transform: translateY(-4px) rotate(12deg);
    opacity: 0.85;
  }
}
.faq-cta-icon.svelte-7fpoih {
  position: relative;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, #e91e8c, #c2185b 60%, #d97706);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 2px #ffffff38, 0 12px 30px -10px #e91e8c8c;
  z-index: 1;
}
.faq-cta-icon-halo.svelte-7fpoih {
  position: absolute;
  top: -6px;
  right: -6px;
  bottom: -6px;
  left: -6px;
  border-radius: 22px;
  background: conic-gradient(
    from 0deg,
    #e91e8c73,
    #f59e0b59,
    #25d3664d,
    #e91e8c73
  );
  opacity: 0;
  filter: blur(8px);
  transition: opacity 0.4s;
  z-index: -1;
  animation: svelte-7fpoih-ctaHaloSpin 6s linear infinite;
}
.faq-cta.svelte-7fpoih:hover .faq-cta-icon-halo:where(.svelte-7fpoih) {
  opacity: 1;
}
@keyframes svelte-7fpoih-ctaHaloSpin {
  to {
    transform: rotate(360deg);
  }
}
.faq-cta-pulse.svelte-7fpoih {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px #fff, 0 0 0 4px #10b98159;
  animation: svelte-7fpoih-ctaDot 1.6s ease-in-out infinite;
}
@keyframes svelte-7fpoih-ctaDot {
  0%,
  to {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.5;
  }
}
.faq-cta-text.svelte-7fpoih {
  flex: 1 1 340px;
  min-width: 0;
  z-index: 1;
}
.faq-cta-row.svelte-7fpoih {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.faq-cta-text.svelte-7fpoih strong:where(.svelte-7fpoih) {
  font-size: 15px;
  font-weight: 600;
  color: #1e0b38;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #1e0b38, #d97706);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.faq-cta-live.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 9px;
  border-radius: 999px;
  background: #10b9811f;
  color: #059669;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.faq-cta-live-dot.svelte-7fpoih {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 2px #10b98140;
  animation: svelte-7fpoih-ctaDot 1.6s ease-in-out infinite;
}
.faq-cta-sub.svelte-7fpoih {
  display: block;
  font-size: 12.5px;
  color: #6b5876;
  margin-top: 4px;
  line-height: 1.5;
}
.faq-cta-trust.svelte-7fpoih {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.faq-cta-pill.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: #fff;
  border: 1px solid rgba(45, 18, 72, 0.08);
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 600;
  color: #4a2870;
  letter-spacing: 0.02em;
}
.faq-cta-pill.svelte-7fpoih svg:where(.svelte-7fpoih) {
  color: var(--rose);
}
.faq-cta-actions.svelte-7fpoih {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  z-index: 1;
}
.faq-cta-btn.svelte-7fpoih {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s;
}
.faq-cta-btn-shine.svelte-7fpoih {
  position: absolute;
  top: 0;
  left: -75%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  transform: skew(-20deg);
  transition: left 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.faq-cta-arrow.svelte-7fpoih {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-cta-btn--wa.svelte-7fpoih {
  background: linear-gradient(135deg, #25d366, #0ea55a 55%, #128c7e);
  color: #fff;
  box-shadow: inset 0 1px #ffffff4d, 0 10px 22px -8px #25d36699;
}
.faq-cta-btn--wa.svelte-7fpoih:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 1px #ffffff59, 0 16px 30px -8px #25d366b3;
  color: #fff;
}
.faq-cta-btn--browse.svelte-7fpoih {
  background: linear-gradient(135deg, #e91e8c, #c2185b 55%, #d97706);
  color: #fff;
  box-shadow: inset 0 1px #ffffff47, 0 10px 22px -8px #e91e8c99;
}
.faq-cta-btn--browse.svelte-7fpoih:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 1px #ffffff59, 0 16px 30px -8px #e91e8cb3;
  color: #fff;
}
@media (max-width: 900px) {
  .faq-highlights-grid.svelte-7fpoih {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
  .faq-cta.svelte-7fpoih {
    padding: 20px;
    gap: 14px;
  }
  .faq-cta-icon.svelte-7fpoih {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }
  .faq-cta-text.svelte-7fpoih {
    flex-basis: 100%;
  }
  .faq-cta-actions.svelte-7fpoih {
    width: 100%;
  }
  .faq-cta-btn.svelte-7fpoih {
    flex: 1;
    justify-content: center;
  }
  .faq-cta-sparkle-1.svelte-7fpoih,
  .faq-cta-sparkle-2.svelte-7fpoih {
    display: none;
  }
}
.flow-strip.svelte-7fpoih {
  position: relative;
  margin-top: 32px;
  padding: 40px 36px;
  background: radial-gradient(
      900px 280px at 0% 0%,
      rgba(233, 30, 140, 0.08),
      transparent 60%
    ),
    radial-gradient(
      900px 280px at 100% 100%,
      rgba(245, 158, 11, 0.08),
      transparent 60%
    ),
    linear-gradient(180deg, #fff, #fffafd);
  border: 1px solid rgba(45, 18, 72, 0.06);
  border-radius: 26px;
  box-shadow: 0 0 0 1px #fffc inset, 0 18px 50px -20px #2d124824;
  overflow: hidden;
}
.flow-bg-orb.svelte-7fpoih {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}
.flow-bg-orb-1.svelte-7fpoih {
  top: -60px;
  left: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(233, 30, 140, 0.5), transparent 70%);
}
.flow-bg-orb-2.svelte-7fpoih {
  bottom: -80px;
  right: -50px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.4), transparent 70%);
}
.flow-head.svelte-7fpoih {
  position: relative;
  text-align: center;
  margin-bottom: 32px;
  z-index: 1;
}
.flow-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-dark);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.flow-kicker-line.svelte-7fpoih {
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.flow-kicker-dot.svelte-7fpoih {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px #f59e0b2e;
  animation: svelte-7fpoih-flowPulse 1.8s ease-in-out infinite;
}
@keyframes svelte-7fpoih-flowPulse {
  0%,
  to {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.55;
  }
}
.flow-title.svelte-7fpoih {
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
  margin: 0 0 8px;
  letter-spacing: -0.02em;
  line-height: 1.22;
  background: linear-gradient(135deg, #0f172a, #d97706 55%, #e91e8c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.flow-lead.svelte-7fpoih {
  font-size: 13.5px;
  color: var(--text-muted);
  margin: 0 auto;
  max-width: 580px;
  line-height: 1.6;
}
.flow-grid.svelte-7fpoih {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
  z-index: 1;
}
.flow-step.svelte-7fpoih {
  --a1: #e91e8c;
  --a2: #c2185b;
  position: relative;
  padding: 60px 20px 18px;
  background: #ffffffe0;
  border: 1px solid rgba(45, 18, 72, 0.06);
  border-radius: 20px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s,
    border-color 0.4s;
}
.flow-step.svelte-7fpoih:before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, var(--a1), var(--a2));
  opacity: 0;
  transition: opacity 0.4s;
}
.flow-step.svelte-7fpoih:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--a1) 28%, transparent);
  box-shadow: 0 24px 40px -18px color-mix(in srgb, var(--a1) 48%, transparent);
}
.flow-step.svelte-7fpoih:hover:before {
  opacity: 1;
}
.flow-step--rose.svelte-7fpoih {
  --a1: #e91e8c;
  --a2: #c2185b;
}
.flow-step--violet.svelte-7fpoih {
  --a1: #2563eb;
  --a2: #1e40af;
}
.flow-step--gold.svelte-7fpoih {
  --a1: #f59e0b;
  --a2: #d97706;
}
.flow-step--emerald.svelte-7fpoih {
  --a1: #10b981;
  --a2: #059669;
}
.flow-step--teal.svelte-7fpoih {
  --a1: #0ea5e9;
  --a2: #0284c7;
}
.flow-step--coral.svelte-7fpoih {
  --a1: #fb7185;
  --a2: #e11d48;
}
.flow-giant-num.svelte-7fpoih {
  position: absolute;
  top: -8px;
  right: 8px;
  font-size: 82px;
  font-weight: 800;
  letter-spacing: -0.04em;
  -webkit-text-stroke: 1.2px color-mix(in srgb, var(--a1) 35%, transparent);
  color: transparent;
  line-height: 1;
  pointer-events: none;
  opacity: 0.75;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s;
}
.flow-step.svelte-7fpoih:hover .flow-giant-num:where(.svelte-7fpoih) {
  transform: scale(1.06) rotate(-4deg);
  opacity: 1;
}
.flow-ring.svelte-7fpoih {
  position: absolute;
  top: 12px;
  left: 14px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1.5px dashed color-mix(in srgb, var(--a1) 40%, transparent);
  opacity: 0;
  transition: opacity 0.45s;
  pointer-events: none;
  animation: svelte-7fpoih-flowRing 14s linear infinite;
}
@keyframes svelte-7fpoih-flowRing {
  to {
    transform: rotate(360deg);
  }
}
.flow-step.svelte-7fpoih:hover .flow-ring:where(.svelte-7fpoih) {
  opacity: 1;
}
.flow-halo.svelte-7fpoih {
  position: absolute;
  top: -50%;
  left: -30%;
  width: 260px;
  height: 260px;
  background: radial-gradient(
    closest-side,
    color-mix(in srgb, var(--a1) 20%, transparent),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.flow-step.svelte-7fpoih:hover .flow-halo:where(.svelte-7fpoih) {
  opacity: 1;
}
.flow-connect.svelte-7fpoih {
  position: absolute;
  top: 40px;
  right: -18px;
  width: 18px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
  z-index: 2;
}
.flow-connect-line.svelte-7fpoih {
  position: absolute;
  left: 0;
  right: 20px;
  top: 50%;
  height: 1.5px;
  background: repeating-linear-gradient(
    90deg,
    color-mix(in srgb, var(--a1) 50%, transparent) 0 4px,
    transparent 4px 8px
  );
}
.flow-connect-arrow.svelte-7fpoih {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--a1), var(--a2));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px -2px color-mix(in srgb, var(--a1) 60%, transparent);
}
.flow-icon.svelte-7fpoih {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--a1), var(--a2));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 2px #fff3,
    0 10px 22px -8px color-mix(in srgb, var(--a1) 55%, transparent);
  margin-bottom: 14px;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.flow-step.svelte-7fpoih:hover .flow-icon:where(.svelte-7fpoih) {
  transform: translateY(-2px) rotate(-6deg);
}
.flow-icon-glow.svelte-7fpoih {
  position: absolute;
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
  border-radius: 50%;
  background: radial-gradient(
    closest-side,
    color-mix(in srgb, var(--a1) 35%, transparent),
    transparent 70%
  );
  filter: blur(10px);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: -1;
}
.flow-step.svelte-7fpoih:hover .flow-icon-glow:where(.svelte-7fpoih) {
  opacity: 1;
}
.flow-time.svelte-7fpoih {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--a1) 90%, #000);
  background: color-mix(in srgb, var(--a1) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--a1) 20%, transparent);
  padding: 3px 9px;
  border-radius: 999px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.flow-step-title.svelte-7fpoih {
  font-size: 15px;
  font-weight: 600;
  color: var(--heading);
  line-height: 1.3;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.flow-accent.svelte-7fpoih {
  display: block;
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--a1), var(--a2), transparent);
  margin: 8px 0 10px;
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.flow-step.svelte-7fpoih:hover .flow-accent:where(.svelte-7fpoih) {
  width: 52px;
}
.flow-desc.svelte-7fpoih {
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0 0 16px;
  position: relative;
  z-index: 1;
}
.flow-foot.svelte-7fpoih {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px dashed rgba(45, 18, 72, 0.1);
  position: relative;
  z-index: 1;
}
.flow-foot-tag.svelte-7fpoih {
  font-size: 10.5px;
  font-weight: 600;
  color: color-mix(in srgb, var(--a1) 85%, #000);
  letter-spacing: 0.04em;
}
.flow-foot-arrow.svelte-7fpoih {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--a1) 10%, transparent);
  color: color-mix(in srgb, var(--a1) 90%, #000);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.35s;
}
.flow-step.svelte-7fpoih:hover .flow-foot-arrow:where(.svelte-7fpoih) {
  transform: translate(3px);
  background: linear-gradient(135deg, var(--a1), var(--a2));
  color: #fff;
}
@media (max-width: 900px) {
  .flow-grid.svelte-7fpoih {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .flow-connect.svelte-7fpoih {
    display: none;
  }
  .flow-strip.svelte-7fpoih {
    padding: 34px 22px 32px;
  }
}
@media (max-width: 520px) {
  .flow-strip.svelte-7fpoih {
    padding: 26px 16px 24px;
    border-radius: 20px;
  }
  .flow-grid.svelte-7fpoih {
    grid-template-columns: 1fr;
  }
  .flow-step.svelte-7fpoih {
    padding: 48px 18px 16px;
  }
  .flow-giant-num.svelte-7fpoih {
    font-size: 64px;
  }
}
.glance-strip.svelte-7fpoih {
  position: relative;
  margin-top: 28px;
  padding: 40px 36px 42px;
  background: radial-gradient(
      700px 260px at 100% 0%,
      rgba(233, 30, 140, 0.07),
      transparent 60%
    ),
    radial-gradient(
      700px 260px at 0% 100%,
      rgba(245, 158, 11, 0.06),
      transparent 60%
    ),
    linear-gradient(180deg, #fff, #fffaf9);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 26px;
  box-shadow: 0 0 0 1px #fffc inset, 0 18px 50px -20px #2d124824;
  overflow: hidden;
}
.glance-bg-orb.svelte-7fpoih {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}
.glance-bg-orb-1.svelte-7fpoih {
  top: -60px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.55),
    transparent 70%
  );
}
.glance-bg-orb-2.svelte-7fpoih {
  bottom: -80px;
  left: -40px;
  width: 220px;
  height: 220px;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.45),
    transparent 70%
  );
}
.glance-head.svelte-7fpoih {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
  z-index: 1;
}
.glance-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--rose-dark);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.glance-kicker-line.svelte-7fpoih {
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose), transparent);
}
.glance-kicker-dot.svelte-7fpoih {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 3px #e91e8c33;
  animation: svelte-7fpoih-glanceDot 1.8s ease-in-out infinite;
}
@keyframes svelte-7fpoih-glanceDot {
  0%,
  to {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.55;
  }
}
.glance-title.svelte-7fpoih {
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
  margin: 0 0 8px;
  letter-spacing: -0.02em;
  line-height: 1.22;
  background: linear-gradient(135deg, #0f172a, #c2185b 55%, #e91e8c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.glance-lead.svelte-7fpoih {
  font-size: 13.5px;
  color: var(--text-muted);
  margin: 0 auto;
  max-width: 560px;
  line-height: 1.6;
}
.glance-grid.svelte-7fpoih {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  position: relative;
  z-index: 1;
}
.glance-card.svelte-7fpoih {
  --a1: #e91e8c;
  --a2: #c2185b;
  position: relative;
  padding: 24px 22px 22px;
  background: #ffffffeb;
  border: 1px solid rgba(45, 18, 72, 0.06);
  border-radius: 22px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s,
    border-color 0.4s;
}
.glance-card.svelte-7fpoih:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--a1) 30%, transparent);
  box-shadow: 0 24px 40px -18px color-mix(in srgb, var(--a1) 45%, transparent);
}
.glance-card--rose.svelte-7fpoih {
  --a1: #e91e8c;
  --a2: #c2185b;
}
.glance-card--violet.svelte-7fpoih {
  --a1: #2563eb;
  --a2: #1e40af;
}
.glance-card--teal.svelte-7fpoih {
  --a1: #0ea5e9;
  --a2: #0284c7;
}
.glance-card--gold.svelte-7fpoih {
  --a1: #f59e0b;
  --a2: #d97706;
}
.glance-card--emerald.svelte-7fpoih {
  --a1: #10b981;
  --a2: #059669;
}
.glance-card--coral.svelte-7fpoih {
  --a1: #fb7185;
  --a2: #e11d48;
}
.glance-accent.svelte-7fpoih {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 22px 22px 0 0;
  background: linear-gradient(
    90deg,
    var(--a1),
    var(--a2),
    color-mix(in srgb, var(--a1) 40%, #fff)
  );
}
.glance-shine.svelte-7fpoih {
  position: absolute;
  top: 0;
  left: -75%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  transform: skew(-20deg);
  pointer-events: none;
  transition: left 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.glance-card.svelte-7fpoih:hover .glance-shine:where(.svelte-7fpoih) {
  left: 130%;
}
.glance-blob.svelte-7fpoih {
  position: absolute;
  top: -30%;
  right: -20%;
  width: 220px;
  height: 220px;
  background: radial-gradient(
    closest-side,
    color-mix(in srgb, var(--a1) 20%, transparent),
    transparent 70%
  );
  opacity: 0.5;
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s;
}
.glance-card.svelte-7fpoih:hover .glance-blob:where(.svelte-7fpoih) {
  opacity: 0.8;
  transform: translate(-10px, 10px);
}
.glance-orb.svelte-7fpoih {
  position: relative;
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  z-index: 1;
}
.glance-orb-inner.svelte-7fpoih {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--a1), var(--a2));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 3px #fff3,
    0 14px 28px -10px color-mix(in srgb, var(--a1) 55%, transparent);
  z-index: 2;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.glance-card.svelte-7fpoih:hover .glance-orb-inner:where(.svelte-7fpoih) {
  transform: rotate(-10deg) scale(1.04);
}
.glance-orb-ring.svelte-7fpoih {
  position: absolute;
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
  border-radius: 50%;
  border: 1.5px dashed color-mix(in srgb, var(--a1) 45%, transparent);
  opacity: 0.7;
  animation: svelte-7fpoih-glanceRing 12s linear infinite;
  pointer-events: none;
}
@keyframes svelte-7fpoih-glanceRing {
  to {
    transform: rotate(360deg);
  }
}
.glance-orb-dot.svelte-7fpoih {
  position: absolute;
  bottom: -4px;
  right: -4px;
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  border-radius: 999px;
  background: #fff;
  border: 1.5px solid color-mix(in srgb, var(--a1) 40%, transparent);
  color: color-mix(in srgb, var(--a1) 90%, #000);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px -2px color-mix(in srgb, var(--a1) 35%, transparent);
  z-index: 3;
}
.glance-label.svelte-7fpoih {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--a1) 85%, #000);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.glance-value.svelte-7fpoih {
  font-size: 15.5px;
  line-height: 1.45;
  color: #0f172a;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  overflow-wrap: anywhere;
  position: relative;
  z-index: 1;
  background: linear-gradient(
    135deg,
    #0f172a,
    color-mix(in srgb, var(--a1) 70%, #0f172a)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.glance-foot.svelte-7fpoih {
  display: flex;
  align-items: center;
  padding-top: 14px;
  border-top: 1px dashed rgba(45, 18, 72, 0.1);
  position: relative;
  z-index: 1;
}
.glance-foot-pill.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: color-mix(in srgb, var(--a1) 8%, transparent);
  color: color-mix(in srgb, var(--a1) 90%, #000);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.glance-foot-pulse.svelte-7fpoih {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--a1);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--a1) 18%, transparent);
  animation: svelte-7fpoih-glanceDot 1.8s ease-in-out infinite;
}
@media (max-width: 900px) {
  .glance-strip.svelte-7fpoih {
    padding: 32px 22px 34px;
  }
  .glance-grid.svelte-7fpoih {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}
@media (max-width: 560px) {
  .glance-strip.svelte-7fpoih {
    padding: 26px 16px 28px;
    border-radius: 20px;
  }
  .glance-grid.svelte-7fpoih {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .glance-card.svelte-7fpoih {
    padding: 22px 20px 20px;
  }
  .glance-orb.svelte-7fpoih,
  .glance-orb-inner.svelte-7fpoih {
    width: 52px;
    height: 52px;
  }
  .glance-value.svelte-7fpoih {
    font-size: 14.5px;
  }
}
@media (max-width: 1024px) {
  .faq-body.svelte-7fpoih {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .faq-sidebar.svelte-7fpoih {
    position: static;
  }
  .faq-panel-title.svelte-7fpoih {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .faq-section.svelte-7fpoih {
    padding: 70px 0;
  }
  .faq-topbar.svelte-7fpoih {
    padding: 16px 18px;
    gap: 14px;
  }
  .faq-search.svelte-7fpoih {
    min-width: auto;
    width: 100%;
  }
  .faq-panel.svelte-7fpoih {
    padding: 26px 22px;
  }
  .faq-panel-title.svelte-7fpoih {
    font-size: 1.4rem;
  }
  .faq-panel-foot.svelte-7fpoih {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .faq-section.svelte-7fpoih {
    padding: 56px 0;
  }
  .faq-brand-title.svelte-7fpoih {
    font-size: 17px;
  }
  .faq-brand-sub.svelte-7fpoih {
    font-size: 11px;
  }
  .faq-panel.svelte-7fpoih {
    padding: 22px 18px;
    border-radius: 18px;
  }
  .faq-panel-title.svelte-7fpoih {
    font-size: 1.25rem;
  }
  .faq-panel-lead.svelte-7fpoih {
    font-size: 14px;
  }
  .faq-sidebar.svelte-7fpoih {
    padding: 18px 14px;
  }
  .faq-list-btn.svelte-7fpoih {
    padding: 10px 12px;
    font-size: 13px;
  }
  .faq-bg-orb.svelte-7fpoih {
    display: none;
  }
  .faq-intro-title.svelte-7fpoih {
    font-size: 1.35rem;
  }
}
.xtype-wrap.svelte-7fpoih {
  padding: 60px 0 72px;
  background: linear-gradient(180deg, #fff7fb, #fdf4ff);
}
.xtype-section.svelte-7fpoih {
  position: relative;
  padding: 46px 40px 48px;
  background: radial-gradient(
      900px 280px at 100% 0%,
      rgba(233, 30, 140, 0.07),
      transparent 60%
    ),
    radial-gradient(
      900px 280px at 0% 100%,
      rgba(245, 158, 11, 0.07),
      transparent 60%
    ),
    linear-gradient(180deg, #fff, #fffafd);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  box-shadow: 0 0 0 1px #fffc inset, 0 20px 55px -24px #2d12482e;
  overflow: hidden;
}
.xtype-bg-orb.svelte-7fpoih {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}
.xtype-bg-orb-1.svelte-7fpoih {
  top: -80px;
  right: -60px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(233, 30, 140, 0.5), transparent 70%);
}
.xtype-bg-orb-2.svelte-7fpoih {
  bottom: -80px;
  left: -60px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.4), transparent 70%);
}
.xtype-head.svelte-7fpoih {
  position: relative;
  text-align: center;
  margin-bottom: 36px;
  z-index: 1;
}
.xtype-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--rose-dark);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.xtype-kicker-line.svelte-7fpoih {
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose), transparent);
}
.xtype-kicker-gem.svelte-7fpoih {
  color: var(--rose);
  font-size: 8px;
  animation: svelte-7fpoih-xtypeGem 3s ease-in-out infinite;
}
@keyframes svelte-7fpoih-xtypeGem {
  0%,
  to {
    transform: rotate(0) scale(1);
  }
  50% {
    transform: rotate(45deg) scale(1.2);
  }
}
.xtype-title.svelte-7fpoih {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  background: linear-gradient(135deg, #0f172a, #d97706 55%, #e91e8c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.xtype-lead.svelte-7fpoih {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 auto;
  max-width: 600px;
  line-height: 1.65;
}
.xtype-grid.svelte-7fpoih {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
  z-index: 1;
  perspective: 1200px;
}
.xtype-gem.svelte-7fpoih:nth-child(3n + 2) {
  transform: translateY(32px);
}
.xtype-gem.svelte-7fpoih:nth-child(3n + 3) {
  transform: translateY(-8px);
}
.xtype-gem.svelte-7fpoih {
  --a1: #e91e8c;
  --a2: #c2185b;
  --a3: #f472b6;
  position: relative;
  border-radius: 22px;
  padding: 2px;
  isolation: isolate;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  transform-style: preserve-3d;
}
.xtype-gem.svelte-7fpoih:hover {
  transform: translateY(-10px) rotateX(3deg) rotateY(-3deg);
}
.xtype-gem.svelte-7fpoih:nth-child(3n + 2):hover {
  transform: translateY(22px) rotateX(3deg) rotateY(3deg);
}
.xtype-gem.svelte-7fpoih:nth-child(3n + 3):hover {
  transform: translateY(-18px) rotateX(3deg) rotateY(-3deg);
}
.xtype-gem--rose.svelte-7fpoih {
  --a1: #e91e8c;
  --a2: #c2185b;
  --a3: #f472b6;
}
.xtype-gem--violet.svelte-7fpoih {
  --a1: #2563eb;
  --a2: #1e40af;
  --a3: #93c5fd;
}
.xtype-gem--teal.svelte-7fpoih {
  --a1: #0ea5e9;
  --a2: #0284c7;
  --a3: #67e8f9;
}
.xtype-gem--gold.svelte-7fpoih {
  --a1: #f59e0b;
  --a2: #d97706;
  --a3: #fcd34d;
}
.xtype-gem--emerald.svelte-7fpoih {
  --a1: #10b981;
  --a2: #059669;
  --a3: #6ee7b7;
}
.xtype-gem--coral.svelte-7fpoih {
  --a1: #fb7185;
  --a2: #e11d48;
  --a3: #fda4af;
}
.xtype-conic.svelte-7fpoih {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 22px;
  padding: 1.5px;
  background: conic-gradient(
    from var(--angle, 0deg),
    var(--a1),
    var(--a3),
    #ffffff,
    var(--a2),
    var(--a1)
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.85;
  animation: svelte-7fpoih-xtypeSpin 12s linear infinite;
}
@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@keyframes svelte-7fpoih-xtypeSpin {
  to {
    --angle: 360deg;
    transform: rotate(0);
  }
}
@supports not (background: conic-gradient(from var(--angle), red, blue)) {
  .xtype-conic.svelte-7fpoih {
    animation: svelte-7fpoih-xtypeSpinFallback 12s linear infinite;
  }
  @keyframes svelte-7fpoih-xtypeSpinFallback {
    to {
      filter: hue-rotate(360deg);
    }
  }
}
.xtype-inner.svelte-7fpoih {
  position: relative;
  background: linear-gradient(135deg, #fffffff2, #ffffffd1);
  border-radius: 20px;
  padding: 24px 24px 20px;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  z-index: 2;
  overflow: hidden;
  box-shadow: inset 0 1px #ffffffe6,
    inset 0 -1px color-mix(in srgb, var(--a1) 12%, transparent);
  min-height: 100%;
}
.xtype-facet.svelte-7fpoih {
  position: absolute;
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.5s;
  mix-blend-mode: screen;
}
.xtype-facet-1.svelte-7fpoih {
  top: 0;
  left: 15%;
  width: 0;
  height: 0;
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
  border-top: 140px solid color-mix(in srgb, var(--a3) 14%, transparent);
  transform: rotate(12deg);
}
.xtype-facet-2.svelte-7fpoih {
  bottom: 0;
  right: 10%;
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 120px solid color-mix(in srgb, var(--a1) 12%, transparent);
  transform: rotate(-18deg);
}
.xtype-facet-3.svelte-7fpoih {
  top: 30%;
  right: 0;
  width: 120px;
  height: 120px;
  background: linear-gradient(
    45deg,
    transparent 40%,
    color-mix(in srgb, var(--a2) 10%, transparent) 50%,
    transparent 60%
  );
  transform: rotate(20deg);
}
.xtype-gem.svelte-7fpoih:hover .xtype-facet:where(.svelte-7fpoih) {
  opacity: 1;
}
.xtype-prism.svelte-7fpoih {
  position: absolute;
  top: 0;
  left: -60%;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent 20%,
    rgba(255, 255, 255, 0.55) 45%,
    color-mix(in srgb, var(--a3) 40%, transparent) 50%,
    rgba(255, 255, 255, 0.55) 55%,
    transparent 80%
  );
  transform: skew(-18deg);
  pointer-events: none;
  z-index: 4;
  border-radius: 22px;
  transition: left 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.xtype-gem.svelte-7fpoih:hover .xtype-prism:where(.svelte-7fpoih) {
  left: 115%;
}
.xtype-diamond.svelte-7fpoih {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 14px;
  color: var(--a1);
  opacity: 0.55;
  z-index: 5;
  animation: svelte-7fpoih-xtypeFloat 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes svelte-7fpoih-xtypeFloat {
  0%,
  to {
    transform: translateY(0) rotate(0);
    opacity: 0.4;
  }
  50% {
    transform: translateY(-5px) rotate(180deg);
    opacity: 0.9;
  }
}
.xtype-spark.svelte-7fpoih {
  position: absolute;
  font-size: 9px;
  color: var(--a3);
  opacity: 0;
  pointer-events: none;
  z-index: 5;
  transition: opacity 0.4s;
}
.xtype-spark-1.svelte-7fpoih {
  top: 38%;
  left: 18px;
  animation: svelte-7fpoih-xtypeSpark 3.5s ease-in-out infinite;
}
.xtype-spark-2.svelte-7fpoih {
  bottom: 30%;
  right: 22px;
  animation: svelte-7fpoih-xtypeSpark 3.5s 1.2s ease-in-out infinite;
}
.xtype-spark-3.svelte-7fpoih {
  top: 20%;
  right: 34%;
  animation: svelte-7fpoih-xtypeSpark 3.5s 2.2s ease-in-out infinite;
}
.xtype-gem.svelte-7fpoih:hover .xtype-spark:where(.svelte-7fpoih) {
  opacity: 1;
}
@keyframes svelte-7fpoih-xtypeSpark {
  0%,
  to {
    transform: translateY(0) scale(0.6);
    opacity: 0;
  }
  50% {
    transform: translateY(-8px) scale(1.2);
    opacity: 1;
  }
}
.xtype-top.svelte-7fpoih {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.xtype-hex.svelte-7fpoih {
  position: relative;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.xtype-hex-shape.svelte-7fpoih {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  fill: url(#none);
  stroke: none;
}
.xtype-hex.svelte-7fpoih:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(135deg, var(--a1), var(--a2));
  clip-path: polygon(50% 4%, 94% 26%, 94% 74%, 50% 96%, 6% 74%, 6% 26%);
  box-shadow: 0 10px 22px -8px color-mix(in srgb, var(--a1) 55%, transparent);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.xtype-hex.svelte-7fpoih:after {
  content: "";
  position: absolute;
  top: 8%;
  left: 18%;
  width: 30%;
  height: 20%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45), transparent);
  clip-path: polygon(0 0, 100% 0, 80% 100%, 20% 100%);
  pointer-events: none;
}
.xtype-gem.svelte-7fpoih:hover .xtype-hex:where(.svelte-7fpoih):before {
  transform: rotate(60deg);
}
.xtype-hex-halo.svelte-7fpoih {
  position: absolute;
  top: -10px;
  right: -10px;
  bottom: -10px;
  left: -10px;
  background: radial-gradient(
    closest-side,
    color-mix(in srgb, var(--a1) 40%, transparent),
    transparent 70%
  );
  filter: blur(10px);
  opacity: 0;
  transition: opacity 0.45s;
  z-index: -1;
}
.xtype-gem.svelte-7fpoih:hover .xtype-hex-halo:where(.svelte-7fpoih) {
  opacity: 1;
}
.xtype-hex-ic.svelte-7fpoih {
  position: relative;
  color: #fff;
  display: flex;
  z-index: 2;
}
.xtype-tier.svelte-7fpoih {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px 5px 10px;
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--a1) 25%, transparent);
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--a1) 90%, #000);
  box-shadow: 0 4px 12px -4px color-mix(in srgb, var(--a1) 30%, transparent);
}
.xtype-tier-pulse.svelte-7fpoih {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--a1), var(--a2));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--a1) 15%, transparent);
  animation: svelte-7fpoih-xtypePulse 1.8s ease-in-out infinite;
}
@keyframes svelte-7fpoih-xtypePulse {
  0%,
  to {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.35);
    opacity: 0.5;
  }
}
.xtype-name.svelte-7fpoih {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.015em;
  background: linear-gradient(
    135deg,
    #0f172a,
    color-mix(in srgb, var(--a1) 75%, #0f172a)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 2;
}
.xtype-accent.svelte-7fpoih {
  display: block;
  width: 32px;
  height: 2px;
  margin: 10px 0 12px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--a1), var(--a3), transparent);
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.xtype-gem.svelte-7fpoih:hover .xtype-accent:where(.svelte-7fpoih) {
  width: 62px;
}
.xtype-desc.svelte-7fpoih {
  font-size: 13.5px;
  line-height: 1.68;
  color: var(--text-muted);
  margin: 0 0 18px;
  position: relative;
  z-index: 2;
}
.xtype-foot.svelte-7fpoih {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px dashed rgba(45, 18, 72, 0.1);
  position: relative;
  z-index: 2;
}
.xtype-foot-tag.svelte-7fpoih {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: color-mix(in srgb, var(--a1) 85%, #000);
}
.xtype-foot-btn.svelte-7fpoih {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--a1) 10%, transparent);
  color: color-mix(in srgb, var(--a1) 90%, #000);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s, color 0.4s,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s;
}
.xtype-gem.svelte-7fpoih:hover .xtype-foot-btn:where(.svelte-7fpoih) {
  background: linear-gradient(135deg, var(--a1), var(--a2));
  color: #fff;
  transform: translate(4px) rotate(-10deg);
  box-shadow: 0 8px 18px -6px color-mix(in srgb, var(--a1) 55%, transparent);
}
.xtype-closing.svelte-7fpoih {
  position: relative;
  margin: 48px auto 0;
  max-width: 900px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 22px;
  background: radial-gradient(
      700px 240px at 0% 100%,
      rgba(233, 30, 140, 0.1),
      transparent 60%
    ),
    radial-gradient(
      700px 240px at 100% 0%,
      rgba(245, 158, 11, 0.1),
      transparent 60%
    ),
    linear-gradient(135deg, #fff, #fffafd 60%, #fef6fb);
  border: 1px solid rgba(233, 30, 140, 0.14);
  border-radius: 24px;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 0 0 1px #ffffffd9 inset, 0 24px 60px -20px #f59e0b47;
  flex-wrap: wrap;
}
.xtype-closing-orb.svelte-7fpoih {
  position: absolute;
  border-radius: 50%;
  filter: blur(55px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
.xtype-closing-orb-1.svelte-7fpoih {
  top: -60px;
  left: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.55),
    transparent 70%
  );
}
.xtype-closing-orb-2.svelte-7fpoih {
  bottom: -60px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.5), transparent 70%);
}
.xtype-closing-shine.svelte-7fpoih {
  position: absolute;
  top: 0;
  left: -60%;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent 20%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 80%
  );
  transform: skew(-18deg);
  pointer-events: none;
  z-index: 1;
  transition: left 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.xtype-closing.svelte-7fpoih:hover .xtype-closing-shine:where(.svelte-7fpoih) {
  left: 120%;
}
.xtype-closing-spark.svelte-7fpoih {
  position: absolute;
  font-size: 13px;
  color: var(--rose);
  opacity: 0.6;
  pointer-events: none;
  z-index: 2;
  animation: svelte-7fpoih-xtypeFloat 4s ease-in-out infinite;
}
.xtype-closing-spark-1.svelte-7fpoih {
  top: 12px;
  right: 28%;
}
.xtype-closing-spark-2.svelte-7fpoih {
  bottom: 14px;
  left: 30%;
  color: var(--gold);
  animation-delay: 1s;
}
.xtype-closing-spark-3.svelte-7fpoih {
  top: 50%;
  right: 18px;
  color: var(--gold);
  animation-delay: 2s;
  font-size: 11px;
}
.xtype-closing-jewel.svelte-7fpoih {
  position: relative;
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  z-index: 2;
}
.xtype-closing-jewel-face.svelte-7fpoih {
  position: relative;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #e91e8c, #c2185b, #d97706);
  clip-path: polygon(50% 4%, 94% 28%, 94% 72%, 50% 96%, 6% 72%, 6% 28%);
  box-shadow: 0 14px 30px -8px #e91e8c8c;
  z-index: 2;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.xtype-closing-jewel-face.svelte-7fpoih:before {
  content: "";
  position: absolute;
  top: 8%;
  left: 18%;
  width: 30%;
  height: 22%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), transparent);
  clip-path: polygon(0 0, 100% 0, 82% 100%, 18% 100%);
  pointer-events: none;
}
.xtype-closing.svelte-7fpoih:hover
  .xtype-closing-jewel-face:where(.svelte-7fpoih) {
  transform: rotate(60deg) scale(1.05);
}
.xtype-closing-jewel-ring.svelte-7fpoih {
  position: absolute;
  top: -10px;
  right: -10px;
  bottom: -10px;
  left: -10px;
  border-radius: 50%;
  border: 1.5px dashed rgba(233, 30, 140, 0.45);
  animation: svelte-7fpoih-xtypeClosingRing 14s linear infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes svelte-7fpoih-xtypeClosingRing {
  to {
    transform: rotate(360deg);
  }
}
.xtype-closing-jewel-glow.svelte-7fpoih {
  position: absolute;
  top: -14px;
  right: -14px;
  bottom: -14px;
  left: -14px;
  border-radius: 50%;
  background: radial-gradient(
    closest-side,
    rgba(233, 30, 140, 0.35),
    transparent 70%
  );
  filter: blur(12px);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
  z-index: 0;
}
.xtype-closing.svelte-7fpoih:hover
  .xtype-closing-jewel-glow:where(.svelte-7fpoih) {
  opacity: 1;
}
.xtype-closing-text.svelte-7fpoih {
  flex: 1 1 320px;
  min-width: 0;
  z-index: 2;
}
.xtype-closing-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 6px;
  padding: 3px 10px;
  background: #f59e0b1a;
  color: var(--gold-dark);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.xtype-closing-kicker-dot.svelte-7fpoih {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px #f59e0b33;
  animation: svelte-7fpoih-xtypePulse 1.8s ease-in-out infinite;
}
.xtype-closing.svelte-7fpoih p:where(.svelte-7fpoih) {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
  font-weight: 500;
  letter-spacing: -0.005em;
  background: linear-gradient(135deg, #0f172a, #d97706 55%, #e91e8c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.xtype-closing-cta.svelte-7fpoih {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #fff;
  background: linear-gradient(135deg, #25d366, #0ea55a 55%, #128c7e);
  box-shadow: inset 0 1px #ffffff4d, 0 12px 28px -10px #25d36699;
  overflow: hidden;
  flex: 0 0 auto;
  z-index: 2;
  transition: transform 0.3s, box-shadow 0.3s;
}
.xtype-closing-cta.svelte-7fpoih:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: inset 0 1px #ffffff59, 0 18px 36px -10px #25d366b8;
}
.xtype-closing-cta-shine.svelte-7fpoih {
  position: absolute;
  top: 0;
  left: -75%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  transform: skew(-20deg);
  pointer-events: none;
  transition: left 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.xtype-closing-cta.svelte-7fpoih:hover
  .xtype-closing-cta-shine:where(.svelte-7fpoih) {
  left: 120%;
}
.xtype-closing-cta-arrow.svelte-7fpoih {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.xtype-closing-cta.svelte-7fpoih:hover
  .xtype-closing-cta-arrow:where(.svelte-7fpoih) {
  transform: translate(4px);
}
@media (max-width: 1100px) {
  .xtype-grid.svelte-7fpoih {
    grid-template-columns: repeat(2, 1fr);
  }
  .xtype-gem.svelte-7fpoih:nth-child(3n + 2),
  .xtype-gem.svelte-7fpoih:nth-child(3n + 3) {
    transform: none;
  }
  .xtype-gem.svelte-7fpoih:nth-child(2n) {
    transform: translateY(28px);
  }
  .xtype-gem.svelte-7fpoih:nth-child(3n + 2):hover,
  .xtype-gem.svelte-7fpoih:nth-child(3n + 3):hover {
    transform: translateY(-10px) rotateX(3deg) rotateY(-3deg);
  }
  .xtype-gem.svelte-7fpoih:nth-child(2n):hover {
    transform: translateY(20px) rotateX(3deg) rotateY(3deg);
  }
}
@media (max-width: 780px) {
  .xtype-wrap.svelte-7fpoih {
    padding: 42px 0 52px;
  }
  .xtype-section.svelte-7fpoih {
    padding: 34px 22px 36px;
  }
  .xtype-grid.svelte-7fpoih {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .xtype-gem.svelte-7fpoih,
  .xtype-gem.svelte-7fpoih:nth-child(2n),
  .xtype-gem.svelte-7fpoih:nth-child(3n + 2),
  .xtype-gem.svelte-7fpoih:nth-child(3n + 3) {
    transform: none;
  }
  .xtype-gem.svelte-7fpoih:hover,
  .xtype-gem.svelte-7fpoih:nth-child(2n):hover,
  .xtype-gem.svelte-7fpoih:nth-child(3n + 2):hover,
  .xtype-gem.svelte-7fpoih:nth-child(3n + 3):hover {
    transform: translateY(-10px) rotateX(3deg) rotateY(-3deg);
  }
  .xtype-closing.svelte-7fpoih {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    gap: 16px;
    margin-top: 28px;
  }
  .xtype-closing-text.svelte-7fpoih {
    text-align: center;
  }
  .xtype-closing-spark-2.svelte-7fpoih {
    display: none;
  }
}
@media (max-width: 480px) {
  .xtype-section.svelte-7fpoih {
    padding: 28px 16px 30px;
    border-radius: 22px;
  }
  .xtype-inner.svelte-7fpoih {
    padding: 20px 20px 18px;
  }
  .xtype-hex.svelte-7fpoih {
    width: 46px;
    height: 46px;
  }
}
.area-seo-cta.svelte-7fpoih {
  text-align: center;
  padding: 44px 32px 40px;
  background: linear-gradient(135deg, #fff0f7, #f5f0ff 60%, #ecfeff);
  border-radius: 24px;
  border: 1px solid rgba(233, 30, 140, 0.1);
}
.area-seo-cta-p.svelte-7fpoih {
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
  margin: 0 auto 10px;
  max-width: 640px;
}
.area-seo-cta-btn.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 28px #25d36652;
  transition: transform 0.25s, box-shadow 0.25s;
}
.area-seo-cta-btn.svelte-7fpoih:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px #25d3666b;
  color: #fff;
}
@media (max-width: 720px) {
  .area-seo.svelte-7fpoih {
    padding: 48px 0 56px;
  }
  .area-seo-wrap.svelte-7fpoih {
    gap: 32px;
  }
  .area-seo-block.svelte-7fpoih {
    padding: 24px 20px 28px;
    border-radius: 18px;
  }
  .area-seo-types.svelte-7fpoih {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .area-seo-cta.svelte-7fpoih {
    padding: 32px 20px 30px;
    border-radius: 20px;
  }
  .area-seo-lead.svelte-7fpoih {
    font-size: 15.5px;
  }
}
.kwh-card--rose.svelte-7fpoih,
.kr-card--rose.svelte-7fpoih,
.kzi-card--rose.svelte-7fpoih,
.kho-card--rose.svelte-7fpoih,
.ksp-panel--rose.svelte-7fpoih,
.kbf-step--rose.svelte-7fpoih,
.kna-card--rose.svelte-7fpoih {
  --kt1: #e91e8c;
  --kt2: #c2185b;
  --ktBg: rgba(233, 30, 140, 0.06);
  --ktBd: rgba(233, 30, 140, 0.22);
}
.kwh-card--gold.svelte-7fpoih,
.kr-card--gold.svelte-7fpoih,
.kzi-card--gold.svelte-7fpoih,
.kho-card--gold.svelte-7fpoih,
.ksp-panel--gold.svelte-7fpoih,
.kbf-step--gold.svelte-7fpoih,
.kna-card--gold.svelte-7fpoih {
  --kt1: #d97706;
  --kt2: #b45309;
  --ktBg: rgba(217, 119, 6, 0.06);
  --ktBd: rgba(217, 119, 6, 0.22);
}
.kwh-card--teal.svelte-7fpoih,
.kr-card--teal.svelte-7fpoih,
.kzi-card--teal.svelte-7fpoih,
.kho-card--teal.svelte-7fpoih,
.ksp-panel--teal.svelte-7fpoih,
.kbf-step--teal.svelte-7fpoih,
.kna-card--teal.svelte-7fpoih {
  --kt1: #0d9488;
  --kt2: #0f766e;
  --ktBg: rgba(13, 148, 136, 0.06);
  --ktBd: rgba(13, 148, 136, 0.22);
}
.kwh-card--emerald.svelte-7fpoih,
.kr-card--emerald.svelte-7fpoih,
.kzi-card--emerald.svelte-7fpoih,
.kho-card--emerald.svelte-7fpoih,
.ksp-panel--emerald.svelte-7fpoih,
.kbf-step--emerald.svelte-7fpoih,
.kna-card--emerald.svelte-7fpoih {
  --kt1: #059669;
  --kt2: #047857;
  --ktBg: rgba(5, 150, 105, 0.06);
  --ktBd: rgba(5, 150, 105, 0.22);
}
.kwh-card--coral.svelte-7fpoih,
.kr-card--coral.svelte-7fpoih,
.kzi-card--coral.svelte-7fpoih,
.kho-card--coral.svelte-7fpoih,
.ksp-panel--coral.svelte-7fpoih,
.kbf-step--coral.svelte-7fpoih,
.kna-card--coral.svelte-7fpoih {
  --kt1: #f43f5e;
  --kt2: #e11d48;
  --ktBg: rgba(244, 63, 94, 0.06);
  --ktBd: rgba(244, 63, 94, 0.22);
}
.kwh-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 96px 0 104px;
  background: radial-gradient(
      720px 460px at 12% 8%,
      rgba(233, 30, 140, 0.05) 0%,
      transparent 60%
    ),
    radial-gradient(
      720px 460px at 88% 92%,
      rgba(217, 119, 6, 0.05) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #fffafc, #fff 55%, #fffdf5);
}
.kwh-orb.svelte-7fpoih {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: 0;
}
.kwh-orb-1.svelte-7fpoih {
  top: -120px;
  left: -120px;
  background: #e91e8c1f;
}
.kwh-orb-2.svelte-7fpoih {
  bottom: -120px;
  right: -120px;
  background: #d977061f;
}
.kwh-section.svelte-7fpoih .grid-container:where(.svelte-7fpoih) {
  position: relative;
  z-index: 1;
}
.kwh-head.svelte-7fpoih {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 56px;
}
.kwh-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: #e91e8c;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.kwh-kicker-line.svelte-7fpoih {
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e91e8c, transparent);
}
.kwh-title.svelte-7fpoih {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.2;
  background: linear-gradient(135deg, #1e293b, #d97706 45%, #e91e8c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 14px;
}
.kwh-lead.svelte-7fpoih {
  font-size: 16px;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}
.kwh-grid.svelte-7fpoih {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}
.kwh-card.svelte-7fpoih {
  position: relative;
  padding: 30px 26px 28px;
  background: linear-gradient(180deg, #fff 0%, var(--ktBg) 100%);
  border: 1px solid var(--ktBd);
  border-radius: 18px;
  box-shadow: 0 8px 22px #0f172a0d;
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}
.kwh-card.svelte-7fpoih:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px #0f172a17;
}
.kwh-card-num.svelte-7fpoih {
  display: inline-block;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--kt1), var(--kt2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}
.kwh-card-label.svelte-7fpoih {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--kt1);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.kwh-card-title.svelte-7fpoih {
  font-size: 17px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.35;
  margin: 0 0 10px;
}
.kwh-card-desc.svelte-7fpoih {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}
.kwh-card-bar.svelte-7fpoih {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--kt1), var(--kt2));
}
.kwh-punchwrap.svelte-7fpoih {
  position: relative;
  max-width: 720px;
  margin: 54px auto 0;
  padding: 28px 32px 30px 70px;
  background: linear-gradient(135deg, #e91e8c0a, #d977060a);
  border: 1px solid rgba(233, 30, 140, 0.15);
  border-radius: 20px;
}
.kwh-punch-quote.svelte-7fpoih {
  position: absolute;
  left: 22px;
  top: 6px;
  font-size: 64px;
  line-height: 1;
  font-family: Georgia, serif;
  color: #e91e8c;
  opacity: 0.5;
}
.kwh-punch.svelte-7fpoih {
  font-size: 17px;
  font-style: italic;
  color: #334155;
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 900px) {
  .kwh-grid.svelte-7fpoih {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .kwh-section.svelte-7fpoih {
    padding: 70px 0 78px;
  }
  .kwh-grid.svelte-7fpoih {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .kwh-head.svelte-7fpoih {
    margin-bottom: 38px;
  }
  .kwh-punchwrap.svelte-7fpoih {
    padding: 24px 22px 26px 56px;
  }
  .kwh-punch-quote.svelte-7fpoih {
    font-size: 50px;
    left: 16px;
  }
}
.kr-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 96px 0 104px;
  background: linear-gradient(180deg, #fffdf5, #fff, #fffafc);
}
.kr-orb.svelte-7fpoih {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.kr-orb-1.svelte-7fpoih {
  top: 20%;
  right: -180px;
  background: #d977061f;
}
.kr-section.svelte-7fpoih .grid-container:where(.svelte-7fpoih) {
  position: relative;
  z-index: 1;
}
.kr-head.svelte-7fpoih {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 52px;
}
.kr-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e91e8c14, #d9770614);
  border: 1px solid rgba(233, 30, 140, 0.2);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #c2185b;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.kr-kicker-dot.svelte-7fpoih {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e91e8c;
  box-shadow: 0 0 0 3px #e91e8c33;
  animation: svelte-7fpoih-kr-ping 2.2s infinite;
}
@keyframes svelte-7fpoih-kr-ping {
  0%,
  to {
    box-shadow: 0 0 0 3px #e91e8c33;
  }
  50% {
    box-shadow: 0 0 0 7px #e91e8c14;
  }
}
.kr-title.svelte-7fpoih {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.2;
  background: linear-gradient(135deg, #1e293b, #d97706, #e91e8c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 14px;
}
.kr-lead.svelte-7fpoih {
  font-size: 16px;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}
.kr-grid.svelte-7fpoih {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.kr-card.svelte-7fpoih {
  position: relative;
  padding: 28px 24px 26px;
  background: #fff;
  border: 1px solid var(--ktBd);
  border-radius: 20px;
  box-shadow: 0 10px 28px #0f172a0f;
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}
.kr-card.svelte-7fpoih:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px #0f172a1a;
}
.kr-card-ring.svelte-7fpoih {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  border-radius: 20px;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    transparent 40%,
    var(--kt1) 50%,
    transparent 60%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
  opacity: 0;
  transition: opacity 0.4s;
}
.kr-card.svelte-7fpoih:hover .kr-card-ring:where(.svelte-7fpoih) {
  opacity: 0.6;
}
.kr-card-top.svelte-7fpoih {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.kr-card-mono.svelte-7fpoih {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--kt1), var(--kt2));
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px var(--ktBd);
}
.kr-card-num.svelte-7fpoih {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #94a3b8;
  text-transform: uppercase;
}
.kr-card-tag.svelte-7fpoih {
  display: inline-block;
  padding: 4px 10px;
  margin-bottom: 10px;
  background: var(--ktBg);
  border: 1px solid var(--ktBd);
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--kt1);
  text-transform: uppercase;
}
.kr-card-name.svelte-7fpoih {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  color: #1e293b;
  margin: 0 0 10px;
}
.kr-card-desc.svelte-7fpoih {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  margin: 0 0 18px;
}
.kr-card-meta.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px dashed var(--ktBd);
}
.kr-meta.svelte-7fpoih {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 12.5px;
}
.kr-meta-label.svelte-7fpoih {
  color: #94a3b8;
  letter-spacing: 0.06em;
}
.kr-meta-value.svelte-7fpoih {
  color: #334155;
  font-weight: 600;
  text-align: right;
}
@media (max-width: 1000px) {
  .kr-grid.svelte-7fpoih {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .kr-section.svelte-7fpoih {
    padding: 70px 0 78px;
  }
  .kr-grid.svelte-7fpoih {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .kr-card.svelte-7fpoih {
    padding: 22px 20px;
  }
}
.kzi-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 96px 0 104px;
  background: linear-gradient(180deg, #fffafc, #fff, #f0fdfa);
}
.kzi-head.svelte-7fpoih {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 40px;
}
.kzi-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: #0d9488;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.kzi-kicker-ping.svelte-7fpoih {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0d9488;
  box-shadow: 0 0 0 4px #0d948833;
  animation: svelte-7fpoih-kr-ping 2.2s infinite;
}
.kzi-title.svelte-7fpoih {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.22;
  background: linear-gradient(135deg, #1e293b, #0d9488 55%, #e91e8c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 14px;
}
.kzi-lead.svelte-7fpoih {
  font-size: 16px;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}
.kzi-rail.svelte-7fpoih {
  position: relative;
  max-width: 960px;
  margin: 0 auto 28px;
  height: 28px;
}
.kzi-rail-line.svelte-7fpoih {
  position: absolute;
  top: 50%;
  left: 8%;
  right: 8%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    #e91e8c 0 8px,
    transparent 8px 16px
  );
  opacity: 0.35;
  transform: translateY(-50%);
}
.kzi-rail-dot.svelte-7fpoih {
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 3px solid #fff;
}
.kzi-rail-dot-1.svelte-7fpoih {
  left: 18%;
  background: #e91e8c;
  box-shadow: 0 0 0 3px #e91e8c33;
}
.kzi-rail-dot-2.svelte-7fpoih {
  left: 50%;
  background: #d97706;
  box-shadow: 0 0 0 3px #d9770633;
}
.kzi-rail-dot-3.svelte-7fpoih {
  left: 82%;
  background: #0d9488;
  box-shadow: 0 0 0 3px #0d948833;
}
.kzi-grid.svelte-7fpoih {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}
.kzi-card.svelte-7fpoih {
  position: relative;
  padding: 26px 24px 24px;
  background: #fff;
  border: 1px solid var(--ktBd);
  border-radius: 20px;
  box-shadow: 0 8px 22px #0f172a0d;
  transition: transform 0.3s, box-shadow 0.3s;
}
.kzi-card.svelte-7fpoih:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px #0f172a17;
}
.kzi-card-head.svelte-7fpoih {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.kzi-card-code.svelte-7fpoih {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--kt1), var(--kt2));
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.kzi-card-heading.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.kzi-card-name.svelte-7fpoih {
  font-size: 17px;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  line-height: 1.2;
}
.kzi-card-hint.svelte-7fpoih {
  font-size: 12.5px;
  color: #64748b;
  letter-spacing: 0.02em;
}
.kzi-leader.svelte-7fpoih {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  margin-bottom: 14px;
  background: var(--ktBg);
  border-radius: 12px;
}
.kzi-leader-label.svelte-7fpoih {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #64748b;
  text-transform: uppercase;
}
.kzi-leader-dots.svelte-7fpoih {
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    currentColor 0 3px,
    transparent 3px 7px
  );
  color: var(--kt1);
  opacity: 0.4;
}
.kzi-leader-value.svelte-7fpoih {
  font-size: 15px;
  font-weight: 700;
  color: var(--kt1);
  letter-spacing: 0.02em;
}
.kzi-card-note.svelte-7fpoih {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  margin: 0 0 14px;
}
.kzi-tags.svelte-7fpoih {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.kzi-tag.svelte-7fpoih {
  padding: 4px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--ktBd);
  font-size: 11px;
  font-weight: 600;
  color: var(--kt1);
  letter-spacing: 0.02em;
}
@media (max-width: 980px) {
  .kzi-grid.svelte-7fpoih {
    grid-template-columns: repeat(2, 1fr);
  }
  .kzi-rail.svelte-7fpoih {
    display: none;
  }
}
@media (max-width: 620px) {
  .kzi-section.svelte-7fpoih {
    padding: 70px 0 78px;
  }
  .kzi-grid.svelte-7fpoih {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.kho-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 96px 0 104px;
  background: radial-gradient(
      700px 460px at 85% 20%,
      rgba(217, 119, 6, 0.06) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #f0fdfa, #fff, #fffdf5);
}
.kho-orb.svelte-7fpoih {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: 0;
}
.kho-orb-1.svelte-7fpoih {
  top: -80px;
  left: 20%;
  background: #0d94881a;
}
.kho-section.svelte-7fpoih .grid-container:where(.svelte-7fpoih) {
  position: relative;
  z-index: 1;
}
.kho-head.svelte-7fpoih {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 44px;
}
.kho-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(217, 119, 6, 0.25);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #d97706;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.kho-title.svelte-7fpoih {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.22;
  background: linear-gradient(135deg, #1e293b, #d97706 60%, #e91e8c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 14px;
}
.kho-lead.svelte-7fpoih {
  font-size: 16px;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}
.kho-grid.svelte-7fpoih {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto 28px;
}
.kho-card.svelte-7fpoih {
  position: relative;
  padding: 24px 24px 24px 82px;
  background: #fff;
  border: 1px solid var(--ktBd);
  border-radius: 18px;
  box-shadow: 0 8px 22px #0f172a0d;
  transition: transform 0.3s, box-shadow 0.3s;
  min-height: 170px;
}
.kho-card.svelte-7fpoih:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px #0f172a17;
}
.kho-card-num.svelte-7fpoih {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--kt1), var(--kt2));
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px var(--ktBd);
}
.kho-card-body.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.kho-card-tag.svelte-7fpoih {
  align-self: flex-start;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--ktBg);
  border: 1px solid var(--ktBd);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--kt1);
  text-transform: uppercase;
}
.kho-card-name.svelte-7fpoih {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.35;
  margin: 0;
}
.kho-card-zone.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #64748b;
}
.kho-card-zone.svelte-7fpoih svg:where(.svelte-7fpoih) {
  color: var(--kt1);
  flex-shrink: 0;
}
.kho-closing.svelte-7fpoih {
  text-align: center;
  max-width: 640px;
  margin: 28px auto 0;
  font-size: 15px;
  color: #475569;
  line-height: 1.55;
  padding: 16px 22px;
  background: #e91e8c0a;
  border: 1px dashed rgba(233, 30, 140, 0.2);
  border-radius: 14px;
}
@media (max-width: 1000px) {
  .kho-grid.svelte-7fpoih {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .kho-section.svelte-7fpoih {
    padding: 70px 0 78px;
  }
  .kho-grid.svelte-7fpoih {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
.ksp-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 96px 0 104px;
  background: linear-gradient(180deg, #fffdf5, #fff, #fffafc);
}
.ksp-head.svelte-7fpoih {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 44px;
}
.ksp-kicker.svelte-7fpoih {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: #e91e8c;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.ksp-title.svelte-7fpoih {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.22;
  background: linear-gradient(135deg, #1e293b, #e91e8c, #d97706);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}
.ksp-pair.svelte-7fpoih {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: stretch;
}
.ksp-panel.svelte-7fpoih {
  position: relative;
  padding: 34px 32px 32px;
  background: linear-gradient(180deg, #fff 0%, var(--ktBg) 100%);
  border: 1px solid var(--ktBd);
  border-radius: 22px;
  box-shadow: 0 10px 28px #0f172a0f;
  transition: transform 0.3s, box-shadow 0.3s;
}
.ksp-panel.svelte-7fpoih:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px #0f172a1a;
}
.ksp-panel-badge.svelte-7fpoih {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--kt1), var(--kt2));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  box-shadow: 0 6px 14px var(--ktBd);
}
.ksp-panel-name.svelte-7fpoih {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
  margin: 0 0 12px;
}
.ksp-panel-desc.svelte-7fpoih {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.65;
  margin: 0 0 18px;
}
.ksp-points.svelte-7fpoih {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ksp-points.svelte-7fpoih li:where(.svelte-7fpoih) {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: #334155;
  line-height: 1.5;
}
.ksp-points.svelte-7fpoih svg:where(.svelte-7fpoih) {
  color: var(--kt1);
  flex-shrink: 0;
  margin-top: 3px;
}
.ksp-divider.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  padding: 20px 0;
}
.ksp-divider-dot.svelte-7fpoih {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e91e8c, #d97706);
}
.ksp-divider-line.svelte-7fpoih {
  flex: 1;
  width: 2px;
  background: linear-gradient(180deg, #e91e8c, #d97706);
  opacity: 0.35;
}
.ksp-divider-or.svelte-7fpoih {
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.25);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #e91e8c;
  text-transform: uppercase;
}
.ksp-closing.svelte-7fpoih {
  text-align: center;
  max-width: 640px;
  margin: 36px auto 0;
  font-size: 15px;
  color: #475569;
  line-height: 1.55;
}
@media (max-width: 900px) {
  .ksp-pair.svelte-7fpoih {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .ksp-divider.svelte-7fpoih {
    flex-direction: row;
    padding: 4px 0;
  }
  .ksp-divider-line.svelte-7fpoih {
    width: auto;
    height: 2px;
    background: linear-gradient(90deg, #e91e8c, #d97706);
  }
}
@media (max-width: 620px) {
  .ksp-section.svelte-7fpoih {
    padding: 70px 0 78px;
  }
  .ksp-panel.svelte-7fpoih {
    padding: 28px 22px 26px;
  }
}
.kbf-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 96px 0 104px;
  background: radial-gradient(
      700px 500px at 15% 12%,
      rgba(233, 30, 140, 0.05) 0%,
      transparent 60%
    ),
    radial-gradient(
      700px 500px at 85% 88%,
      rgba(5, 150, 105, 0.05) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #fffafc, #fff, #f0fdf4);
}
.kbf-orb.svelte-7fpoih {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.kbf-orb-1.svelte-7fpoih {
  top: -140px;
  right: -140px;
  background: #e91e8c1a;
}
.kbf-orb-2.svelte-7fpoih {
  bottom: -140px;
  left: -140px;
  background: #0596691a;
}
.kbf-section.svelte-7fpoih .grid-container:where(.svelte-7fpoih) {
  position: relative;
  z-index: 1;
}
.kbf-head.svelte-7fpoih {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 56px;
}
.kbf-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: #e91e8c;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.kbf-kicker-line.svelte-7fpoih {
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e91e8c, transparent);
}
.kbf-title.svelte-7fpoih {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.2;
  background: linear-gradient(135deg, #1e293b, #e91e8c, #059669);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}
.kbf-grid.svelte-7fpoih {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.kbf-step.svelte-7fpoih {
  position: relative;
  padding: 28px 24px 26px;
  background: #fff;
  border: 1px solid var(--ktBd);
  border-radius: 20px;
  box-shadow: 0 8px 22px #0f172a0f;
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}
.kbf-step.svelte-7fpoih:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px #0f172a1a;
}
.kbf-step-num.svelte-7fpoih {
  position: absolute;
  right: 14px;
  top: 8px;
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--kt1), var(--kt2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.22;
  pointer-events: none;
}
.kbf-step-time.svelte-7fpoih {
  display: inline-block;
  padding: 4px 10px;
  margin-bottom: 14px;
  background: var(--ktBg);
  border: 1px solid var(--ktBd);
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--kt1);
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.kbf-step-title.svelte-7fpoih {
  font-size: 17px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
  margin: 0 0 10px;
  position: relative;
  z-index: 1;
}
.kbf-step-desc.svelte-7fpoih {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 1;
}
.kbf-step-bar.svelte-7fpoih {
  position: absolute;
  left: 24px;
  bottom: 22px;
  width: 28px;
  height: 3px;
  background: linear-gradient(90deg, var(--kt1), var(--kt2));
  border-radius: 2px;
  transition: width 0.35s;
}
.kbf-step.svelte-7fpoih:hover .kbf-step-bar:where(.svelte-7fpoih) {
  width: 52px;
}
.kbf-connector.svelte-7fpoih {
  position: absolute;
  right: -22px;
  top: 50%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--ktBd);
  color: var(--kt1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  z-index: 2;
  box-shadow: 0 4px 10px #0f172a14;
}
.kbf-punch.svelte-7fpoih {
  text-align: center;
  max-width: 640px;
  margin: 44px auto 0;
  padding: 14px 24px;
  background: linear-gradient(135deg, #e91e8c0f, #0596690f);
  border: 1px solid rgba(233, 30, 140, 0.2);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  color: #334155;
}
@media (max-width: 1040px) {
  .kbf-grid.svelte-7fpoih {
    grid-template-columns: repeat(2, 1fr);
  }
  .kbf-connector.svelte-7fpoih {
    display: none;
  }
}
@media (max-width: 620px) {
  .kbf-section.svelte-7fpoih {
    padding: 70px 0 78px;
  }
  .kbf-grid.svelte-7fpoih {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.kna-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 96px 0 104px;
  background: linear-gradient(180deg, #f0fdf4, #fff, #fffafc);
}
.kna-head.svelte-7fpoih {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 44px;
}
.kna-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(13, 148, 136, 0.25);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #0d9488;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.kna-kicker-pulse.svelte-7fpoih {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0d9488;
  box-shadow: 0 0 0 3px #0d948833;
  animation: svelte-7fpoih-kr-ping 2.2s infinite;
}
.kna-title.svelte-7fpoih {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.22;
  background: linear-gradient(135deg, #1e293b, #0d9488, #e91e8c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 14px;
}
.kna-lead.svelte-7fpoih {
  font-size: 16px;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}
.kna-grid.svelte-7fpoih {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto 28px;
}
.kna-card.svelte-7fpoih {
  position: relative;
  display: block;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--ktBd);
  border-radius: 18px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 22px #0f172a0d;
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}
.kna-card.svelte-7fpoih:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px #0f172a1a;
  color: inherit;
}
.kna-card-ring.svelte-7fpoih {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  background: linear-gradient(135deg, var(--kt1), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
}
.kna-card.svelte-7fpoih:hover .kna-card-ring:where(.svelte-7fpoih) {
  opacity: 0.06;
}
.kna-card-inner.svelte-7fpoih {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 1;
}
.kna-card-pin.svelte-7fpoih {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--kt1), var(--kt2));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px var(--ktBd);
  margin-bottom: 4px;
}
.kna-card-dist.svelte-7fpoih {
  position: absolute;
  top: 0;
  right: 0;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--ktBg);
  border: 1px solid var(--ktBd);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--kt1);
}
.kna-card-name.svelte-7fpoih {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.25;
  margin: 0;
}
.kna-card-hint.svelte-7fpoih {
  font-size: 12.5px;
  color: #64748b;
  letter-spacing: 0.02em;
}
.kna-card-arrow.svelte-7fpoih {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--ktBd);
  color: var(--kt1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background 0.3s, color 0.3s;
}
.kna-card.svelte-7fpoih:hover .kna-card-arrow:where(.svelte-7fpoih) {
  background: linear-gradient(135deg, var(--kt1), var(--kt2));
  color: #fff;
  transform: translate(3px);
}
.kna-closing.svelte-7fpoih {
  text-align: center;
  max-width: 680px;
  margin: 28px auto 0;
  font-size: 15px;
  color: #475569;
  line-height: 1.55;
}
@media (max-width: 900px) {
  .kna-grid.svelte-7fpoih {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .kna-section.svelte-7fpoih {
    padding: 70px 0 78px;
  }
  .kna-grid.svelte-7fpoih {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
.kct-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 104px 0 116px;
  background: radial-gradient(
      800px 540px at 8% 10%,
      rgba(233, 30, 140, 0.07) 0%,
      transparent 60%
    ),
    radial-gradient(
      800px 540px at 92% 90%,
      rgba(217, 119, 6, 0.07) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #fffafc, #fff, #fffdf5);
}
.kct-orb.svelte-7fpoih {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  z-index: 0;
}
.kct-orb-1.svelte-7fpoih {
  top: -150px;
  left: -150px;
  background: #e91e8c24;
}
.kct-orb-2.svelte-7fpoih {
  bottom: -150px;
  right: -150px;
  background: #d9770624;
}
.kct-section.svelte-7fpoih .grid-container:where(.svelte-7fpoih) {
  position: relative;
  z-index: 1;
}
.kct-card.svelte-7fpoih {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 3px;
  border-radius: 28px;
  background: linear-gradient(135deg, #e91e8c8c, #d977068c, #0d94888c);
  box-shadow: 0 30px 80px #0f172a1f;
  overflow: hidden;
}
.kct-card-shine.svelte-7fpoih {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 70%
  );
  transform: translate(-120%);
  transition: transform 0.9s;
}
.kct-card.svelte-7fpoih:hover .kct-card-shine:where(.svelte-7fpoih) {
  transform: translate(120%);
}
.kct-inner.svelte-7fpoih {
  position: relative;
  padding: 52px 56px 48px;
  background: #fff;
  border-radius: 26px;
}
.kct-head.svelte-7fpoih {
  text-align: center;
  margin-bottom: 32px;
}
.kct-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e91e8c1a, #d977061a);
  border: 1px solid rgba(233, 30, 140, 0.25);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #c2185b;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.kct-kicker-ping.svelte-7fpoih {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e91e8c;
  box-shadow: 0 0 0 3px #e91e8c38;
  animation: svelte-7fpoih-kr-ping 2.2s infinite;
}
.kct-title.svelte-7fpoih {
  font-size: clamp(1.75rem, 3.4vw, 2.4rem);
  line-height: 1.18;
  background: linear-gradient(135deg, #1e293b, #e91e8c 45%, #d97706);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 14px;
}
.kct-lead.svelte-7fpoih {
  font-size: 16px;
  color: #475569;
  line-height: 1.65;
  margin: 0 auto;
  max-width: 660px;
}
.kct-zones.svelte-7fpoih {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 34px 0 26px;
}
.kct-zone.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 12px 20px;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff, #e91e8c0a);
  border: 1px solid rgba(233, 30, 140, 0.18);
  min-width: 140px;
}
.kct-zone-tag.svelte-7fpoih {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #e91e8c;
  text-transform: uppercase;
}
.kct-zone-name.svelte-7fpoih {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
}
.kct-zone-sub.svelte-7fpoih {
  font-size: 11.5px;
  color: #64748b;
  letter-spacing: 0.02em;
}
.kct-zones-sep.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.kct-zones-sep-dot.svelte-7fpoih {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #e91e8c;
  opacity: 0.5;
}
.kct-zones-sep-line.svelte-7fpoih {
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e91e8c, transparent);
}
.kct-trust.svelte-7fpoih {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 26px 0 30px;
}
.kct-trust-item.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 13px;
  color: #334155;
  font-weight: 600;
}
.kct-trust-icon.svelte-7fpoih {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e91e8c, #d97706);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.kct-cta.svelte-7fpoih {
  display: flex;
  align-items: stretch;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.kct-cta-btn.svelte-7fpoih {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 14px 34px #25d36661;
  transition: transform 0.25s, box-shadow 0.25s;
  overflow: hidden;
}
.kct-cta-btn.svelte-7fpoih:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px #25d3667a;
  color: #fff;
}
.kct-cta-btn-shine.svelte-7fpoih {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 70%
  );
  transform: translate(-120%);
  transition: transform 0.7s;
}
.kct-cta-btn.svelte-7fpoih:hover .kct-cta-btn-shine:where(.svelte-7fpoih) {
  transform: translate(120%);
}
.kct-cta-btn-icon.svelte-7fpoih {
  display: inline-flex;
}
.kct-cta-btn-body.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.kct-cta-btn-label.svelte-7fpoih {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.kct-cta-btn-note.svelte-7fpoih {
  font-size: 11.5px;
  opacity: 0.85;
  letter-spacing: 0.04em;
}
.kct-cta-btn-arrow.svelte-7fpoih {
  display: inline-flex;
  margin-left: 4px;
  transition: transform 0.25s;
}
.kct-cta-btn.svelte-7fpoih:hover .kct-cta-btn-arrow:where(.svelte-7fpoih) {
  transform: translate(4px);
}
.kct-closing.svelte-7fpoih {
  text-align: center;
  margin: 26px 0 0;
  font-size: 14.5px;
  color: #64748b;
  font-style: italic;
}
@media (max-width: 720px) {
  .kct-section.svelte-7fpoih {
    padding: 74px 0 82px;
  }
  .kct-inner.svelte-7fpoih {
    padding: 38px 26px 34px;
  }
  .kct-zone.svelte-7fpoih {
    min-width: 120px;
    padding: 10px 16px;
  }
  .kct-zones.svelte-7fpoih {
    gap: 10px;
  }
  .kct-zones-sep.svelte-7fpoih {
    display: none;
  }
  .kct-cta-btn.svelte-7fpoih {
    padding: 14px 22px;
  }
}
@media (max-width: 420px) {
  .kct-inner.svelte-7fpoih {
    padding: 32px 20px 30px;
  }
  .kct-zones.svelte-7fpoih {
    flex-direction: column;
    align-items: stretch;
  }
  .kct-zone.svelte-7fpoih {
    min-width: 0;
  }
}
.biw-panel--rose.svelte-7fpoih,
.bir-row--rose.svelte-7fpoih,
.bih-marker--rose.svelte-7fpoih,
.bina-tile--rose.svelte-7fpoih {
  --bt1: #e91e8c;
  --bt2: #c2185b;
  --btBg: rgba(233, 30, 140, 0.06);
  --btBd: rgba(233, 30, 140, 0.22);
}
.biw-panel--gold.svelte-7fpoih,
.bir-row--gold.svelte-7fpoih,
.bih-marker--gold.svelte-7fpoih,
.bina-tile--gold.svelte-7fpoih {
  --bt1: #d97706;
  --bt2: #b45309;
  --btBg: rgba(217, 119, 6, 0.06);
  --btBd: rgba(217, 119, 6, 0.22);
}
.bir-row--teal.svelte-7fpoih,
.bih-marker--teal.svelte-7fpoih,
.bina-tile--teal.svelte-7fpoih {
  --bt1: #0d9488;
  --bt2: #0f766e;
  --btBg: rgba(13, 148, 136, 0.06);
  --btBd: rgba(13, 148, 136, 0.22);
}
.bir-row--emerald.svelte-7fpoih,
.bih-marker--emerald.svelte-7fpoih,
.bina-tile--emerald.svelte-7fpoih {
  --bt1: #059669;
  --bt2: #047857;
  --btBg: rgba(5, 150, 105, 0.06);
  --btBd: rgba(5, 150, 105, 0.22);
}
.bir-row--coral.svelte-7fpoih,
.bina-tile--coral.svelte-7fpoih {
  --bt1: #f43f5e;
  --bt2: #e11d48;
  --btBg: rgba(244, 63, 94, 0.06);
  --btBd: rgba(244, 63, 94, 0.22);
}
.biw-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 96px 0 106px;
  background: radial-gradient(
      760px 480px at 10% 10%,
      rgba(5, 150, 105, 0.05) 0%,
      transparent 60%
    ),
    radial-gradient(
      760px 480px at 90% 90%,
      rgba(233, 30, 140, 0.05) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #f0fdf4, #fff 55%, #fffafc);
}
.biw-leaf.svelte-7fpoih {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.biw-leaf-1.svelte-7fpoih {
  top: -140px;
  left: -140px;
  background: #05966924;
}
.biw-leaf-2.svelte-7fpoih {
  bottom: -140px;
  right: -140px;
  background: #e91e8c1c;
}
.biw-section.svelte-7fpoih .grid-container:where(.svelte-7fpoih) {
  position: relative;
  z-index: 1;
}
.biw-head.svelte-7fpoih {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 48px;
}
.biw-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(5, 150, 105, 0.25);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #047857;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.biw-title.svelte-7fpoih {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.2;
  background: linear-gradient(135deg, #1e293b, #047857 45%, #e91e8c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}
.biw-split.svelte-7fpoih {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}
.biw-panel.svelte-7fpoih {
  position: relative;
  padding: 32px 28px 28px;
  background: #fff;
  border: 1px solid var(--btBd, rgba(15, 23, 42, 0.08));
  border-radius: 22px;
  box-shadow: 0 10px 28px #0f172a0f;
  transition: transform 0.3s, box-shadow 0.3s;
}
.biw-panel.svelte-7fpoih:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px #0f172a1a;
}
.biw-panel--problem.svelte-7fpoih {
  --btBg: rgba(244, 63, 94, 0.05);
  --btBd: rgba(244, 63, 94, 0.22);
  background: linear-gradient(180deg, #fff, #f43f5e0a);
}
.biw-panel--solution.svelte-7fpoih {
  --btBg: rgba(5, 150, 105, 0.05);
  --btBd: rgba(5, 150, 105, 0.22);
  background: linear-gradient(180deg, #fff, #0596690a);
}
.biw-panel-label.svelte-7fpoih {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.biw-panel--problem.svelte-7fpoih .biw-panel-label:where(.svelte-7fpoih) {
  background: #f43f5e1a;
  color: #e11d48;
  border: 1px solid rgba(244, 63, 94, 0.22);
}
.biw-panel--solution.svelte-7fpoih .biw-panel-label:where(.svelte-7fpoih) {
  background: #0596691a;
  color: #047857;
  border: 1px solid rgba(5, 150, 105, 0.22);
}
.biw-panel-icon.svelte-7fpoih {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 14px;
}
.biw-panel-icon--warn.svelte-7fpoih {
  background: linear-gradient(135deg, #f43f5e, #e11d48);
  box-shadow: 0 8px 18px #f43f5e4d;
}
.biw-panel-icon--check.svelte-7fpoih {
  background: linear-gradient(135deg, #10b981, #047857);
  box-shadow: 0 8px 18px #0596694d;
}
.biw-panel-title.svelte-7fpoih {
  font-size: 19px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
  margin: 0 0 12px;
}
.biw-panel-desc.svelte-7fpoih {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}
.biw-bridge.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 0;
}
.biw-bridge-dot.svelte-7fpoih {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e91e8c;
}
.biw-bridge-line.svelte-7fpoih {
  flex: 1;
  width: 2px;
  background: linear-gradient(180deg, #f43f5e, #e91e8c, #047857);
  opacity: 0.45;
}
.biw-bridge-arrow.svelte-7fpoih {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.25);
  color: #e91e8c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px #e91e8c2e;
}
.biw-highlight.svelte-7fpoih {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 880px;
  margin: 40px auto 0;
  padding: 16px 24px;
  background: linear-gradient(135deg, #0596690d, #e91e8c0d);
  border: 1px solid rgba(5, 150, 105, 0.18);
  border-radius: 16px;
  flex-wrap: wrap;
}
.biw-highlight-label.svelte-7fpoih {
  flex-shrink: 0;
  padding: 5px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #059669, #047857);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.biw-highlight-sep.svelte-7fpoih {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(5, 150, 105, 0.3),
    transparent
  );
}
.biw-highlight-text.svelte-7fpoih {
  font-size: 14px;
  color: #334155;
  line-height: 1.55;
  margin: 0;
  flex: 1;
  min-width: 200px;
}
@media (max-width: 900px) {
  .biw-split.svelte-7fpoih {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .biw-bridge.svelte-7fpoih {
    flex-direction: row;
    padding: 4px 0;
  }
  .biw-bridge-line.svelte-7fpoih {
    width: auto;
    height: 2px;
    background: linear-gradient(90deg, #f43f5e, #e91e8c, #047857);
  }
}
@media (max-width: 620px) {
  .biw-section.svelte-7fpoih {
    padding: 70px 0 78px;
  }
  .biw-panel.svelte-7fpoih {
    padding: 26px 22px 24px;
  }
  .biw-highlight.svelte-7fpoih {
    flex-direction: column;
    align-items: flex-start;
  }
  .biw-highlight-sep.svelte-7fpoih {
    display: none;
  }
}
.bir-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 96px 0 104px;
  background: linear-gradient(180deg, #fffafc, #fff, #f0fdf4);
}
.bir-orb.svelte-7fpoih {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  z-index: 0;
}
.bir-orb-1.svelte-7fpoih {
  top: 30%;
  right: -200px;
  background: #0596691a;
}
.bir-section.svelte-7fpoih .grid-container:where(.svelte-7fpoih) {
  position: relative;
  z-index: 1;
}
.bir-head.svelte-7fpoih {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 48px;
}
.bir-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.22);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #c2185b;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.bir-kicker-leaf.svelte-7fpoih {
  color: #059669;
  display: inline-flex;
}
.bir-title.svelte-7fpoih {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.2;
  background: linear-gradient(135deg, #1e293b, #e91e8c, #047857);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 14px;
}
.bir-lead.svelte-7fpoih {
  font-size: 16px;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}
.bir-list.svelte-7fpoih {
  max-width: 1040px;
  margin: 0 auto;
}
.bir-row.svelte-7fpoih {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 36px;
  align-items: start;
  padding: 32px 0;
}
.bir-row.is-reverse.svelte-7fpoih {
  grid-template-columns: 1fr 120px;
}
.bir-row.is-reverse.svelte-7fpoih .bir-row-numeral:where(.svelte-7fpoih) {
  order: 2;
  justify-self: end;
}
.bir-row.is-reverse.svelte-7fpoih .bir-row-body:where(.svelte-7fpoih) {
  order: 1;
  text-align: right;
}
.bir-row.is-reverse.svelte-7fpoih .bir-row-meta:where(.svelte-7fpoih) {
  justify-content: flex-end;
}
.bir-row-numeral.svelte-7fpoih {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bir-row-num.svelte-7fpoih {
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--bt1), var(--bt2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}
.bir-row-ring.svelte-7fpoih {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 2px dashed var(--btBd);
  border-radius: 50%;
  animation: svelte-7fpoih-bir-spin 28s linear infinite;
}
@keyframes svelte-7fpoih-bir-spin {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.bir-row-body.svelte-7fpoih {
  min-width: 0;
}
.bir-row-tag.svelte-7fpoih {
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 10px;
  background: var(--btBg);
  border: 1px solid var(--btBd);
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--bt1);
  text-transform: uppercase;
}
.bir-row-name.svelte-7fpoih {
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.25;
  margin: 0 0 12px;
}
.bir-row-desc.svelte-7fpoih {
  font-size: 15px;
  color: #475569;
  line-height: 1.65;
  margin: 0 0 18px;
}
.bir-row-meta.svelte-7fpoih {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.bir-meta.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.07);
  font-size: 12.5px;
}
.bir-meta-dot.svelte-7fpoih {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bt1), var(--bt2));
}
.bir-meta-label.svelte-7fpoih {
  color: #94a3b8;
  letter-spacing: 0.04em;
}
.bir-meta-value.svelte-7fpoih {
  color: #334155;
  font-weight: 600;
}
.bir-row-divider.svelte-7fpoih {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: none;
}
.bir-row-divider-line.svelte-7fpoih {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(233, 30, 140, 0.2),
    transparent
  );
}
.bir-row-divider-leaf.svelte-7fpoih {
  color: #e91e8c;
  opacity: 0.5;
  display: inline-flex;
}
@media (max-width: 780px) {
  .bir-row.svelte-7fpoih,
  .bir-row.is-reverse.svelte-7fpoih {
    grid-template-columns: 80px 1fr;
    gap: 20px;
  }
  .bir-row.is-reverse.svelte-7fpoih .bir-row-numeral:where(.svelte-7fpoih) {
    order: 1;
    justify-self: start;
  }
  .bir-row.is-reverse.svelte-7fpoih .bir-row-body:where(.svelte-7fpoih) {
    order: 2;
    text-align: left;
  }
  .bir-row.is-reverse.svelte-7fpoih .bir-row-meta:where(.svelte-7fpoih) {
    justify-content: flex-start;
  }
  .bir-row-numeral.svelte-7fpoih {
    width: 80px;
    height: 80px;
  }
  .bir-row-num.svelte-7fpoih {
    font-size: 52px;
  }
  .bir-row-name.svelte-7fpoih {
    font-size: 19px;
  }
}
@media (max-width: 520px) {
  .bir-section.svelte-7fpoih {
    padding: 70px 0 78px;
  }
  .bir-row.svelte-7fpoih {
    padding: 24px 0;
    gap: 14px;
    grid-template-columns: 64px 1fr;
  }
  .bir-row.is-reverse.svelte-7fpoih {
    grid-template-columns: 64px 1fr;
  }
  .bir-row-numeral.svelte-7fpoih {
    width: 64px;
    height: 64px;
  }
  .bir-row-num.svelte-7fpoih {
    font-size: 42px;
  }
}
.bih-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 96px 0 104px;
  background: radial-gradient(
      700px 460px at 88% 15%,
      rgba(217, 119, 6, 0.06) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #f0fdf4, #fff, #fffdf5);
}
.bih-head.svelte-7fpoih {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 44px;
}
.bih-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(217, 119, 6, 0.25);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #d97706;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.bih-title.svelte-7fpoih {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.22;
  background: linear-gradient(135deg, #1e293b, #d97706 55%, #059669);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 14px;
}
.bih-lead.svelte-7fpoih {
  font-size: 16px;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}
.bih-billboard.svelte-7fpoih {
  position: relative;
  max-width: 1180px;
  margin: 0 auto 28px;
  padding-top: 30px;
}
.bih-billboard-rail.svelte-7fpoih {
  position: absolute;
  top: 14px;
  left: 2%;
  right: 2%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    #d97706 0 10px,
    transparent 10px 20px
  );
  opacity: 0.35;
}
.bih-billboard-grid.svelte-7fpoih {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.bih-marker.svelte-7fpoih {
  position: relative;
  padding: 28px 22px 22px;
  background: #fff;
  border: 1px solid var(--btBd);
  border-radius: 18px;
  box-shadow: 0 8px 22px #0f172a0f;
  transition: transform 0.3s, box-shadow 0.3s;
}
.bih-marker.svelte-7fpoih:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px #0f172a1a;
}
.bih-marker-peg.svelte-7fpoih {
  position: absolute;
  left: 50%;
  top: -18px;
  width: 2px;
  height: 32px;
  background: linear-gradient(180deg, var(--bt1), var(--bt2));
  transform: translate(-50%);
}
.bih-marker-peg.svelte-7fpoih:before {
  content: "";
  position: absolute;
  left: 50%;
  top: -6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bt1), var(--bt2));
  transform: translate(-50%);
  box-shadow: 0 0 0 3px #fff, 0 4px 10px var(--btBd);
}
.bih-marker-mile.svelte-7fpoih {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--btBg);
  border: 1px solid var(--btBd);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--bt1);
  text-transform: uppercase;
  font-family: Courier New, monospace;
}
.bih-marker-tag.svelte-7fpoih {
  display: inline-block;
  margin-left: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #64748b;
}
.bih-marker-name.svelte-7fpoih {
  font-size: 17px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
  margin: 12px 0 10px;
}
.bih-marker-zone.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #64748b;
}
.bih-marker-zone.svelte-7fpoih svg:where(.svelte-7fpoih) {
  color: var(--bt1);
  flex-shrink: 0;
}
.bih-marker-note.svelte-7fpoih {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.55;
  color: #64748b;
}
.bih-closing.svelte-7fpoih {
  text-align: center;
  max-width: 720px;
  margin: 32px auto 0;
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
  padding: 16px 24px;
  background: #0596690a;
  border: 1px dashed rgba(5, 150, 105, 0.22);
  border-radius: 14px;
}
@media (max-width: 980px) {
  .bih-billboard-grid.svelte-7fpoih {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .bih-section.svelte-7fpoih {
    padding: 70px 0 78px;
  }
  .bih-billboard-grid.svelte-7fpoih {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .bih-billboard-rail.svelte-7fpoih {
    display: none;
  }
}
.bina-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 96px 0 104px;
  background: linear-gradient(180deg, #fffdf5, #fff, #f0fdfa);
}
.bina-head.svelte-7fpoih {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 44px;
}
.bina-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(13, 148, 136, 0.25);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #0d9488;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.bina-kicker-pulse.svelte-7fpoih {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0d9488;
  box-shadow: 0 0 0 3px #0d948833;
  animation: svelte-7fpoih-kr-ping 2.2s infinite;
}
.bina-title.svelte-7fpoih {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.22;
  background: linear-gradient(135deg, #1e293b, #0d9488, #059669);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 14px;
}
.bina-lead.svelte-7fpoih {
  font-size: 16px;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}
.bina-grid.svelte-7fpoih {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto 28px;
}
.bina-tile.svelte-7fpoih {
  position: relative;
  display: block;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--btBd);
  border-radius: 18px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 22px #0f172a0d;
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}
.bina-tile.svelte-7fpoih:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px #0f172a1a;
  color: inherit;
}
.bina-tile-arc.svelte-7fpoih {
  position: absolute;
  top: -40%;
  right: -30%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1.5px dashed var(--btBd);
  opacity: 0.6;
  pointer-events: none;
  transition: transform 0.5s;
}
.bina-tile.svelte-7fpoih:hover .bina-tile-arc:where(.svelte-7fpoih) {
  transform: rotate(20deg);
}
.bina-tile-head.svelte-7fpoih {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.bina-tile-pin.svelte-7fpoih {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--bt1), var(--bt2));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px var(--btBd);
}
.bina-tile-dist.svelte-7fpoih {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--btBg);
  border: 1px solid var(--btBd);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--bt1);
}
.bina-tile-name.svelte-7fpoih {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.25;
  margin: 0 0 6px;
}
.bina-tile-hint.svelte-7fpoih {
  display: block;
  font-size: 12.5px;
  color: #64748b;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.bina-tile-go.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--bt1);
  text-transform: uppercase;
  transition: gap 0.3s;
}
.bina-tile.svelte-7fpoih:hover .bina-tile-go:where(.svelte-7fpoih) {
  gap: 10px;
}
.bina-closing.svelte-7fpoih {
  text-align: center;
  max-width: 680px;
  margin: 28px auto 0;
  font-size: 15px;
  color: #475569;
  line-height: 1.55;
}
@media (max-width: 900px) {
  .bina-grid.svelte-7fpoih {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .bina-section.svelte-7fpoih {
    padding: 70px 0 78px;
  }
  .bina-grid.svelte-7fpoih {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
.bict-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 104px 0 116px;
  background: radial-gradient(
      800px 540px at 10% 10%,
      rgba(5, 150, 105, 0.07) 0%,
      transparent 60%
    ),
    radial-gradient(
      800px 540px at 90% 90%,
      rgba(233, 30, 140, 0.07) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #f0fdf4, #fff, #fffafc);
}
.bict-orb.svelte-7fpoih {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  z-index: 0;
}
.bict-orb-1.svelte-7fpoih {
  top: -150px;
  left: -150px;
  background: #05966924;
}
.bict-orb-2.svelte-7fpoih {
  bottom: -150px;
  right: -150px;
  background: #e91e8c24;
}
.bict-section.svelte-7fpoih .grid-container:where(.svelte-7fpoih) {
  position: relative;
  z-index: 1;
}
.bict-card.svelte-7fpoih {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 56px 56px 48px;
  background: #fff;
  border: 1px solid rgba(5, 150, 105, 0.18);
  border-radius: 28px;
  box-shadow: 0 30px 80px #0f172a1f;
}
.bict-seal.svelte-7fpoih {
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translate(-50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px #05966940;
  z-index: 2;
}
.bict-seal-ring.svelte-7fpoih {
  position: absolute;
  top: 6px;
  right: 6px;
  bottom: 6px;
  left: 6px;
  border-radius: 50%;
  pointer-events: none;
}
.bict-seal-ring-1.svelte-7fpoih {
  border: 2px dashed rgba(5, 150, 105, 0.4);
  animation: svelte-7fpoih-bir-spin 18s linear infinite;
}
.bict-seal-ring-2.svelte-7fpoih {
  top: 14px;
  right: 14px;
  bottom: 14px;
  left: 14px;
  border: 1px solid rgba(233, 30, 140, 0.25);
}
.bict-seal-core.svelte-7fpoih {
  color: #047857;
  z-index: 1;
}
.bict-inner.svelte-7fpoih {
  position: relative;
  padding-top: 24px;
}
.bict-head.svelte-7fpoih {
  text-align: center;
  margin-bottom: 30px;
}
.bict-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0596691a, #e91e8c1a);
  border: 1px solid rgba(5, 150, 105, 0.25);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #047857;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.bict-kicker-ping.svelte-7fpoih {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #059669;
  box-shadow: 0 0 0 3px #05966938;
  animation: svelte-7fpoih-kr-ping 2.2s infinite;
}
.bict-title.svelte-7fpoih {
  font-size: clamp(1.75rem, 3.4vw, 2.4rem);
  line-height: 1.18;
  background: linear-gradient(135deg, #1e293b, #047857 45%, #e91e8c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 14px;
}
.bict-lead.svelte-7fpoih {
  font-size: 16px;
  color: #475569;
  line-height: 1.65;
  margin: 0 auto;
  max-width: 660px;
}
.bict-zones.svelte-7fpoih {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 720px;
  margin: 28px auto 26px;
}
.bict-zone.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff, #0596690a);
  border: 1px solid rgba(5, 150, 105, 0.18);
  text-align: center;
}
.bict-zone-tag.svelte-7fpoih {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #059669;
  text-transform: uppercase;
}
.bict-zone-name.svelte-7fpoih {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
}
.bict-zone-sub.svelte-7fpoih {
  font-size: 11.5px;
  color: #64748b;
  letter-spacing: 0.02em;
}
.bict-trust.svelte-7fpoih {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 0 0 28px;
}
.bict-trust-item.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 13px;
  color: #334155;
  font-weight: 600;
}
.bict-trust-icon.svelte-7fpoih {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #059669, #e91e8c);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.bict-cta.svelte-7fpoih {
  display: flex;
  align-items: stretch;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.bict-cta-btn.svelte-7fpoih {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 14px 34px #25d36661;
  transition: transform 0.25s, box-shadow 0.25s;
  overflow: hidden;
}
.bict-cta-btn.svelte-7fpoih:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px #25d3667a;
  color: #fff;
}
.bict-cta-btn-shine.svelte-7fpoih {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 70%
  );
  transform: translate(-120%);
  transition: transform 0.7s;
}
.bict-cta-btn.svelte-7fpoih:hover .bict-cta-btn-shine:where(.svelte-7fpoih) {
  transform: translate(120%);
}
.bict-cta-btn-icon.svelte-7fpoih {
  display: inline-flex;
}
.bict-cta-btn-body.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.bict-cta-btn-label.svelte-7fpoih {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.bict-cta-btn-note.svelte-7fpoih {
  font-size: 11.5px;
  opacity: 0.85;
  letter-spacing: 0.04em;
}
.bict-cta-btn-arrow.svelte-7fpoih {
  display: inline-flex;
  margin-left: 4px;
  transition: transform 0.25s;
}
.bict-cta-btn.svelte-7fpoih:hover .bict-cta-btn-arrow:where(.svelte-7fpoih) {
  transform: translate(4px);
}
.bict-closing.svelte-7fpoih {
  text-align: center;
  margin: 26px 0 0;
  font-size: 14.5px;
  color: #64748b;
  font-style: italic;
}
@media (max-width: 720px) {
  .bict-section.svelte-7fpoih {
    padding: 80px 0 88px;
  }
  .bict-card.svelte-7fpoih {
    padding: 46px 28px 36px;
  }
  .bict-zones.svelte-7fpoih {
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 100%;
  }
  .bict-cta-btn.svelte-7fpoih {
    padding: 14px 22px;
  }
}
@media (max-width: 420px) {
  .bict-card.svelte-7fpoih {
    padding: 42px 20px 32px;
  }
  .bict-seal.svelte-7fpoih {
    width: 60px;
    height: 60px;
    top: -30px;
  }
}
.cbw-check--teal.svelte-7fpoih,
.cbr-card--teal.svelte-7fpoih {
  --ct1: #0d9488;
  --ct2: #0f766e;
  --ctBg: rgba(13, 148, 136, 0.06);
  --ctBd: rgba(13, 148, 136, 0.22);
}
.cbw-check--gold.svelte-7fpoih,
.cbr-card--gold.svelte-7fpoih {
  --ct1: #d97706;
  --ct2: #b45309;
  --ctBg: rgba(217, 119, 6, 0.06);
  --ctBd: rgba(217, 119, 6, 0.22);
}
.cbw-check--rose.svelte-7fpoih,
.cbr-card--rose.svelte-7fpoih {
  --ct1: #e91e8c;
  --ct2: #c2185b;
  --ctBg: rgba(233, 30, 140, 0.06);
  --ctBd: rgba(233, 30, 140, 0.22);
}
.cbr-card--coral.svelte-7fpoih {
  --ct1: #f43f5e;
  --ct2: #e11d48;
  --ctBg: rgba(244, 63, 94, 0.06);
  --ctBd: rgba(244, 63, 94, 0.22);
}
.cbr-card--emerald.svelte-7fpoih {
  --ct1: #059669;
  --ct2: #047857;
  --ctBg: rgba(5, 150, 105, 0.06);
  --ctBd: rgba(5, 150, 105, 0.22);
}
.cbw-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 96px 0 106px;
  background: radial-gradient(
      760px 480px at 12% 12%,
      rgba(13, 148, 136, 0.05) 0%,
      transparent 60%
    ),
    radial-gradient(
      760px 480px at 88% 88%,
      rgba(233, 30, 140, 0.05) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #f0fdfa, #fff, #fffafc);
}
.cbw-route.svelte-7fpoih {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
  background: repeating-linear-gradient(
      90deg,
      rgba(13, 148, 136, 0.05) 0 1px,
      transparent 1px 72px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(233, 30, 140, 0.03) 0 1px,
      transparent 1px 72px
    );
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    black 30%,
    transparent 75%
  );
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.cbw-orb.svelte-7fpoih {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.cbw-orb-1.svelte-7fpoih {
  top: -130px;
  left: -130px;
  background: #0d948824;
}
.cbw-orb-2.svelte-7fpoih {
  bottom: -130px;
  right: -130px;
  background: #e91e8c1c;
}
.cbw-section.svelte-7fpoih .grid-container:where(.svelte-7fpoih) {
  position: relative;
  z-index: 1;
}
.cbw-head.svelte-7fpoih {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 36px;
}
.cbw-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(13, 148, 136, 0.25);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #0d9488;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.cbw-kicker-compass.svelte-7fpoih {
  color: #0d9488;
  display: inline-flex;
}
.cbw-title.svelte-7fpoih {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.2;
  background: linear-gradient(135deg, #1e293b, #0d9488, #e91e8c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}
.cbw-statement.svelte-7fpoih {
  position: relative;
  max-width: 880px;
  margin: 0 auto 24px;
  padding: 28px 32px 28px 76px;
  background: linear-gradient(135deg, #0d94880d, #e91e8c0a);
  border: 1px solid rgba(13, 148, 136, 0.18);
  border-radius: 20px;
}
.cbw-statement-quote.svelte-7fpoih {
  position: absolute;
  left: 24px;
  top: 4px;
  font-size: 68px;
  line-height: 1;
  font-family: Georgia, serif;
  color: #0d9488;
  opacity: 0.45;
}
.cbw-statement.svelte-7fpoih p:where(.svelte-7fpoih) {
  font-size: 16px;
  color: #334155;
  line-height: 1.7;
  margin: 0;
  font-style: italic;
}
.cbw-bridge.svelte-7fpoih {
  max-width: 820px;
  margin: 0 auto 44px;
  font-size: 15.5px;
  color: #475569;
  line-height: 1.7;
  text-align: center;
}
.cbw-checkpoints.svelte-7fpoih {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}
.cbw-check.svelte-7fpoih {
  position: relative;
  padding: 28px 26px 26px;
  background: #fff;
  border: 1px solid var(--ctBd);
  border-radius: 20px;
  box-shadow: 0 8px 22px #0f172a0f;
  transition: transform 0.3s, box-shadow 0.3s;
}
.cbw-check.svelte-7fpoih:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px #0f172a1a;
}
.cbw-check-code.svelte-7fpoih {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--ctBg);
  border: 1px solid var(--ctBd);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--ct1);
  font-family: Courier New, monospace;
}
.cbw-check-label.svelte-7fpoih {
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 12px;
  background: var(--ctBg);
  border: 1px solid var(--ctBd);
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--ct1);
  text-transform: uppercase;
}
.cbw-check-title.svelte-7fpoih {
  font-size: 17px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
  margin: 0 0 10px;
}
.cbw-check-desc.svelte-7fpoih {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}
.cbw-check-connector.svelte-7fpoih {
  display: flex;
  align-items: center;
  gap: 6px;
}
.cbw-check-connector-line.svelte-7fpoih {
  flex: 1;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    #0d9488 0 4px,
    transparent 4px 8px
  );
  opacity: 0.45;
  min-width: 10px;
}
.cbw-check-connector-arrow.svelte-7fpoih {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(13, 148, 136, 0.25);
  color: #0d9488;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px #0d948826;
}
.cbw-outro.svelte-7fpoih {
  text-align: center;
  max-width: 640px;
  margin: 44px auto 0;
  padding: 14px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0d94880f, #e91e8c0f);
  border: 1px solid rgba(13, 148, 136, 0.2);
  font-size: 14.5px;
  font-weight: 600;
  color: #334155;
}
@media (max-width: 1040px) {
  .cbw-checkpoints.svelte-7fpoih {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .cbw-check-connector.svelte-7fpoih {
    display: none;
  }
}
@media (max-width: 620px) {
  .cbw-section.svelte-7fpoih {
    padding: 70px 0 78px;
  }
  .cbw-statement.svelte-7fpoih {
    padding: 24px 22px 24px 60px;
  }
  .cbw-statement-quote.svelte-7fpoih {
    font-size: 52px;
    left: 18px;
  }
  .cbw-check.svelte-7fpoih {
    padding: 24px 20px 22px;
  }
  .cbw-check-code.svelte-7fpoih {
    top: 14px;
    right: 14px;
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
}
.cbr-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 96px 0 104px;
  background: linear-gradient(180deg, #fffafc, #fff, #f0fdfa);
}
.cbr-orb.svelte-7fpoih {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  z-index: 0;
}
.cbr-orb-1.svelte-7fpoih {
  top: 30%;
  left: -180px;
  background: #0d94881a;
}
.cbr-section.svelte-7fpoih .grid-container:where(.svelte-7fpoih) {
  position: relative;
  z-index: 1;
}
.cbr-head.svelte-7fpoih {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 32px;
}
.cbr-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.22);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #c2185b;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.cbr-kicker-hex.svelte-7fpoih {
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, #0d9488, #e91e8c);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  display: inline-block;
}
.cbr-title.svelte-7fpoih {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.2;
  background: linear-gradient(135deg, #1e293b, #0d9488, #d97706);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 14px;
}
.cbr-lead.svelte-7fpoih {
  font-size: 16px;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}
.cbr-context.svelte-7fpoih {
  position: relative;
  max-width: 920px;
  margin: 0 auto 44px;
  padding: 22px 28px 24px 78px;
  background: linear-gradient(135deg, #0d94880a, #d977060a);
  border: 1px solid rgba(13, 148, 136, 0.16);
  border-radius: 18px;
}
.cbr-context-rail.svelte-7fpoih {
  position: absolute;
  left: 22px;
  top: 22px;
  bottom: 22px;
  width: 4px;
  border-radius: 2px;
  background: linear-gradient(180deg, #0d9488, #d97706, #e91e8c);
}
.cbr-context-label.svelte-7fpoih {
  display: inline-block;
  padding: 4px 10px;
  margin-bottom: 8px;
  background: #fff;
  border: 1px solid rgba(13, 148, 136, 0.22);
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #0d9488;
  text-transform: uppercase;
}
.cbr-context-text.svelte-7fpoih {
  font-size: 15px;
  color: #334155;
  line-height: 1.7;
  margin: 0;
}
.cbr-grid.svelte-7fpoih {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
}
.cbr-card.svelte-7fpoih {
  position: relative;
  padding: 32px 28px 30px;
  background: #fff;
  border: 1px solid var(--ctBd);
  border-radius: 20px;
  box-shadow: 0 8px 22px #0f172a0f;
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}
.cbr-card.svelte-7fpoih:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px #0f172a1a;
}
.cbr-card-notch.svelte-7fpoih {
  position: absolute;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--ct1), var(--ct2));
  pointer-events: none;
}
.cbr-card-notch-tl.svelte-7fpoih {
  top: 0;
  left: 0;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  opacity: 0.7;
}
.cbr-card-notch-br.svelte-7fpoih {
  bottom: 0;
  right: 0;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  opacity: 0.2;
}
.cbr-card-head.svelte-7fpoih {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.cbr-card-num.svelte-7fpoih {
  width: 42px;
  height: 42px;
  background: var(--ctBg);
  border: 1px solid var(--ctBd);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--ct1);
}
.cbr-card-tag.svelte-7fpoih {
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--ctBg);
  border: 1px solid var(--ctBd);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--ct1);
  text-transform: uppercase;
}
.cbr-card-name.svelte-7fpoih {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
  margin: 0 0 10px;
}
.cbr-card-loc.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  margin-bottom: 14px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  font-size: 12px;
  color: #475569;
}
.cbr-card-loc.svelte-7fpoih svg:where(.svelte-7fpoih) {
  color: var(--ct1);
  flex-shrink: 0;
}
.cbr-card-desc.svelte-7fpoih {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 820px) {
  .cbr-grid.svelte-7fpoih {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
@media (max-width: 620px) {
  .cbr-section.svelte-7fpoih {
    padding: 70px 0 78px;
  }
  .cbr-context.svelte-7fpoih {
    padding: 20px 22px 22px 64px;
  }
  .cbr-context-rail.svelte-7fpoih {
    left: 18px;
  }
  .cbr-card.svelte-7fpoih {
    padding: 28px 24px 26px;
  }
}
.cca-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 7vw, 96px) 0;
  background: radial-gradient(115% 80% at 10% 0%, #fff6fb, #fff6fb00 55%),
    radial-gradient(115% 80% at 95% 100%, #f0fbf6, #f0fbf600 55%),
    linear-gradient(180deg, #fffafd, #fbf7fd);
}
.cca-orb.svelte-7fpoih {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.42;
  pointer-events: none;
  z-index: 0;
}
.cca-orb-1.svelte-7fpoih {
  width: 320px;
  height: 320px;
  top: -90px;
  left: -70px;
  background: radial-gradient(circle, #e91e8c29, #e91e8c00 70%);
}
.cca-orb-2.svelte-7fpoih {
  width: 360px;
  height: 360px;
  bottom: -120px;
  right: -80px;
  background: radial-gradient(circle, #10b98124, #10b98100 70%);
}
.cca-head.svelte-7fpoih {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto clamp(28px, 4vw, 50px);
  text-align: center;
}
.cca-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  border-radius: 999px;
  background: #e91e8c14;
  border: 1px solid rgba(233, 30, 140, 0.18);
  color: var(--rose-dark, #c2185b);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.cca-title.svelte-7fpoih {
  margin: 16px 0 0;
  font-size: clamp(1.55rem, 3.6vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--heading, #110520);
  background: linear-gradient(100deg, #110520, #c2185b 52%, #0ea5e9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cca-lead.svelte-7fpoih {
  margin: 14px auto 0;
  max-width: 600px;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  line-height: 1.65;
  color: var(--text-muted, #4a2870);
}
.cca-list.svelte-7fpoih {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.cca-row.svelte-7fpoih {
  --cca-accent: #e91e8c;
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: clamp(14px, 2.4vw, 26px);
  padding: clamp(18px, 2.6vw, 26px) clamp(8px, 1.5vw, 16px);
  border-bottom: 1px solid var(--border, #ead8f0);
  transition: padding-left 0.28s ease;
}
.cca-row.svelte-7fpoih:first-child {
  border-top: 1px solid var(--border, #ead8f0);
}
.cca-row--rose.svelte-7fpoih {
  --cca-accent: #e91e8c;
}
.cca-row--gold.svelte-7fpoih {
  --cca-accent: #f59e0b;
}
.cca-row--teal.svelte-7fpoih {
  --cca-accent: #0ea5e9;
}
.cca-row--coral.svelte-7fpoih {
  --cca-accent: #f5734a;
}
.cca-row--emerald.svelte-7fpoih {
  --cca-accent: #10b981;
}
.cca-row.svelte-7fpoih:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 3px;
  height: 56%;
  background: linear-gradient(
    180deg,
    var(--cca-accent),
    color-mix(in srgb, var(--cca-accent) 50%, #fff)
  );
  border-radius: 3px;
  transition: transform 0.28s ease;
}
.cca-row.svelte-7fpoih:hover {
  padding-left: clamp(16px, 2.4vw, 28px);
}
.cca-row.svelte-7fpoih:hover:before {
  transform: translateY(-50%) scaleY(1);
}
.cca-marker.svelte-7fpoih {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: none;
  color: var(--cca-accent);
}
.cca-marker-pin.svelte-7fpoih {
  position: relative;
  z-index: 1;
  transition: transform 0.28s ease, opacity 0.2s ease;
}
.cca-marker-dot.svelte-7fpoih {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  background: color-mix(in srgb, var(--cca-accent) 12%, #fff);
  border: 1.5px solid color-mix(in srgb, var(--cca-accent) 32%, #f0e0ec);
  transition: background 0.28s ease, border-color 0.28s ease,
    transform 0.28s ease;
}
.cca-row.svelte-7fpoih:hover .cca-marker-dot:where(.svelte-7fpoih) {
  background: var(--cca-accent);
  border-color: var(--cca-accent);
  transform: scale(1.06);
}
.cca-row.svelte-7fpoih:hover .cca-marker-pin:where(.svelte-7fpoih) {
  color: #fff;
}
.cca-row-text.svelte-7fpoih {
  min-width: 0;
}
.cca-name.svelte-7fpoih {
  margin: 0;
  font-size: clamp(1.02rem, 1.9vw, 1.18rem);
  font-weight: 750;
  letter-spacing: -0.01em;
  color: var(--heading, #110520);
}
.cca-desc.svelte-7fpoih {
  margin: 4px 0 0;
  font-size: clamp(0.9rem, 1.5vw, 0.98rem);
  line-height: 1.55;
  color: var(--text-muted, #4a2870);
}
.cca-ghost.svelte-7fpoih {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1.5px color-mix(in srgb, var(--cca-accent) 38%, #e6cfe0);
  opacity: 0.7;
  transition: opacity 0.28s ease, -webkit-text-stroke-color 0.28s ease;
}
.cca-row.svelte-7fpoih:hover .cca-ghost:where(.svelte-7fpoih) {
  opacity: 1;
  -webkit-text-stroke-color: var(--cca-accent);
}
@media (max-width: 600px) {
  .cca-row.svelte-7fpoih {
    grid-template-columns: 38px 1fr;
    gap: 14px;
    padding: 16px 6px;
  }
  .cca-marker.svelte-7fpoih {
    width: 38px;
    height: 38px;
  }
  .cca-marker-pin.svelte-7fpoih {
    width: 17px;
    height: 17px;
  }
  .cca-ghost.svelte-7fpoih {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cca-row.svelte-7fpoih,
  .cca-row.svelte-7fpoih:before,
  .cca-marker-dot.svelte-7fpoih,
  .cca-marker-pin.svelte-7fpoih,
  .cca-ghost.svelte-7fpoih {
    transition: none;
  }
}
.cbct-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 104px 0 116px;
  background: radial-gradient(
      800px 540px at 12% 15%,
      rgba(13, 148, 136, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      800px 540px at 88% 85%,
      rgba(233, 30, 140, 0.07) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #f0fdfa, #fff, #fffafc);
}
.cbct-orb.svelte-7fpoih {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  z-index: 0;
}
.cbct-orb-1.svelte-7fpoih {
  top: -150px;
  left: -150px;
  background: #0d948824;
}
.cbct-orb-2.svelte-7fpoih {
  bottom: -150px;
  right: -150px;
  background: #e91e8c24;
}
.cbct-section.svelte-7fpoih .grid-container:where(.svelte-7fpoih) {
  position: relative;
  z-index: 1;
}
.cbct-card.svelte-7fpoih {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding: 52px 56px 48px;
  background: #fff;
  border: 1px solid rgba(13, 148, 136, 0.2);
  border-radius: 28px;
  box-shadow: 0 30px 80px #0f172a1f;
}
.cbct-compass.svelte-7fpoih {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d94880f, #e91e8c0f);
  border: 1px solid rgba(13, 148, 136, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cbct-compass-ring.svelte-7fpoih {
  position: absolute;
  top: 6px;
  right: 6px;
  bottom: 6px;
  left: 6px;
  border: 1.5px dashed rgba(13, 148, 136, 0.35);
  border-radius: 50%;
  animation: svelte-7fpoih-bir-spin 22s linear infinite;
}
.cbct-compass-arrow.svelte-7fpoih {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0d9488;
}
.cbct-compass-mark.svelte-7fpoih {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d9488, #0f766e);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px #0d94884d;
}
.cbct-inner.svelte-7fpoih {
  padding-right: 90px;
}
.cbct-head.svelte-7fpoih {
  margin-bottom: 30px;
}
.cbct-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0d94881a, #e91e8c1a);
  border: 1px solid rgba(13, 148, 136, 0.25);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #0d9488;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.cbct-kicker-ping.svelte-7fpoih {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0d9488;
  box-shadow: 0 0 0 3px #0d948838;
  animation: svelte-7fpoih-kr-ping 2.2s infinite;
}
.cbct-title.svelte-7fpoih {
  font-size: clamp(1.75rem, 3.4vw, 2.4rem);
  line-height: 1.18;
  background: linear-gradient(135deg, #1e293b, #0d9488 45%, #e91e8c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 14px;
}
.cbct-lead.svelte-7fpoih {
  font-size: 16px;
  color: #475569;
  line-height: 1.65;
  margin: 0;
  max-width: 720px;
}
.cbct-corridor.svelte-7fpoih {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0 28px;
  padding: 18px 22px;
  background: linear-gradient(135deg, #0d94880a, #d977060a);
  border: 1px dashed rgba(13, 148, 136, 0.25);
  border-radius: 16px;
}
.cbct-corridor-stop.svelte-7fpoih {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 8px 14px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(13, 148, 136, 0.15);
  min-width: 120px;
  position: relative;
}
.cbct-corridor-dot.svelte-7fpoih {
  position: absolute;
  left: -4px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d9488, #0f766e);
  transform: translateY(-50%);
  box-shadow: 0 0 0 3px #fff;
}
.cbct-corridor-name.svelte-7fpoih {
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
}
.cbct-corridor-sub.svelte-7fpoih {
  font-size: 11px;
  color: #64748b;
  letter-spacing: 0.02em;
}
.cbct-corridor-link.svelte-7fpoih {
  display: inline-flex;
  color: #0d9488;
  flex-shrink: 0;
}
.cbct-trust.svelte-7fpoih {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0 0 28px;
}
.cbct-trust-item.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 13px;
  color: #334155;
  font-weight: 600;
}
.cbct-trust-icon.svelte-7fpoih {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d9488, #e91e8c);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cbct-cta.svelte-7fpoih {
  display: flex;
  align-items: stretch;
  gap: 12px;
  flex-wrap: wrap;
}
.cbct-cta-btn.svelte-7fpoih {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 14px 34px #25d36661;
  transition: transform 0.25s, box-shadow 0.25s;
  overflow: hidden;
}
.cbct-cta-btn.svelte-7fpoih:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px #25d3667a;
  color: #fff;
}
.cbct-cta-btn-shine.svelte-7fpoih {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 70%
  );
  transform: translate(-120%);
  transition: transform 0.7s;
}
.cbct-cta-btn.svelte-7fpoih:hover .cbct-cta-btn-shine:where(.svelte-7fpoih) {
  transform: translate(120%);
}
.cbct-cta-btn-icon.svelte-7fpoih {
  display: inline-flex;
}
.cbct-cta-btn-body.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.cbct-cta-btn-label.svelte-7fpoih {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.cbct-cta-btn-note.svelte-7fpoih {
  font-size: 11.5px;
  opacity: 0.85;
  letter-spacing: 0.04em;
}
.cbct-cta-btn-arrow.svelte-7fpoih {
  display: inline-flex;
  margin-left: 4px;
  transition: transform 0.25s;
}
.cbct-cta-btn.svelte-7fpoih:hover .cbct-cta-btn-arrow:where(.svelte-7fpoih) {
  transform: translate(4px);
}
.cbct-closing.svelte-7fpoih {
  margin: 26px 0 0;
  font-size: 14.5px;
  color: #64748b;
  font-style: italic;
}
@media (max-width: 820px) {
  .cbct-inner.svelte-7fpoih {
    padding-right: 0;
  }
  .cbct-compass.svelte-7fpoih {
    position: static;
    margin: 0 0 18px;
  }
}
@media (max-width: 620px) {
  .cbct-section.svelte-7fpoih {
    padding: 80px 0 88px;
  }
  .cbct-card.svelte-7fpoih {
    padding: 38px 26px 34px;
  }
  .cbct-corridor.svelte-7fpoih {
    flex-direction: column;
    align-items: stretch;
    padding: 16px 14px 16px 18px;
    gap: 10px;
  }
  .cbct-corridor-stop.svelte-7fpoih {
    min-width: 0;
    width: 100%;
  }
  .cbct-corridor-link.svelte-7fpoih {
    transform: rotate(90deg);
    align-self: center;
    margin: -2px 0;
  }
  .cbct-cta.svelte-7fpoih {
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
  }
  .cbct-cta-btn.svelte-7fpoih {
    flex: 1 1 100%;
    justify-content: flex-start;
    gap: 14px;
    padding: 15px 18px;
    border-radius: 16px;
  }
  .cbct-cta-btn-icon.svelte-7fpoih {
    flex: none;
  }
  .cbct-cta-btn-body.svelte-7fpoih {
    flex: 1 1 auto;
    min-width: 0;
    align-items: flex-start;
  }
  .cbct-cta-btn-label.svelte-7fpoih {
    white-space: nowrap;
  }
  .cbct-cta-btn-arrow.svelte-7fpoih {
    margin-left: auto;
    flex: none;
  }
}
.twy-chapter--rose.svelte-7fpoih {
  --tt1: #e91e8c;
  --tt2: #c2185b;
  --ttBg: rgba(233, 30, 140, 0.06);
  --ttBd: rgba(233, 30, 140, 0.22);
}
.twy-chapter--gold.svelte-7fpoih {
  --tt1: #d97706;
  --tt2: #b45309;
  --ttBg: rgba(217, 119, 6, 0.06);
  --ttBd: rgba(217, 119, 6, 0.22);
}
.twy-chapter--teal.svelte-7fpoih {
  --tt1: #0d9488;
  --tt2: #0f766e;
  --ttBg: rgba(13, 148, 136, 0.06);
  --ttBd: rgba(13, 148, 136, 0.22);
}
.twy-chapter--emerald.svelte-7fpoih {
  --tt1: #059669;
  --tt2: #047857;
  --ttBg: rgba(5, 150, 105, 0.06);
  --ttBd: rgba(5, 150, 105, 0.22);
}
.twy-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 104px 0 110px;
  background: radial-gradient(
      760px 480px at 15% 15%,
      rgba(13, 148, 136, 0.05) 0%,
      transparent 60%
    ),
    radial-gradient(
      760px 480px at 85% 85%,
      rgba(233, 30, 140, 0.05) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #fffafc, #fff, #f0fdfa);
}
.twy-skyline.svelte-7fpoih {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 80px;
  pointer-events: none;
  z-index: 0;
}
.twy-orb.svelte-7fpoih {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.twy-orb-1.svelte-7fpoih {
  top: -130px;
  left: -130px;
  background: #e91e8c1c;
}
.twy-orb-2.svelte-7fpoih {
  bottom: 40px;
  right: -130px;
  background: #0d94881c;
}
.twy-section.svelte-7fpoih .grid-container:where(.svelte-7fpoih) {
  position: relative;
  z-index: 1;
}
.twy-head.svelte-7fpoih {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 52px;
}
.twy-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 18px;
  border-radius: 6px;
  background: linear-gradient(135deg, #0d948814, #e91e8c14);
  border: 1px solid rgba(13, 148, 136, 0.22);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: #0f766e;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-family: Georgia, Cormorant Garamond, serif;
}
.twy-kicker-crest.svelte-7fpoih {
  color: #d97706;
  display: inline-flex;
}
.twy-title.svelte-7fpoih {
  font-family: Georgia, Cormorant Garamond, serif;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  line-height: 1.15;
  background: linear-gradient(135deg, #1e293b, #0f766e 45%, #e91e8c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.twy-eyebrow.svelte-7fpoih {
  font-family: Georgia, serif;
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
  margin: 0 0 22px;
  font-style: italic;
}
.twy-rule.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  width: 100%;
}
.twy-rule-line.svelte-7fpoih {
  width: 120px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(233, 30, 140, 0.4),
    transparent
  );
}
.twy-rule-diamond.svelte-7fpoih {
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #0d9488, #e91e8c);
  transform: rotate(45deg);
}
.twy-chapters.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}
.twy-chapter.svelte-7fpoih {
  position: relative;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 28px;
  padding: 30px 30px 30px 0;
  background: #fff;
  border: 1px solid var(--ttBd);
  border-left: 4px solid var(--tt1);
  border-radius: 16px;
  box-shadow: 0 10px 28px #0f172a0d;
  transition: transform 0.3s, box-shadow 0.3s;
}
.twy-chapter.svelte-7fpoih:hover {
  transform: translate(4px);
  box-shadow: 0 18px 40px #0f172a17;
}
.twy-chapter-mark.svelte-7fpoih {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4px;
}
.twy-chapter-roman.svelte-7fpoih {
  font-family: Georgia, Cormorant Garamond, serif;
  font-size: 58px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--tt1), var(--tt2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.02em;
}
.twy-chapter-stem.svelte-7fpoih {
  position: absolute;
  right: -14px;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--ttBd), transparent);
}
.twy-chapter-body.svelte-7fpoih {
  min-width: 0;
  padding-right: 4px;
}
.twy-chapter-label.svelte-7fpoih {
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 10px;
  background: var(--ttBg);
  border: 1px solid var(--ttBd);
  border-radius: 4px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--tt1);
  text-transform: uppercase;
  font-family: Georgia, serif;
}
.twy-chapter-title.svelte-7fpoih {
  font-family: Georgia, Cormorant Garamond, serif;
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
  margin: 0 0 10px;
  letter-spacing: -0.005em;
}
.twy-chapter-desc.svelte-7fpoih {
  font-size: 15.5px;
  color: #475569;
  line-height: 1.75;
  margin: 0;
}
.twy-seals.svelte-7fpoih {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 820px;
  margin: 44px auto 0;
  padding: 22px 28px;
  background: linear-gradient(135deg, #0d94880d, #e91e8c0d);
  border: 1px dashed rgba(13, 148, 136, 0.25);
  border-radius: 16px;
}
.twy-seal.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
  padding: 0 8px;
  border-right: 1px solid rgba(13, 148, 136, 0.18);
}
.twy-seal.svelte-7fpoih:last-child {
  border-right: none;
}
.twy-seal-label.svelte-7fpoih {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: #0f766e;
  text-transform: uppercase;
  font-family: Georgia, serif;
}
.twy-seal-value.svelte-7fpoih {
  font-size: 13.5px;
  color: #1e293b;
  font-weight: 600;
}
@media (max-width: 780px) {
  .twy-chapter.svelte-7fpoih {
    grid-template-columns: 70px 1fr;
    gap: 18px;
    padding: 24px 22px 24px 0;
  }
  .twy-chapter-roman.svelte-7fpoih {
    font-size: 44px;
  }
  .twy-chapter-title.svelte-7fpoih {
    font-size: 19px;
  }
  .twy-seals.svelte-7fpoih {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .twy-seal.svelte-7fpoih {
    border-right: none;
    border-bottom: 1px solid rgba(13, 148, 136, 0.18);
    padding: 10px 0;
  }
  .twy-seal.svelte-7fpoih:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}
@media (max-width: 520px) {
  .twy-section.svelte-7fpoih {
    padding: 74px 0 80px;
  }
  .twy-chapter.svelte-7fpoih {
    grid-template-columns: 56px 1fr;
    gap: 14px;
    padding: 22px 18px 22px 0;
  }
  .twy-chapter-roman.svelte-7fpoih {
    font-size: 36px;
  }
  .twy-rule-line.svelte-7fpoih {
    width: 60px;
  }
}
.ttp-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 8vw, 108px) 0;
  background: radial-gradient(
      680px 460px at 12% 6%,
      rgba(233, 30, 140, 0.06) 0%,
      transparent 60%
    ),
    radial-gradient(
      680px 460px at 88% 94%,
      rgba(20, 184, 166, 0.06) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #fffafc, #fff 48%, #f6fffa);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ttp-orb.svelte-7fpoih {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.ttp-orb-1.svelte-7fpoih {
  width: 320px;
  height: 320px;
  top: -90px;
  left: -70px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.16),
    transparent 70%
  );
}
.ttp-orb-2.svelte-7fpoih {
  width: 360px;
  height: 360px;
  bottom: -120px;
  right: -90px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.14), transparent 70%);
}
.ttp-head.svelte-7fpoih {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(36px, 5vw, 60px);
}
.ttp-kicker.svelte-7fpoih {
  display: inline-block;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #be185d;
  padding: 7px 16px;
  border-radius: 999px;
  background: #e91e8c12;
  border: 1px solid rgba(233, 30, 140, 0.16);
}
.ttp-title.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 700;
  line-height: 1.12;
  margin: 18px 0 0;
  background: linear-gradient(120deg, #1e293b, #be185d 55%, #d97706);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.ttp-lead.svelte-7fpoih {
  margin: 16px auto 0;
  max-width: 620px;
  font-family: Inter, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}
.ttp-grid.svelte-7fpoih {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(18px, 2.4vw, 28px);
  max-width: 1040px;
  margin: 0 auto;
}
.ttp-card.svelte-7fpoih {
  --ttp-c: #e91e8c;
  --ttp-soft: rgba(233, 30, 140, 0.1);
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3vw, 36px);
  border-radius: 22px;
  background: linear-gradient(180deg, #fff, #fffafd);
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 18px 44px -28px #0f172a47;
  transition: transform 0.28s ease, box-shadow 0.28s ease,
    border-color 0.28s ease;
}
.ttp-card.svelte-7fpoih:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--ttp-c), transparent);
}
.ttp-card.svelte-7fpoih:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 56px -26px var(--ttp-soft), 0 18px 44px -28px #0f172a42;
  border-color: var(--ttp-c);
}
.ttp-card-glow.svelte-7fpoih {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--ttp-soft), transparent 70%);
  pointer-events: none;
}
.ttp-card--rose.svelte-7fpoih {
  --ttp-c: #e91e8c;
  --ttp-soft: rgba(233, 30, 140, 0.12);
}
.ttp-card--coral.svelte-7fpoih {
  --ttp-c: #f43f5e;
  --ttp-soft: rgba(244, 63, 94, 0.12);
}
.ttp-card--teal.svelte-7fpoih {
  --ttp-c: #0d9488;
  --ttp-soft: rgba(13, 148, 136, 0.12);
}
.ttp-card--gold.svelte-7fpoih {
  --ttp-c: #d97706;
  --ttp-soft: rgba(217, 119, 6, 0.12);
}
.ttp-card-top.svelte-7fpoih {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.ttp-card-num.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--ttp-c);
  opacity: 0.55;
}
.ttp-card-tag.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ttp-c);
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--ttp-soft);
  border: 1px solid var(--ttp-c);
}
.ttp-card-name.svelte-7fpoih {
  position: relative;
  z-index: 1;
  font-family: Cormorant Garamond, serif;
  font-size: clamp(1.3rem, 1.9vw, 1.55rem);
  font-weight: 700;
  line-height: 1.2;
  color: #1e293b;
  margin: 0 0 10px;
}
.ttp-card-desc.svelte-7fpoih {
  position: relative;
  z-index: 1;
  font-family: Inter, sans-serif;
  font-size: 14.5px;
  line-height: 1.72;
  color: #475569;
  margin: 0;
}
@media (max-width: 760px) {
  .ttp-grid.svelte-7fpoih {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .ttp-card.svelte-7fpoih {
    padding: 22px 20px;
  }
  .ttp-card-num.svelte-7fpoih {
    font-size: 2rem;
  }
}
.tac-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 8vw, 108px) 0;
  background: radial-gradient(
      640px 440px at 90% 8%,
      rgba(20, 184, 166, 0.06) 0%,
      transparent 60%
    ),
    radial-gradient(
      640px 440px at 8% 92%,
      rgba(217, 119, 6, 0.06) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #f8fffd, #fff, #fffafc);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.tac-orb.svelte-7fpoih {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.tac-orb-1.svelte-7fpoih {
  width: 320px;
  height: 320px;
  top: -90px;
  right: -70px;
  background: radial-gradient(
    circle,
    rgba(20, 184, 166, 0.16),
    transparent 70%
  );
}
.tac-orb-2.svelte-7fpoih {
  width: 340px;
  height: 340px;
  bottom: -110px;
  left: -80px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.13),
    transparent 70%
  );
}
.tac-head.svelte-7fpoih {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(34px, 5vw, 56px);
}
.tac-kicker.svelte-7fpoih {
  display: inline-block;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #0f766e;
  padding: 7px 16px;
  border-radius: 999px;
  background: #14b8a614;
  border: 1px solid rgba(20, 184, 166, 0.18);
}
.tac-title.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 700;
  line-height: 1.12;
  margin: 18px 0 0;
  background: linear-gradient(120deg, #1e293b, #0f766e 55%, #d97706);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.tac-lead.svelte-7fpoih {
  margin: 14px auto 0;
  max-width: 560px;
  font-family: Inter, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}
.tac-grid.svelte-7fpoih {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(14px, 2vw, 22px);
  max-width: 1000px;
  margin: 0 auto;
}
.tac-zone.svelte-7fpoih {
  --tac-c: #e91e8c;
  --tac-soft: rgba(233, 30, 140, 0.1);
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: clamp(18px, 2.2vw, 24px) clamp(18px, 2.4vw, 26px);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #fffcfe);
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-left: 3px solid var(--tac-c);
  box-shadow: 0 14px 36px -26px #0f172a42;
  transition: transform 0.26s ease, box-shadow 0.26s ease,
    border-color 0.26s ease;
}
.tac-zone.svelte-7fpoih:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px -26px var(--tac-soft), 0 14px 36px -26px #0f172a3d;
}
.tac-zone--rose.svelte-7fpoih {
  --tac-c: #e91e8c;
  --tac-soft: rgba(233, 30, 140, 0.16);
}
.tac-zone--gold.svelte-7fpoih {
  --tac-c: #d97706;
  --tac-soft: rgba(217, 119, 6, 0.16);
}
.tac-zone--teal.svelte-7fpoih {
  --tac-c: #0d9488;
  --tac-soft: rgba(13, 148, 136, 0.16);
}
.tac-zone--coral.svelte-7fpoih {
  --tac-c: #f43f5e;
  --tac-soft: rgba(244, 63, 94, 0.16);
}
.tac-zone-pin.svelte-7fpoih {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(
    135deg,
    var(--tac-c),
    color-mix(in srgb, var(--tac-c) 55%, #d97706)
  );
  box-shadow: 0 8px 20px -6px var(--tac-soft);
}
.tac-zone-name.svelte-7fpoih {
  font-family: Cormorant Garamond, serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1e293b;
  margin: 0 0 4px;
}
.tac-zone-desc.svelte-7fpoih {
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}
@media (max-width: 760px) {
  .tac-grid.svelte-7fpoih {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .tac-zone.svelte-7fpoih {
    padding: 16px;
    gap: 13px;
  }
  .tac-zone-pin.svelte-7fpoih {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }
  .tac-zone-name.svelte-7fpoih {
    font-size: 1.2rem;
  }
}
.tct-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 104px 0 116px;
  background: radial-gradient(
      800px 540px at 12% 15%,
      rgba(13, 148, 136, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      800px 540px at 88% 85%,
      rgba(233, 30, 140, 0.07) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #f0fdfa, #fff, #fffafc);
}
.tct-orb.svelte-7fpoih {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  z-index: 0;
}
.tct-orb-1.svelte-7fpoih {
  top: -150px;
  left: -150px;
  background: #0d948824;
}
.tct-orb-2.svelte-7fpoih {
  bottom: -150px;
  right: -150px;
  background: #e91e8c24;
}
.tct-section.svelte-7fpoih .grid-container:where(.svelte-7fpoih) {
  position: relative;
  z-index: 1;
}
.tct-panel.svelte-7fpoih {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding: 56px 64px 52px;
  background: linear-gradient(180deg, #fff, #0d948805);
  border: 1.5px solid rgba(13, 148, 136, 0.22);
  border-radius: 4px;
  box-shadow: 0 30px 80px #0f172a1a;
}
.tct-corner.svelte-7fpoih {
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: #0d9488;
  pointer-events: none;
}
.tct-corner-tl.svelte-7fpoih {
  top: 10px;
  left: 10px;
  border-top: 2px solid;
  border-left: 2px solid;
}
.tct-corner-tr.svelte-7fpoih {
  top: 10px;
  right: 10px;
  border-top: 2px solid;
  border-right: 2px solid;
}
.tct-corner-bl.svelte-7fpoih {
  bottom: 10px;
  left: 10px;
  border-bottom: 2px solid;
  border-left: 2px solid;
}
.tct-corner-br.svelte-7fpoih {
  bottom: 10px;
  right: 10px;
  border-bottom: 2px solid;
  border-right: 2px solid;
}
.tct-head.svelte-7fpoih {
  text-align: center;
  margin-bottom: 36px;
  position: relative;
}
.tct-crest.svelte-7fpoih {
  position: relative;
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0d948814, #e91e8c14);
  border: 1.5px solid rgba(13, 148, 136, 0.3);
  border-radius: 50%;
}
.tct-crest-ring.svelte-7fpoih {
  position: absolute;
  top: 5px;
  right: 5px;
  bottom: 5px;
  left: 5px;
  border: 1.5px dashed rgba(13, 148, 136, 0.4);
  border-radius: 50%;
  animation: svelte-7fpoih-bir-spin 20s linear infinite;
}
.tct-crest-core.svelte-7fpoih {
  color: #0f766e;
  position: relative;
  z-index: 1;
}
.tct-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid rgba(13, 148, 136, 0.25);
  font-family: Georgia, serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: #0f766e;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.tct-kicker-pulse.svelte-7fpoih {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0d9488;
  box-shadow: 0 0 0 3px #0d948838;
  animation: svelte-7fpoih-kr-ping 2.2s infinite;
}
.tct-title.svelte-7fpoih {
  font-family: Georgia, Cormorant Garamond, serif;
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  line-height: 1.15;
  background: linear-gradient(135deg, #1e293b, #0f766e 45%, #e91e8c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.tct-lead.svelte-7fpoih {
  font-family: Georgia, serif;
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 720px;
  font-style: italic;
}
.tct-districts.svelte-7fpoih {
  margin: 0 0 30px;
}
.tct-districts-label.svelte-7fpoih {
  display: block;
  text-align: center;
  margin-bottom: 16px;
  font-family: Georgia, serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: #0f766e;
  text-transform: uppercase;
}
.tct-districts-grid.svelte-7fpoih {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.tct-district.svelte-7fpoih {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 4px;
  background: linear-gradient(135deg, #fff, #0d94880a);
  border: 1px solid rgba(13, 148, 136, 0.18);
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
}
.tct-district.svelte-7fpoih:hover {
  transform: translateY(-2px);
  border-color: #0d948866;
  background: linear-gradient(135deg, #fff, #0d948814);
}
.tct-district-num.svelte-7fpoih {
  flex-shrink: 0;
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, #0d9488, #0f766e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}
.tct-district-body.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.tct-district-name.svelte-7fpoih {
  font-family: Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.25;
}
.tct-district-sub.svelte-7fpoih {
  font-size: 11.5px;
  color: #64748b;
  letter-spacing: 0.02em;
}
.tct-trust.svelte-7fpoih {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0 0 28px;
  padding: 18px 24px;
  background: linear-gradient(135deg, #0d94880a, #e91e8c0a);
  border-top: 1px dashed rgba(13, 148, 136, 0.22);
  border-bottom: 1px dashed rgba(13, 148, 136, 0.22);
}
.tct-trust-item.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-family: Georgia, serif;
  font-size: 13px;
  color: #334155;
  font-weight: 600;
}
.tct-trust-icon.svelte-7fpoih {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d9488, #e91e8c);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.tct-cta.svelte-7fpoih {
  display: flex;
  align-items: stretch;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.tct-cta-btn.svelte-7fpoih {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  border-radius: 4px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 14px 34px #25d36661;
  transition: transform 0.25s, box-shadow 0.25s;
  overflow: hidden;
}
.tct-cta-btn.svelte-7fpoih:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px #25d3667a;
  color: #fff;
}
.tct-cta-btn-shine.svelte-7fpoih {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 70%
  );
  transform: translate(-120%);
  transition: transform 0.7s;
}
.tct-cta-btn.svelte-7fpoih:hover .tct-cta-btn-shine:where(.svelte-7fpoih) {
  transform: translate(120%);
}
.tct-cta-btn-icon.svelte-7fpoih {
  display: inline-flex;
}
.tct-cta-btn-body.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.tct-cta-btn-label.svelte-7fpoih {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.tct-cta-btn-note.svelte-7fpoih {
  font-size: 11.5px;
  opacity: 0.85;
  letter-spacing: 0.04em;
}
.tct-cta-btn-arrow.svelte-7fpoih {
  display: inline-flex;
  margin-left: 4px;
  transition: transform 0.25s;
}
.tct-cta-btn.svelte-7fpoih:hover .tct-cta-btn-arrow:where(.svelte-7fpoih) {
  transform: translate(4px);
}
.tct-closing.svelte-7fpoih {
  text-align: center;
  margin: 26px 0 0;
  font-family: Georgia, serif;
  font-size: 14.5px;
  color: #64748b;
  font-style: italic;
}
@media (max-width: 980px) {
  .tct-districts-grid.svelte-7fpoih {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 720px) {
  .tct-section.svelte-7fpoih {
    padding: 80px 0 88px;
  }
  .tct-panel.svelte-7fpoih {
    padding: 42px 28px 40px;
  }
  .tct-corner.svelte-7fpoih {
    width: 16px;
    height: 16px;
  }
  .tct-trust.svelte-7fpoih {
    padding: 14px 18px;
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .tct-panel.svelte-7fpoih {
    padding: 38px 20px 36px;
  }
  .tct-districts-grid.svelte-7fpoih {
    grid-template-columns: 1fr;
  }
  .tct-cta-btn.svelte-7fpoih {
    padding: 14px 22px;
  }
}
.kyk-call--coral.svelte-7fpoih,
.kyr-entry--coral.svelte-7fpoih {
  --kyt1: #f43f5e;
  --kyt2: #e11d48;
  --kytBg: rgba(244, 63, 94, 0.06);
  --kytBd: rgba(244, 63, 94, 0.22);
}
.kyk-call--gold.svelte-7fpoih,
.kys-corridor--gold.svelte-7fpoih,
.kyr-entry--gold.svelte-7fpoih {
  --kyt1: #d97706;
  --kyt2: #b45309;
  --kytBg: rgba(217, 119, 6, 0.06);
  --kytBd: rgba(217, 119, 6, 0.22);
}
.kyk-call--rose.svelte-7fpoih,
.kys-zone--rose.svelte-7fpoih,
.kyr-entry--rose.svelte-7fpoih {
  --kyt1: #e91e8c;
  --kyt2: #c2185b;
  --kytBg: rgba(233, 30, 140, 0.06);
  --kytBd: rgba(233, 30, 140, 0.22);
}
.kys-zone--teal.svelte-7fpoih,
.kyr-entry--teal.svelte-7fpoih {
  --kyt1: #0d9488;
  --kyt2: #0f766e;
  --kytBg: rgba(13, 148, 136, 0.06);
  --kytBd: rgba(13, 148, 136, 0.22);
}
.kyr-entry--emerald.svelte-7fpoih {
  --kyt1: #059669;
  --kyt2: #047857;
  --kytBg: rgba(5, 150, 105, 0.06);
  --kytBd: rgba(5, 150, 105, 0.22);
}
.kyk-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 96px 0 106px;
  background: radial-gradient(
      760px 480px at 10% 10%,
      rgba(244, 63, 94, 0.05) 0%,
      transparent 60%
    ),
    radial-gradient(
      760px 480px at 90% 90%,
      rgba(217, 119, 6, 0.05) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #fffafc, #fff 55%, #fffdf5);
}
.kyk-orb.svelte-7fpoih {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.kyk-orb-1.svelte-7fpoih {
  top: -130px;
  left: -130px;
  background: #f43f5e1c;
}
.kyk-orb-2.svelte-7fpoih {
  bottom: -130px;
  right: -130px;
  background: #d977061c;
}
.kyk-section.svelte-7fpoih .grid-container:where(.svelte-7fpoih) {
  position: relative;
  z-index: 1;
}
.kyk-head.svelte-7fpoih {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 36px;
}
.kyk-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid rgba(244, 63, 94, 0.3);
  font-family: Courier New, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #e11d48;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.kyk-kicker-stamp.svelte-7fpoih {
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, #f43f5e, #d97706);
  clip-path: polygon(50% 0, 100% 38%, 82% 100%, 18% 100%, 0 38%);
  display: inline-block;
}
.kyk-title.svelte-7fpoih {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.2;
  background: linear-gradient(135deg, #1e293b, #e11d48 45%, #d97706);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}
.kyk-stats.svelte-7fpoih {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 880px;
  margin: 0 auto 38px;
  padding: 20px 28px;
  background: linear-gradient(135deg, #fff, #f43f5e0a);
  border: 1px solid rgba(244, 63, 94, 0.18);
  border-radius: 14px;
  box-shadow: 0 8px 22px #0f172a0d;
}
.kyk-stat.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  text-align: center;
  padding: 4px 10px;
  border-right: 1px dashed rgba(244, 63, 94, 0.2);
}
.kyk-stat.svelte-7fpoih:last-child {
  border-right: none;
}
.kyk-stat-value.svelte-7fpoih {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, #e11d48, #d97706);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Courier New, monospace;
  letter-spacing: 0.02em;
}
.kyk-stat-label.svelte-7fpoih {
  font-size: 11.5px;
  color: #475569;
  letter-spacing: 0.04em;
}
.kyk-opening.svelte-7fpoih {
  max-width: 820px;
  margin: 0 auto 32px;
  font-size: 17px;
  color: #334155;
  line-height: 1.75;
  text-align: center;
  font-family: Georgia, serif;
}
.kyk-callouts.svelte-7fpoih {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto 32px;
}
.kyk-call.svelte-7fpoih {
  position: relative;
  padding: 28px 30px 28px 38px;
  background: #fff;
  border: 1px solid var(--kytBd);
  border-left: 4px solid var(--kyt1);
  border-radius: 12px;
  box-shadow: 0 10px 28px #0f172a0f;
  transition: transform 0.3s, box-shadow 0.3s;
}
.kyk-call.svelte-7fpoih:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px #0f172a1a;
}
.kyk-call-label.svelte-7fpoih {
  display: inline-block;
  padding: 4px 10px;
  margin-bottom: 12px;
  background: var(--kytBg);
  border: 1px solid var(--kytBd);
  border-radius: 4px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--kyt1);
  text-transform: uppercase;
  font-family: Courier New, monospace;
}
.kyk-call-excerpt.svelte-7fpoih {
  position: relative;
  font-size: 17px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.4;
  margin: 0 0 14px;
  padding-left: 20px;
  font-family: Georgia, serif;
  font-style: italic;
}
.kyk-call-excerpt-mark.svelte-7fpoih {
  position: absolute;
  left: -4px;
  top: -12px;
  font-size: 44px;
  line-height: 1;
  color: var(--kyt1);
  opacity: 0.5;
  font-family: Georgia, serif;
}
.kyk-call-body.svelte-7fpoih {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.7;
  margin: 0;
}
.kyk-resolve.svelte-7fpoih {
  max-width: 880px;
  margin: 0 auto;
  padding: 26px 30px 28px;
  background: linear-gradient(135deg, #0596690d, #0d94880d);
  border: 1px solid rgba(5, 150, 105, 0.22);
  border-radius: 16px;
  position: relative;
}
.kyk-resolve-badge.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #10b981, #047857);
  color: #fff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: Courier New, monospace;
}
.kyk-resolve-body.svelte-7fpoih {
  font-size: 15.5px;
  color: #334155;
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 900px) {
  .kyk-callouts.svelte-7fpoih {
    grid-template-columns: 1fr;
  }
  .kyk-stats.svelte-7fpoih {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px 20px;
  }
  .kyk-stat.svelte-7fpoih {
    border-right: none;
    border-bottom: 1px dashed rgba(244, 63, 94, 0.2);
    padding: 8px 0;
    flex-direction: row;
    gap: 10px;
    justify-content: space-between;
  }
  .kyk-stat.svelte-7fpoih:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .kyk-stat-label.svelte-7fpoih {
    text-align: right;
  }
}
@media (max-width: 620px) {
  .kyk-section.svelte-7fpoih {
    padding: 70px 0 78px;
  }
  .kyk-call.svelte-7fpoih {
    padding: 24px 22px 24px 28px;
  }
}
.kys-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 96px 0 104px;
  background: linear-gradient(180deg, #fffdf5, #fff, #f0fdfa);
}
.kys-head.svelte-7fpoih {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 40px;
}
.kys-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 18px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.22);
  font-family: Courier New, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #c2185b;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.kys-kicker-dot.svelte-7fpoih {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e91e8c, #0d9488);
}
.kys-title.svelte-7fpoih {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.2;
  background: linear-gradient(135deg, #1e293b, #e91e8c, #0d9488);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 14px;
}
.kys-lead.svelte-7fpoih {
  font-size: 16px;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}
.kys-split.svelte-7fpoih {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 72px 1fr;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto 26px;
  align-items: stretch;
}
.kys-zone.svelte-7fpoih {
  position: relative;
  padding: 30px 28px 26px;
  background: #fff;
  border: 1px solid var(--kytBd);
  border-radius: 18px;
  box-shadow: 0 10px 28px #0f172a0f;
  transition: transform 0.3s, box-shadow 0.3s;
}
.kys-zone.svelte-7fpoih:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px #0f172a1a;
}
.kys-zone-head.svelte-7fpoih {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.kys-zone-code.svelte-7fpoih {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--kyt1), var(--kyt2));
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px var(--kytBd);
  flex-shrink: 0;
}
.kys-zone-name.svelte-7fpoih {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.25;
  margin: 0 0 2px;
}
.kys-zone-hint.svelte-7fpoih {
  font-size: 12.5px;
  color: #64748b;
  letter-spacing: 0.02em;
}
.kys-zone-desc.svelte-7fpoih {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.65;
  margin: 0 0 14px;
}
.kys-zone-tags.svelte-7fpoih {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.kys-zone-tag.svelte-7fpoih {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--kytBg);
  border: 1px solid var(--kytBd);
  font-size: 11px;
  font-weight: 600;
  color: var(--kyt1);
  letter-spacing: 0.02em;
}
.kys-rail.svelte-7fpoih {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
.kys-rail-track.svelte-7fpoih {
  position: absolute;
  top: 6%;
  bottom: 6%;
  width: 3px;
  background: linear-gradient(180deg, #0f766e, #e91e8c, #0f766e);
  opacity: 0.45;
}
.kys-rail-track.svelte-7fpoih:nth-child(1) {
  transform: translate(-7px);
}
.kys-rail-track.svelte-7fpoih:nth-child(2) {
  transform: translate(7px);
}
.kys-rail-tie.svelte-7fpoih {
  position: absolute;
  width: 26px;
  height: 3px;
  left: 50%;
  background: linear-gradient(90deg, #94a3b8, #475569, #94a3b8);
  border-radius: 2px;
  transform: translate(-50%);
  opacity: 0.35;
}
.kys-rail-tie-1.svelte-7fpoih {
  top: 12%;
}
.kys-rail-tie-2.svelte-7fpoih {
  top: 30%;
}
.kys-rail-tie-3.svelte-7fpoih {
  top: 48%;
}
.kys-rail-tie-4.svelte-7fpoih {
  top: 66%;
}
.kys-rail-tie-5.svelte-7fpoih {
  top: 84%;
}
.kys-rail-badge.svelte-7fpoih {
  position: relative;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #fff;
  border: 1.5px solid rgba(233, 30, 140, 0.25);
  font-family: Courier New, monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #c2185b;
  text-transform: uppercase;
  box-shadow: 0 8px 18px #0f172a14;
}
.kys-rail-badge.svelte-7fpoih svg:where(.svelte-7fpoih) {
  color: #0d9488;
}
.kys-corridor.svelte-7fpoih {
  position: relative;
  max-width: 1080px;
  margin: 32px auto 0;
  border: 1px solid var(--kytBd);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px #0f172a0f;
  background: #fff;
}
.kys-corridor-band.svelte-7fpoih {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: repeating-linear-gradient(
    45deg,
    var(--kyt1) 0 8px,
    transparent 8px 16px
  );
}
.kys-corridor-inner.svelte-7fpoih {
  padding: 26px 30px 26px 44px;
}
.kys-corridor-head.svelte-7fpoih {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}
.kys-corridor-ext.svelte-7fpoih {
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--kytBg);
  border: 1px solid var(--kytBd);
  font-family: Courier New, monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--kyt1);
  text-transform: uppercase;
}
.kys-corridor-name.svelte-7fpoih {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}
.kys-corridor-hint.svelte-7fpoih {
  font-size: 12.5px;
  color: #64748b;
}
.kys-corridor-desc.svelte-7fpoih {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.65;
  margin: 0 0 14px;
}
.kys-corridor-tags.svelte-7fpoih {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.kys-corridor-tag.svelte-7fpoih {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--kytBg);
  border: 1px solid var(--kytBd);
  font-size: 11px;
  font-weight: 600;
  color: var(--kyt1);
}
@media (max-width: 900px) {
  .kys-split.svelte-7fpoih {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .kys-rail.svelte-7fpoih {
    display: none;
  }
}
@media (max-width: 620px) {
  .kys-section.svelte-7fpoih {
    padding: 70px 0 78px;
  }
  .kys-zone.svelte-7fpoih {
    padding: 26px 22px 22px;
  }
  .kys-corridor-inner.svelte-7fpoih {
    padding: 24px 22px 22px 34px;
  }
}
.kyr-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 96px 0 104px;
  background: linear-gradient(180deg, #f0fdfa, #fff, #fffafc);
}
.kyr-orb.svelte-7fpoih {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  z-index: 0;
}
.kyr-orb-1.svelte-7fpoih {
  top: 20%;
  left: -180px;
  background: #0d94881a;
}
.kyr-section.svelte-7fpoih .grid-container:where(.svelte-7fpoih) {
  position: relative;
  z-index: 1;
}
.kyr-head.svelte-7fpoih {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 40px;
}
.kyr-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.22);
  font-family: Courier New, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #c2185b;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.kyr-kicker-bar.svelte-7fpoih {
  width: 18px;
  height: 2px;
  background: linear-gradient(90deg, #e91e8c, #d97706);
  display: inline-block;
}
.kyr-title.svelte-7fpoih {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.2;
  background: linear-gradient(135deg, #1e293b, #c2185b, #0f766e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 14px;
}
.kyr-lead.svelte-7fpoih {
  font-size: 16px;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}
.kyr-grid.svelte-7fpoih {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
}
.kyr-entry.svelte-7fpoih {
  position: relative;
  padding: 30px 30px 28px 42px;
  background: #fff;
  border: 1px solid var(--kytBd);
  border-radius: 6px;
  box-shadow: 0 10px 28px #0f172a0f;
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}
.kyr-entry.svelte-7fpoih:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 44px #0f172a1a;
}
.kyr-entry-rail.svelte-7fpoih {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: repeating-linear-gradient(
    0deg,
    var(--kyt1) 0 10px,
    transparent 10px 18px
  );
  opacity: 0.75;
}
.kyr-entry-head.svelte-7fpoih {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 1px dashed var(--kytBd);
}
.kyr-entry-no.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: Courier New, monospace;
}
.kyr-entry-no-label.svelte-7fpoih {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: #94a3b8;
  text-transform: uppercase;
}
.kyr-entry-no-value.svelte-7fpoih {
  font-size: 16px;
  font-weight: 700;
  color: var(--kyt1);
  letter-spacing: 0.04em;
}
.kyr-entry-tag.svelte-7fpoih {
  padding: 5px 12px;
  border-radius: 4px;
  background: var(--kytBg);
  border: 1px solid var(--kytBd);
  font-family: Courier New, monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--kyt1);
  text-transform: uppercase;
}
.kyr-entry-name.svelte-7fpoih {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
  margin: 0 0 10px;
}
.kyr-entry-window.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  margin-bottom: 14px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 4px;
  font-family: Courier New, monospace;
  font-size: 11.5px;
  color: #334155;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.kyr-entry-window.svelte-7fpoih svg:where(.svelte-7fpoih) {
  color: var(--kyt1);
  flex-shrink: 0;
}
.kyr-entry-desc.svelte-7fpoih {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 820px) {
  .kyr-grid.svelte-7fpoih {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
@media (max-width: 620px) {
  .kyr-section.svelte-7fpoih {
    padding: 70px 0 78px;
  }
  .kyr-entry.svelte-7fpoih {
    padding: 26px 24px 24px 36px;
  }
  .kyr-entry-head.svelte-7fpoih {
    flex-direction: column;
    align-items: flex-start;
  }
}
.kybk-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 104px 0 116px;
  background: radial-gradient(
      800px 540px at 12% 15%,
      rgba(233, 30, 140, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      800px 540px at 88% 85%,
      rgba(13, 148, 136, 0.07) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #fffafc, #fff, #f0fdfa);
}
.kybk-orb.svelte-7fpoih {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  z-index: 0;
}
.kybk-orb-1.svelte-7fpoih {
  top: -150px;
  left: -150px;
  background: #e91e8c24;
}
.kybk-orb-2.svelte-7fpoih {
  bottom: -150px;
  right: -150px;
  background: #0d948824;
}
.kybk-section.svelte-7fpoih .grid-container:where(.svelte-7fpoih) {
  position: relative;
  z-index: 1;
}
.kybk-card.svelte-7fpoih {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding: 52px 56px 48px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.22);
  border-radius: 24px;
  box-shadow: 0 30px 80px #0f172a1f;
}
.kybk-head.svelte-7fpoih {
  text-align: center;
  margin-bottom: 36px;
}
.kybk-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 4px;
  background: linear-gradient(135deg, #e91e8c1a, #0d94881a);
  border: 1px solid rgba(233, 30, 140, 0.25);
  font-family: Courier New, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: #c2185b;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.kybk-kicker-ping.svelte-7fpoih {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e91e8c;
  box-shadow: 0 0 0 3px #e91e8c38;
  animation: svelte-7fpoih-kr-ping 2.2s infinite;
}
.kybk-title.svelte-7fpoih {
  font-size: clamp(1.75rem, 3.4vw, 2.4rem);
  line-height: 1.18;
  background: linear-gradient(135deg, #1e293b, #e91e8c 45%, #0d9488);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 14px;
}
.kybk-lead.svelte-7fpoih {
  font-size: 16px;
  color: #475569;
  line-height: 1.65;
  margin: 0 auto;
  max-width: 720px;
}
.kybk-line.svelte-7fpoih {
  margin: 32px 0 28px;
  padding: 24px 28px;
  background: linear-gradient(135deg, #e91e8c0a, #0d94880a);
  border: 1px dashed rgba(233, 30, 140, 0.25);
  border-radius: 16px;
}
.kybk-line-name.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  margin-bottom: 18px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.2);
  border-radius: 4px;
  font-family: Courier New, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #c2185b;
  text-transform: uppercase;
}
.kybk-line-name.svelte-7fpoih svg:where(.svelte-7fpoih) {
  color: #0d9488;
}
.kybk-stops.svelte-7fpoih {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 10px 0;
}
.kybk-stops-track.svelte-7fpoih {
  position: absolute;
  top: 50%;
  left: 4%;
  right: 4%;
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    #e91e8c 0 8px,
    transparent 8px 14px
  );
  opacity: 0.55;
  transform: translateY(-50%);
}
.kybk-stop.svelte-7fpoih {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 30px 10px 12px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.18);
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 12px #0f172a0a;
  z-index: 1;
}
.kybk-stop-dot.svelte-7fpoih {
  position: absolute;
  top: -8px;
  left: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e91e8c, #c2185b);
  border: 3px solid #fff;
  transform: translate(-50%);
  box-shadow: 0 0 0 2px #e91e8c4d;
}
.kybk-stop-num.svelte-7fpoih {
  font-family: Courier New, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #94a3b8;
  text-transform: uppercase;
}
.kybk-stop-name.svelte-7fpoih {
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
}
.kybk-stop-sub.svelte-7fpoih {
  font-size: 11px;
  color: #64748b;
  letter-spacing: 0.02em;
}
.kybk-trust.svelte-7fpoih {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0 0 28px;
}
.kybk-trust-item.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 13px;
  color: #334155;
  font-weight: 600;
}
.kybk-trust-icon.svelte-7fpoih {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e91e8c, #0d9488);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.kybk-cta.svelte-7fpoih {
  display: flex;
  align-items: stretch;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.kybk-cta-btn.svelte-7fpoih {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 26px;
  border-radius: 10px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 14px 34px #25d36661;
  transition: transform 0.25s, box-shadow 0.25s;
  overflow: hidden;
}
.kybk-cta-btn.svelte-7fpoih:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px #25d3667a;
  color: #fff;
}
.kybk-cta-btn-shine.svelte-7fpoih {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 70%
  );
  transform: translate(-120%);
  transition: transform 0.7s;
}
.kybk-cta-btn.svelte-7fpoih:hover .kybk-cta-btn-shine:where(.svelte-7fpoih) {
  transform: translate(120%);
}
.kybk-cta-btn-icon.svelte-7fpoih {
  display: inline-flex;
}
.kybk-cta-btn-body.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.kybk-cta-btn-label.svelte-7fpoih {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.kybk-cta-btn-note.svelte-7fpoih {
  font-size: 11.5px;
  opacity: 0.85;
  letter-spacing: 0.04em;
}
.kybk-cta-btn-arrow.svelte-7fpoih {
  display: inline-flex;
  margin-left: 4px;
  transition: transform 0.25s;
}
.kybk-cta-btn.svelte-7fpoih:hover .kybk-cta-btn-arrow:where(.svelte-7fpoih) {
  transform: translate(4px);
}
.kybk-closing.svelte-7fpoih {
  text-align: center;
  margin: 26px 0 0;
  font-size: 14.5px;
  color: #64748b;
  font-style: italic;
}
@media (max-width: 900px) {
  .kybk-stops.svelte-7fpoih {
    grid-template-columns: repeat(2, 1fr);
  }
  .kybk-stops-track.svelte-7fpoih {
    display: none;
  }
}
@media (max-width: 620px) {
  .kybk-section.svelte-7fpoih {
    padding: 80px 0 88px;
  }
  .kybk-card.svelte-7fpoih {
    padding: 40px 26px 36px;
  }
  .kybk-stops.svelte-7fpoih {
    grid-template-columns: 1fr;
  }
  .kybk-cta-btn.svelte-7fpoih {
    padding: 14px 22px;
  }
}
.mrq-item--rose.svelte-7fpoih,
.mrt-tile--rose.svelte-7fpoih,
.mrct-pin--rose.svelte-7fpoih {
  --mt1: #e91e8c;
  --mt2: #c2185b;
  --mtBg: rgba(233, 30, 140, 0.06);
  --mtBd: rgba(233, 30, 140, 0.22);
}
.mrq-item--teal.svelte-7fpoih,
.mrt-tile--teal.svelte-7fpoih,
.mrct-pin--teal.svelte-7fpoih {
  --mt1: #0d9488;
  --mt2: #0f766e;
  --mtBg: rgba(13, 148, 136, 0.06);
  --mtBd: rgba(13, 148, 136, 0.22);
}
.mrq-item--gold.svelte-7fpoih,
.mrt-tile--gold.svelte-7fpoih,
.mrct-pin--gold.svelte-7fpoih {
  --mt1: #d97706;
  --mt2: #b45309;
  --mtBg: rgba(217, 119, 6, 0.06);
  --mtBd: rgba(217, 119, 6, 0.22);
}
.mrq-item--coral.svelte-7fpoih,
.mrt-tile--coral.svelte-7fpoih {
  --mt1: #f43f5e;
  --mt2: #e11d48;
  --mtBg: rgba(244, 63, 94, 0.06);
  --mtBd: rgba(244, 63, 94, 0.22);
}
.mrt-tile--emerald.svelte-7fpoih,
.mrct-pin--emerald.svelte-7fpoih {
  --mt1: #059669;
  --mt2: #047857;
  --mtBg: rgba(5, 150, 105, 0.06);
  --mtBd: rgba(5, 150, 105, 0.22);
}
.mrq-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 100px 0 108px;
  background: radial-gradient(
      780px 480px at 8% 12%,
      rgba(233, 30, 140, 0.05) 0%,
      transparent 60%
    ),
    radial-gradient(
      780px 480px at 92% 88%,
      rgba(13, 148, 136, 0.05) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #fffafc, #fff, #f0fdfa);
}
.mrq-grid-bg.svelte-7fpoih {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
  background-image: repeating-linear-gradient(
      90deg,
      rgba(233, 30, 140, 0.04) 0 1px,
      transparent 1px 60px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(13, 148, 136, 0.03) 0 1px,
      transparent 1px 60px
    );
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    black 30%,
    transparent 80%
  );
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.mrq-orb.svelte-7fpoih {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.mrq-orb-1.svelte-7fpoih {
  top: -130px;
  left: -130px;
  background: #e91e8c1c;
}
.mrq-orb-2.svelte-7fpoih {
  bottom: -130px;
  right: -130px;
  background: #0d94881c;
}
.mrq-section.svelte-7fpoih .grid-container:where(.svelte-7fpoih) {
  position: relative;
  z-index: 1;
}
.mrq-head.svelte-7fpoih {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 56px;
}
.mrq-stage.svelte-7fpoih {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 22px;
}
.mrq-stage-line.svelte-7fpoih {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(13, 148, 136, 0.4),
    transparent
  );
}
.mrq-stage-body.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 18px;
  border-radius: 4px;
  background: #fff;
  border: 1.5px solid rgba(13, 148, 136, 0.25);
}
.mrq-stage-name.svelte-7fpoih {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: #0f766e;
  text-transform: uppercase;
  font-family: Courier New, monospace;
}
.mrq-stage-sub.svelte-7fpoih {
  font-size: 10px;
  color: #64748b;
  letter-spacing: 0.2em;
  font-family: Courier New, monospace;
}
.mrq-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e91e8c14, #0d948814);
  border: 1px solid rgba(233, 30, 140, 0.22);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #c2185b;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.mrq-kicker-mark.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e91e8c, #0d9488);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  font-family: Georgia, serif;
}
.mrq-title.svelte-7fpoih {
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  line-height: 1.2;
  background: linear-gradient(135deg, #1e293b, #c2185b 45%, #0d9488);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 14px;
}
.mrq-lead.svelte-7fpoih {
  font-size: 16px;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}
.mrq-list.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 1060px;
  margin: 0 auto;
}
.mrq-item.svelte-7fpoih {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 32px;
  padding: 32px 36px 32px 0;
  background: #fff;
  border: 1px solid var(--mtBd);
  border-radius: 16px;
  box-shadow: 0 10px 28px #0f172a0f;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.mrq-item.svelte-7fpoih:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px #0f172a1a;
}
.mrq-item.svelte-7fpoih:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, var(--mt1), var(--mt2));
}
.mrq-item-aside.svelte-7fpoih {
  position: relative;
  padding: 4px 0 4px 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px dashed var(--mtBd);
}
.mrq-item-num.svelte-7fpoih {
  font-family: Georgia, serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--mt1), var(--mt2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.02em;
}
.mrq-item-cat.svelte-7fpoih {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--mtBg);
  border: 1px solid var(--mtBd);
  font-family: Courier New, monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--mt1);
  text-transform: uppercase;
  align-self: flex-start;
}
.mrq-item-body.svelte-7fpoih {
  padding: 4px 0;
  min-width: 0;
}
.mrq-item-question.svelte-7fpoih {
  font-family: Georgia, Cormorant Garamond, serif;
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
  margin: 0 0 18px;
}
.mrq-answer.svelte-7fpoih {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 18px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #fff, var(--mtBg));
  border-left: 3px solid var(--mt1);
  border-radius: 6px;
}
.mrq-answer-label.svelte-7fpoih {
  flex-shrink: 0;
  padding: 4px 10px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid var(--mtBd);
  font-family: Courier New, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--mt1);
  text-transform: uppercase;
  align-self: center;
}
.mrq-answer-body.svelte-7fpoih {
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.5;
  margin: 0;
  font-family: Georgia, serif;
}
.mrq-divider.svelte-7fpoih {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 14px;
}
.mrq-divider-line.svelte-7fpoih {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--mtBd), transparent);
}
.mrq-divider-label.svelte-7fpoih {
  font-family: Courier New, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #94a3b8;
  text-transform: uppercase;
}
.mrq-long.svelte-7fpoih {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.75;
  margin: 0;
}
.mrq-long--extra.svelte-7fpoih {
  margin-top: 12px;
}
@media (max-width: 780px) {
  .mrq-item.svelte-7fpoih {
    grid-template-columns: 96px 1fr;
    gap: 20px;
    padding: 26px 24px 26px 0;
  }
  .mrq-item-aside.svelte-7fpoih {
    padding-left: 20px;
  }
  .mrq-item-num.svelte-7fpoih {
    font-size: 30px;
  }
}
@media (max-width: 520px) {
  .mrq-section.svelte-7fpoih {
    padding: 74px 0 82px;
  }
  .mrq-item.svelte-7fpoih {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px 22px;
  }
  .mrq-item.svelte-7fpoih:before {
    width: 4px;
  }
  .mrq-item-aside.svelte-7fpoih {
    border-right: none;
    border-bottom: 1px dashed var(--mtBd);
    padding: 0 0 14px 10px;
    flex-direction: row;
    align-items: center;
  }
  .mrq-stage-line.svelte-7fpoih {
    max-width: 60px;
  }
  .mrq-answer.svelte-7fpoih {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
.mrt-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 96px 0 104px;
  background: linear-gradient(180deg, #f0fdfa, #fff, #fffafc);
}
.mrt-orb.svelte-7fpoih {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  z-index: 0;
}
.mrt-orb-1.svelte-7fpoih {
  top: 25%;
  right: -180px;
  background: #d977061a;
}
.mrt-section.svelte-7fpoih .grid-container:where(.svelte-7fpoih) {
  position: relative;
  z-index: 1;
}
.mrt-head.svelte-7fpoih {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 56px;
}
.mrt-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Courier New, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: #c2185b;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.mrt-kicker-bar.svelte-7fpoih {
  width: 24px;
  height: 1.5px;
  background: linear-gradient(90deg, #e91e8c, #d97706);
}
.mrt-title.svelte-7fpoih {
  font-family: Georgia, Cormorant Garamond, serif;
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  line-height: 1.2;
  background: linear-gradient(135deg, #1e293b, #c2185b 45%, #0d9488);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 14px;
}
.mrt-lead.svelte-7fpoih {
  font-size: 16px;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}
.mrt-grid.svelte-7fpoih {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 40px;
}
.mrt-tile.svelte-7fpoih {
  position: relative;
  padding: 34px 26px 26px;
  background: #fff;
  border: 1px solid var(--mtBd);
  border-radius: 16px;
  box-shadow: 0 10px 28px #0f172a0f;
  transition: transform 0.3s, box-shadow 0.3s;
}
.mrt-tile.svelte-7fpoih:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px #0f172a1a;
}
.mrt-tile-post.svelte-7fpoih {
  position: absolute;
  top: -32px;
  left: 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.mrt-tile-post-top.svelte-7fpoih {
  width: 3px;
  height: 14px;
  background: linear-gradient(180deg, var(--mt1), var(--mt2));
  margin-left: 20px;
}
.mrt-tile-post-flag.svelte-7fpoih {
  position: relative;
  padding: 6px 16px 6px 12px;
  background: linear-gradient(135deg, var(--mt1), var(--mt2));
  color: #fff;
  font-family: Courier New, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  clip-path: polygon(
    0 0,
    calc(100% - 10px) 0,
    100% 50%,
    calc(100% - 10px) 100%,
    0 100%
  );
  box-shadow: 0 4px 10px var(--mtBd);
}
.mrt-tile-post-flag-num.svelte-7fpoih {
  letter-spacing: 0.16em;
}
.mrt-tile-inner.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mrt-tile-tag.svelte-7fpoih {
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--mtBg);
  border: 1px solid var(--mtBd);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--mt1);
  text-transform: uppercase;
  font-family: Courier New, monospace;
}
.mrt-tile-name.svelte-7fpoih {
  font-family: Georgia, Cormorant Garamond, serif;
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
  margin: 0;
}
.mrt-tile-window.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  padding: 5px 10px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-family: Courier New, monospace;
  font-size: 11.5px;
  color: #334155;
  font-weight: 600;
}
.mrt-tile-window.svelte-7fpoih svg:where(.svelte-7fpoih) {
  color: var(--mt1);
  flex-shrink: 0;
}
.mrt-tile-desc.svelte-7fpoih {
  font-size: 14px;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 1000px) {
  .mrt-grid.svelte-7fpoih {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .mrt-section.svelte-7fpoih {
    padding: 70px 0 78px;
  }
  .mrt-grid.svelte-7fpoih {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 36px;
  }
  .mrt-tile.svelte-7fpoih {
    padding: 30px 22px 22px;
  }
}
.mrct-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 104px 0 116px;
  background: radial-gradient(
      800px 540px at 10% 10%,
      rgba(233, 30, 140, 0.07) 0%,
      transparent 60%
    ),
    radial-gradient(
      800px 540px at 90% 90%,
      rgba(13, 148, 136, 0.07) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #fffafc, #fff, #f0fdfa);
}
.mrct-orb.svelte-7fpoih {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  z-index: 0;
}
.mrct-orb-1.svelte-7fpoih {
  top: -150px;
  left: -150px;
  background: #e91e8c24;
}
.mrct-orb-2.svelte-7fpoih {
  bottom: -150px;
  right: -150px;
  background: #0d948824;
}
.mrct-section.svelte-7fpoih .grid-container:where(.svelte-7fpoih) {
  position: relative;
  z-index: 1;
}
.mrct-panel.svelte-7fpoih {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  max-width: 1080px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.2);
  border-radius: 24px;
  box-shadow: 0 30px 80px #0f172a1f;
  overflow: hidden;
}
.mrct-panel-left.svelte-7fpoih {
  padding: 48px 44px 44px;
}
.mrct-panel-right.svelte-7fpoih {
  position: relative;
  padding: 48px 36px 44px;
  background: linear-gradient(135deg, #e91e8c0a, #0d94880a),
    repeating-linear-gradient(
      45deg,
      rgba(233, 30, 140, 0.02) 0 1px,
      transparent 1px 16px
    );
  border-left: 1px dashed rgba(233, 30, 140, 0.2);
}
.mrct-stage.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}
.mrct-stage-name.svelte-7fpoih {
  font-family: Courier New, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: #0f766e;
  text-transform: uppercase;
}
.mrct-stage-sub.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #94a3b8;
  letter-spacing: 0.12em;
  font-family: Courier New, monospace;
}
.mrct-stage-pulse.svelte-7fpoih {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px #05966938;
  animation: svelte-7fpoih-kr-ping 2.2s infinite;
}
.mrct-kicker.svelte-7fpoih {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 4px;
  background: linear-gradient(135deg, #e91e8c1a, #0d94881a);
  border: 1px solid rgba(233, 30, 140, 0.25);
  font-family: Courier New, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: #c2185b;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.mrct-title.svelte-7fpoih {
  font-family: Georgia, Cormorant Garamond, serif;
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  line-height: 1.18;
  background: linear-gradient(135deg, #1e293b, #e91e8c 45%, #0d9488);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 14px;
}
.mrct-lead.svelte-7fpoih {
  font-size: 15.5px;
  color: #475569;
  line-height: 1.7;
  margin: 0 0 24px;
}
.mrct-trust.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 26px;
}
.mrct-trust-item.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  padding: 8px 14px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 13px;
  color: #334155;
  font-weight: 600;
}
.mrct-trust-icon.svelte-7fpoih {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e91e8c, #0d9488);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mrct-cta.svelte-7fpoih {
  display: flex;
  align-items: stretch;
  gap: 12px;
  flex-wrap: wrap;
}
.mrct-cta-btn.svelte-7fpoih {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 26px;
  border-radius: 10px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 14px 34px #25d36661;
  transition: transform 0.25s, box-shadow 0.25s;
  overflow: hidden;
}
.mrct-cta-btn.svelte-7fpoih:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px #25d3667a;
  color: #fff;
}
.mrct-cta-btn-shine.svelte-7fpoih {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 70%
  );
  transform: translate(-120%);
  transition: transform 0.7s;
}
.mrct-cta-btn.svelte-7fpoih:hover .mrct-cta-btn-shine:where(.svelte-7fpoih) {
  transform: translate(120%);
}
.mrct-cta-btn-icon.svelte-7fpoih {
  display: inline-flex;
}
.mrct-cta-btn-body.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.mrct-cta-btn-label.svelte-7fpoih {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.mrct-cta-btn-note.svelte-7fpoih {
  font-size: 11.5px;
  opacity: 0.85;
  letter-spacing: 0.04em;
}
.mrct-cta-btn-arrow.svelte-7fpoih {
  display: inline-flex;
  margin-left: 4px;
  transition: transform 0.25s;
}
.mrct-cta-btn.svelte-7fpoih:hover .mrct-cta-btn-arrow:where(.svelte-7fpoih) {
  transform: translate(4px);
}
.mrct-closing.svelte-7fpoih {
  margin: 22px 0 0;
  font-size: 13.5px;
  color: #64748b;
  font-style: italic;
  font-family: Georgia, serif;
}
.mrct-panel-right-label.svelte-7fpoih {
  display: block;
  font-family: Courier New, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: #0f766e;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.mrct-pins.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mrct-pin.svelte-7fpoih {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--mtBd);
  border-left: 4px solid var(--mt1);
  transition: transform 0.3s, border-color 0.3s;
}
.mrct-pin.svelte-7fpoih:hover {
  transform: translate(4px);
}
.mrct-pin-marker.svelte-7fpoih {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--mt1), var(--mt2));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px var(--mtBd);
}
.mrct-pin-body.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.mrct-pin-name.svelte-7fpoih {
  font-family: Georgia, serif;
  font-size: 14.5px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.25;
}
.mrct-pin-sub.svelte-7fpoih {
  font-size: 11.5px;
  color: #64748b;
  letter-spacing: 0.02em;
  font-family: Courier New, monospace;
}
@media (max-width: 900px) {
  .mrct-panel.svelte-7fpoih {
    grid-template-columns: 1fr;
  }
  .mrct-panel-right.svelte-7fpoih {
    border-left: none;
    border-top: 1px dashed rgba(233, 30, 140, 0.2);
  }
}
@media (max-width: 620px) {
  .mrct-section.svelte-7fpoih {
    padding: 80px 0 88px;
  }
  .mrct-panel-left.svelte-7fpoih {
    padding: 36px 26px 30px;
  }
  .mrct-panel-right.svelte-7fpoih {
    padding: 32px 26px;
  }
  .mrct-cta-btn.svelte-7fpoih {
    padding: 14px 22px;
  }
}
.smr-feature--rose.svelte-7fpoih,
.smct-entry--rose.svelte-7fpoih {
  --st1: #e91e8c;
  --st2: #c2185b;
  --stBg: rgba(233, 30, 140, 0.05);
  --stBd: rgba(233, 30, 140, 0.22);
}
.smr-feature--gold.svelte-7fpoih,
.smct-entry--gold.svelte-7fpoih {
  --st1: #d97706;
  --st2: #b45309;
  --stBg: rgba(217, 119, 6, 0.05);
  --stBd: rgba(217, 119, 6, 0.22);
}
.smr-feature--teal.svelte-7fpoih,
.smct-entry--teal.svelte-7fpoih {
  --st1: #0d9488;
  --st2: #0f766e;
  --stBg: rgba(13, 148, 136, 0.05);
  --stBd: rgba(13, 148, 136, 0.22);
}
.smr-feature--coral.svelte-7fpoih,
.smct-entry--coral.svelte-7fpoih {
  --st1: #f43f5e;
  --st2: #e11d48;
  --stBg: rgba(244, 63, 94, 0.05);
  --stBd: rgba(244, 63, 94, 0.22);
}
.smct-entry--emerald.svelte-7fpoih {
  --st1: #059669;
  --st2: #047857;
  --stBg: rgba(5, 150, 105, 0.05);
  --stBd: rgba(5, 150, 105, 0.22);
}
.sme-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 110px 0 120px;
  background: radial-gradient(
      780px 480px at 12% 12%,
      rgba(217, 119, 6, 0.06) 0%,
      transparent 60%
    ),
    radial-gradient(
      780px 480px at 88% 88%,
      rgba(233, 30, 140, 0.05) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #fffdf5, #fffefb, #fffafc);
}
.sme-paper.svelte-7fpoih {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(217, 119, 6, 0.02) 0 1px,
    transparent 1px 3px
  );
  opacity: 0.6;
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    black 30%,
    transparent 80%
  );
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.sme-orb.svelte-7fpoih {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.sme-orb-1.svelte-7fpoih {
  top: -130px;
  left: -130px;
  background: #d977061c;
}
.sme-orb-2.svelte-7fpoih {
  bottom: -130px;
  right: -130px;
  background: #e91e8c1a;
}
.sme-section.svelte-7fpoih .grid-container:where(.svelte-7fpoih) {
  position: relative;
  z-index: 1;
}
.sme-head.svelte-7fpoih {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 44px;
}
.sme-dispatch.svelte-7fpoih {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}
.sme-dispatch-rule.svelte-7fpoih {
  flex: 1;
  max-width: 140px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(217, 119, 6, 0.5),
    transparent
  );
}
.sme-dispatch-body.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 10px 20px;
  background: #fff;
  border: 1px solid rgba(217, 119, 6, 0.3);
  position: relative;
}
.sme-dispatch-body.svelte-7fpoih:before,
.sme-dispatch-body.svelte-7fpoih:after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: #d97706;
}
.sme-dispatch-body.svelte-7fpoih:before {
  top: -4px;
  left: -4px;
}
.sme-dispatch-body.svelte-7fpoih:after {
  bottom: -4px;
  right: -4px;
}
.sme-dispatch-name.svelte-7fpoih {
  font-family: Georgia, Cormorant Garamond, serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.36em;
  color: #b45309;
  text-transform: uppercase;
}
.sme-dispatch-sub.svelte-7fpoih {
  font-family: Georgia, serif;
  font-size: 10.5px;
  color: #94a3b8;
  letter-spacing: 0.22em;
  font-style: italic;
}
.sme-deco.svelte-7fpoih {
  display: inline-block;
  color: #d97706;
  margin-bottom: 20px;
}
.sme-title.svelte-7fpoih {
  font-family: Georgia, Cormorant Garamond, serif;
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  line-height: 1.12;
  background: linear-gradient(135deg, #1e293b, #b45309 45%, #e91e8c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 18px;
  letter-spacing: -0.015em;
}
.sme-lead-italic.svelte-7fpoih {
  font-family: Georgia, Cormorant Garamond, serif;
  font-size: 19px;
  color: #334155;
  line-height: 1.55;
  margin: 0 auto;
  font-style: italic;
  max-width: 720px;
}
.sme-markers.svelte-7fpoih {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 820px;
  margin: 0 auto 44px;
  padding: 18px 28px;
  background: linear-gradient(135deg, #d977060a, #e91e8c0a);
  border-top: 1px solid rgba(217, 119, 6, 0.22);
  border-bottom: 1px solid rgba(217, 119, 6, 0.22);
}
.sme-marker.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: center;
  text-align: center;
  padding: 4px 10px;
  border-right: 1px solid rgba(217, 119, 6, 0.18);
}
.sme-marker.svelte-7fpoih:last-child {
  border-right: none;
}
.sme-marker-label.svelte-7fpoih {
  font-family: Georgia, serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.26em;
  color: #b45309;
  text-transform: uppercase;
}
.sme-marker-value.svelte-7fpoih {
  font-family: Georgia, serif;
  font-size: 14px;
  color: #1e293b;
  font-weight: 600;
}
.sme-story.svelte-7fpoih {
  max-width: 760px;
  margin: 0 auto 44px;
  column-count: 1;
}
.sme-para.svelte-7fpoih {
  font-family: Georgia, Cormorant Garamond, serif;
  font-size: 17.5px;
  color: #334155;
  line-height: 1.85;
  margin: 0 0 22px;
}
.sme-para.svelte-7fpoih:last-child {
  margin-bottom: 0;
}
.sme-para.has-dropcap.svelte-7fpoih:first-letter {
  font-family: Georgia, Cormorant Garamond, serif;
  float: left;
  font-size: 64px;
  line-height: 0.9;
  padding: 6px 12px 0 0;
  margin-top: 4px;
  font-weight: 700;
  background: linear-gradient(135deg, #d97706, #e91e8c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sme-resolve.svelte-7fpoih {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 38px 56px;
  background: linear-gradient(135deg, #fff, #d977060a);
  border: 1px solid rgba(217, 119, 6, 0.25);
  border-radius: 2px;
  box-shadow: 0 14px 36px #0f172a0f;
}
.sme-resolve-corner.svelte-7fpoih {
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: #d97706;
  pointer-events: none;
}
.sme-resolve-corner-tl.svelte-7fpoih {
  top: -1px;
  left: -1px;
  border-top: 2px solid;
  border-left: 2px solid;
}
.sme-resolve-corner-tr.svelte-7fpoih {
  top: -1px;
  right: -1px;
  border-top: 2px solid;
  border-right: 2px solid;
}
.sme-resolve-corner-bl.svelte-7fpoih {
  bottom: -1px;
  left: -1px;
  border-bottom: 2px solid;
  border-left: 2px solid;
}
.sme-resolve-corner-br.svelte-7fpoih {
  bottom: -1px;
  right: -1px;
  border-bottom: 2px solid;
  border-right: 2px solid;
}
.sme-resolve-quote.svelte-7fpoih {
  position: relative;
  font-family: Georgia, Cormorant Garamond, serif;
  font-size: 19.5px;
  font-style: italic;
  color: #1e293b;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}
.sme-resolve-quote.svelte-7fpoih:before,
.sme-resolve-quote.svelte-7fpoih:after {
  font-size: 42px;
  line-height: 0;
  color: #d97706;
  opacity: 0.5;
  font-family: Georgia, serif;
  position: relative;
}
.sme-resolve-quote.svelte-7fpoih:before {
  content: "“";
  top: 12px;
  margin-right: 4px;
}
.sme-resolve-quote.svelte-7fpoih:after {
  content: "”";
  top: 18px;
  margin-left: 4px;
}
@media (max-width: 720px) {
  .sme-section.svelte-7fpoih {
    padding: 78px 0 88px;
  }
  .sme-markers.svelte-7fpoih {
    grid-template-columns: 1fr;
    padding: 14px 20px;
  }
  .sme-marker.svelte-7fpoih {
    border-right: none;
    border-bottom: 1px solid rgba(217, 119, 6, 0.18);
    padding: 8px 0;
    flex-direction: row;
    justify-content: space-between;
  }
  .sme-marker.svelte-7fpoih:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .sme-para.svelte-7fpoih {
    font-size: 16px;
    line-height: 1.75;
  }
  .sme-para.has-dropcap.svelte-7fpoih:first-letter {
    font-size: 52px;
    padding-right: 10px;
  }
  .sme-resolve.svelte-7fpoih {
    padding: 32px 28px;
  }
  .sme-resolve-quote.svelte-7fpoih {
    font-size: 17px;
  }
  .sme-dispatch-rule.svelte-7fpoih {
    max-width: 70px;
  }
}
.smr-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 96px 0 106px;
  background: linear-gradient(180deg, #fffafc, #fff, #fffdf5);
}
.smr-orb.svelte-7fpoih {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  z-index: 0;
}
.smr-orb-1.svelte-7fpoih {
  top: 25%;
  right: -200px;
  background: #d977061a;
}
.smr-section.svelte-7fpoih .grid-container:where(.svelte-7fpoih) {
  position: relative;
  z-index: 1;
}
.smr-head.svelte-7fpoih {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 50px;
}
.smr-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.smr-kicker-rule.svelte-7fpoih {
  width: 36px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, #b45309, transparent);
}
.smr-kicker-body.svelte-7fpoih {
  font-family: Georgia, Cormorant Garamond, serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: #b45309;
  text-transform: uppercase;
}
.smr-title.svelte-7fpoih {
  font-family: Georgia, Cormorant Garamond, serif;
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  line-height: 1.2;
  background: linear-gradient(135deg, #1e293b, #b45309 45%, #e91e8c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.smr-lead.svelte-7fpoih {
  font-family: Georgia, serif;
  font-size: 16px;
  color: #475569;
  line-height: 1.65;
  margin: 0;
  font-style: italic;
}
.smr-grid.svelte-7fpoih {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto;
}
.smr-closing.svelte-7fpoih {
  margin: 40px auto 0;
  max-width: 760px;
  text-align: center;
  font-size: 14px;
  line-height: 1.7;
  color: #64748b;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.smr-feature.svelte-7fpoih {
  position: relative;
  padding: 40px 38px 36px;
  background: linear-gradient(180deg, #fff 0%, var(--stBg) 100%);
  border: 1px solid var(--stBd);
  border-radius: 2px;
  box-shadow: 0 14px 36px #0f172a0f;
  transition: transform 0.35s, box-shadow 0.35s;
}
.smr-feature.svelte-7fpoih:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px #0f172a1a;
}
.smr-feature-frame.svelte-7fpoih {
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: var(--st1);
  pointer-events: none;
}
.smr-feature-frame-tl.svelte-7fpoih {
  top: -1px;
  left: -1px;
  border-top: 2px solid;
  border-left: 2px solid;
}
.smr-feature-frame-tr.svelte-7fpoih {
  top: -1px;
  right: -1px;
  border-top: 2px solid;
  border-right: 2px solid;
}
.smr-feature-frame-bl.svelte-7fpoih {
  bottom: -1px;
  left: -1px;
  border-bottom: 2px solid;
  border-left: 2px solid;
}
.smr-feature-frame-br.svelte-7fpoih {
  bottom: -1px;
  right: -1px;
  border-bottom: 2px solid;
  border-right: 2px solid;
}
.smr-feature-head.svelte-7fpoih {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  margin-bottom: 20px;
  border-bottom: 1px dashed var(--stBd);
}
.smr-feature-tier.svelte-7fpoih {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.smr-feature-tier-word.svelte-7fpoih {
  font-family: Georgia, serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: #94a3b8;
  text-transform: uppercase;
}
.smr-feature-tier-roman.svelte-7fpoih {
  font-family: Georgia, Cormorant Garamond, serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--st1), var(--st2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.02em;
}
.smr-feature-num.svelte-7fpoih {
  font-family: Georgia, serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: #94a3b8;
  text-transform: uppercase;
}
.smr-feature-cat.svelte-7fpoih {
  display: inline-block;
  margin-bottom: 10px;
  font-family: Georgia, serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.26em;
  color: var(--st1);
  text-transform: uppercase;
}
.smr-feature-name.svelte-7fpoih {
  font-family: Georgia, Cormorant Garamond, serif;
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
  margin: 0 0 14px;
  letter-spacing: -0.005em;
}
.smr-feature-desc.svelte-7fpoih {
  font-family: Georgia, serif;
  font-size: 15px;
  color: #475569;
  line-height: 1.75;
  margin: 0 0 22px;
}
.smr-feature-foot.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--stBd);
}
.smr-feature-meta.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: Georgia, serif;
  font-size: 13px;
  color: #475569;
  font-style: italic;
}
.smr-feature-meta.svelte-7fpoih svg:where(.svelte-7fpoih) {
  color: var(--st1);
  flex-shrink: 0;
}
@media (max-width: 820px) {
  .smr-grid.svelte-7fpoih {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  .smr-section.svelte-7fpoih {
    padding: 70px 0 78px;
  }
  .smr-feature.svelte-7fpoih {
    padding: 32px 26px 28px;
  }
  .smr-feature-head.svelte-7fpoih {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
.smct-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 110px 0 120px;
  background: radial-gradient(
      800px 540px at 10% 10%,
      rgba(217, 119, 6, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      800px 540px at 90% 90%,
      rgba(233, 30, 140, 0.07) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #fffdf5, #fff, #fffafc);
}
.smct-orb.svelte-7fpoih {
  position: absolute;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  z-index: 0;
}
.smct-orb-1.svelte-7fpoih {
  top: -160px;
  left: -160px;
  background: #d9770624;
}
.smct-orb-2.svelte-7fpoih {
  bottom: -160px;
  right: -160px;
  background: #e91e8c1f;
}
.smct-section.svelte-7fpoih .grid-container:where(.svelte-7fpoih) {
  position: relative;
  z-index: 1;
}
.smct-plaque.svelte-7fpoih {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 8px;
  background: linear-gradient(135deg, #d977062e, #e91e8c2e, #d977062e);
  border-radius: 4px;
  box-shadow: 0 32px 80px #0f172a24;
}
.smct-plaque-border.svelte-7fpoih {
  position: absolute;
  top: 4px;
  right: 4px;
  bottom: 4px;
  left: 4px;
  border: 1px solid rgba(217, 119, 6, 0.4);
  border-radius: 2px;
  pointer-events: none;
}
.smct-plaque-border-inner.svelte-7fpoih {
  top: 12px;
  right: 12px;
  bottom: 12px;
  left: 12px;
  border: 1px solid rgba(217, 119, 6, 0.22);
}
.smct-plaque-inner.svelte-7fpoih {
  position: relative;
  padding: 54px 60px 50px;
  background: #fff;
  border-radius: 2px;
}
.smct-head.svelte-7fpoih {
  text-align: center;
  margin-bottom: 36px;
}
.smct-deco.svelte-7fpoih {
  display: inline-block;
  color: #d97706;
  margin-bottom: 14px;
}
.smct-subkicker.svelte-7fpoih {
  display: block;
  font-family: Georgia, serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.36em;
  color: #94a3b8;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-style: italic;
}
.smct-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: linear-gradient(135deg, #d9770614, #e91e8c14);
  border: 1px solid rgba(217, 119, 6, 0.3);
  font-family: Georgia, serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: #b45309;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.smct-kicker-ping.svelte-7fpoih {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d97706;
  box-shadow: 0 0 0 3px #d9770638;
  animation: svelte-7fpoih-kr-ping 2.2s infinite;
}
.smct-title.svelte-7fpoih {
  font-family: Georgia, Cormorant Garamond, serif;
  font-size: clamp(1.85rem, 3.6vw, 2.6rem);
  line-height: 1.15;
  background: linear-gradient(135deg, #1e293b, #b45309 40%, #e91e8c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 14px;
  letter-spacing: -0.015em;
}
.smct-lead.svelte-7fpoih {
  font-family: Georgia, serif;
  font-size: 16.5px;
  color: #475569;
  line-height: 1.65;
  margin: 0 auto;
  max-width: 680px;
  font-style: italic;
}
.smct-agency.svelte-7fpoih {
  margin: 36px 0 32px;
  padding: 26px 30px;
  background: linear-gradient(135deg, #d9770608, #e91e8c08);
  border-top: 1px solid rgba(217, 119, 6, 0.25);
  border-bottom: 1px solid rgba(217, 119, 6, 0.25);
}
.smct-agency-label.svelte-7fpoih {
  display: block;
  text-align: center;
  margin-bottom: 18px;
  font-family: Georgia, Cormorant Garamond, serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: #b45309;
  text-transform: uppercase;
}
.smct-agency-list.svelte-7fpoih {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 36px;
}
.smct-entry.svelte-7fpoih {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(217, 119, 6, 0.18);
}
.smct-entry.svelte-7fpoih:last-child,
.smct-entry.svelte-7fpoih:nth-last-child(2) {
  border-bottom: none;
}
.smct-entry-roman.svelte-7fpoih {
  flex-shrink: 0;
  width: 28px;
  font-family: Georgia, Cormorant Garamond, serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--st1);
  letter-spacing: 0.02em;
}
.smct-entry-name.svelte-7fpoih {
  font-family: Georgia, Cormorant Garamond, serif;
  font-size: 17px;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: -0.005em;
}
.smct-entry-leader.svelte-7fpoih {
  flex: 1;
  height: 1px;
  align-self: center;
  background: repeating-linear-gradient(
    90deg,
    #94a3b8 0 2px,
    transparent 2px 6px
  );
  opacity: 0.5;
  min-width: 20px;
}
.smct-entry-sub.svelte-7fpoih {
  flex-shrink: 0;
  font-family: Georgia, serif;
  font-size: 12.5px;
  color: #64748b;
  font-style: italic;
  text-align: right;
}
.smct-trust.svelte-7fpoih {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0 0 30px;
}
.smct-trust-item.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-family: Georgia, serif;
  font-size: 13.5px;
  color: #334155;
  font-weight: 600;
}
.smct-trust-icon.svelte-7fpoih {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d97706, #e91e8c);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.smct-cta.svelte-7fpoih {
  display: flex;
  align-items: stretch;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.smct-cta-btn.svelte-7fpoih {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 14px 34px #25d36661;
  transition: transform 0.25s, box-shadow 0.25s;
  overflow: hidden;
}
.smct-cta-btn.svelte-7fpoih:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px #25d3667a;
  color: #fff;
}
.smct-cta-btn-shine.svelte-7fpoih {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 70%
  );
  transform: translate(-120%);
  transition: transform 0.7s;
}
.smct-cta-btn.svelte-7fpoih:hover .smct-cta-btn-shine:where(.svelte-7fpoih) {
  transform: translate(120%);
}
.smct-cta-btn-icon.svelte-7fpoih {
  display: inline-flex;
}
.smct-cta-btn-body.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.smct-cta-btn-label.svelte-7fpoih {
  font-family: Georgia, serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.smct-cta-btn-note.svelte-7fpoih {
  font-family: Georgia, serif;
  font-size: 11.5px;
  opacity: 0.85;
  letter-spacing: 0.04em;
  font-style: italic;
}
.smct-cta-btn-arrow.svelte-7fpoih {
  display: inline-flex;
  margin-left: 4px;
  transition: transform 0.25s;
}
.smct-cta-btn.svelte-7fpoih:hover .smct-cta-btn-arrow:where(.svelte-7fpoih) {
  transform: translate(4px);
}
.smct-closing.svelte-7fpoih {
  text-align: center;
  margin: 26px 0 0;
  font-family: Georgia, serif;
  font-size: 14px;
  color: #64748b;
  font-style: italic;
}
@media (max-width: 780px) {
  .smct-agency-list.svelte-7fpoih {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .smct-entry.svelte-7fpoih {
    border-bottom: 1px dashed rgba(217, 119, 6, 0.18) !important;
  }
  .smct-entry.svelte-7fpoih:last-child {
    border-bottom: none !important;
  }
}
@media (max-width: 620px) {
  .smct-section.svelte-7fpoih {
    padding: 80px 0 90px;
  }
  .smct-plaque-inner.svelte-7fpoih {
    padding: 40px 26px 36px;
  }
  .smct-agency.svelte-7fpoih {
    padding: 20px 18px;
  }
  .smct-cta-btn.svelte-7fpoih {
    padding: 14px 22px;
  }
}
.dwh-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 108px 0 118px;
  background: radial-gradient(
      1100px 540px at 88% -10%,
      rgba(217, 119, 6, 0.07),
      transparent 70%
    ),
    radial-gradient(
      900px 480px at -10% 100%,
      rgba(233, 30, 140, 0.06),
      transparent 70%
    ),
    linear-gradient(180deg, #fffdfa, #fff6ef 60%, #fffaf4);
}
.dwh-grid-bg.svelte-7fpoih {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image: linear-gradient(
      rgba(100, 116, 139, 0.08) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(100, 116, 139, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    #000 20%,
    transparent 75%
  );
}
.dwh-orb.svelte-7fpoih {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  opacity: 0.55;
}
.dwh-orb-1.svelte-7fpoih {
  width: 340px;
  height: 340px;
  top: -90px;
  right: -80px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.45), transparent 70%);
}
.dwh-orb-2.svelte-7fpoih {
  width: 380px;
  height: 380px;
  bottom: -120px;
  left: -100px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.35),
    transparent 70%
  );
}
.dwh-head.svelte-7fpoih {
  text-align: center;
  margin-bottom: 54px;
  position: relative;
  z-index: 1;
}
.dwh-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(217, 119, 6, 0.25);
  box-shadow: 0 4px 14px #d9770614;
  color: #b45309;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}
.dwh-kicker-pulse.svelte-7fpoih {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d97706;
  box-shadow: 0 0 #d9770680;
  animation: svelte-7fpoih-dwhPulse 2.2s infinite;
}
@keyframes svelte-7fpoih-dwhPulse {
  0%,
  to {
    box-shadow: 0 0 #d977068c;
  }
  50% {
    box-shadow: 0 0 0 10px #d9770600;
  }
}
.dwh-title.svelte-7fpoih {
  margin: 18px auto 14px;
  max-width: 820px;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.15;
  background: linear-gradient(135deg, #1e293b, #b45309 55%, #e91e8c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.01em;
}
.dwh-coord.svelte-7fpoih {
  display: inline-block;
  padding: 5px 14px;
  border: 1px dashed rgba(15, 23, 42, 0.25);
  border-radius: 4px;
  font-family: Courier New, monospace;
  font-size: 11.5px;
  color: #475569;
  letter-spacing: 1.5px;
  background: #ffffffb3;
}
.dwh-body.svelte-7fpoih {
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: 54px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.dwh-rose-wrap.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.dwh-rose.svelte-7fpoih {
  position: relative;
  width: 280px;
  height: 280px;
  display: grid;
  place-items: center;
}
.dwh-rose-ring.svelte-7fpoih {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  border: 1px dashed rgba(217, 119, 6, 0.35);
}
.dwh-rose-ring-1.svelte-7fpoih {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  animation: svelte-7fpoih-dwhRoseSpin 42s linear infinite;
}
.dwh-rose-ring-2.svelte-7fpoih {
  top: 22px;
  right: 22px;
  bottom: 22px;
  left: 22px;
  border: 1px solid rgba(233, 30, 140, 0.18);
  border-style: dotted;
}
.dwh-rose-ring-3.svelte-7fpoih {
  top: 48px;
  right: 48px;
  bottom: 48px;
  left: 48px;
  border: 1px dashed rgba(13, 148, 136, 0.32);
  animation: svelte-7fpoih-dwhRoseSpin 28s linear infinite reverse;
}
@keyframes svelte-7fpoih-dwhRoseSpin {
  to {
    transform: rotate(360deg);
  }
}
.dwh-rose-star.svelte-7fpoih {
  position: relative;
  width: 200px;
  height: 200px;
}
.dwh-rose-tick.svelte-7fpoih {
  position: absolute;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 14px;
  color: #78350f;
  letter-spacing: 1.5px;
  background: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid rgba(217, 119, 6, 0.3);
  box-shadow: 0 2px 8px #d977061a;
}
.dwh-rose-tick-n.svelte-7fpoih {
  top: -4px;
  left: 50%;
  transform: translate(-50%);
}
.dwh-rose-tick-s.svelte-7fpoih {
  bottom: -4px;
  left: 50%;
  transform: translate(-50%);
}
.dwh-rose-tick-e.svelte-7fpoih {
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
}
.dwh-rose-tick-w.svelte-7fpoih {
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
}
.dwh-lines.svelte-7fpoih {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding: 14px 16px;
  border-radius: 12px;
  background: #ffffffb3;
  border: 1px solid rgba(15, 23, 42, 0.07);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.dwh-line-pill.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--tBg);
  border: 1px solid var(--tBd);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--t2);
}
.dwh-line-pill--rose.svelte-7fpoih {
  --t1: #e91e8c;
  --t2: #c2185b;
  --tBg: rgba(233, 30, 140, 0.06);
  --tBd: rgba(233, 30, 140, 0.22);
}
.dwh-line-pill--gold.svelte-7fpoih {
  --t1: #d97706;
  --t2: #b45309;
  --tBg: rgba(217, 119, 6, 0.06);
  --tBd: rgba(217, 119, 6, 0.22);
}
.dwh-line-pill--teal.svelte-7fpoih {
  --t1: #0d9488;
  --t2: #0f766e;
  --tBg: rgba(13, 148, 136, 0.06);
  --tBd: rgba(13, 148, 136, 0.22);
}
.dwh-line-code.svelte-7fpoih {
  font-family: Courier New, monospace;
  background: var(--t1);
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 10.5px;
  letter-spacing: 0.5px;
}
.dwh-lines-label.svelte-7fpoih {
  width: 100%;
  text-align: center;
  font-size: 10.5px;
  color: #64748b;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}
.dwh-copy.svelte-7fpoih {
  position: relative;
}
.dwh-lead.svelte-7fpoih {
  font-size: 16.5px;
  line-height: 1.7;
  color: #334155;
  margin: 0 0 26px;
}
.dwh-duo.svelte-7fpoih {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.dwh-card.svelte-7fpoih {
  position: relative;
  padding: 22px 22px 24px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 18px #0f172a0d;
}
.dwh-card--fail.svelte-7fpoih {
  border-top: 3px solid #ef4444;
}
.dwh-card--win.svelte-7fpoih {
  border-top: 3px solid #059669;
}
.dwh-card-corner.svelte-7fpoih {
  position: absolute;
  width: 14px;
  height: 14px;
  pointer-events: none;
  border: 1.5px solid currentColor;
  color: #0f172a38;
}
.dwh-card-corner-tl.svelte-7fpoih {
  top: 8px;
  left: 8px;
  border-right: 0;
  border-bottom: 0;
}
.dwh-card-corner-br.svelte-7fpoih {
  bottom: 8px;
  right: 8px;
  border-left: 0;
  border-top: 0;
}
.dwh-card-label.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.dwh-card--fail.svelte-7fpoih .dwh-card-label:where(.svelte-7fpoih) {
  color: #b91c1c;
}
.dwh-card--win.svelte-7fpoih .dwh-card-label:where(.svelte-7fpoih) {
  color: #047857;
}
.dwh-card.svelte-7fpoih p:where(.svelte-7fpoih) {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: #475569;
}
.dwh-radials.svelte-7fpoih {
  margin-top: 48px;
  position: relative;
  z-index: 1;
  padding: 22px 24px;
  border-radius: 18px;
  background: #ffffffa6;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(15, 23, 42, 0.07);
}
.dwh-radials-label.svelte-7fpoih {
  display: block;
  text-align: center;
  font-size: 10.5px;
  color: #64748b;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}
.dwh-radials-grid.svelte-7fpoih {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.dwh-radial.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 10px;
  border-radius: 12px;
  background: linear-gradient(180deg, #fffbf5, #fff);
  border: 1px solid rgba(217, 119, 6, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dwh-radial.svelte-7fpoih:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px #d977061f;
}
.dwh-radial-dir.svelte-7fpoih {
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 22px;
  background: linear-gradient(135deg, #d97706, #e91e8c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.dwh-radial-bearing.svelte-7fpoih {
  font-family: Courier New, monospace;
  font-size: 10.5px;
  color: #94a3b8;
  letter-spacing: 1px;
}
.dwh-radial-place.svelte-7fpoih {
  font-size: 13px;
  color: #1e293b;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 980px) {
  .dwh-body.svelte-7fpoih {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .dwh-rose-wrap.svelte-7fpoih {
    order: -1;
  }
  .dwh-rose.svelte-7fpoih {
    width: 240px;
    height: 240px;
  }
  .dwh-rose-star.svelte-7fpoih {
    width: 170px;
    height: 170px;
  }
}
@media (max-width: 720px) {
  .dwh-section.svelte-7fpoih {
    padding: 72px 0 84px;
  }
  .dwh-duo.svelte-7fpoih {
    grid-template-columns: 1fr;
  }
  .dwh-radials-grid.svelte-7fpoih {
    grid-template-columns: repeat(2, 1fr);
  }
  .dwh-rose.svelte-7fpoih {
    width: 220px;
    height: 220px;
  }
  .dwh-rose-star.svelte-7fpoih {
    width: 150px;
    height: 150px;
  }
}
.dzn-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 106px 0 120px;
  background: radial-gradient(
      900px 480px at 10% 20%,
      rgba(233, 30, 140, 0.06),
      transparent 70%
    ),
    radial-gradient(
      900px 480px at 90% 80%,
      rgba(13, 148, 136, 0.06),
      transparent 70%
    ),
    linear-gradient(180deg, #fffaf7, #fff, #f0fdfa);
}
.dzn-orb.svelte-7fpoih {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.5;
}
.dzn-orb-1.svelte-7fpoih {
  width: 400px;
  height: 400px;
  top: -140px;
  left: -80px;
  background: radial-gradient(circle, rgba(233, 30, 140, 0.4), transparent 70%);
}
.dzn-orb-2.svelte-7fpoih {
  width: 380px;
  height: 380px;
  bottom: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.4), transparent 70%);
}
.dzn-head.svelte-7fpoih {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}
.dzn-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: #475569;
}
.dzn-kicker-line.svelte-7fpoih {
  width: 40px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(233, 30, 140, 0.4),
    rgba(13, 148, 136, 0.4),
    transparent
  );
}
.dzn-title.svelte-7fpoih {
  margin: 16px auto 14px;
  max-width: 860px;
  font-size: clamp(1.8rem, 3.2vw, 2.55rem);
  line-height: 1.18;
  background: linear-gradient(135deg, #1e293b, #e91e8c 45%, #0d9488);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.dzn-lead.svelte-7fpoih {
  max-width: 720px;
  margin: 0 auto;
  font-size: 15.5px;
  line-height: 1.65;
  color: #64748b;
}
.dzn-split.svelte-7fpoih {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 72px 1fr;
  gap: 0;
  align-items: stretch;
}
.dzn-plate.svelte-7fpoih {
  position: relative;
  padding: 42px 34px 34px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--tBd);
  overflow: hidden;
  box-shadow: 0 16px 44px #0f172a12;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.dzn-plate.svelte-7fpoih:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px #0f172a17;
}
.dzn-plate--rose.svelte-7fpoih {
  --t1: #e91e8c;
  --t2: #c2185b;
  --tBg: rgba(233, 30, 140, 0.06);
  --tBd: rgba(233, 30, 140, 0.22);
}
.dzn-plate--teal.svelte-7fpoih {
  --t1: #0d9488;
  --t2: #0f766e;
  --tBg: rgba(13, 148, 136, 0.06);
  --tBd: rgba(13, 148, 136, 0.22);
}
.dzn-plate--gold.svelte-7fpoih {
  --t1: #d97706;
  --t2: #b45309;
  --tBg: rgba(217, 119, 6, 0.06);
  --tBd: rgba(217, 119, 6, 0.22);
}
.dzn-plate--emerald.svelte-7fpoih {
  --t1: #059669;
  --t2: #047857;
  --tBg: rgba(5, 150, 105, 0.06);
  --tBd: rgba(5, 150, 105, 0.22);
}
.dzn-plate-ring.svelte-7fpoih {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 1px dashed var(--t1);
  opacity: 0.24;
  pointer-events: none;
  animation: svelte-7fpoih-dznRingSpin 30s linear infinite;
}
@keyframes svelte-7fpoih-dznRingSpin {
  to {
    transform: rotate(360deg);
  }
}
.dzn-plate-cardinal.svelte-7fpoih {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: Georgia, Cormorant Garamond, serif;
  font-size: 112px;
  line-height: 0.85;
  font-weight: 800;
  background: linear-gradient(135deg, var(--t1), var(--t2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.14;
  pointer-events: none;
  letter-spacing: -0.04em;
}
.dzn-plate-head.svelte-7fpoih {
  position: relative;
  margin-bottom: 16px;
}
.dzn-plate-bearing.svelte-7fpoih {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 4px;
  background: var(--tBg);
  color: var(--t2);
  font-family: Courier New, monospace;
  font-size: 11px;
  letter-spacing: 1.3px;
  font-weight: 600;
  margin-bottom: 10px;
}
.dzn-plate-name.svelte-7fpoih {
  font-size: 24px;
  font-weight: 800;
  color: #1e293b;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.dzn-plate-sub.svelte-7fpoih {
  display: block;
  font-size: 13px;
  color: var(--t2);
  font-style: italic;
  font-weight: 600;
}
.dzn-plate-desc.svelte-7fpoih {
  margin: 0 0 20px;
  font-size: 14.5px;
  line-height: 1.65;
  color: #475569;
}
.dzn-plate-list.svelte-7fpoih {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 9px;
}
.dzn-plate-list.svelte-7fpoih li:where(.svelte-7fpoih) {
  display: grid;
  grid-template-columns: 10px 1fr auto;
  align-items: baseline;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--tBg);
  border: 1px solid transparent;
  transition: border 0.25s ease;
}
.dzn-plate-list.svelte-7fpoih li:where(.svelte-7fpoih):hover {
  border-color: var(--tBd);
}
.dzn-plate-dot.svelte-7fpoih {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--t1);
  transform: translateY(3px);
}
.dzn-plate-li-label.svelte-7fpoih {
  font-size: 13.5px;
  font-weight: 700;
  color: #1e293b;
}
.dzn-plate-li-note.svelte-7fpoih {
  font-size: 11.5px;
  color: var(--t2);
  font-weight: 500;
  text-align: right;
}
.dzn-plate-sign.svelte-7fpoih {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--t1), var(--t2));
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  box-shadow: 0 6px 16px #00000014;
}
.dzn-meridian.svelte-7fpoih {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}
.dzn-meridian-rail.svelte-7fpoih {
  position: absolute;
  top: 44px;
  bottom: 44px;
  width: 2px;
  background: linear-gradient(180deg, #e91e8c4d, #d977064d, #0d94884d);
  border-radius: 2px;
}
.dzn-meridian-cap.svelte-7fpoih {
  position: absolute;
  z-index: 2;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  color: #64748b;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 3px 10px #0f172a14;
}
.dzn-meridian-cap-top.svelte-7fpoih {
  top: 16px;
}
.dzn-meridian-cap-bot.svelte-7fpoih {
  bottom: 16px;
}
.dzn-meridian-line-dot.svelte-7fpoih {
  position: relative;
  z-index: 1;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin: 6px 0;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px #0f172a26, 0 2px 6px #0000001a;
}
.dzn-meridian-line-dot--rose.svelte-7fpoih {
  background: #e91e8c;
}
.dzn-meridian-line-dot--gold.svelte-7fpoih {
  background: #d97706;
}
.dzn-meridian-line-dot--teal.svelte-7fpoih {
  background: #0d9488;
}
.dzn-meridian-label.svelte-7fpoih {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-top: 12px;
  background: #fff;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 4px 12px #0f172a0f;
}
.dzn-meridian-label.svelte-7fpoih strong:where(.svelte-7fpoih) {
  font-size: 18px;
  font-weight: 800;
  color: #1e293b;
  font-family: Georgia, serif;
}
.dzn-meridian-label.svelte-7fpoih span:where(.svelte-7fpoih) {
  font-size: 9px;
  color: #64748b;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  max-width: 72px;
  line-height: 1.2;
}
.dzn-closing.svelte-7fpoih {
  margin: 40px auto 0;
  max-width: 760px;
  text-align: center;
  font-size: 14.5px;
  line-height: 1.7;
  color: #64748b;
  font-style: italic;
  padding: 18px 22px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  position: relative;
  z-index: 1;
}
@media (max-width: 880px) {
  .dzn-split.svelte-7fpoih {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .dzn-meridian.svelte-7fpoih {
    transform: rotate(90deg);
    min-height: 80px;
    padding: 0;
  }
  .dzn-meridian-rail.svelte-7fpoih {
    top: 50%;
    bottom: auto;
    left: 44px;
    right: 44px;
    width: auto;
    height: 2px;
    transform: translateY(-50%);
  }
  .dzn-meridian-cap-top.svelte-7fpoih {
    top: 50%;
    left: 8px;
    transform: translateY(-50%);
  }
  .dzn-meridian-cap-bot.svelte-7fpoih {
    bottom: 50%;
    right: 8px;
    top: auto;
    transform: translateY(50%);
  }
  .dzn-meridian-line-dot.svelte-7fpoih {
    margin: 0 6px;
  }
  .dzn-meridian-label.svelte-7fpoih {
    transform: rotate(-90deg) translateY(-46px);
    margin: 0;
  }
}
@media (max-width: 640px) {
  .dzn-section.svelte-7fpoih {
    padding: 72px 0 84px;
  }
  .dzn-plate.svelte-7fpoih {
    padding: 36px 22px 26px;
  }
  .dzn-plate-cardinal.svelte-7fpoih {
    font-size: 90px;
  }
  .dzn-plate-list.svelte-7fpoih li:where(.svelte-7fpoih) {
    grid-template-columns: 8px 1fr;
  }
  .dzn-plate-li-note.svelte-7fpoih {
    grid-column: 2;
    text-align: left;
    font-size: 11px;
    opacity: 0.85;
  }
}
.drs-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 108px 0 120px;
  background: radial-gradient(
      1000px 520px at 90% 10%,
      rgba(244, 63, 94, 0.05),
      transparent 70%
    ),
    radial-gradient(
      900px 480px at 0% 90%,
      rgba(217, 119, 6, 0.05),
      transparent 70%
    ),
    #fffdfb;
}
.drs-orb.svelte-7fpoih {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  opacity: 0.45;
}
.drs-orb-1.svelte-7fpoih {
  width: 360px;
  height: 360px;
  top: -100px;
  right: -80px;
  background: radial-gradient(circle, rgba(244, 63, 94, 0.35), transparent 70%);
}
.drs-orb-2.svelte-7fpoih {
  width: 340px;
  height: 340px;
  bottom: -100px;
  left: -60px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.3), transparent 70%);
}
.drs-head.svelte-7fpoih {
  text-align: center;
  margin-bottom: 54px;
  position: relative;
  z-index: 1;
}
.drs-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.22);
  color: #c2185b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px #e91e8c0f;
}
.drs-kicker-glyph.svelte-7fpoih {
  color: #d97706;
}
.drs-title.svelte-7fpoih {
  margin: 18px auto 12px;
  max-width: 760px;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  line-height: 1.2;
  background: linear-gradient(135deg, #1e293b, #c2185b, #b45309);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.drs-lead.svelte-7fpoih {
  max-width: 700px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.7;
  color: #64748b;
}
.drs-grid.svelte-7fpoih {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.drs-card.svelte-7fpoih {
  position: relative;
  padding: 30px 28px 26px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--tBd);
  overflow: hidden;
  box-shadow: 0 10px 30px #0f172a0d;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border 0.35s ease;
}
.drs-card.svelte-7fpoih:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px #0f172a1a;
  border-color: var(--t1);
}
.drs-card.svelte-7fpoih:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--t1), var(--t2));
  border-radius: 20px 20px 0 0;
}
.drs-card--rose.svelte-7fpoih {
  --t1: #e91e8c;
  --t2: #c2185b;
  --tBg: rgba(233, 30, 140, 0.07);
  --tBd: rgba(233, 30, 140, 0.2);
}
.drs-card--gold.svelte-7fpoih {
  --t1: #d97706;
  --t2: #b45309;
  --tBg: rgba(217, 119, 6, 0.07);
  --tBd: rgba(217, 119, 6, 0.2);
}
.drs-card--coral.svelte-7fpoih {
  --t1: #f43f5e;
  --t2: #e11d48;
  --tBg: rgba(244, 63, 94, 0.07);
  --tBd: rgba(244, 63, 94, 0.2);
}
.drs-card--teal.svelte-7fpoih {
  --t1: #0d9488;
  --t2: #0f766e;
  --tBg: rgba(13, 148, 136, 0.07);
  --tBd: rgba(13, 148, 136, 0.2);
}
.drs-card--emerald.svelte-7fpoih {
  --t1: #059669;
  --t2: #047857;
  --tBg: rgba(5, 150, 105, 0.07);
  --tBd: rgba(5, 150, 105, 0.2);
}
.drs-card-ring.svelte-7fpoih {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px dashed var(--t1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  animation: svelte-7fpoih-drsRingSpin 22s linear infinite;
}
@keyframes svelte-7fpoih-drsRingSpin {
  to {
    transform: rotate(360deg);
  }
}
.drs-card.svelte-7fpoih:hover .drs-card-ring:where(.svelte-7fpoih) {
  opacity: 0.28;
}
.drs-card-sweep.svelte-7fpoih {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 60%
  );
  transform: translate(-100%);
  transition: transform 0.85s ease;
}
.drs-card.svelte-7fpoih:hover .drs-card-sweep:where(.svelte-7fpoih) {
  transform: translate(100%);
}
.drs-card-top.svelte-7fpoih {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.drs-card-dir-wrap.svelte-7fpoih {
  position: relative;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
}
.drs-card-dir-ring.svelte-7fpoih {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  border: 1.5px solid var(--t1);
  opacity: 0.25;
}
.drs-card-dir-ring.svelte-7fpoih:after {
  content: "";
  position: absolute;
  top: -5px;
  right: -5px;
  bottom: -5px;
  left: -5px;
  border-radius: 50%;
  border: 1px dashed var(--t1);
  opacity: 0.35;
}
.drs-card-dir.svelte-7fpoih {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--t1), var(--t2));
  color: #fff;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 18px;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 14px #0000001f;
  letter-spacing: 0.5px;
}
.drs-card-meta.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.drs-card-num.svelte-7fpoih {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: var(--t2);
  text-transform: uppercase;
  font-family: Courier New, monospace;
}
.drs-card-bearing.svelte-7fpoih {
  font-family: Courier New, monospace;
  font-size: 10.5px;
  color: #94a3b8;
  letter-spacing: 1px;
}
.drs-card-name.svelte-7fpoih {
  font-size: 20px;
  font-weight: 800;
  color: #1e293b;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.drs-card-age.svelte-7fpoih {
  display: inline-block;
  font-size: 12px;
  color: var(--t2);
  font-weight: 600;
  font-style: italic;
  margin-bottom: 12px;
}
.drs-card-desc.svelte-7fpoih {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.65;
  color: #475569;
}
.drs-card-foot.svelte-7fpoih {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px dashed var(--tBd);
}
.drs-card-chip.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 8px 10px;
  border-radius: 8px;
  background: var(--tBg);
}
.drs-card-chip-label.svelte-7fpoih {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--t2);
  font-family: Courier New, monospace;
}
.drs-card-chip-value.svelte-7fpoih {
  font-size: 12.5px;
  color: #1e293b;
  font-weight: 600;
  line-height: 1.35;
}
.drs-closing.svelte-7fpoih {
  margin: 36px auto 0;
  max-width: 720px;
  text-align: center;
  font-size: 14px;
  line-height: 1.7;
  color: #64748b;
  font-style: italic;
  position: relative;
  z-index: 1;
}
@media (max-width: 880px) {
  .drs-grid.svelte-7fpoih {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .drs-section.svelte-7fpoih {
    padding: 72px 0 84px;
  }
  .drs-card.svelte-7fpoih {
    padding: 26px 20px 22px;
  }
  .drs-card-foot.svelte-7fpoih {
    grid-template-columns: 1fr;
  }
}
.dct-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 108px 0 124px;
  background: radial-gradient(
      1200px 560px at 50% -10%,
      rgba(217, 119, 6, 0.08),
      transparent 65%
    ),
    radial-gradient(
      1000px 500px at 50% 110%,
      rgba(233, 30, 140, 0.07),
      transparent 65%
    ),
    linear-gradient(180deg, #fffaf4, #fffefc 55%, #fff7ee);
}
.dct-grid-bg.svelte-7fpoih {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  opacity: 0.3;
  background-image: linear-gradient(
      rgba(100, 116, 139, 0.06) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(100, 116, 139, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, #000 10%, transparent 80%);
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    #000 10%,
    transparent 80%
  );
}
.dct-orb.svelte-7fpoih {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(110px);
  opacity: 0.55;
}
.dct-orb-1.svelte-7fpoih {
  width: 440px;
  height: 440px;
  top: -160px;
  left: 50%;
  transform: translate(-50%);
  background: radial-gradient(circle, rgba(217, 119, 6, 0.4), transparent 70%);
}
.dct-orb-2.svelte-7fpoih {
  width: 460px;
  height: 460px;
  bottom: -180px;
  left: 50%;
  transform: translate(-50%);
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.32),
    transparent 70%
  );
}
.dct-plate.svelte-7fpoih {
  position: relative;
  z-index: 1;
  max-width: 1020px;
  margin: 0 auto;
  padding: 54px 48px 46px;
  background: radial-gradient(
      500px 280px at 50% 0%,
      rgba(217, 119, 6, 0.07),
      transparent 70%
    ),
    linear-gradient(180deg, #fff, #fffcf7);
  border-radius: 28px;
  border: 1px solid rgba(217, 119, 6, 0.2);
  box-shadow: 0 30px 70px #d9770614, 0 10px 30px #e91e8c0d;
}
.dct-plate-border.svelte-7fpoih {
  position: absolute;
  top: 10px;
  right: 10px;
  bottom: 10px;
  left: 10px;
  border-radius: 20px;
  border: 1px dashed rgba(217, 119, 6, 0.22);
  pointer-events: none;
}
.dct-head.svelte-7fpoih {
  text-align: center;
  margin-bottom: 40px;
}
.dct-subkicker.svelte-7fpoih {
  display: block;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: #b45309;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.dct-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d9770614, #e91e8c14);
  border: 1px solid rgba(217, 119, 6, 0.28);
  color: #b45309;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}
.dct-kicker-pulse.svelte-7fpoih {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d97706;
  box-shadow: 0 0 #d977068c;
  animation: svelte-7fpoih-dctPulse 1.8s infinite;
}
@keyframes svelte-7fpoih-dctPulse {
  0%,
  to {
    box-shadow: 0 0 #d977068c;
  }
  50% {
    box-shadow: 0 0 0 10px #d9770600;
  }
}
.dct-title.svelte-7fpoih {
  margin: 16px auto 14px;
  max-width: 720px;
  font-size: clamp(1.85rem, 3.4vw, 2.6rem);
  line-height: 1.15;
  font-family: Georgia, Cormorant Garamond, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #b45309 45%, #c2185b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.01em;
}
.dct-lead.svelte-7fpoih {
  max-width: 720px;
  margin: 0 auto;
  font-size: 15.5px;
  line-height: 1.7;
  color: #475569;
}
.dct-broadcast.svelte-7fpoih {
  display: grid;
  place-items: center;
  margin: 24px 0 10px;
}
.dct-hub.svelte-7fpoih {
  position: relative;
  width: 180px;
  height: 180px;
  display: grid;
  place-items: center;
}
.dct-hub-ring.svelte-7fpoih {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  border: 1px solid rgba(217, 119, 6, 0.3);
}
.dct-hub-ring-1.svelte-7fpoih {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  animation: svelte-7fpoih-dctHubPulse 3s ease-out infinite;
}
.dct-hub-ring-2.svelte-7fpoih {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  animation: svelte-7fpoih-dctHubPulse 3s ease-out infinite 1s;
}
.dct-hub-ring-3.svelte-7fpoih {
  top: 40px;
  right: 40px;
  bottom: 40px;
  left: 40px;
  border: 1px dashed rgba(233, 30, 140, 0.3);
  animation: svelte-7fpoih-dctHubSpin 20s linear infinite;
}
@keyframes svelte-7fpoih-dctHubPulse {
  0% {
    transform: scale(0.7);
    opacity: 1;
  }
  to {
    transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes svelte-7fpoih-dctHubSpin {
  to {
    transform: rotate(360deg);
  }
}
.dct-hub-core.svelte-7fpoih {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d97706, #e91e8c);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px #d977064d;
  position: relative;
  z-index: 2;
}
.dct-hub-label.svelte-7fpoih {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translate(-50%);
  background: #fff;
  padding: 3px 10px;
  border-radius: 999px;
  font-family: Courier New, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #78350f;
  border: 1px solid rgba(217, 119, 6, 0.3);
  box-shadow: 0 2px 8px #d977061f;
  z-index: 3;
}
.dct-coverage.svelte-7fpoih {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin: 38px 0 34px;
}
.dct-spoke.svelte-7fpoih {
  position: relative;
  text-align: center;
  padding: 16px 10px 14px;
  border-radius: 14px;
  background: #fffc;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(217, 119, 6, 0.16);
  transition: transform 0.3s ease, border 0.3s ease, box-shadow 0.3s ease;
}
.dct-spoke.svelte-7fpoih:hover {
  transform: translateY(-4px);
  border-color: #d9770666;
  box-shadow: 0 10px 22px #d977061f;
}
.dct-spoke-dir.svelte-7fpoih {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 4px;
  background: linear-gradient(135deg, #d97706, #e91e8c);
  color: #fff;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.dct-spoke-bearing.svelte-7fpoih {
  display: block;
  font-family: Courier New, monospace;
  font-size: 10px;
  color: #94a3b8;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.dct-spoke-dash.svelte-7fpoih {
  display: block;
  width: 36px;
  height: 0;
  margin: 0 auto 10px;
  border-top: 1px dashed rgba(217, 119, 6, 0.4);
}
.dct-spoke-place.svelte-7fpoih {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 3px;
}
.dct-spoke-note.svelte-7fpoih {
  display: block;
  font-size: 10.5px;
  color: #64748b;
  font-style: italic;
}
.dct-commit.svelte-7fpoih {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 32px;
  padding: 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, #d977060a, #e91e8c0a);
  border: 1px solid rgba(217, 119, 6, 0.12);
}
.dct-commit-row.svelte-7fpoih {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.dct-commit-check.svelte-7fpoih {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #059669, #047857);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 3px 8px #05966933;
}
.dct-commit-text.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.dct-commit-text.svelte-7fpoih strong:where(.svelte-7fpoih) {
  font-size: 13.5px;
  color: #1e293b;
  font-weight: 700;
}
.dct-commit-text.svelte-7fpoih span:where(.svelte-7fpoih) {
  font-size: 11.5px;
  color: #64748b;
  line-height: 1.4;
}
.dct-actions.svelte-7fpoih {
  text-align: center;
  margin-bottom: 22px;
}
.dct-btn.svelte-7fpoih {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 14px 32px #25d3664d, 0 4px 10px #25d36633;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dct-btn.svelte-7fpoih:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px #25d36661;
}
.dct-btn-shine.svelte-7fpoih {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 60%
  );
  transform: translate(-100%);
  transition: transform 0.9s ease;
}
.dct-btn.svelte-7fpoih:hover .dct-btn-shine:where(.svelte-7fpoih) {
  transform: translate(100%);
}
.dct-actions-note.svelte-7fpoih {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  color: #64748b;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 600;
}
.dct-closing.svelte-7fpoih {
  margin: 18px auto 0;
  max-width: 640px;
  text-align: center;
  font-size: 14px;
  line-height: 1.7;
  color: #475569;
  font-style: italic;
  padding-top: 20px;
  border-top: 1px dashed rgba(217, 119, 6, 0.18);
}
@media (max-width: 880px) {
  .dct-coverage.svelte-7fpoih {
    grid-template-columns: repeat(3, 1fr);
  }
  .dct-commit.svelte-7fpoih {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .dct-plate.svelte-7fpoih {
    padding: 44px 30px 38px;
  }
}
@media (max-width: 560px) {
  .dct-section.svelte-7fpoih {
    padding: 72px 0 86px;
  }
  .dct-plate.svelte-7fpoih {
    padding: 36px 20px 30px;
    border-radius: 22px;
  }
  .dct-plate-border.svelte-7fpoih {
    top: 6px;
    right: 6px;
    bottom: 6px;
    left: 6px;
    border-radius: 16px;
  }
  .dct-coverage.svelte-7fpoih {
    grid-template-columns: repeat(2, 1fr);
  }
  .dct-hub.svelte-7fpoih {
    width: 150px;
    height: 150px;
  }
  .dct-hub-core.svelte-7fpoih {
    width: 62px;
    height: 62px;
  }
  .dct-btn.svelte-7fpoih {
    padding: 13px 24px;
    font-size: 14px;
  }
}
.wsf-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 100px 0 120px;
  background: radial-gradient(
      1200px 560px at 50% -10%,
      rgba(14, 165, 233, 0.05),
      transparent 65%
    ),
    radial-gradient(
      900px 500px at 100% 100%,
      rgba(233, 30, 140, 0.05),
      transparent 70%
    ),
    linear-gradient(180deg, #fafcff, #fff, #fffaf4);
}
.wsf-orb.svelte-7fpoih {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.45;
}
.wsf-orb-1.svelte-7fpoih {
  width: 360px;
  height: 360px;
  top: -90px;
  left: -80px;
  background: radial-gradient(
    circle,
    rgba(14, 165, 233, 0.35),
    transparent 70%
  );
}
.wsf-orb-2.svelte-7fpoih {
  width: 380px;
  height: 380px;
  bottom: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(233, 30, 140, 0.3), transparent 70%);
}
.wsf-skyline.svelte-7fpoih {
  width: 100%;
  margin: 0 0 48px;
  position: relative;
  z-index: 1;
  line-height: 0;
}
.wsf-skyline-svg.svelte-7fpoih {
  width: 100%;
  height: 140px;
  display: block;
}
.wsf-head.svelte-7fpoih {
  text-align: center;
  margin-bottom: 46px;
  position: relative;
  z-index: 1;
}
.wsf-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: Courier New, monospace;
  font-size: 11px;
  color: #c2185b;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
}
.wsf-kicker-bracket.svelte-7fpoih {
  color: #94a3b8;
  font-weight: 500;
}
.wsf-title.svelte-7fpoih {
  margin: 14px auto 12px;
  max-width: 860px;
  font-size: clamp(1.85rem, 3.4vw, 2.6rem);
  line-height: 1.15;
  font-family: Georgia, Cormorant Garamond, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #0ea5e9 45%, #c2185b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.01em;
}
.wsf-coord.svelte-7fpoih {
  display: inline-block;
  padding: 4px 11px;
  background: #0ea5e912;
  border: 1px dashed rgba(14, 165, 233, 0.3);
  border-radius: 4px;
  font-family: Courier New, monospace;
  font-size: 11px;
  letter-spacing: 1.2px;
  color: #0369a1;
}
.wsf-horizon.svelte-7fpoih {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 48px;
  padding: 32px 20px 20px;
  border-radius: 16px;
  background: linear-gradient(180deg, #0ea5e908, #ffffffd9, #fff9);
  border: 1px solid rgba(14, 165, 233, 0.12);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.wsf-horizon-line.svelte-7fpoih {
  position: absolute;
  top: 46px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(233, 30, 140, 0.35),
    rgba(217, 119, 6, 0.35),
    rgba(13, 148, 136, 0.35),
    rgba(244, 63, 94, 0.35),
    transparent
  );
}
.wsf-horizon-node.svelte-7fpoih {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding-top: 32px;
}
.wsf-horizon-tick.svelte-7fpoih {
  position: absolute;
  top: 12px;
  width: 1px;
  height: 26px;
  background: #0f172a26;
}
.wsf-horizon-dot.svelte-7fpoih {
  position: absolute;
  top: 41px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e91e8c, #d97706);
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px #e91e8c40, 0 2px 6px #00000014;
}
.wsf-horizon-node.svelte-7fpoih:nth-child(odd)
  .wsf-horizon-dot:where(.svelte-7fpoih) {
  background: linear-gradient(135deg, #0d9488, #0ea5e9);
  box-shadow: 0 0 0 1px #0d948840, 0 2px 6px #00000014;
}
.wsf-horizon-label.svelte-7fpoih {
  margin-top: 14px;
  font-size: 13.5px;
  font-weight: 700;
  color: #1e293b;
  text-align: center;
}
.wsf-horizon-tag.svelte-7fpoih {
  font-size: 10.5px;
  color: #64748b;
  font-style: italic;
  text-align: center;
  font-family: Georgia, serif;
}
.wsf-lead.svelte-7fpoih {
  max-width: 880px;
  margin: 0 auto 38px;
  text-align: center;
  font-size: 16.5px;
  line-height: 1.7;
  color: #334155;
  font-family: Georgia, Cormorant Garamond, serif;
  position: relative;
  z-index: 1;
}
.wsf-split.svelte-7fpoih {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 24px 1fr;
  gap: 0;
  align-items: stretch;
}
.wsf-panel.svelte-7fpoih {
  position: relative;
  padding: 28px 28px 26px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 28px #0f172a0d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.wsf-panel.svelte-7fpoih:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px #0f172a14;
}
.wsf-panel--zone.svelte-7fpoih {
  border-left: 3px solid #0ea5e9;
}
.wsf-panel--commit.svelte-7fpoih {
  border-left: 3px solid #059669;
}
.wsf-panel-mark.svelte-7fpoih {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, #0ea5e91a, #e91e8c14);
  color: #0ea5e9;
  margin-bottom: 10px;
}
.wsf-panel--commit.svelte-7fpoih .wsf-panel-mark:where(.svelte-7fpoih) {
  color: #059669;
  background: linear-gradient(135deg, #0596691a, #d9770614);
}
.wsf-panel-label.svelte-7fpoih {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 10px;
  font-family: Courier New, monospace;
}
.wsf-panel.svelte-7fpoih p:where(.svelte-7fpoih) {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: #475569;
}
.wsf-divider.svelte-7fpoih {
  display: block;
  align-self: stretch;
  justify-self: center;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(15, 23, 42, 0.15),
    transparent
  );
}
@media (max-width: 860px) {
  .wsf-horizon.svelte-7fpoih {
    grid-template-columns: repeat(2, 1fr);
    padding-top: 24px;
  }
  .wsf-horizon-line.svelte-7fpoih {
    display: none;
  }
  .wsf-horizon-node.svelte-7fpoih {
    padding-top: 8px;
  }
  .wsf-horizon-tick.svelte-7fpoih,
  .wsf-horizon-dot.svelte-7fpoih {
    display: none;
  }
  .wsf-horizon-label.svelte-7fpoih {
    margin-top: 0;
  }
  .wsf-split.svelte-7fpoih {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .wsf-divider.svelte-7fpoih {
    display: none;
  }
  .wsf-skyline-svg.svelte-7fpoih {
    height: 110px;
  }
}
@media (max-width: 560px) {
  .wsf-section.svelte-7fpoih {
    padding: 72px 0 86px;
  }
  .wsf-skyline-svg.svelte-7fpoih {
    height: 90px;
  }
  .wsf-panel.svelte-7fpoih {
    padding: 22px 20px;
  }
}
.wlt-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 106px 0 118px;
  background: radial-gradient(
      1100px 520px at 0% 20%,
      rgba(233, 30, 140, 0.05),
      transparent 70%
    ),
    radial-gradient(
      900px 480px at 100% 80%,
      rgba(13, 148, 136, 0.05),
      transparent 70%
    ),
    #fffefb;
}
.wlt-orb.svelte-7fpoih {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.42;
}
.wlt-orb-1.svelte-7fpoih {
  width: 380px;
  height: 380px;
  top: -120px;
  right: -80px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.35),
    transparent 70%
  );
}
.wlt-orb-2.svelte-7fpoih {
  width: 360px;
  height: 360px;
  bottom: -100px;
  left: -80px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.3), transparent 70%);
}
.wlt-head.svelte-7fpoih {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}
.wlt-strip.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 6px 14px 6px 6px;
  border-radius: 999px;
  background: #fff;
  color: #475569;
  font-family: Courier New, monospace;
  font-size: 11px;
  letter-spacing: 1.2px;
  font-weight: 600;
  border: 1px solid rgba(233, 30, 140, 0.18);
  box-shadow: 0 8px 22px #e91e8c14;
  margin-bottom: 22px;
}
.wlt-strip-live.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f43f5e, #e11d48);
  color: #fff;
  font-weight: 800;
  letter-spacing: 1.5px;
  font-size: 10px;
  box-shadow: 0 3px 10px #f43f5e47;
}
.wlt-strip-dot.svelte-7fpoih {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 #ffffffb3;
  animation: svelte-7fpoih-wltLivePulse 1.6s infinite;
}
@keyframes svelte-7fpoih-wltLivePulse {
  0%,
  to {
    box-shadow: 0 0 #fff9;
  }
  50% {
    box-shadow: 0 0 0 6px #fff0;
  }
}
.wlt-strip-stamp.svelte-7fpoih {
  color: #b45309;
  font-weight: 700;
}
.wlt-strip-meta.svelte-7fpoih {
  color: #64748b;
  font-style: italic;
}
.wlt-strip-count.svelte-7fpoih {
  color: #047857;
  font-weight: 700;
}
.wlt-strip-sep.svelte-7fpoih {
  width: 1px;
  height: 12px;
  background: #0f172a26;
}
.wlt-kicker.svelte-7fpoih {
  display: block;
  font-size: 11px;
  color: #94a3b8;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}
.wlt-title.svelte-7fpoih {
  margin: 0 auto 14px;
  max-width: 820px;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  line-height: 1.15;
  background: linear-gradient(135deg, #1e293b, #c2185b, #b45309);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.01em;
}
.wlt-lead.svelte-7fpoih {
  max-width: 720px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.65;
  color: #64748b;
}
.wlt-grid.svelte-7fpoih {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.wlt-card.svelte-7fpoih {
  position: relative;
  padding: 26px 26px 22px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--tBd);
  box-shadow: 0 10px 28px #0f172a0d;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border 0.35s ease;
}
.wlt-card.svelte-7fpoih:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px #0f172a14;
  border-color: var(--t1);
}
.wlt-card--rose.svelte-7fpoih {
  --t1: #e91e8c;
  --t2: #c2185b;
  --tBg: rgba(233, 30, 140, 0.07);
  --tBd: rgba(233, 30, 140, 0.2);
}
.wlt-card--gold.svelte-7fpoih {
  --t1: #d97706;
  --t2: #b45309;
  --tBg: rgba(217, 119, 6, 0.07);
  --tBd: rgba(217, 119, 6, 0.2);
}
.wlt-card--teal.svelte-7fpoih {
  --t1: #0d9488;
  --t2: #0f766e;
  --tBg: rgba(13, 148, 136, 0.07);
  --tBd: rgba(13, 148, 136, 0.2);
}
.wlt-card--coral.svelte-7fpoih {
  --t1: #f43f5e;
  --t2: #e11d48;
  --tBg: rgba(244, 63, 94, 0.07);
  --tBd: rgba(244, 63, 94, 0.2);
}
.wlt-card.svelte-7fpoih:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--t1), var(--t2));
}
.wlt-wave.svelte-7fpoih {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 96px;
  height: 18px;
  color: var(--t1);
  opacity: 0.5;
  pointer-events: none;
}
.wlt-card-head.svelte-7fpoih {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.wlt-card-tag.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--tBg);
  color: var(--t2);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: Courier New, monospace;
}
.wlt-card-tag-dot.svelte-7fpoih {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--t1);
  box-shadow: 0 0 0 0 var(--t1);
  animation: svelte-7fpoih-wltTagPulse 2s infinite;
}
@keyframes svelte-7fpoih-wltTagPulse {
  0%,
  to {
    box-shadow: 0 0 #e91e8c80;
  }
  50% {
    box-shadow: 0 0 0 5px #e91e8c00;
  }
}
.wlt-card-idx.svelte-7fpoih {
  font-family: Courier New, monospace;
  font-size: 11px;
  color: #94a3b8;
  letter-spacing: 1.2px;
}
.wlt-card-meta.svelte-7fpoih {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  font-family: Courier New, monospace;
}
.wlt-card-meta.svelte-7fpoih span:where(.svelte-7fpoih) {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  color: #475569;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.wlt-card-heading.svelte-7fpoih {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
  color: #1e293b;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.wlt-card-body.svelte-7fpoih {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.65;
  color: #475569;
}
.wlt-card-foot.svelte-7fpoih {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px dashed var(--tBd);
  gap: 14px;
}
.wlt-card-stat.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.wlt-card-stat.svelte-7fpoih strong:where(.svelte-7fpoih) {
  font-size: 19px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--t1), var(--t2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: Georgia, serif;
  letter-spacing: -0.01em;
}
.wlt-card-stat.svelte-7fpoih span:where(.svelte-7fpoih) {
  font-size: 11px;
  color: #64748b;
  letter-spacing: 0.3px;
  max-width: 220px;
}
.wlt-card-signal.svelte-7fpoih {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 20px;
}
.wlt-card-bar.svelte-7fpoih {
  width: 3px;
  background: linear-gradient(180deg, var(--t1), var(--t2));
  border-radius: 1px;
  opacity: 0.85;
}
.wlt-card-bar-1.svelte-7fpoih {
  height: 6px;
  animation: svelte-7fpoih-wltBar 1.4s ease-in-out 0s infinite;
}
.wlt-card-bar-2.svelte-7fpoih {
  height: 12px;
  animation: svelte-7fpoih-wltBar 1.4s ease-in-out 0.15s infinite;
}
.wlt-card-bar-3.svelte-7fpoih {
  height: 18px;
  animation: svelte-7fpoih-wltBar 1.4s ease-in-out 0.3s infinite;
}
.wlt-card-bar-4.svelte-7fpoih {
  height: 10px;
  animation: svelte-7fpoih-wltBar 1.4s ease-in-out 0.45s infinite;
}
@keyframes svelte-7fpoih-wltBar {
  0%,
  to {
    transform: scaleY(0.7);
  }
  50% {
    transform: scaleY(1);
  }
}
.wlt-closing.svelte-7fpoih {
  margin: 40px auto 0;
  max-width: 760px;
  text-align: center;
  font-size: 14.5px;
  line-height: 1.7;
  color: #64748b;
  font-style: italic;
  padding: 18px 22px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  position: relative;
  z-index: 1;
}
@media (max-width: 880px) {
  .wlt-grid.svelte-7fpoih {
    grid-template-columns: 1fr;
  }
  .wlt-wave.svelte-7fpoih {
    width: 72px;
  }
}
@media (max-width: 560px) {
  .wlt-section.svelte-7fpoih {
    padding: 72px 0 84px;
  }
  .wlt-card.svelte-7fpoih {
    padding: 22px 20px 20px;
  }
  .wlt-wave.svelte-7fpoih {
    display: none;
  }
  .wlt-strip.svelte-7fpoih {
    flex-wrap: wrap;
    padding: 6px 10px;
    gap: 8px;
  }
  .wlt-strip-sep.svelte-7fpoih {
    display: none;
  }
}
.wsr-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 108px 0 120px;
  background: radial-gradient(
      1000px 520px at 90% 10%,
      rgba(217, 119, 6, 0.05),
      transparent 70%
    ),
    radial-gradient(
      900px 480px at 10% 90%,
      rgba(13, 148, 136, 0.05),
      transparent 70%
    ),
    linear-gradient(180deg, #fffaf4, #fff 60%, #f0fdfa);
}
.wsr-orb.svelte-7fpoih {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.42;
}
.wsr-orb-1.svelte-7fpoih {
  width: 400px;
  height: 400px;
  top: -150px;
  right: -80px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.35), transparent 70%);
}
.wsr-orb-2.svelte-7fpoih {
  width: 360px;
  height: 360px;
  bottom: -120px;
  left: -80px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.3), transparent 70%);
}
.wsr-head.svelte-7fpoih {
  text-align: center;
  margin-bottom: 54px;
  position: relative;
  z-index: 1;
}
.wsr-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Courier New, monospace;
  font-size: 11px;
  color: #475569;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  font-weight: 700;
}
.wsr-kicker-line.svelte-7fpoih {
  width: 36px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(217, 119, 6, 0.5),
    transparent
  );
}
.wsr-title.svelte-7fpoih {
  margin: 14px auto 12px;
  max-width: 820px;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  line-height: 1.18;
  background: linear-gradient(135deg, #1e293b, #b45309 45%, #0f766e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.wsr-lead.svelte-7fpoih {
  max-width: 720px;
  margin: 0 auto 14px;
  font-size: 15px;
  line-height: 1.65;
  color: #64748b;
}
.wsr-tower-label.svelte-7fpoih {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  background: #fff;
  border: 1px dashed rgba(217, 119, 6, 0.3);
  font-family: Courier New, monospace;
  font-size: 10.5px;
  color: #78350f;
  letter-spacing: 1.5px;
}
.wsr-grid.svelte-7fpoih {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.wsr-card.svelte-7fpoih {
  position: relative;
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 0;
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--tBd);
  overflow: hidden;
  box-shadow: 0 10px 28px #0f172a0d;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.wsr-card.svelte-7fpoih:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px #0f172a17;
}
.wsr-card--rose.svelte-7fpoih {
  --t1: #e91e8c;
  --t2: #c2185b;
  --tBg: rgba(233, 30, 140, 0.08);
  --tBd: rgba(233, 30, 140, 0.2);
}
.wsr-card--gold.svelte-7fpoih {
  --t1: #d97706;
  --t2: #b45309;
  --tBg: rgba(217, 119, 6, 0.08);
  --tBd: rgba(217, 119, 6, 0.2);
}
.wsr-card--teal.svelte-7fpoih {
  --t1: #0d9488;
  --t2: #0f766e;
  --tBg: rgba(13, 148, 136, 0.08);
  --tBd: rgba(13, 148, 136, 0.2);
}
.wsr-card--emerald.svelte-7fpoih {
  --t1: #059669;
  --t2: #047857;
  --tBg: rgba(5, 150, 105, 0.08);
  --tBd: rgba(5, 150, 105, 0.2);
}
.wsr-card--coral.svelte-7fpoih {
  --t1: #f43f5e;
  --t2: #e11d48;
  --tBg: rgba(244, 63, 94, 0.08);
  --tBd: rgba(244, 63, 94, 0.2);
}
.wsr-elevator.svelte-7fpoih {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  background: linear-gradient(180deg, var(--tBg) 0%, #fff 100%);
  border-right: 1px solid var(--tBd);
  color: var(--t2);
  font-family: Courier New, monospace;
}
.wsr-elev-rail.svelte-7fpoih {
  position: absolute;
  top: 42px;
  bottom: 42px;
  width: 1px;
  background: repeating-linear-gradient(
    180deg,
    var(--t1) 0 4px,
    transparent 4px 8px
  );
  opacity: 0.4;
}
.wsr-elev-top.svelte-7fpoih,
.wsr-elev-bot.svelte-7fpoih {
  font-size: 11px;
  color: var(--t2);
  opacity: 0.7;
}
.wsr-elev-floor.svelte-7fpoih {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 4px;
  background: #fff;
  border: 1px solid var(--tBd);
  border-radius: 8px;
  min-width: 62px;
  box-shadow: 0 4px 10px #0f172a0f;
}
.wsr-elev-floor-num.svelte-7fpoih {
  font-size: 15px;
  font-weight: 800;
  color: var(--t1);
  font-family: Georgia, serif;
  letter-spacing: 0.5px;
}
.wsr-elev-floor-tag.svelte-7fpoih {
  font-size: 8.5px;
  color: #64748b;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-top: 2px;
}
.wsr-elev-alt.svelte-7fpoih {
  font-size: 10px;
  color: #94a3b8;
  letter-spacing: 0.8px;
  margin-top: -4px;
}
.wsr-building.svelte-7fpoih {
  position: absolute;
  top: 0;
  right: 14px;
  width: 80px;
  height: 140px;
  color: var(--t1);
  opacity: 0.6;
  pointer-events: none;
}
.wsr-card-body.svelte-7fpoih {
  position: relative;
  padding: 24px 24px 22px;
  min-width: 0;
}
.wsr-card-head.svelte-7fpoih {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.wsr-card-num.svelte-7fpoih {
  font-family: Courier New, monospace;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--t2);
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.wsr-card-floor-chip.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--t1), var(--t2));
  color: #fff;
  font-family: Courier New, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
}
.wsr-card-name.svelte-7fpoih {
  margin: 0 0 4px;
  font-size: 18.5px;
  font-weight: 800;
  color: #1e293b;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.wsr-card-age.svelte-7fpoih {
  display: inline-block;
  font-size: 12px;
  color: var(--t2);
  font-weight: 600;
  font-style: italic;
  margin-bottom: 12px;
}
.wsr-card-desc.svelte-7fpoih {
  margin: 0 0 18px;
  font-size: 13.5px;
  line-height: 1.65;
  color: #475569;
}
.wsr-card-foot.svelte-7fpoih {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px dashed var(--tBd);
}
.wsr-card-chip.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 8px 10px;
  border-radius: 8px;
  background: var(--tBg);
}
.wsr-card-chip-label.svelte-7fpoih {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--t2);
  font-family: Courier New, monospace;
}
.wsr-card-chip-value.svelte-7fpoih {
  font-size: 12px;
  color: #1e293b;
  font-weight: 600;
  line-height: 1.4;
}
.wsr-closing.svelte-7fpoih {
  margin: 36px auto 0;
  max-width: 720px;
  text-align: center;
  font-size: 14px;
  line-height: 1.7;
  color: #64748b;
  font-style: italic;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .wsr-grid.svelte-7fpoih {
    grid-template-columns: 1fr;
  }
  .wsr-building.svelte-7fpoih {
    right: 6px;
    opacity: 0.35;
  }
}
@media (max-width: 560px) {
  .wsr-section.svelte-7fpoih {
    padding: 72px 0 86px;
  }
  .wsr-card.svelte-7fpoih {
    grid-template-columns: 74px 1fr;
  }
  .wsr-card-body.svelte-7fpoih {
    padding: 20px 18px;
  }
  .wsr-card-foot.svelte-7fpoih {
    grid-template-columns: 1fr;
  }
  .wsr-elev-floor.svelte-7fpoih {
    min-width: 56px;
  }
  .wsr-elev-floor-num.svelte-7fpoih {
    font-size: 13px;
  }
}
.wbk-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 108px 0 124px;
  background: radial-gradient(
      1100px 560px at 50% -10%,
      rgba(14, 165, 233, 0.07),
      transparent 65%
    ),
    radial-gradient(
      1000px 500px at 50% 110%,
      rgba(233, 30, 140, 0.06),
      transparent 65%
    ),
    linear-gradient(180deg, #f8fcff, #fff 55%, #fff7ee);
}
.wbk-orb.svelte-7fpoih {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(110px);
  opacity: 0.5;
}
.wbk-orb-1.svelte-7fpoih {
  width: 420px;
  height: 420px;
  top: -160px;
  left: 50%;
  transform: translate(-50%);
  background: radial-gradient(
    circle,
    rgba(14, 165, 233, 0.35),
    transparent 70%
  );
}
.wbk-orb-2.svelte-7fpoih {
  width: 440px;
  height: 440px;
  bottom: -180px;
  left: 50%;
  transform: translate(-50%);
  background: radial-gradient(circle, rgba(217, 119, 6, 0.3), transparent 70%);
}
.wbk-plaque.svelte-7fpoih {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin: 0 auto;
  padding: 54px 44px 42px;
  background: radial-gradient(
      500px 280px at 50% 0%,
      rgba(14, 165, 233, 0.05),
      transparent 70%
    ),
    linear-gradient(180deg, #fff, #fafdff);
  border-radius: 26px;
  border: 1px solid rgba(14, 165, 233, 0.2);
  box-shadow: 0 30px 70px #0ea5e914, 0 10px 30px #e91e8c0d;
}
.wbk-plaque-border.svelte-7fpoih {
  position: absolute;
  top: 10px;
  right: 10px;
  bottom: 10px;
  left: 10px;
  border-radius: 18px;
  border: 1px dashed rgba(14, 165, 233, 0.22);
  pointer-events: none;
}
.wbk-head.svelte-7fpoih {
  text-align: center;
  margin-bottom: 38px;
}
.wbk-subkicker.svelte-7fpoih {
  display: block;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: #0369a1;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.wbk-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0ea5e914, #e91e8c14);
  border: 1px solid rgba(14, 165, 233, 0.28);
  color: #0369a1;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}
.wbk-kicker-pulse.svelte-7fpoih {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0ea5e9;
  box-shadow: 0 0 #0ea5e98c;
  animation: svelte-7fpoih-wbkPulse 1.8s infinite;
}
@keyframes svelte-7fpoih-wbkPulse {
  0%,
  to {
    box-shadow: 0 0 #0ea5e98c;
  }
  50% {
    box-shadow: 0 0 0 10px #0ea5e900;
  }
}
.wbk-title.svelte-7fpoih {
  margin: 16px auto 14px;
  max-width: 720px;
  font-size: clamp(1.85rem, 3.4vw, 2.6rem);
  line-height: 1.15;
  font-family: Georgia, Cormorant Garamond, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #0369a1 45%, #c2185b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.01em;
}
.wbk-lead.svelte-7fpoih {
  max-width: 720px;
  margin: 0 auto;
  font-size: 15.5px;
  line-height: 1.7;
  color: #475569;
}
.wbk-corridor.svelte-7fpoih {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 30px 0 34px;
  padding: 30px 10px 10px;
  align-items: end;
}
.wbk-corridor-ground.svelte-7fpoih {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(14, 165, 233, 0.35),
    rgba(217, 119, 6, 0.35),
    rgba(233, 30, 140, 0.35),
    transparent
  );
}
.wbk-tower.svelte-7fpoih {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 50px;
  min-height: calc(var(--th, 120px) + 72px);
}
.wbk-tower-cap.svelte-7fpoih {
  position: absolute;
  top: calc(100% - 50px - var(--th, 120px) - 10px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wbk-tower-cap.svelte-7fpoih:before {
  content: "";
  display: block;
  width: 2px;
  height: 14px;
  background: #c2185b73;
}
.wbk-tower-beacon.svelte-7fpoih {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #dc2626;
  box-shadow: 0 0 #dc262699;
  animation: svelte-7fpoih-wbkBeacon 1.8s infinite;
  animation-delay: calc(var(--idx, 0) * 0.3s);
}
@keyframes svelte-7fpoih-wbkBeacon {
  0%,
  to {
    box-shadow: 0 0 #dc26268c;
  }
  50% {
    box-shadow: 0 0 0 6px #dc262600;
  }
}
.wbk-tower-body.svelte-7fpoih {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translate(-50%);
  width: 48px;
  height: var(--th, 120px);
  background: linear-gradient(180deg, #fff5f9, #e91e8ca6);
  border-radius: 6px 6px 0 0;
  border: 1px solid rgba(233, 30, 140, 0.25);
  border-bottom: none;
  box-shadow: 0 -2px 12px #e91e8c24;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: 3px;
  padding: 10px 8px;
  overflow: hidden;
}
.wbk-tower.svelte-7fpoih:nth-child(1) .wbk-tower-body:where(.svelte-7fpoih) {
  background: linear-gradient(180deg, #fff5f9, #e91e8cb8);
  border-color: #e91e8c47;
  box-shadow: 0 -2px 12px #e91e8c29;
}
.wbk-tower.svelte-7fpoih:nth-child(2) .wbk-tower-body:where(.svelte-7fpoih) {
  background: linear-gradient(180deg, #fff7ea, #d97706b8);
  border-color: #d9770647;
  box-shadow: 0 -2px 12px #d9770629;
}
.wbk-tower.svelte-7fpoih:nth-child(3) .wbk-tower-body:where(.svelte-7fpoih) {
  background: linear-gradient(180deg, #ebfaf7, #0d9488b8);
  border-color: #0d948847;
  box-shadow: 0 -2px 12px #0d948829;
}
.wbk-tower.svelte-7fpoih:nth-child(4) .wbk-tower-body:where(.svelte-7fpoih) {
  background: linear-gradient(180deg, #fff3f4, #f43f5eb8);
  border-color: #f43f5e47;
  box-shadow: 0 -2px 12px #f43f5e29;
}
.wbk-tower-win.svelte-7fpoih {
  background: #fbbf24d9;
  border-radius: 1px;
  box-shadow: 0 0 4px #fbbf248c;
  animation: svelte-7fpoih-wbkWin 4.5s ease-in-out infinite;
}
.wbk-tower-win-a.svelte-7fpoih {
  animation-delay: calc(var(--idx, 0) * 0.2s + 0s);
}
.wbk-tower-win-b.svelte-7fpoih {
  animation-delay: calc(var(--idx, 0) * 0.2s + 0.6s);
}
.wbk-tower-win-c.svelte-7fpoih {
  animation-delay: calc(var(--idx, 0) * 0.2s + 1.2s);
  opacity: 0.4;
}
.wbk-tower-win-d.svelte-7fpoih {
  animation-delay: calc(var(--idx, 0) * 0.2s + 1.8s);
}
.wbk-tower-win-e.svelte-7fpoih {
  animation-delay: calc(var(--idx, 0) * 0.2s + 2.4s);
  opacity: 0.55;
}
@keyframes svelte-7fpoih-wbkWin {
  0%,
  to {
    opacity: 0.85;
  }
  50% {
    opacity: 0.3;
  }
}
.wbk-tower-height.svelte-7fpoih {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translate(-50%);
  font-family: Courier New, monospace;
  font-size: 10px;
  color: #b45309;
  font-weight: 700;
  letter-spacing: 0.8px;
  background: #fff;
  padding: 2px 6px;
  border-radius: 3px;
  border: 1px solid rgba(217, 119, 6, 0.3);
  box-shadow: 0 2px 6px #d977061f;
}
.wbk-tower-name.svelte-7fpoih {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
  text-align: center;
  line-height: 1.2;
}
.wbk-tower-tag.svelte-7fpoih {
  font-size: 10.5px;
  color: #64748b;
  font-style: italic;
  text-align: center;
  margin-top: 2px;
  font-family: Georgia, serif;
}
.wbk-commit.svelte-7fpoih {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 32px;
  padding: 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0ea5e90a, #e91e8c0a);
  border: 1px solid rgba(14, 165, 233, 0.12);
}
.wbk-commit-row.svelte-7fpoih {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.wbk-commit-check.svelte-7fpoih {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #059669, #047857);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 3px 8px #05966933;
}
.wbk-commit-text.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.wbk-commit-text.svelte-7fpoih strong:where(.svelte-7fpoih) {
  font-size: 13.5px;
  color: #1e293b;
  font-weight: 700;
}
.wbk-commit-text.svelte-7fpoih span:where(.svelte-7fpoih) {
  font-size: 11.5px;
  color: #64748b;
  line-height: 1.4;
}
.wbk-actions.svelte-7fpoih {
  text-align: center;
  margin-bottom: 22px;
}
.wbk-btn.svelte-7fpoih {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 14px 32px #25d3664d, 0 4px 10px #25d36633;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.wbk-btn.svelte-7fpoih:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px #25d36661;
}
.wbk-btn-shine.svelte-7fpoih {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 60%
  );
  transform: translate(-100%);
  transition: transform 0.9s ease;
}
.wbk-btn.svelte-7fpoih:hover .wbk-btn-shine:where(.svelte-7fpoih) {
  transform: translate(100%);
}
.wbk-actions-note.svelte-7fpoih {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  color: #64748b;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 600;
}
.wbk-closing.svelte-7fpoih {
  margin: 18px auto 0;
  max-width: 640px;
  text-align: center;
  font-size: 14px;
  line-height: 1.7;
  color: #475569;
  font-style: italic;
  padding-top: 20px;
  border-top: 1px dashed rgba(14, 165, 233, 0.18);
}
@media (max-width: 820px) {
  .wbk-commit.svelte-7fpoih {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .wbk-plaque.svelte-7fpoih {
    padding: 44px 30px 36px;
  }
}
@media (max-width: 560px) {
  .wbk-section.svelte-7fpoih {
    padding: 72px 0 86px;
  }
  .wbk-plaque.svelte-7fpoih {
    padding: 36px 18px 30px;
    border-radius: 22px;
  }
  .wbk-plaque-border.svelte-7fpoih {
    top: 6px;
    right: 6px;
    bottom: 6px;
    left: 6px;
    border-radius: 16px;
  }
  .wbk-corridor.svelte-7fpoih {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 4px 0 0;
    margin: 24px 0 28px;
    align-items: stretch;
  }
  .wbk-corridor-ground.svelte-7fpoih {
    display: none;
  }
  .wbk-tower.svelte-7fpoih {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 12px;
    min-height: 0;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 12px;
  }
  .wbk-tower-cap.svelte-7fpoih {
    display: none;
  }
  .wbk-tower-body.svelte-7fpoih {
    position: static;
    transform: none;
    order: 1;
    width: 24px;
    height: 36px !important;
    flex: none;
    padding: 5px;
    gap: 2px;
    border-radius: 4px 4px 0 0;
  }
  .wbk-tower-name.svelte-7fpoih {
    order: 2;
    flex: 1;
    min-width: 0;
    margin-top: 0;
    text-align: left;
    font-size: 14px;
  }
  .wbk-tower-height.svelte-7fpoih {
    position: static;
    transform: none;
    order: 3;
    margin-left: auto;
  }
  .wbk-tower-tag.svelte-7fpoih {
    order: 4;
    flex-basis: 100%;
    text-align: left;
    margin: 0;
    padding-left: 36px;
  }
  .wbk-btn.svelte-7fpoih {
    padding: 13px 24px;
    font-size: 14px;
  }
}
.skt-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 110px 0 120px;
  background: radial-gradient(
      1100px 540px at 50% -10%,
      rgba(14, 165, 233, 0.05),
      transparent 70%
    ),
    radial-gradient(
      900px 480px at 100% 100%,
      rgba(217, 119, 6, 0.05),
      transparent 70%
    ),
    linear-gradient(180deg, #f8fcff, #fff 55%, #fffaf4);
}
.skt-orb.svelte-7fpoih {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.45;
}
.skt-orb-1.svelte-7fpoih {
  width: 380px;
  height: 380px;
  top: -100px;
  right: -80px;
  background: radial-gradient(
    circle,
    rgba(14, 165, 233, 0.35),
    transparent 70%
  );
}
.skt-orb-2.svelte-7fpoih {
  width: 360px;
  height: 360px;
  bottom: -120px;
  left: -80px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.3), transparent 70%);
}
.skt-runway.svelte-7fpoih {
  position: absolute;
  top: 46px;
  left: -10%;
  right: -10%;
  height: 18px;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0.4;
}
.skt-runway-stripe.svelte-7fpoih {
  flex: 0 0 auto;
  width: 80px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, #fbbf24, transparent);
}
.skt-head.svelte-7fpoih {
  text-align: center;
  margin-bottom: 42px;
  position: relative;
  z-index: 1;
}
.skt-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px;
  border-radius: 999px;
  background: #fffbeb;
  color: #b45309;
  font-family: Courier New, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  border: 1px solid rgba(217, 119, 6, 0.28);
  box-shadow: 0 6px 18px #d9770614;
}
.skt-title.svelte-7fpoih {
  margin: 16px auto 14px;
  max-width: 860px;
  font-size: clamp(1.8rem, 3.2vw, 2.55rem);
  line-height: 1.15;
  background: linear-gradient(135deg, #1e293b, #0369a1, #c2185b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.01em;
}
.skt-lead.svelte-7fpoih {
  max-width: 760px;
  margin: 0 auto;
  font-size: 15.5px;
  line-height: 1.65;
  color: #475569;
}
.skt-intercom.svelte-7fpoih {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto 44px;
  padding: 34px 34px 28px;
  background: linear-gradient(160deg, #fffbeb, #fff7ed);
  border-radius: 20px;
  color: #475569;
  border: 1px solid rgba(217, 119, 6, 0.2);
  box-shadow: 0 18px 44px #d9770614, 0 4px 12px #e91e8c0a;
  overflow: hidden;
}
.skt-intercom.svelte-7fpoih:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #e91e8c, #d97706, #0d9488, #f43f5e);
}
.skt-intercom-grille.svelte-7fpoih {
  position: absolute;
  top: 20px;
  right: 26px;
  display: flex;
  gap: 3px;
  pointer-events: none;
}
.skt-intercom-grille.svelte-7fpoih span:where(.svelte-7fpoih) {
  width: 3px;
  height: 18px;
  background: #d9770673;
  border-radius: 1px;
}
.skt-intercom-grille.svelte-7fpoih span:where(.svelte-7fpoih):nth-child(2n) {
  height: 22px;
  background: #d9770699;
}
.skt-intercom-grille.svelte-7fpoih span:where(.svelte-7fpoih):nth-child(3n) {
  height: 14px;
  background: #d977064d;
}
.skt-intercom-head.svelte-7fpoih {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.skt-intercom-live.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f43f5e, #e11d48);
  color: #fff;
  font-weight: 800;
  font-family: Courier New, monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  box-shadow: 0 3px 10px #f43f5e47;
}
.skt-intercom-live-dot.svelte-7fpoih {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: svelte-7fpoih-sktLive 1.6s infinite;
}
@keyframes svelte-7fpoih-sktLive {
  0%,
  to {
    box-shadow: 0 0 #ffffffb3;
  }
  50% {
    box-shadow: 0 0 0 5px #fff0;
  }
}
.skt-intercom-callsign.svelte-7fpoih {
  font-family: Courier New, monospace;
  font-size: 11px;
  color: #b45309;
  letter-spacing: 2px;
  font-weight: 700;
}
.skt-intercom-wave.svelte-7fpoih {
  margin-left: auto;
  width: 80px;
  height: 20px;
  color: #059669;
}
.skt-intercom-wave.svelte-7fpoih svg:where(.svelte-7fpoih) {
  width: 100%;
  height: 100%;
}
.skt-intercom-label.svelte-7fpoih {
  display: block;
  font-family: Courier New, monospace;
  font-size: 10.5px;
  color: #b45309;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.skt-intercom-body.svelte-7fpoih {
  margin: 0 0 20px;
  font-size: 15.5px;
  line-height: 1.7;
  color: #334155;
  font-family: Georgia, serif;
}
.skt-intercom-chips.svelte-7fpoih {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px dashed rgba(217, 119, 6, 0.25);
}
.skt-intercom-chip.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 999px;
  background: #fff;
  color: #b45309;
  font-family: Courier New, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  border: 1px solid rgba(217, 119, 6, 0.25);
  box-shadow: 0 2px 6px #d977060f;
}
.skt-board.svelte-7fpoih {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(14, 165, 233, 0.15);
  box-shadow: 0 18px 44px #0f172a0f;
  overflow: hidden;
}
.skt-board-head.svelte-7fpoih {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: linear-gradient(90deg, #fffbeb, #fef3c7);
  color: #78350f;
  border-bottom: 2px solid rgba(217, 119, 6, 0.4);
  flex-wrap: wrap;
}
.skt-board-icon.svelte-7fpoih {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: #d9770626;
  color: #b45309;
  border: 1px solid rgba(217, 119, 6, 0.2);
}
.skt-board-label.svelte-7fpoih {
  font-family: Courier New, monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: #78350f;
}
.skt-board-sep.svelte-7fpoih {
  width: 1px;
  height: 14px;
  background: #d977064d;
}
.skt-board-note.svelte-7fpoih {
  font-family: Courier New, monospace;
  font-size: 11px;
  color: #78350f;
  letter-spacing: 0.8px;
  font-style: italic;
  flex: 1;
  opacity: 0.75;
}
.skt-board-pulse.svelte-7fpoih {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 #10b98199;
  animation: svelte-7fpoih-sktBoardPulse 1.8s infinite;
}
@keyframes svelte-7fpoih-sktBoardPulse {
  0%,
  to {
    box-shadow: 0 0 #10b98199;
  }
  50% {
    box-shadow: 0 0 0 7px #10b98100;
  }
}
.skt-board-row.svelte-7fpoih {
  display: grid;
  grid-template-columns: minmax(170px, 1.3fr) minmax(180px, 1.7fr) minmax(
      130px,
      1fr
    ) minmax(130px, 1fr);
  gap: 14px;
  padding: 14px 20px;
  align-items: center;
}
.skt-board-row--header.svelte-7fpoih {
  background: #f8fafc;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  font-family: Courier New, monospace;
  font-size: 10.5px;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.skt-board-row--data.svelte-7fpoih {
  border-top: 1px dashed rgba(15, 23, 42, 0.08);
  transition: background 0.3s ease;
}
.skt-board-row--data.svelte-7fpoih:hover {
  background: #fbbf240a;
}
.skt-board-row--rose.svelte-7fpoih {
  --t1: #e91e8c;
  --t2: #c2185b;
  --tBg: rgba(233, 30, 140, 0.08);
}
.skt-board-row--gold.svelte-7fpoih {
  --t1: #d97706;
  --t2: #b45309;
  --tBg: rgba(217, 119, 6, 0.08);
}
.skt-board-row--teal.svelte-7fpoih {
  --t1: #0d9488;
  --t2: #0f766e;
  --tBg: rgba(13, 148, 136, 0.08);
}
.skt-board-row--emerald.svelte-7fpoih {
  --t1: #059669;
  --t2: #047857;
  --tBg: rgba(5, 150, 105, 0.08);
}
.skt-board-row--coral.svelte-7fpoih {
  --t1: #f43f5e;
  --t2: #e11d48;
  --tBg: rgba(244, 63, 94, 0.08);
}
.skt-board-gate.svelte-7fpoih {
  display: inline-block;
  padding: 4px 9px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--t1), var(--t2));
  color: #fff;
  font-family: Courier New, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  margin-right: 10px;
}
.skt-board-zone.svelte-7fpoih {
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
}
.skt-board-landmark.svelte-7fpoih {
  font-size: 13px;
  color: #475569;
  line-height: 1.4;
}
.skt-board-eta.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: Courier New, monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--t2);
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--tBg);
}
.skt-board-status.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  color: #047857;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: Courier New, monospace;
}
.skt-board-status-dot.svelte-7fpoih {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 #10b98199;
  animation: svelte-7fpoih-sktBoardPulse 2.2s infinite;
  animation-delay: calc(var(--idx, 0) * 0.2s);
}
.skt-closing.svelte-7fpoih {
  margin: 36px auto 0;
  max-width: 780px;
  text-align: center;
  font-size: 14.5px;
  line-height: 1.7;
  color: #64748b;
  font-style: italic;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .skt-board-row.svelte-7fpoih {
    grid-template-columns: 1fr 1fr;
  }
  .skt-board-row--header.svelte-7fpoih .skt-board-col-1:where(.svelte-7fpoih),
  .skt-board-row--header.svelte-7fpoih .skt-board-col-3:where(.svelte-7fpoih) {
    display: none;
  }
  .skt-board-row--data.svelte-7fpoih .skt-board-col-1:where(.svelte-7fpoih) {
    grid-column: 1 / span 2;
    padding-left: 36px;
    font-size: 12.5px;
    color: #64748b;
  }
}
@media (max-width: 560px) {
  .skt-section.svelte-7fpoih {
    padding: 72px 0 86px;
  }
  .skt-intercom.svelte-7fpoih {
    padding: 26px 22px 22px;
  }
  .skt-intercom-grille.svelte-7fpoih,
  .skt-intercom-wave.svelte-7fpoih {
    display: none;
  }
  .skt-board-head.svelte-7fpoih {
    padding: 12px 16px;
    gap: 8px;
  }
  .skt-board-row.svelte-7fpoih {
    padding: 12px 14px;
  }
  .skt-board-row--header.svelte-7fpoih {
    display: none;
  }
  .skt-board-row--data.svelte-7fpoih {
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
    padding: 14px;
  }
  .skt-board-col-1.svelte-7fpoih {
    grid-column: 1 / span 2;
  }
}
.skg-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 110px 0 120px;
  background: radial-gradient(
      1100px 540px at 0% 10%,
      rgba(233, 30, 140, 0.05),
      transparent 70%
    ),
    radial-gradient(
      900px 480px at 100% 90%,
      rgba(13, 148, 136, 0.05),
      transparent 70%
    ),
    #fffefb;
}
.skg-orb.svelte-7fpoih {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.4;
}
.skg-orb-1.svelte-7fpoih {
  width: 380px;
  height: 380px;
  top: -100px;
  left: -80px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.35),
    transparent 70%
  );
}
.skg-orb-2.svelte-7fpoih {
  width: 360px;
  height: 360px;
  bottom: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.3), transparent 70%);
}
.skg-head.svelte-7fpoih {
  text-align: center;
  margin-bottom: 52px;
  position: relative;
  z-index: 1;
}
.skg-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Courier New, monospace;
  font-size: 11px;
  color: #475569;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  font-weight: 700;
}
.skg-kicker-line.svelte-7fpoih {
  width: 36px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(233, 30, 140, 0.5),
    transparent
  );
}
.skg-title.svelte-7fpoih {
  margin: 14px auto 12px;
  max-width: 880px;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  line-height: 1.18;
  background: linear-gradient(135deg, #1e293b, #c2185b 45%, #b45309);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.skg-lead.svelte-7fpoih {
  max-width: 720px;
  margin: 0 auto 12px;
  font-size: 15px;
  line-height: 1.65;
  color: #64748b;
}
.skg-carrier.svelte-7fpoih {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: #fffbeb;
  color: #b45309;
  font-family: Courier New, monospace;
  font-size: 10.5px;
  letter-spacing: 2px;
  font-weight: 700;
  border: 1px dashed rgba(217, 119, 6, 0.35);
  box-shadow: 0 3px 8px #d977060f;
}
.skg-grid.svelte-7fpoih {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.skg-grid.svelte-7fpoih > :where(.svelte-7fpoih):nth-child(5) {
  grid-column: 1 / span 2;
  max-width: calc(50% - 12px);
  margin: 0 auto;
  width: 100%;
}
.skg-pass.svelte-7fpoih {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 14px 140px;
  gap: 0;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--tBd);
  overflow: hidden;
  box-shadow: 0 12px 30px #0f172a0f;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.skg-pass.svelte-7fpoih:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 52px #0f172a1a;
}
.skg-pass--rose.svelte-7fpoih {
  --t1: #e91e8c;
  --t2: #c2185b;
  --tBg: rgba(233, 30, 140, 0.07);
  --tBd: rgba(233, 30, 140, 0.2);
}
.skg-pass--gold.svelte-7fpoih {
  --t1: #d97706;
  --t2: #b45309;
  --tBg: rgba(217, 119, 6, 0.07);
  --tBd: rgba(217, 119, 6, 0.2);
}
.skg-pass--teal.svelte-7fpoih {
  --t1: #0d9488;
  --t2: #0f766e;
  --tBg: rgba(13, 148, 136, 0.07);
  --tBd: rgba(13, 148, 136, 0.2);
}
.skg-pass--emerald.svelte-7fpoih {
  --t1: #059669;
  --t2: #047857;
  --tBg: rgba(5, 150, 105, 0.07);
  --tBd: rgba(5, 150, 105, 0.2);
}
.skg-pass--coral.svelte-7fpoih {
  --t1: #f43f5e;
  --t2: #e11d48;
  --tBg: rgba(244, 63, 94, 0.07);
  --tBd: rgba(244, 63, 94, 0.2);
}
.skg-pass.svelte-7fpoih:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--t1), var(--t2));
}
.skg-perf.svelte-7fpoih {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  background: var(--tBg);
  padding: 14px 0;
}
.skg-perf.svelte-7fpoih span:where(.svelte-7fpoih) {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--tBd);
}
.skg-perf.svelte-7fpoih:before,
.skg-perf.svelte-7fpoih:after {
  content: "";
  position: absolute;
  left: 50%;
  width: 16px;
  height: 8px;
  background: var(--tBg);
  border-radius: 0 0 999px 999px;
  transform: translate(-50%);
}
.skg-perf.svelte-7fpoih:before {
  top: 0;
  border-radius: 0 0 999px 999px;
}
.skg-perf.svelte-7fpoih:after {
  bottom: 0;
  border-radius: 999px 999px 0 0;
}
.skg-pass-body.svelte-7fpoih {
  padding: 24px 24px 22px;
  position: relative;
  min-width: 0;
}
.skg-pass-head.svelte-7fpoih {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.skg-pass-logo.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 9px;
  border-radius: 4px;
  background: #fff3d6;
  color: #b45309;
  font-family: Courier New, monospace;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  border: 1px solid rgba(217, 119, 6, 0.28);
}
.skg-pass-class.svelte-7fpoih {
  font-family: Courier New, monospace;
  font-size: 10px;
  color: var(--t2);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 3px 8px;
  border: 1px dashed var(--tBd);
  border-radius: 4px;
}
.skg-pass-code.svelte-7fpoih {
  margin-left: auto;
  font-family: Courier New, monospace;
  font-size: 11px;
  color: #94a3b8;
  letter-spacing: 1.2px;
}
.skg-pass-route.svelte-7fpoih {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  margin-bottom: 16px;
  background: var(--tBg);
  border-radius: 10px;
  border: 1px dashed var(--tBd);
}
.skg-pass-route-label.svelte-7fpoih {
  display: block;
  font-family: Courier New, monospace;
  font-size: 9.5px;
  color: #64748b;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.skg-pass-route-value.svelte-7fpoih {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: #1e293b;
}
.skg-pass-route-from.svelte-7fpoih {
  text-align: left;
}
.skg-pass-route-arrow.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--t1);
}
.skg-pass-route-line.svelte-7fpoih {
  display: block;
  width: 22px;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    var(--t1) 0 3px,
    transparent 3px 6px
  );
}
.skg-pass-route-to.svelte-7fpoih {
  text-align: right;
}
.skg-pass-name.svelte-7fpoih {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 800;
  color: #1e293b;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.skg-pass-age.svelte-7fpoih {
  display: inline-block;
  font-size: 12px;
  color: var(--t2);
  font-weight: 600;
  font-style: italic;
  margin-bottom: 12px;
}
.skg-pass-desc.svelte-7fpoih {
  margin: 0 0 18px;
  font-size: 13.5px;
  line-height: 1.6;
  color: #475569;
}
.skg-pass-foot.svelte-7fpoih {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px dashed var(--tBd);
}
.skg-pass-meta.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.skg-pass-meta-label.svelte-7fpoih {
  font-family: Courier New, monospace;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--t2);
  text-transform: uppercase;
}
.skg-pass-meta-value.svelte-7fpoih {
  font-size: 12px;
  color: #1e293b;
  font-weight: 600;
  line-height: 1.4;
}
.skg-pass-stub.svelte-7fpoih {
  background: linear-gradient(180deg, var(--t1) 0%, var(--t2) 100%);
  color: #fff;
  padding: 22px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  position: relative;
}
.skg-pass-stub.svelte-7fpoih:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: repeating-linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.4) 0 4px,
    transparent 4px 8px
  );
}
.skg-stub-top.svelte-7fpoih {
  font-family: Courier New, monospace;
  font-size: 9.5px;
  letter-spacing: 2px;
  opacity: 0.85;
}
.skg-stub-gate-label.svelte-7fpoih {
  font-family: Courier New, monospace;
  font-size: 9px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  opacity: 0.8;
  margin-top: 4px;
}
.skg-stub-gate.svelte-7fpoih {
  font-family: Georgia, serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
  margin: 2px 0 6px;
}
.skg-stub-barcode.svelte-7fpoih {
  display: flex;
  gap: 1px;
  margin: 4px 0 2px;
  background: #fff;
  padding: 4px 6px;
  border-radius: 2px;
}
.skg-stub-barcode.svelte-7fpoih span:where(.svelte-7fpoih) {
  width: 1.5px;
  height: 22px;
  background: #78350f;
}
.skg-stub-barcode.svelte-7fpoih span:where(.svelte-7fpoih):nth-child(2n) {
  width: 2.5px;
}
.skg-stub-barcode.svelte-7fpoih span:where(.svelte-7fpoih):nth-child(3n) {
  width: 1px;
  opacity: 0.7;
}
.skg-stub-barcode.svelte-7fpoih span:where(.svelte-7fpoih):nth-child(5n) {
  width: 3px;
}
.skg-stub-code.svelte-7fpoih {
  font-family: Courier New, monospace;
  font-size: 9.5px;
  letter-spacing: 1.4px;
  opacity: 0.9;
}
.skg-closing.svelte-7fpoih {
  margin: 36px auto 0;
  max-width: 780px;
  text-align: center;
  font-size: 14.5px;
  line-height: 1.7;
  color: #64748b;
  font-style: italic;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .skg-grid.svelte-7fpoih {
    grid-template-columns: 1fr;
  }
  .skg-grid.svelte-7fpoih > :where(.svelte-7fpoih):nth-child(5) {
    grid-column: auto;
    max-width: none;
  }
}
@media (max-width: 560px) {
  .skg-section.svelte-7fpoih {
    padding: 72px 0 86px;
  }
  .skg-pass.svelte-7fpoih {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .skg-pass-body.svelte-7fpoih {
    padding: 20px 18px;
  }
  .skg-pass-foot.svelte-7fpoih {
    grid-template-columns: 1fr 1fr;
  }
  .skg-perf.svelte-7fpoih {
    flex-direction: row;
    width: 100%;
    height: auto;
    padding: 10px 18px;
  }
  .skg-perf.svelte-7fpoih:before,
  .skg-perf.svelte-7fpoih:after {
    display: none;
  }
  .skg-pass-stub.svelte-7fpoih {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 6px 14px;
    padding: 14px 18px;
  }
  .skg-pass-stub.svelte-7fpoih:before {
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    width: auto;
    height: 1px;
    background: repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.4) 0 4px,
      transparent 4px 8px
    );
  }
  .skg-stub-top.svelte-7fpoih,
  .skg-stub-gate-label.svelte-7fpoih {
    margin: 0;
  }
  .skg-stub-gate.svelte-7fpoih {
    font-size: 26px;
    margin: 0;
  }
  .skg-stub-barcode.svelte-7fpoih {
    margin: 0;
  }
}
.skc-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 100px 0 114px;
  background: radial-gradient(
      1000px 500px at 100% 10%,
      rgba(217, 119, 6, 0.05),
      transparent 70%
    ),
    radial-gradient(
      900px 480px at 0% 90%,
      rgba(13, 148, 136, 0.05),
      transparent 70%
    ),
    #fffdf8;
}
.skc-orb.svelte-7fpoih {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.4;
}
.skc-orb-1.svelte-7fpoih {
  width: 360px;
  height: 360px;
  top: -100px;
  right: -80px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.3), transparent 70%);
}
.skc-orb-2.svelte-7fpoih {
  width: 340px;
  height: 340px;
  bottom: -100px;
  left: -60px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.3), transparent 70%);
}
.skc-stripe.svelte-7fpoih {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 22px;
}
.skc-stripe-chevron.svelte-7fpoih {
  width: 28px;
  height: 14px;
  clip-path: polygon(0 0, 75% 0, 100% 50%, 75% 100%, 0 100%, 25% 50%);
  background: linear-gradient(90deg, #fbbf24, #d97706);
  opacity: 0.35;
  animation: svelte-7fpoih-skcChev 2.4s ease-in-out infinite;
}
.skc-stripe-chevron.svelte-7fpoih:nth-child(1) {
  animation-delay: 0s;
}
.skc-stripe-chevron.svelte-7fpoih:nth-child(2) {
  animation-delay: 0.2s;
}
.skc-stripe-chevron.svelte-7fpoih:nth-child(3) {
  animation-delay: 0.4s;
  opacity: 0.55;
}
.skc-stripe-chevron.svelte-7fpoih:nth-child(4) {
  animation-delay: 0.6s;
  opacity: 0.75;
}
.skc-stripe-chevron.svelte-7fpoih:nth-child(5) {
  animation-delay: 0.8s;
  opacity: 0.9;
}
@keyframes svelte-7fpoih-skcChev {
  0%,
  to {
    transform: translate(0);
  }
  50% {
    transform: translate(8px);
  }
}
.skc-head.svelte-7fpoih {
  text-align: center;
  margin-bottom: 46px;
  position: relative;
  z-index: 1;
}
.skc-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  border-radius: 999px;
  background: #fffbeb;
  color: #b45309;
  font-family: Courier New, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  border: 1px solid rgba(217, 119, 6, 0.28);
  box-shadow: 0 6px 18px #d9770614;
}
.skc-kicker-bracket.svelte-7fpoih {
  color: #059669;
  font-size: 10px;
}
.skc-title.svelte-7fpoih {
  margin: 16px auto 14px;
  max-width: 820px;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  line-height: 1.15;
  background: linear-gradient(135deg, #1e293b, #b45309 45%, #0f766e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.skc-lead.svelte-7fpoih {
  max-width: 720px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.65;
  color: #64748b;
}
.skc-grid.svelte-7fpoih {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.skc-item.svelte-7fpoih {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--tBd);
  overflow: hidden;
  box-shadow: 0 10px 28px #0f172a0d;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.skc-item.svelte-7fpoih:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px #0f172a17;
}
.skc-item--rose.svelte-7fpoih {
  --t1: #e91e8c;
  --t2: #c2185b;
  --tBg: rgba(233, 30, 140, 0.07);
  --tBd: rgba(233, 30, 140, 0.2);
}
.skc-item--gold.svelte-7fpoih {
  --t1: #d97706;
  --t2: #b45309;
  --tBg: rgba(217, 119, 6, 0.07);
  --tBd: rgba(217, 119, 6, 0.2);
}
.skc-item--teal.svelte-7fpoih {
  --t1: #0d9488;
  --t2: #0f766e;
  --tBg: rgba(13, 148, 136, 0.07);
  --tBd: rgba(13, 148, 136, 0.2);
}
.skc-item--emerald.svelte-7fpoih {
  --t1: #059669;
  --t2: #047857;
  --tBg: rgba(5, 150, 105, 0.07);
  --tBd: rgba(5, 150, 105, 0.2);
}
.skc-item-left.svelte-7fpoih {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 22px 0;
  background: linear-gradient(180deg, var(--tBg), #fff);
  border-right: 1px solid var(--tBd);
  color: var(--t2);
}
.skc-item-num.svelte-7fpoih {
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--t1), var(--t2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 14px;
}
.skc-item-check.svelte-7fpoih {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 14px #10b9814d;
  z-index: 1;
}
.skc-item-rail.svelte-7fpoih {
  flex: 1;
  width: 1px;
  margin-top: 8px;
  background: repeating-linear-gradient(
    180deg,
    var(--t1) 0 4px,
    transparent 4px 8px
  );
  opacity: 0.35;
}
.skc-item-body.svelte-7fpoih {
  padding: 22px 22px 20px;
  min-width: 0;
}
.skc-item-head.svelte-7fpoih {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  gap: 10px;
}
.skc-item-status.svelte-7fpoih {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 4px;
  background: var(--tBg);
  color: var(--t2);
  font-family: Courier New, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  border: 1px dashed var(--tBd);
}
.skc-item-chev.svelte-7fpoih {
  color: var(--t1);
  font-size: 20px;
  font-weight: 800;
}
.skc-item-heading.svelte-7fpoih {
  margin: 0 0 10px;
  font-size: 16.5px;
  font-weight: 800;
  color: #1e293b;
  letter-spacing: -0.01em;
  line-height: 1.35;
}
.skc-item-text.svelte-7fpoih {
  margin: 0 0 16px;
  font-size: 13.5px;
  line-height: 1.65;
  color: #475569;
}
.skc-item-signals.svelte-7fpoih {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 12px;
  border-top: 1px dashed var(--tBd);
}
.skc-item-signal.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--tBg);
  color: var(--t2);
  font-family: Courier New, monospace;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.skc-item-signal-dot.svelte-7fpoih {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--t1);
}
@media (max-width: 980px) {
  .skc-grid.svelte-7fpoih {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .skc-section.svelte-7fpoih {
    padding: 72px 0 84px;
  }
  .skc-item.svelte-7fpoih {
    grid-template-columns: 60px 1fr;
  }
  .skc-item-body.svelte-7fpoih {
    padding: 18px;
  }
  .skc-item-num.svelte-7fpoih {
    font-size: 24px;
  }
}
.skd-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 108px 0 124px;
  background: radial-gradient(
      1200px 560px at 50% -10%,
      rgba(14, 165, 233, 0.07),
      transparent 65%
    ),
    radial-gradient(
      1000px 500px at 50% 110%,
      rgba(251, 191, 36, 0.06),
      transparent 65%
    ),
    linear-gradient(180deg, #f8fcff, #fff 55%, #fffbef);
}
.skd-orb.svelte-7fpoih {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(110px);
  opacity: 0.5;
}
.skd-orb-1.svelte-7fpoih {
  width: 420px;
  height: 420px;
  top: -160px;
  left: 50%;
  transform: translate(-50%);
  background: radial-gradient(circle, rgba(14, 165, 233, 0.3), transparent 70%);
}
.skd-orb-2.svelte-7fpoih {
  width: 440px;
  height: 440px;
  bottom: -180px;
  left: 50%;
  transform: translate(-50%);
  background: radial-gradient(circle, rgba(251, 191, 36, 0.3), transparent 70%);
}
.skd-plaque.svelte-7fpoih {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin: 0 auto;
  padding: 50px 42px 44px;
  background: radial-gradient(
      500px 280px at 50% 0%,
      rgba(14, 165, 233, 0.05),
      transparent 70%
    ),
    linear-gradient(180deg, #fff, #fafdff);
  border-radius: 26px;
  border: 1px solid rgba(14, 165, 233, 0.18);
  box-shadow: 0 30px 68px #0ea5e914, 0 10px 28px #0f172a0d;
}
.skd-head.svelte-7fpoih {
  text-align: center;
  margin-bottom: 32px;
}
.skd-subkicker.svelte-7fpoih {
  display: block;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: #0369a1;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.skd-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d9770614, #e91e8c14);
  color: #b45309;
  font-family: Courier New, monospace;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  border: 1px solid rgba(217, 119, 6, 0.28);
}
.skd-kicker-pulse.svelte-7fpoih {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 #10b98199;
  animation: svelte-7fpoih-skdPulse 1.8s infinite;
}
@keyframes svelte-7fpoih-skdPulse {
  0%,
  to {
    box-shadow: 0 0 #10b98199;
  }
  50% {
    box-shadow: 0 0 0 8px #10b98100;
  }
}
.skd-title.svelte-7fpoih {
  margin: 16px auto 14px;
  max-width: 720px;
  font-size: clamp(1.85rem, 3.4vw, 2.6rem);
  line-height: 1.15;
  font-family: Georgia, Cormorant Garamond, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #0369a1 45%, #c2185b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.01em;
}
.skd-lead.svelte-7fpoih {
  max-width: 720px;
  margin: 0 auto;
  font-size: 15.5px;
  line-height: 1.7;
  color: #475569;
}
.skd-board.svelte-7fpoih {
  margin: 28px 0 30px;
  background: linear-gradient(180deg, #fffbeb, #fff7ed);
  color: #78350f;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(217, 119, 6, 0.22);
  box-shadow: 0 20px 48px #d977061a, 0 4px 14px #e91e8c0f;
}
.skd-board-top.svelte-7fpoih {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: linear-gradient(90deg, #d977060f, #e91e8c0f);
  border-bottom: 1px dashed rgba(217, 119, 6, 0.3);
}
.skd-board-dot.svelte-7fpoih {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #059669;
  box-shadow: 0 0 #05966980;
  animation: svelte-7fpoih-skdPulse 2s infinite;
}
.skd-board-title-strip.svelte-7fpoih {
  flex: 1;
  text-align: center;
  font-family: Courier New, monospace;
  font-size: 11.5px;
  letter-spacing: 2.8px;
  font-weight: 700;
}
.skd-board-text.svelte-7fpoih {
  background: linear-gradient(135deg, #b45309, #c2185b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.skd-board-cols.svelte-7fpoih {
  display: grid;
  grid-template-columns: 70px 1fr 90px 130px;
  gap: 14px;
  padding: 10px 18px;
  background: #d977060a;
  border-bottom: 1px solid rgba(217, 119, 6, 0.18);
}
.skd-board-col-head.svelte-7fpoih {
  font-family: Courier New, monospace;
  font-size: 10px;
  letter-spacing: 1.6px;
  color: #78350f;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.85;
}
.skd-board-flight.svelte-7fpoih {
  display: grid;
  grid-template-columns: 70px 1fr 90px 130px;
  gap: 14px;
  padding: 12px 18px;
  align-items: center;
  border-bottom: 1px dashed rgba(217, 119, 6, 0.15);
  animation: svelte-7fpoih-skdRowIn 0.5s ease calc(var(--idx, 0) * 0.05s) both;
}
@keyframes svelte-7fpoih-skdRowIn {
  0% {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.skd-board-flight.svelte-7fpoih:last-child {
  border-bottom: none;
}
.skd-board-flight--rose.svelte-7fpoih {
  --t1: #e91e8c;
  --t2: #c2185b;
  --tBg: rgba(233, 30, 140, 0.08);
}
.skd-board-flight--gold.svelte-7fpoih {
  --t1: #d97706;
  --t2: #b45309;
  --tBg: rgba(217, 119, 6, 0.08);
}
.skd-board-flight--teal.svelte-7fpoih {
  --t1: #0d9488;
  --t2: #0f766e;
  --tBg: rgba(13, 148, 136, 0.08);
}
.skd-board-flight--emerald.svelte-7fpoih {
  --t1: #059669;
  --t2: #047857;
  --tBg: rgba(5, 150, 105, 0.08);
}
.skd-board-flight--coral.svelte-7fpoih {
  --t1: #f43f5e;
  --t2: #e11d48;
  --tBg: rgba(244, 63, 94, 0.08);
}
.skd-board-gate.svelte-7fpoih {
  display: inline-block;
  padding: 4px 9px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--t1), var(--t2));
  color: #fff;
  font-family: Courier New, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-align: center;
  box-shadow: 0 3px 8px #0f172a1a;
}
.skd-board-place.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: Georgia, serif;
  font-size: 15.5px;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: 0.02em;
}
.skd-board-place.svelte-7fpoih svg:where(.svelte-7fpoih) {
  color: var(--t1);
}
.skd-board-time.svelte-7fpoih {
  font-family: Courier New, monospace;
  font-size: 14px;
  font-weight: 800;
  color: var(--t2);
  letter-spacing: 1.2px;
  text-align: center;
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--tBg);
  justify-self: center;
}
.skd-board-status.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 4px;
  background: #0596691a;
  color: #047857;
  font-family: Courier New, monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  justify-self: start;
  border: 1px solid rgba(5, 150, 105, 0.2);
}
.skd-board-status-dot.svelte-7fpoih {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 #10b9818c;
  animation: svelte-7fpoih-skdPulse 2.2s infinite;
}
.skd-commit.svelte-7fpoih {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 32px;
  padding: 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0ea5e90a, #fbbf240a);
  border: 1px solid rgba(14, 165, 233, 0.12);
}
.skd-commit-row.svelte-7fpoih {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.skd-commit-check.svelte-7fpoih {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #059669, #047857);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 3px 8px #05966933;
}
.skd-commit-text.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.skd-commit-text.svelte-7fpoih strong:where(.svelte-7fpoih) {
  font-size: 13.5px;
  color: #1e293b;
  font-weight: 700;
}
.skd-commit-text.svelte-7fpoih span:where(.svelte-7fpoih) {
  font-size: 11.5px;
  color: #64748b;
  line-height: 1.4;
}
.skd-actions.svelte-7fpoih {
  text-align: center;
  margin-bottom: 22px;
}
.skd-btn.svelte-7fpoih {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 14px 32px #25d3664d, 0 4px 10px #25d36633;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.skd-btn.svelte-7fpoih:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px #25d36661;
}
.skd-btn-shine.svelte-7fpoih {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 60%
  );
  transform: translate(-100%);
  transition: transform 0.9s ease;
}
.skd-btn.svelte-7fpoih:hover .skd-btn-shine:where(.svelte-7fpoih) {
  transform: translate(100%);
}
.skd-actions-note.svelte-7fpoih {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  color: #64748b;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 600;
}
.skd-closing.svelte-7fpoih {
  margin: 18px auto 0;
  max-width: 640px;
  text-align: center;
  font-size: 14px;
  line-height: 1.7;
  color: #475569;
  font-style: italic;
  padding-top: 20px;
  border-top: 1px dashed rgba(14, 165, 233, 0.18);
}
@media (max-width: 820px) {
  .skd-board-cols.svelte-7fpoih {
    display: none;
  }
  .skd-board-flight.svelte-7fpoih {
    grid-template-columns: 60px 1fr 80px;
    grid-template-rows: auto auto;
  }
  .skd-board-status.svelte-7fpoih {
    grid-column: 1 / -1;
    justify-self: center;
  }
  .skd-commit.svelte-7fpoih {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .skd-plaque.svelte-7fpoih {
    padding: 40px 28px 36px;
  }
}
@media (max-width: 560px) {
  .skd-section.svelte-7fpoih {
    padding: 72px 0 86px;
  }
  .skd-plaque.svelte-7fpoih {
    padding: 34px 18px 30px;
    border-radius: 22px;
  }
  .skd-board-title-strip.svelte-7fpoih {
    font-size: 9.5px;
    letter-spacing: 1.5px;
  }
  .skd-board-flight.svelte-7fpoih {
    padding: 10px 14px;
  }
  .skd-board-place.svelte-7fpoih {
    font-size: 13.5px;
  }
  .skd-btn.svelte-7fpoih {
    padding: 13px 24px;
    font-size: 14px;
  }
}
.cpd-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 108px 0 120px;
  background: radial-gradient(
      1200px 560px at 50% -10%,
      rgba(217, 119, 6, 0.06),
      transparent 65%
    ),
    radial-gradient(
      1000px 500px at 100% 100%,
      rgba(233, 30, 140, 0.05),
      transparent 70%
    ),
    linear-gradient(180deg, #fffaf4, #fffdfa 55%, #fff6ef);
}
.cpd-orb.svelte-7fpoih {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.45;
}
.cpd-orb-1.svelte-7fpoih {
  width: 380px;
  height: 380px;
  top: -100px;
  right: -80px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.35), transparent 70%);
}
.cpd-orb-2.svelte-7fpoih {
  width: 360px;
  height: 360px;
  bottom: -120px;
  left: -80px;
  background: radial-gradient(circle, rgba(233, 30, 140, 0.3), transparent 70%);
}
.cpd-skyline.svelte-7fpoih {
  width: 100%;
  margin: 0 0 40px;
  position: relative;
  z-index: 1;
  line-height: 0;
}
.cpd-skyline-svg.svelte-7fpoih {
  width: 100%;
  height: 120px;
  display: block;
}
.cpd-postcard-head.svelte-7fpoih {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 22px 26px;
  margin-bottom: 32px;
  background: linear-gradient(145deg, #fffaf4, #fff 60%, #fff4eb);
  border-radius: 18px;
  border: 1px solid rgba(217, 119, 6, 0.22);
  box-shadow: 0 12px 34px #d9770614;
}
.cpd-postmark.svelte-7fpoih {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.cpd-postmark-svg.svelte-7fpoih {
  width: 120px;
  height: 120px;
  transform: rotate(-8deg);
}
.cpd-postmark-date.svelte-7fpoih {
  font-family: Courier New, monospace;
  font-size: 10.5px;
  color: #b45309;
  letter-spacing: 1.2px;
  text-align: center;
  font-weight: 600;
}
.cpd-greeting.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}
.cpd-greeting-kicker.svelte-7fpoih {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: #b45309;
  letter-spacing: 1.5px;
}
.cpd-greeting-title.svelte-7fpoih {
  margin: 0;
  font-family: Georgia, Cormorant Garamond, serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #c2185b, #b45309 55%, #0f766e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cpd-greeting-sub.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Courier New, monospace;
  font-size: 10.5px;
  color: #475569;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-weight: 700;
  justify-content: center;
  margin-top: 4px;
}
.cpd-greeting-line.svelte-7fpoih {
  width: 30px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(194, 24, 91, 0.4),
    transparent
  );
}
.cpd-corner-stamps.svelte-7fpoih {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 4px;
}
.cpd-stamp.svelte-7fpoih {
  position: relative;
  width: 70px;
  height: 82px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 4px;
  border-radius: 6px;
  background: var(--tBg);
  border: 1px solid var(--tBd);
  transition: transform 0.3s ease;
}
.cpd-stamp.svelte-7fpoih:hover {
  transform: rotate(-4deg) scale(1.05);
}
.cpd-stamp.svelte-7fpoih:nth-child(2) {
  transform: rotate(3deg);
}
.cpd-stamp.svelte-7fpoih:nth-child(3) {
  transform: rotate(-2deg);
}
.cpd-stamp.svelte-7fpoih:nth-child(4) {
  transform: rotate(4deg);
}
.cpd-stamp--rose.svelte-7fpoih {
  --t1: #e91e8c;
  --t2: #c2185b;
  --tBg: #fff2f8;
  --tBd: rgba(233, 30, 140, 0.25);
}
.cpd-stamp--gold.svelte-7fpoih {
  --t1: #d97706;
  --t2: #b45309;
  --tBg: #fff7eb;
  --tBd: rgba(217, 119, 6, 0.28);
}
.cpd-stamp--teal.svelte-7fpoih {
  --t1: #0d9488;
  --t2: #0f766e;
  --tBg: #e6f7f4;
  --tBd: rgba(13, 148, 136, 0.25);
}
.cpd-stamp--emerald.svelte-7fpoih {
  --t1: #059669;
  --t2: #047857;
  --tBg: #e7f9ef;
  --tBd: rgba(5, 150, 105, 0.25);
}
.cpd-stamp.svelte-7fpoih:before {
  content: "";
  position: absolute;
  top: 3px;
  right: 3px;
  bottom: 3px;
  left: 3px;
  border-radius: 4px;
  border: 1px dashed var(--t1);
  opacity: 0.4;
  pointer-events: none;
}
.cpd-stamp-border.svelte-7fpoih {
  position: absolute;
  top: -2px;
  right: -2px;
  bottom: -2px;
  left: -2px;
  border-radius: 8px;
  background: radial-gradient(circle at 0 50%, transparent 3px, var(--tBg) 3px)
      left / 6px 10px repeat-y,
    radial-gradient(circle at 100% 50%, transparent 3px, var(--tBg) 3px) right /
      6px 10px repeat-y,
    radial-gradient(circle at 50% 0, transparent 3px, var(--tBg) 3px) top / 10px
      6px repeat-x,
    radial-gradient(circle at 50% 100%, transparent 3px, var(--tBg) 3px) bottom /
      10px 6px repeat-x;
  pointer-events: none;
  z-index: -1;
}
.cpd-stamp-value.svelte-7fpoih {
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 13px;
  color: var(--t2);
  line-height: 1;
  letter-spacing: -0.01em;
}
.cpd-stamp-sub.svelte-7fpoih {
  font-family: Courier New, monospace;
  font-size: 8.5px;
  color: var(--t2);
  letter-spacing: 0.6px;
  margin-top: 4px;
  opacity: 0.85;
  text-align: center;
}
.cpd-body.svelte-7fpoih {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto 32px;
  padding: 32px 34px 28px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(217, 119, 6, 0.12);
  box-shadow: 0 14px 36px #0f172a0d;
}
.cpd-body.svelte-7fpoih:before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 14px;
  width: 3px;
  background: linear-gradient(180deg, #e91e8c, #d97706, #0d9488);
  border-radius: 2px;
  opacity: 0.7;
}
.cpd-body-title.svelte-7fpoih {
  margin: 0 0 12px;
  padding-left: 14px;
  font-family: Georgia, Cormorant Garamond, serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: #1e293b;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.cpd-body-lead.svelte-7fpoih {
  margin: 0 0 16px;
  padding-left: 14px;
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
  font-family: Georgia, serif;
  font-style: italic;
}
.cpd-body-para.svelte-7fpoih {
  margin: 0 0 14px;
  padding-left: 14px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #475569;
}
.cpd-body-para.svelte-7fpoih:last-child {
  margin-bottom: 0;
}
.cpd-tracking.svelte-7fpoih {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 20px 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, #d977060a, #e91e8c0a);
  border: 1px dashed rgba(217, 119, 6, 0.3);
}
.cpd-tracking-label.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: Courier New, monospace;
  font-size: 11px;
  color: #b45309;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}
.cpd-tracking-grid.svelte-7fpoih {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.cpd-tracking-stat.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(217, 119, 6, 0.15);
  animation: svelte-7fpoih-cpdStatIn 0.5s ease calc(var(--i, 0) * 0.1s) both;
}
@keyframes svelte-7fpoih-cpdStatIn {
  0% {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.cpd-tracking-stat.svelte-7fpoih strong:where(.svelte-7fpoih) {
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 18px;
  background: linear-gradient(135deg, #c2185b, #b45309);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.01em;
}
.cpd-tracking-stat.svelte-7fpoih span:where(.svelte-7fpoih) {
  font-size: 11.5px;
  color: #64748b;
  font-family: Courier New, monospace;
  letter-spacing: 0.4px;
}
@media (max-width: 880px) {
  .cpd-postcard-head.svelte-7fpoih {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 18px;
  }
  .cpd-corner-stamps.svelte-7fpoih {
    grid-template-columns: repeat(4, 1fr);
  }
  .cpd-tracking-grid.svelte-7fpoih {
    grid-template-columns: 1fr;
  }
  .cpd-skyline-svg.svelte-7fpoih {
    height: 90px;
  }
}
@media (max-width: 560px) {
  .cpd-section.svelte-7fpoih {
    padding: 72px 0 86px;
  }
  .cpd-postcard-head.svelte-7fpoih {
    padding: 20px 18px;
  }
  .cpd-corner-stamps.svelte-7fpoih {
    grid-template-columns: repeat(2, 1fr);
    max-width: 260px;
  }
  .cpd-postmark-svg.svelte-7fpoih {
    width: 96px;
    height: 96px;
  }
  .cpd-body.svelte-7fpoih {
    padding: 24px 22px;
  }
  .cpd-body.svelte-7fpoih:before {
    left: 10px;
  }
  .cpd-body-title.svelte-7fpoih,
  .cpd-body-lead.svelte-7fpoih,
  .cpd-body-para.svelte-7fpoih {
    padding-left: 12px;
  }
}
.cha-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 110px 0 124px;
  background: radial-gradient(
      1100px 540px at 0% 10%,
      rgba(13, 148, 136, 0.05),
      transparent 70%
    ),
    radial-gradient(
      900px 480px at 100% 90%,
      rgba(233, 30, 140, 0.05),
      transparent 70%
    ),
    linear-gradient(180deg, #fefefc, #fffaf4 55%, #f0fdfa);
}
.cha-orb.svelte-7fpoih {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.42;
}
.cha-orb-1.svelte-7fpoih {
  width: 380px;
  height: 380px;
  top: -100px;
  left: -80px;
  background: radial-gradient(
    circle,
    rgba(13, 148, 136, 0.35),
    transparent 70%
  );
}
.cha-orb-2.svelte-7fpoih {
  width: 360px;
  height: 360px;
  bottom: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(233, 30, 140, 0.3), transparent 70%);
}
.cha-head.svelte-7fpoih {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}
.cha-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px;
  border-radius: 999px;
  background: #fff;
  color: #0f766e;
  font-family: Courier New, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  border: 1px solid rgba(13, 148, 136, 0.28);
  box-shadow: 0 6px 18px #0d94880f;
}
.cha-title.svelte-7fpoih {
  margin: 14px auto 12px;
  max-width: 880px;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  line-height: 1.18;
  font-family: Georgia, Cormorant Garamond, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #0f766e 45%, #c2185b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.01em;
}
.cha-lead.svelte-7fpoih {
  max-width: 760px;
  margin: 0 auto 14px;
  font-size: 15.5px;
  line-height: 1.65;
  color: #475569;
}
.cha-bearing.svelte-7fpoih {
  display: inline-block;
  padding: 5px 13px;
  border-radius: 4px;
  background: #f0fdfa;
  border: 1px dashed rgba(13, 148, 136, 0.35);
  font-family: Courier New, monospace;
  font-size: 11px;
  color: #0f766e;
  letter-spacing: 1.4px;
  font-weight: 600;
}
.cha-chart.svelte-7fpoih {
  position: relative;
  padding: 32px 28px 22px;
  background: linear-gradient(180deg, #fff, #fffdf9);
  border-radius: 20px;
  border: 1px solid rgba(13, 148, 136, 0.15);
  box-shadow: 0 16px 44px #0f172a0d;
  overflow: hidden;
  z-index: 1;
}
.cha-chart-grid.svelte-7fpoih {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.cha-grid.svelte-7fpoih {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.cha-entry.svelte-7fpoih {
  position: relative;
  padding: 22px 22px 20px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--tBd);
  overflow: hidden;
  box-shadow: 0 6px 18px #0f172a0a;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border 0.35s ease;
}
.cha-entry.svelte-7fpoih:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px #0f172a14;
  border-color: var(--t1);
}
.cha-entry--rose.svelte-7fpoih {
  --t1: #e91e8c;
  --t2: #c2185b;
  --tBg: rgba(233, 30, 140, 0.07);
  --tBd: rgba(233, 30, 140, 0.2);
}
.cha-entry--gold.svelte-7fpoih {
  --t1: #d97706;
  --t2: #b45309;
  --tBg: rgba(217, 119, 6, 0.07);
  --tBd: rgba(217, 119, 6, 0.2);
}
.cha-entry--teal.svelte-7fpoih {
  --t1: #0d9488;
  --t2: #0f766e;
  --tBg: rgba(13, 148, 136, 0.07);
  --tBd: rgba(13, 148, 136, 0.2);
}
.cha-entry--coral.svelte-7fpoih {
  --t1: #f43f5e;
  --t2: #e11d48;
  --tBg: rgba(244, 63, 94, 0.07);
  --tBd: rgba(244, 63, 94, 0.2);
}
.cha-entry--emerald.svelte-7fpoih {
  --t1: #059669;
  --t2: #047857;
  --tBg: rgba(5, 150, 105, 0.07);
  --tBd: rgba(5, 150, 105, 0.2);
}
.cha-entry.svelte-7fpoih:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--t1), var(--t2));
  border-radius: 14px 14px 0 0;
}
.cha-entry-head.svelte-7fpoih {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}
.cha-entry-code.svelte-7fpoih {
  font-family: Courier New, monospace;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--t2);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 4px;
  background: var(--tBg);
  border: 1px solid var(--tBd);
}
.cha-entry-pin.svelte-7fpoih {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: var(--t1);
}
.cha-entry-pin-pulse.svelte-7fpoih {
  position: absolute;
  top: -2px;
  right: -2px;
  bottom: -2px;
  left: -2px;
  border-radius: 50%;
  background: var(--tBg);
  animation: svelte-7fpoih-chaPinPulse 2.4s ease-in-out infinite;
}
@keyframes svelte-7fpoih-chaPinPulse {
  0%,
  to {
    transform: scale(0.6);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.3;
  }
}
.cha-entry-pin.svelte-7fpoih svg:where(.svelte-7fpoih) {
  position: relative;
  z-index: 1;
}
.cha-entry-name.svelte-7fpoih {
  margin: 0 0 4px;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 18px;
  color: #1e293b;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.cha-entry-role.svelte-7fpoih {
  display: block;
  font-size: 11.5px;
  color: var(--t2);
  font-weight: 600;
  font-style: italic;
  margin-bottom: 10px;
}
.cha-entry-desc.svelte-7fpoih {
  margin: 0 0 12px;
  font-size: 13.5px;
  line-height: 1.65;
  color: #475569;
}
.cha-entry-rule.svelte-7fpoih {
  display: flex;
  gap: 5px;
  align-items: center;
  padding-top: 10px;
}
.cha-entry-rule.svelte-7fpoih span:where(.svelte-7fpoih) {
  height: 2px;
  border-radius: 2px;
  background: var(--t1);
  opacity: 0.6;
}
.cha-entry-rule.svelte-7fpoih span:where(.svelte-7fpoih):nth-child(1) {
  flex: 1;
}
.cha-entry-rule.svelte-7fpoih span:where(.svelte-7fpoih):nth-child(2) {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  opacity: 0.8;
}
.cha-entry-rule.svelte-7fpoih span:where(.svelte-7fpoih):nth-child(3) {
  flex: 2;
}
.cha-note.svelte-7fpoih {
  margin: 28px auto 0;
  max-width: 760px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 14px 18px;
  border-radius: 10px;
  background: #0d94880d;
  border: 1px dashed rgba(13, 148, 136, 0.28);
  color: #0f766e;
  font-size: 13px;
  line-height: 1.55;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.cha-note.svelte-7fpoih svg:where(.svelte-7fpoih) {
  flex-shrink: 0;
  margin-top: 2px;
}
@media (max-width: 1000px) {
  .cha-grid.svelte-7fpoih {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .cha-section.svelte-7fpoih {
    padding: 72px 0 86px;
  }
  .cha-chart.svelte-7fpoih {
    padding: 22px 18px;
  }
  .cha-grid.svelte-7fpoih {
    grid-template-columns: 1fr;
  }
}
.cge-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 110px 0 120px;
  background: radial-gradient(
      1100px 540px at 100% 10%,
      rgba(217, 119, 6, 0.05),
      transparent 70%
    ),
    radial-gradient(
      900px 480px at 0% 90%,
      rgba(233, 30, 140, 0.05),
      transparent 70%
    ),
    #fffdf8;
}
.cge-orb.svelte-7fpoih {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.42;
}
.cge-orb-1.svelte-7fpoih {
  width: 380px;
  height: 380px;
  top: -100px;
  right: -80px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.35), transparent 70%);
}
.cge-orb-2.svelte-7fpoih {
  width: 360px;
  height: 360px;
  bottom: -120px;
  left: -80px;
  background: radial-gradient(circle, rgba(233, 30, 140, 0.3), transparent 70%);
}
.cge-head.svelte-7fpoih {
  text-align: center;
  margin-bottom: 52px;
  position: relative;
  z-index: 1;
}
.cge-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Courier New, monospace;
  font-size: 11px;
  color: #b45309;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  font-weight: 700;
}
.cge-kicker-line.svelte-7fpoih {
  width: 36px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(217, 119, 6, 0.5),
    transparent
  );
}
.cge-title.svelte-7fpoih {
  margin: 14px auto 12px;
  max-width: 820px;
  font-size: clamp(1.85rem, 3.4vw, 2.6rem);
  line-height: 1.15;
  font-family: Georgia, Cormorant Garamond, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #b45309 45%, #c2185b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.01em;
}
.cge-lead.svelte-7fpoih {
  max-width: 720px;
  margin: 0 auto 14px;
  font-size: 15px;
  line-height: 1.65;
  color: #64748b;
}
.cge-catalog.svelte-7fpoih {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  background: #fff;
  border: 1px dashed rgba(217, 119, 6, 0.35);
  font-family: Courier New, monospace;
  font-size: 10.5px;
  color: #b45309;
  letter-spacing: 1.6px;
  font-weight: 700;
}
.cge-grid.svelte-7fpoih {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.cge-grid.svelte-7fpoih > :where(.svelte-7fpoih):nth-child(5) {
  grid-column: 1 / span 2;
  max-width: calc(50% - 13px);
  margin: 0 auto;
  width: 100%;
}
.cge-plate.svelte-7fpoih {
  position: relative;
  padding: 38px 32px 30px;
  background: linear-gradient(165deg, #fff, #fffaf4);
  border-radius: 14px;
  border: 1px solid var(--tBd);
  box-shadow: 0 14px 40px #0f172a0f;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.cge-plate.svelte-7fpoih:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 56px #0f172a1a;
}
.cge-plate--rose.svelte-7fpoih {
  --t1: #e91e8c;
  --t2: #c2185b;
  --tBg: rgba(233, 30, 140, 0.05);
  --tBd: rgba(233, 30, 140, 0.22);
}
.cge-plate--gold.svelte-7fpoih {
  --t1: #d97706;
  --t2: #b45309;
  --tBg: rgba(217, 119, 6, 0.05);
  --tBd: rgba(217, 119, 6, 0.26);
}
.cge-plate--teal.svelte-7fpoih {
  --t1: #0d9488;
  --t2: #0f766e;
  --tBg: rgba(13, 148, 136, 0.05);
  --tBd: rgba(13, 148, 136, 0.22);
}
.cge-plate--coral.svelte-7fpoih {
  --t1: #f43f5e;
  --t2: #e11d48;
  --tBg: rgba(244, 63, 94, 0.05);
  --tBd: rgba(244, 63, 94, 0.22);
}
.cge-plate--emerald.svelte-7fpoih {
  --t1: #059669;
  --t2: #047857;
  --tBg: rgba(5, 150, 105, 0.05);
  --tBd: rgba(5, 150, 105, 0.22);
}
.cge-plate.svelte-7fpoih:before {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  bottom: 14px;
  left: 14px;
  border: 1px solid var(--t1);
  opacity: 0.28;
  border-radius: 6px;
  pointer-events: none;
}
.cge-plate.svelte-7fpoih:after {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  bottom: 18px;
  left: 18px;
  border: 1px dashed var(--t1);
  opacity: 0.2;
  border-radius: 4px;
  pointer-events: none;
}
.cge-corner.svelte-7fpoih {
  position: absolute;
  width: 28px;
  height: 28px;
  color: var(--t2);
  pointer-events: none;
  z-index: 2;
}
.cge-corner-tl.svelte-7fpoih {
  top: 10px;
  left: 10px;
}
.cge-corner-tr.svelte-7fpoih {
  top: 10px;
  right: 10px;
}
.cge-corner-bl.svelte-7fpoih {
  bottom: 10px;
  left: 10px;
}
.cge-corner-br.svelte-7fpoih {
  bottom: 10px;
  right: 10px;
}
.cge-plate-head.svelte-7fpoih {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 14px;
  padding-left: 22px;
  padding-right: 22px;
}
.cge-plate-roman.svelte-7fpoih {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--t1), var(--t2));
  color: #fff;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 22px;
  line-height: 1;
  box-shadow: 0 6px 16px #0f172a1a;
  position: relative;
}
.cge-plate-roman.svelte-7fpoih:after {
  content: "";
  position: absolute;
  top: -4px;
  right: -4px;
  bottom: -4px;
  left: -4px;
  border-radius: 50%;
  border: 1px dashed var(--t1);
  opacity: 0.5;
}
.cge-plate-meta.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.cge-plate-edition.svelte-7fpoih {
  font-family: Courier New, monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.6px;
  color: var(--t2);
  text-transform: uppercase;
}
.cge-plate-curator.svelte-7fpoih {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: #64748b;
  line-height: 1.4;
}
.cge-plate-divider.svelte-7fpoih {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 16px 22px 14px;
}
.cge-plate-divider-line.svelte-7fpoih {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--t1), transparent);
  opacity: 0.5;
}
.cge-plate-divider-dot.svelte-7fpoih {
  color: var(--t1);
  font-size: 14px;
}
.cge-plate-name.svelte-7fpoih {
  position: relative;
  z-index: 1;
  margin: 0 22px 4px;
  text-align: center;
  font-family: Georgia, Cormorant Garamond, serif;
  font-weight: 800;
  font-size: 19px;
  color: #1e293b;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.cge-plate-age.svelte-7fpoih {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
  margin: 0 22px 12px;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  color: var(--t2);
  font-weight: 600;
}
.cge-plate-desc.svelte-7fpoih {
  position: relative;
  z-index: 1;
  margin: 0 22px 18px;
  font-size: 13.5px;
  line-height: 1.65;
  color: #475569;
  text-align: center;
}
.cge-plate-foot.svelte-7fpoih {
  position: relative;
  z-index: 1;
  margin: 0 22px;
  padding-top: 14px;
  border-top: 1px dashed var(--tBd);
  display: grid;
  gap: 6px;
}
.cge-plate-meta-row.svelte-7fpoih {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}
.cge-plate-meta-label.svelte-7fpoih {
  font-family: Courier New, monospace;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.6px;
  color: var(--t2);
  text-transform: uppercase;
}
.cge-plate-meta-value.svelte-7fpoih {
  font-size: 12px;
  color: #1e293b;
  font-weight: 600;
  text-align: right;
  line-height: 1.4;
}
.cge-footnote.svelte-7fpoih {
  position: relative;
  z-index: 1;
  margin: 36px auto 0;
  max-width: 720px;
  text-align: center;
  font-size: 14px;
  line-height: 1.7;
  color: #64748b;
  font-style: italic;
  font-family: Georgia, serif;
}
@media (max-width: 880px) {
  .cge-grid.svelte-7fpoih {
    grid-template-columns: 1fr;
  }
  .cge-grid.svelte-7fpoih > :where(.svelte-7fpoih):nth-child(5) {
    grid-column: auto;
    max-width: none;
  }
}
@media (max-width: 560px) {
  .cge-section.svelte-7fpoih {
    padding: 72px 0 86px;
  }
  .cge-plate.svelte-7fpoih {
    padding: 32px 22px 24px;
  }
  .cge-plate.svelte-7fpoih:before {
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
  }
  .cge-plate.svelte-7fpoih:after {
    top: 14px;
    right: 14px;
    bottom: 14px;
    left: 14px;
  }
  .cge-corner.svelte-7fpoih {
    width: 22px;
    height: 22px;
  }
  .cge-plate-head.svelte-7fpoih {
    padding-left: 16px;
    padding-right: 16px;
  }
  .cge-plate-name.svelte-7fpoih,
  .cge-plate-age.svelte-7fpoih,
  .cge-plate-desc.svelte-7fpoih,
  .cge-plate-divider.svelte-7fpoih,
  .cge-plate-foot.svelte-7fpoih {
    margin-left: 16px;
    margin-right: 16px;
  }
  .cge-plate-roman.svelte-7fpoih {
    width: 46px;
    height: 46px;
    font-size: 18px;
  }
}
.cws-section.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: 114px 0 128px;
  background: radial-gradient(
      1200px 580px at 50% -10%,
      rgba(233, 30, 140, 0.07),
      transparent 65%
    ),
    radial-gradient(
      1000px 500px at 50% 110%,
      rgba(217, 119, 6, 0.06),
      transparent 65%
    ),
    linear-gradient(180deg, #fff7ef, #fffdfa 55%, #fff4eb);
}
.cws-orb.svelte-7fpoih {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(110px);
  opacity: 0.5;
}
.cws-orb-1.svelte-7fpoih {
  width: 440px;
  height: 440px;
  top: -170px;
  left: 50%;
  transform: translate(-50%);
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.32),
    transparent 70%
  );
}
.cws-orb-2.svelte-7fpoih {
  width: 460px;
  height: 460px;
  bottom: -180px;
  left: 50%;
  transform: translate(-50%);
  background: radial-gradient(circle, rgba(217, 119, 6, 0.28), transparent 70%);
}
.cws-envelope.svelte-7fpoih {
  position: relative;
  z-index: 1;
  max-width: 1020px;
  margin: 0 auto;
  padding: 60px 48px 48px;
  background: radial-gradient(
      500px 280px at 50% 0%,
      rgba(233, 30, 140, 0.05),
      transparent 70%
    ),
    linear-gradient(180deg, #fffdfa, #fff);
  border-radius: 24px;
  border: 1px solid rgba(217, 119, 6, 0.22);
  box-shadow: 0 34px 74px #d9770614, 0 12px 30px #e91e8c0f;
}
.cws-envelope.svelte-7fpoih:before {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  bottom: 12px;
  left: 12px;
  border: 1px solid rgba(194, 24, 91, 0.2);
  border-radius: 16px;
  pointer-events: none;
}
.cws-envelope.svelte-7fpoih:after {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  bottom: 18px;
  left: 18px;
  border: 1px dashed rgba(194, 24, 91, 0.15);
  border-radius: 12px;
  pointer-events: none;
}
.cws-corner.svelte-7fpoih {
  position: absolute;
  width: 32px;
  height: 32px;
  color: #b45309;
  pointer-events: none;
  z-index: 2;
}
.cws-corner-tl.svelte-7fpoih {
  top: 14px;
  left: 14px;
}
.cws-corner-tr.svelte-7fpoih {
  top: 14px;
  right: 14px;
}
.cws-corner-bl.svelte-7fpoih {
  bottom: 14px;
  left: 14px;
}
.cws-corner-br.svelte-7fpoih {
  bottom: 14px;
  right: 14px;
}
.cws-head.svelte-7fpoih {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 38px;
}
.cws-seal.svelte-7fpoih {
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  width: 140px;
  height: 140px;
  transform: rotate(-6deg);
  filter: drop-shadow(0 10px 24px rgba(194, 24, 91, 0.22));
  animation: svelte-7fpoih-cwsSealFloat 5s ease-in-out infinite;
}
@keyframes svelte-7fpoih-cwsSealFloat {
  0%,
  to {
    transform: rotate(-6deg) translateY(0);
  }
  50% {
    transform: rotate(-4deg) translateY(-3px);
  }
}
.cws-seal-svg.svelte-7fpoih {
  width: 100%;
  height: 100%;
}
.cws-stamp.svelte-7fpoih {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  background: #c2185b14;
  color: #c2185b;
  border: 1px dashed rgba(194, 24, 91, 0.35);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  transform: rotate(-1.5deg);
}
.cws-subkicker.svelte-7fpoih {
  display: block;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: #b45309;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.cws-kicker.svelte-7fpoih {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(217, 119, 6, 0.28);
  color: #b45309;
  font-family: Courier New, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  box-shadow: 0 6px 18px #d9770614;
}
.cws-kicker-pulse.svelte-7fpoih {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e91e8c;
  box-shadow: 0 0 #e91e8c8c;
  animation: svelte-7fpoih-cwsPulse 1.8s infinite;
}
@keyframes svelte-7fpoih-cwsPulse {
  0%,
  to {
    box-shadow: 0 0 #e91e8c8c;
  }
  50% {
    box-shadow: 0 0 0 10px #e91e8c00;
  }
}
.cws-title.svelte-7fpoih {
  margin: 16px auto 14px;
  max-width: 760px;
  font-size: clamp(1.9rem, 3.6vw, 2.75rem);
  line-height: 1.12;
  font-family: Georgia, Cormorant Garamond, serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #b45309 45%, #c2185b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.01em;
}
.cws-lead.svelte-7fpoih {
  max-width: 760px;
  margin: 0 auto;
  font-size: 15.5px;
  line-height: 1.7;
  color: #475569;
  font-family: Georgia, serif;
}
.cws-address-book.svelte-7fpoih {
  position: relative;
  z-index: 1;
  margin: 30px 0 28px;
  padding: 22px 22px 20px;
  background: linear-gradient(135deg, #e91e8c08, #d9770608);
  border-radius: 14px;
  border: 1px dashed rgba(217, 119, 6, 0.3);
}
.cws-address-label.svelte-7fpoih {
  display: block;
  text-align: center;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  color: #b45309;
  letter-spacing: 1.4px;
  margin-bottom: 14px;
}
.cws-address-grid.svelte-7fpoih {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.cws-address.svelte-7fpoih {
  position: relative;
  padding: 14px 10px 12px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--tBd);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3px;
  transition: transform 0.3s ease, border 0.3s ease, box-shadow 0.3s ease;
}
.cws-address.svelte-7fpoih:hover {
  transform: translateY(-3px);
  border-color: var(--t1);
  box-shadow: 0 10px 20px #0f172a14;
}
.cws-address.svelte-7fpoih:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--t1), var(--t2));
  border-radius: 10px 10px 0 0;
}
.cws-address--rose.svelte-7fpoih {
  --t1: #e91e8c;
  --t2: #c2185b;
  --tBg: rgba(233, 30, 140, 0.06);
  --tBd: rgba(233, 30, 140, 0.22);
}
.cws-address--gold.svelte-7fpoih {
  --t1: #d97706;
  --t2: #b45309;
  --tBg: rgba(217, 119, 6, 0.06);
  --tBd: rgba(217, 119, 6, 0.22);
}
.cws-address--teal.svelte-7fpoih {
  --t1: #0d9488;
  --t2: #0f766e;
  --tBg: rgba(13, 148, 136, 0.06);
  --tBd: rgba(13, 148, 136, 0.22);
}
.cws-address--coral.svelte-7fpoih {
  --t1: #f43f5e;
  --t2: #e11d48;
  --tBg: rgba(244, 63, 94, 0.06);
  --tBd: rgba(244, 63, 94, 0.22);
}
.cws-address--emerald.svelte-7fpoih {
  --t1: #059669;
  --t2: #047857;
  --tBg: rgba(5, 150, 105, 0.06);
  --tBd: rgba(5, 150, 105, 0.22);
}
.cws-address-code.svelte-7fpoih {
  font-family: Courier New, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: var(--t2);
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 3px;
  background: var(--tBg);
}
.cws-address-name.svelte-7fpoih {
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 13.5px;
  color: #1e293b;
  margin-top: 4px;
}
.cws-address-sub.svelte-7fpoih {
  font-size: 10.5px;
  color: #64748b;
  font-style: italic;
  font-family: Georgia, serif;
}
.cws-commit.svelte-7fpoih {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 30px;
  padding: 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, #e91e8c0a, #d977060a);
  border: 1px solid rgba(233, 30, 140, 0.12);
}
.cws-commit-row.svelte-7fpoih {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.cws-commit-check.svelte-7fpoih {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #059669, #047857);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 3px 8px #05966933;
}
.cws-commit-text.svelte-7fpoih {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.cws-commit-text.svelte-7fpoih strong:where(.svelte-7fpoih) {
  font-size: 13.5px;
  color: #1e293b;
  font-weight: 700;
}
.cws-commit-text.svelte-7fpoih span:where(.svelte-7fpoih) {
  font-size: 11.5px;
  color: #64748b;
  line-height: 1.4;
}
.cws-actions.svelte-7fpoih {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 24px;
}
.cws-btn.svelte-7fpoih {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 14px 32px #25d3664d, 0 4px 10px #25d36633;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cws-btn.svelte-7fpoih:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px #25d36661;
}
.cws-btn-shine.svelte-7fpoih {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 60%
  );
  transform: translate(-100%);
  transition: transform 0.9s ease;
}
.cws-btn.svelte-7fpoih:hover .cws-btn-shine:where(.svelte-7fpoih) {
  transform: translate(100%);
}
.cws-actions-note.svelte-7fpoih {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  color: #64748b;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 600;
}
.cws-sign-off.svelte-7fpoih {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 auto;
  max-width: 520px;
}
.cws-sign-line.svelte-7fpoih {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(194, 24, 91, 0.35),
    transparent
  );
}
.cws-sign-text.svelte-7fpoih {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: #b45309;
  letter-spacing: 1.2px;
}
.cws-closing.svelte-7fpoih {
  margin: 14px auto 0;
  max-width: 640px;
  text-align: center;
  font-size: 13.5px;
  line-height: 1.7;
  color: #64748b;
  font-style: italic;
  font-family: Georgia, serif;
}
@media (max-width: 880px) {
  .cws-address-grid.svelte-7fpoih {
    grid-template-columns: repeat(3, 1fr);
  }
  .cws-commit.svelte-7fpoih {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .cws-envelope.svelte-7fpoih {
    padding: 48px 30px 40px;
  }
}
@media (max-width: 560px) {
  .cws-section.svelte-7fpoih {
    padding: 72px 0 88px;
  }
  .cws-envelope.svelte-7fpoih {
    padding: 40px 20px 32px;
    border-radius: 20px;
  }
  .cws-envelope.svelte-7fpoih:before {
    top: 8px;
    right: 8px;
    bottom: 8px;
    left: 8px;
    border-radius: 12px;
  }
  .cws-envelope.svelte-7fpoih:after {
    top: 12px;
    right: 12px;
    bottom: 12px;
    left: 12px;
    border-radius: 10px;
  }
  .cws-corner.svelte-7fpoih {
    width: 24px;
    height: 24px;
    top: 10px;
    bottom: auto;
  }
  .cws-corner-bl.svelte-7fpoih,
  .cws-corner-br.svelte-7fpoih {
    bottom: 10px;
    top: auto;
  }
  .cws-address-grid.svelte-7fpoih {
    grid-template-columns: repeat(2, 1fr);
  }
  .cws-seal.svelte-7fpoih {
    width: 110px;
    height: 110px;
  }
  .cws-btn.svelte-7fpoih {
    padding: 13px 24px;
    font-size: 14px;
  }
}
.kwh-section.svelte-7fpoih p:where(.svelte-7fpoih),
.kr-section.svelte-7fpoih p:where(.svelte-7fpoih),
.kzi-section.svelte-7fpoih p:where(.svelte-7fpoih),
.kho-section.svelte-7fpoih p:where(.svelte-7fpoih),
.ksp-section.svelte-7fpoih p:where(.svelte-7fpoih),
.kbf-section.svelte-7fpoih p:where(.svelte-7fpoih),
.kna-section.svelte-7fpoih p:where(.svelte-7fpoih),
.kct-section.svelte-7fpoih p:where(.svelte-7fpoih),
.biw-section.svelte-7fpoih p:where(.svelte-7fpoih),
.bir-section.svelte-7fpoih p:where(.svelte-7fpoih),
.bih-section.svelte-7fpoih p:where(.svelte-7fpoih),
.bina-section.svelte-7fpoih p:where(.svelte-7fpoih),
.bict-section.svelte-7fpoih p:where(.svelte-7fpoih),
.cbw-section.svelte-7fpoih p:where(.svelte-7fpoih),
.cbr-section.svelte-7fpoih p:where(.svelte-7fpoih),
.cbct-section.svelte-7fpoih p:where(.svelte-7fpoih),
.twy-section.svelte-7fpoih p:where(.svelte-7fpoih),
.tct-section.svelte-7fpoih p:where(.svelte-7fpoih),
.kyk-section.svelte-7fpoih p:where(.svelte-7fpoih),
.kys-section.svelte-7fpoih p:where(.svelte-7fpoih),
.kyr-section.svelte-7fpoih p:where(.svelte-7fpoih),
.kybk-section.svelte-7fpoih p:where(.svelte-7fpoih),
.mrq-section.svelte-7fpoih p:where(.svelte-7fpoih),
.mrt-section.svelte-7fpoih p:where(.svelte-7fpoih),
.mrct-section.svelte-7fpoih p:where(.svelte-7fpoih),
.sme-section.svelte-7fpoih p:where(.svelte-7fpoih),
.smr-section.svelte-7fpoih p:where(.svelte-7fpoih),
.smct-section.svelte-7fpoih p:where(.svelte-7fpoih),
.dwh-section.svelte-7fpoih p:where(.svelte-7fpoih),
.dzn-section.svelte-7fpoih p:where(.svelte-7fpoih),
.drs-section.svelte-7fpoih p:where(.svelte-7fpoih),
.dct-section.svelte-7fpoih p:where(.svelte-7fpoih),
.wsf-section.svelte-7fpoih p:where(.svelte-7fpoih),
.wlt-section.svelte-7fpoih p:where(.svelte-7fpoih),
.wsr-section.svelte-7fpoih p:where(.svelte-7fpoih),
.wbk-section.svelte-7fpoih p:where(.svelte-7fpoih),
.skt-section.svelte-7fpoih p:where(.svelte-7fpoih),
.skg-section.svelte-7fpoih p:where(.svelte-7fpoih),
.skc-section.svelte-7fpoih p:where(.svelte-7fpoih),
.skd-section.svelte-7fpoih p:where(.svelte-7fpoih),
.cpd-section.svelte-7fpoih p:where(.svelte-7fpoih),
.cha-section.svelte-7fpoih p:where(.svelte-7fpoih),
.cge-section.svelte-7fpoih p:where(.svelte-7fpoih),
.cws-section.svelte-7fpoih p:where(.svelte-7fpoih) {
  font-size: 15.5px !important;
  line-height: 1.75 !important;
}
.kwh-section.svelte-7fpoih [class*="-lead"]:where(.svelte-7fpoih),
.kwh-section.svelte-7fpoih [class*="-intro"]:where(.svelte-7fpoih),
.kwh-section.svelte-7fpoih [class*="-bridge"]:where(.svelte-7fpoih),
.kwh-section.svelte-7fpoih [class*="-body-lead"]:where(.svelte-7fpoih),
.kwh-section.svelte-7fpoih [class*="-body-para"]:where(.svelte-7fpoih),
.kr-section.svelte-7fpoih [class*="-lead"]:where(.svelte-7fpoih),
.kr-section.svelte-7fpoih [class*="-intro"]:where(.svelte-7fpoih),
.kr-section.svelte-7fpoih [class*="-bridge"]:where(.svelte-7fpoih),
.kr-section.svelte-7fpoih [class*="-body-lead"]:where(.svelte-7fpoih),
.kr-section.svelte-7fpoih [class*="-body-para"]:where(.svelte-7fpoih),
.kzi-section.svelte-7fpoih [class*="-lead"]:where(.svelte-7fpoih),
.kzi-section.svelte-7fpoih [class*="-intro"]:where(.svelte-7fpoih),
.kzi-section.svelte-7fpoih [class*="-bridge"]:where(.svelte-7fpoih),
.kzi-section.svelte-7fpoih [class*="-body-lead"]:where(.svelte-7fpoih),
.kzi-section.svelte-7fpoih [class*="-body-para"]:where(.svelte-7fpoih),
.kho-section.svelte-7fpoih [class*="-lead"]:where(.svelte-7fpoih),
.kho-section.svelte-7fpoih [class*="-intro"]:where(.svelte-7fpoih),
.kho-section.svelte-7fpoih [class*="-bridge"]:where(.svelte-7fpoih),
.kho-section.svelte-7fpoih [class*="-body-lead"]:where(.svelte-7fpoih),
.kho-section.svelte-7fpoih [class*="-body-para"]:where(.svelte-7fpoih),
.ksp-section.svelte-7fpoih [class*="-lead"]:where(.svelte-7fpoih),
.ksp-section.svelte-7fpoih [class*="-intro"]:where(.svelte-7fpoih),
.ksp-section.svelte-7fpoih [class*="-bridge"]:where(.svelte-7fpoih),
.ksp-section.svelte-7fpoih [class*="-body-lead"]:where(.svelte-7fpoih),
.ksp-section.svelte-7fpoih [class*="-body-para"]:where(.svelte-7fpoih),
.kbf-section.svelte-7fpoih [class*="-lead"]:where(.svelte-7fpoih),
.kbf-section.svelte-7fpoih [class*="-intro"]:where(.svelte-7fpoih),
.kbf-section.svelte-7fpoih [class*="-bridge"]:where(.svelte-7fpoih),
.kbf-section.svelte-7fpoih [class*="-body-lead"]:where(.svelte-7fpoih),
.kbf-section.svelte-7fpoih [class*="-body-para"]:where(.svelte-7fpoih),
.kna-section.svelte-7fpoih [class*="-lead"]:where(.svelte-7fpoih),
.kna-section.svelte-7fpoih [class*="-intro"]:where(.svelte-7fpoih),
.kna-section.svelte-7fpoih [class*="-bridge"]:where(.svelte-7fpoih),
.kna-section.svelte-7fpoih [class*="-body-lead"]:where(.svelte-7fpoih),
.kna-section.svelte-7fpoih [class*="-body-para"]:where(.svelte-7fpoih),
.kct-section.svelte-7fpoih [class*="-lead"]:where(.svelte-7fpoih),
.kct-section.svelte-7fpoih [class*="-intro"]:where(.svelte-7fpoih),
.kct-section.svelte-7fpoih [class*="-bridge"]:where(.svelte-7fpoih),
.kct-section.svelte-7fpoih [class*="-body-lead"]:where(.svelte-7fpoih),
.kct-section.svelte-7fpoih [class*="-body-para"]:where(.svelte-7fpoih),
.biw-section.svelte-7fpoih [class*="-lead"]:where(.svelte-7fpoih),
.biw-section.svelte-7fpoih [class*="-intro"]:where(.svelte-7fpoih),
.biw-section.svelte-7fpoih [class*="-bridge"]:where(.svelte-7fpoih),
.biw-section.svelte-7fpoih [class*="-body-lead"]:where(.svelte-7fpoih),
.biw-section.svelte-7fpoih [class*="-body-para"]:where(.svelte-7fpoih),
.bir-section.svelte-7fpoih [class*="-lead"]:where(.svelte-7fpoih),
.bir-section.svelte-7fpoih [class*="-intro"]:where(.svelte-7fpoih),
.bir-section.svelte-7fpoih [class*="-bridge"]:where(.svelte-7fpoih),
.bir-section.svelte-7fpoih [class*="-body-lead"]:where(.svelte-7fpoih),
.bir-section.svelte-7fpoih [class*="-body-para"]:where(.svelte-7fpoih),
.bih-section.svelte-7fpoih [class*="-lead"]:where(.svelte-7fpoih),
.bih-section.svelte-7fpoih [class*="-intro"]:where(.svelte-7fpoih),
.bih-section.svelte-7fpoih [class*="-bridge"]:where(.svelte-7fpoih),
.bih-section.svelte-7fpoih [class*="-body-lead"]:where(.svelte-7fpoih),
.bih-section.svelte-7fpoih [class*="-body-para"]:where(.svelte-7fpoih),
.bina-section.svelte-7fpoih [class*="-lead"]:where(.svelte-7fpoih),
.bina-section.svelte-7fpoih [class*="-intro"]:where(.svelte-7fpoih),
.bina-section.svelte-7fpoih [class*="-bridge"]:where(.svelte-7fpoih),
.bina-section.svelte-7fpoih [class*="-body-lead"]:where(.svelte-7fpoih),
.bina-section.svelte-7fpoih [class*="-body-para"]:where(.svelte-7fpoih),
.bict-section.svelte-7fpoih [class*="-lead"]:where(.svelte-7fpoih),
.bict-section.svelte-7fpoih [class*="-intro"]:where(.svelte-7fpoih),
.bict-section.svelte-7fpoih [class*="-bridge"]:where(.svelte-7fpoih),
.bict-section.svelte-7fpoih [class*="-body-lead"]:where(.svelte-7fpoih),
.bict-section.svelte-7fpoih [class*="-body-para"]:where(.svelte-7fpoih),
.cbw-section.svelte-7fpoih [class*="-lead"]:where(.svelte-7fpoih),
.cbw-section.svelte-7fpoih [class*="-intro"]:where(.svelte-7fpoih),
.cbw-section.svelte-7fpoih [class*="-bridge"]:where(.svelte-7fpoih),
.cbw-section.svelte-7fpoih [class*="-body-lead"]:where(.svelte-7fpoih),
.cbw-section.svelte-7fpoih [class*="-body-para"]:where(.svelte-7fpoih),
.cbr-section.svelte-7fpoih [class*="-lead"]:where(.svelte-7fpoih),
.cbr-section.svelte-7fpoih [class*="-intro"]:where(.svelte-7fpoih),
.cbr-section.svelte-7fpoih [class*="-bridge"]:where(.svelte-7fpoih),
.cbr-section.svelte-7fpoih [class*="-body-lead"]:where(.svelte-7fpoih),
.cbr-section.svelte-7fpoih [class*="-body-para"]:where(.svelte-7fpoih),
.cbct-section.svelte-7fpoih [class*="-lead"]:where(.svelte-7fpoih),
.cbct-section.svelte-7fpoih [class*="-intro"]:where(.svelte-7fpoih),
.cbct-section.svelte-7fpoih [class*="-bridge"]:where(.svelte-7fpoih),
.cbct-section.svelte-7fpoih [class*="-body-lead"]:where(.svelte-7fpoih),
.cbct-section.svelte-7fpoih [class*="-body-para"]:where(.svelte-7fpoih),
.twy-section.svelte-7fpoih [class*="-lead"]:where(.svelte-7fpoih),
.twy-section.svelte-7fpoih [class*="-intro"]:where(.svelte-7fpoih),
.twy-section.svelte-7fpoih [class*="-bridge"]:where(.svelte-7fpoih),
.twy-section.svelte-7fpoih [class*="-body-lead"]:where(.svelte-7fpoih),
.twy-section.svelte-7fpoih [class*="-body-para"]:where(.svelte-7fpoih),
.tct-section.svelte-7fpoih [class*="-lead"]:where(.svelte-7fpoih),
.tct-section.svelte-7fpoih [class*="-intro"]:where(.svelte-7fpoih),
.tct-section.svelte-7fpoih [class*="-bridge"]:where(.svelte-7fpoih),
.tct-section.svelte-7fpoih [class*="-body-lead"]:where(.svelte-7fpoih),
.tct-section.svelte-7fpoih [class*="-body-para"]:where(.svelte-7fpoih),
.kyk-section.svelte-7fpoih [class*="-lead"]:where(.svelte-7fpoih),
.kyk-section.svelte-7fpoih [class*="-intro"]:where(.svelte-7fpoih),
.kyk-section.svelte-7fpoih [class*="-bridge"]:where(.svelte-7fpoih),
.kyk-section.svelte-7fpoih [class*="-body-lead"]:where(.svelte-7fpoih),
.kyk-section.svelte-7fpoih [class*="-body-para"]:where(.svelte-7fpoih),
.kys-section.svelte-7fpoih [class*="-lead"]:where(.svelte-7fpoih),
.kys-section.svelte-7fpoih [class*="-intro"]:where(.svelte-7fpoih),
.kys-section.svelte-7fpoih [class*="-bridge"]:where(.svelte-7fpoih),
.kys-section.svelte-7fpoih [class*="-body-lead"]:where(.svelte-7fpoih),
.kys-section.svelte-7fpoih [class*="-body-para"]:where(.svelte-7fpoih),
.kyr-section.svelte-7fpoih [class*="-lead"]:where(.svelte-7fpoih),
.kyr-section.svelte-7fpoih [class*="-intro"]:where(.svelte-7fpoih),
.kyr-section.svelte-7fpoih [class*="-bridge"]:where(.svelte-7fpoih),
.kyr-section.svelte-7fpoih [class*="-body-lead"]:where(.svelte-7fpoih),
.kyr-section.svelte-7fpoih [class*="-body-para"]:where(.svelte-7fpoih),
.kybk-section.svelte-7fpoih [class*="-lead"]:where(.svelte-7fpoih),
.kybk-section.svelte-7fpoih [class*="-intro"]:where(.svelte-7fpoih),
.kybk-section.svelte-7fpoih [class*="-bridge"]:where(.svelte-7fpoih),
.kybk-section.svelte-7fpoih [class*="-body-lead"]:where(.svelte-7fpoih),
.kybk-section.svelte-7fpoih [class*="-body-para"]:where(.svelte-7fpoih),
.mrq-section.svelte-7fpoih [class*="-lead"]:where(.svelte-7fpoih),
.mrq-section.svelte-7fpoih [class*="-intro"]:where(.svelte-7fpoih),
.mrq-section.svelte-7fpoih [class*="-bridge"]:where(.svelte-7fpoih),
.mrq-section.svelte-7fpoih [class*="-body-lead"]:where(.svelte-7fpoih),
.mrq-section.svelte-7fpoih [class*="-body-para"]:where(.svelte-7fpoih),
.mrt-section.svelte-7fpoih [class*="-lead"]:where(.svelte-7fpoih),
.mrt-section.svelte-7fpoih [class*="-intro"]:where(.svelte-7fpoih),
.mrt-section.svelte-7fpoih [class*="-bridge"]:where(.svelte-7fpoih),
.mrt-section.svelte-7fpoih [class*="-body-lead"]:where(.svelte-7fpoih),
.mrt-section.svelte-7fpoih [class*="-body-para"]:where(.svelte-7fpoih),
.mrct-section.svelte-7fpoih [class*="-lead"]:where(.svelte-7fpoih),
.mrct-section.svelte-7fpoih [class*="-intro"]:where(.svelte-7fpoih),
.mrct-section.svelte-7fpoih [class*="-bridge"]:where(.svelte-7fpoih),
.mrct-section.svelte-7fpoih [class*="-body-lead"]:where(.svelte-7fpoih),
.mrct-section.svelte-7fpoih [class*="-body-para"]:where(.svelte-7fpoih),
.sme-section.svelte-7fpoih [class*="-lead"]:where(.svelte-7fpoih),
.sme-section.svelte-7fpoih [class*="-intro"]:where(.svelte-7fpoih),
.sme-section.svelte-7fpoih [class*="-bridge"]:where(.svelte-7fpoih),
.sme-section.svelte-7fpoih [class*="-body-lead"]:where(.svelte-7fpoih),
.sme-section.svelte-7fpoih [class*="-body-para"]:where(.svelte-7fpoih),
.smr-section.svelte-7fpoih [class*="-lead"]:where(.svelte-7fpoih),
.smr-section.svelte-7fpoih [class*="-intro"]:where(.svelte-7fpoih),
.smr-section.svelte-7fpoih [class*="-bridge"]:where(.svelte-7fpoih),
.smr-section.svelte-7fpoih [class*="-body-lead"]:where(.svelte-7fpoih),
.smr-section.svelte-7fpoih [class*="-body-para"]:where(.svelte-7fpoih),
.smct-section.svelte-7fpoih [class*="-lead"]:where(.svelte-7fpoih),
.smct-section.svelte-7fpoih [class*="-intro"]:where(.svelte-7fpoih),
.smct-section.svelte-7fpoih [class*="-bridge"]:where(.svelte-7fpoih),
.smct-section.svelte-7fpoih [class*="-body-lead"]:where(.svelte-7fpoih),
.smct-section.svelte-7fpoih [class*="-body-para"]:where(.svelte-7fpoih),
.dwh-section.svelte-7fpoih [class*="-lead"]:where(.svelte-7fpoih),
.dwh-section.svelte-7fpoih [class*="-intro"]:where(.svelte-7fpoih),
.dwh-section.svelte-7fpoih [class*="-bridge"]:where(.svelte-7fpoih),
.dwh-section.svelte-7fpoih [class*="-body-lead"]:where(.svelte-7fpoih),
.dwh-section.svelte-7fpoih [class*="-body-para"]:where(.svelte-7fpoih),
.dzn-section.svelte-7fpoih [class*="-lead"]:where(.svelte-7fpoih),
.dzn-section.svelte-7fpoih [class*="-intro"]:where(.svelte-7fpoih),
.dzn-section.svelte-7fpoih [class*="-bridge"]:where(.svelte-7fpoih),
.dzn-section.svelte-7fpoih [class*="-body-lead"]:where(.svelte-7fpoih),
.dzn-section.svelte-7fpoih [class*="-body-para"]:where(.svelte-7fpoih),
.drs-section.svelte-7fpoih [class*="-lead"]:where(.svelte-7fpoih),
.drs-section.svelte-7fpoih [class*="-intro"]:where(.svelte-7fpoih),
.drs-section.svelte-7fpoih [class*="-bridge"]:where(.svelte-7fpoih),
.drs-section.svelte-7fpoih [class*="-body-lead"]:where(.svelte-7fpoih),
.drs-section.svelte-7fpoih [class*="-body-para"]:where(.svelte-7fpoih),
.dct-section.svelte-7fpoih [class*="-lead"]:where(.svelte-7fpoih),
.dct-section.svelte-7fpoih [class*="-intro"]:where(.svelte-7fpoih),
.dct-section.svelte-7fpoih [class*="-bridge"]:where(.svelte-7fpoih),
.dct-section.svelte-7fpoih [class*="-body-lead"]:where(.svelte-7fpoih),
.dct-section.svelte-7fpoih [class*="-body-para"]:where(.svelte-7fpoih),
.wsf-section.svelte-7fpoih [class*="-lead"]:where(.svelte-7fpoih),
.wsf-section.svelte-7fpoih [class*="-intro"]:where(.svelte-7fpoih),
.wsf-section.svelte-7fpoih [class*="-bridge"]:where(.svelte-7fpoih),
.wsf-section.svelte-7fpoih [class*="-body-lead"]:where(.svelte-7fpoih),
.wsf-section.svelte-7fpoih [class*="-body-para"]:where(.svelte-7fpoih),
.wlt-section.svelte-7fpoih [class*="-lead"]:where(.svelte-7fpoih),
.wlt-section.svelte-7fpoih [class*="-intro"]:where(.svelte-7fpoih),
.wlt-section.svelte-7fpoih [class*="-bridge"]:where(.svelte-7fpoih),
.wlt-section.svelte-7fpoih [class*="-body-lead"]:where(.svelte-7fpoih),
.wlt-section.svelte-7fpoih [class*="-body-para"]:where(.svelte-7fpoih),
.wsr-section.svelte-7fpoih [class*="-lead"]:where(.svelte-7fpoih),
.wsr-section.svelte-7fpoih [class*="-intro"]:where(.svelte-7fpoih),
.wsr-section.svelte-7fpoih [class*="-bridge"]:where(.svelte-7fpoih),
.wsr-section.svelte-7fpoih [class*="-body-lead"]:where(.svelte-7fpoih),
.wsr-section.svelte-7fpoih [class*="-body-para"]:where(.svelte-7fpoih),
.wbk-section.svelte-7fpoih [class*="-lead"]:where(.svelte-7fpoih),
.wbk-section.svelte-7fpoih [class*="-intro"]:where(.svelte-7fpoih),
.wbk-section.svelte-7fpoih [class*="-bridge"]:where(.svelte-7fpoih),
.wbk-section.svelte-7fpoih [class*="-body-lead"]:where(.svelte-7fpoih),
.wbk-section.svelte-7fpoih [class*="-body-para"]:where(.svelte-7fpoih),
.skt-section.svelte-7fpoih [class*="-lead"]:where(.svelte-7fpoih),
.skt-section.svelte-7fpoih [class*="-intro"]:where(.svelte-7fpoih),
.skt-section.svelte-7fpoih [class*="-bridge"]:where(.svelte-7fpoih),
.skt-section.svelte-7fpoih [class*="-body-lead"]:where(.svelte-7fpoih),
.skt-section.svelte-7fpoih [class*="-body-para"]:where(.svelte-7fpoih),
.skg-section.svelte-7fpoih [class*="-lead"]:where(.svelte-7fpoih),
.skg-section.svelte-7fpoih [class*="-intro"]:where(.svelte-7fpoih),
.skg-section.svelte-7fpoih [class*="-bridge"]:where(.svelte-7fpoih),
.skg-section.svelte-7fpoih [class*="-body-lead"]:where(.svelte-7fpoih),
.skg-section.svelte-7fpoih [class*="-body-para"]:where(.svelte-7fpoih),
.skc-section.svelte-7fpoih [class*="-lead"]:where(.svelte-7fpoih),
.skc-section.svelte-7fpoih [class*="-intro"]:where(.svelte-7fpoih),
.skc-section.svelte-7fpoih [class*="-bridge"]:where(.svelte-7fpoih),
.skc-section.svelte-7fpoih [class*="-body-lead"]:where(.svelte-7fpoih),
.skc-section.svelte-7fpoih [class*="-body-para"]:where(.svelte-7fpoih),
.skd-section.svelte-7fpoih [class*="-lead"]:where(.svelte-7fpoih),
.skd-section.svelte-7fpoih [class*="-intro"]:where(.svelte-7fpoih),
.skd-section.svelte-7fpoih [class*="-bridge"]:where(.svelte-7fpoih),
.skd-section.svelte-7fpoih [class*="-body-lead"]:where(.svelte-7fpoih),
.skd-section.svelte-7fpoih [class*="-body-para"]:where(.svelte-7fpoih),
.cpd-section.svelte-7fpoih [class*="-lead"]:where(.svelte-7fpoih),
.cpd-section.svelte-7fpoih [class*="-intro"]:where(.svelte-7fpoih),
.cpd-section.svelte-7fpoih [class*="-bridge"]:where(.svelte-7fpoih),
.cpd-section.svelte-7fpoih [class*="-body-lead"]:where(.svelte-7fpoih),
.cpd-section.svelte-7fpoih [class*="-body-para"]:where(.svelte-7fpoih),
.cha-section.svelte-7fpoih [class*="-lead"]:where(.svelte-7fpoih),
.cha-section.svelte-7fpoih [class*="-intro"]:where(.svelte-7fpoih),
.cha-section.svelte-7fpoih [class*="-bridge"]:where(.svelte-7fpoih),
.cha-section.svelte-7fpoih [class*="-body-lead"]:where(.svelte-7fpoih),
.cha-section.svelte-7fpoih [class*="-body-para"]:where(.svelte-7fpoih),
.cge-section.svelte-7fpoih [class*="-lead"]:where(.svelte-7fpoih),
.cge-section.svelte-7fpoih [class*="-intro"]:where(.svelte-7fpoih),
.cge-section.svelte-7fpoih [class*="-bridge"]:where(.svelte-7fpoih),
.cge-section.svelte-7fpoih [class*="-body-lead"]:where(.svelte-7fpoih),
.cge-section.svelte-7fpoih [class*="-body-para"]:where(.svelte-7fpoih),
.cws-section.svelte-7fpoih [class*="-lead"]:where(.svelte-7fpoih),
.cws-section.svelte-7fpoih [class*="-intro"]:where(.svelte-7fpoih),
.cws-section.svelte-7fpoih [class*="-bridge"]:where(.svelte-7fpoih),
.cws-section.svelte-7fpoih [class*="-body-lead"]:where(.svelte-7fpoih),
.cws-section.svelte-7fpoih [class*="-body-para"]:where(.svelte-7fpoih) {
  font-size: 16.5px !important;
  line-height: 1.7 !important;
}
.kwh-section.svelte-7fpoih h3:where(.svelte-7fpoih),
.kr-section.svelte-7fpoih h3:where(.svelte-7fpoih),
.kzi-section.svelte-7fpoih h3:where(.svelte-7fpoih),
.kho-section.svelte-7fpoih h3:where(.svelte-7fpoih),
.ksp-section.svelte-7fpoih h3:where(.svelte-7fpoih),
.kbf-section.svelte-7fpoih h3:where(.svelte-7fpoih),
.kna-section.svelte-7fpoih h3:where(.svelte-7fpoih),
.kct-section.svelte-7fpoih h3:where(.svelte-7fpoih),
.biw-section.svelte-7fpoih h3:where(.svelte-7fpoih),
.bir-section.svelte-7fpoih h3:where(.svelte-7fpoih),
.bih-section.svelte-7fpoih h3:where(.svelte-7fpoih),
.bina-section.svelte-7fpoih h3:where(.svelte-7fpoih),
.bict-section.svelte-7fpoih h3:where(.svelte-7fpoih),
.cbw-section.svelte-7fpoih h3:where(.svelte-7fpoih),
.cbr-section.svelte-7fpoih h3:where(.svelte-7fpoih),
.cbct-section.svelte-7fpoih h3:where(.svelte-7fpoih),
.twy-section.svelte-7fpoih h3:where(.svelte-7fpoih),
.tct-section.svelte-7fpoih h3:where(.svelte-7fpoih),
.kyk-section.svelte-7fpoih h3:where(.svelte-7fpoih),
.kys-section.svelte-7fpoih h3:where(.svelte-7fpoih),
.kyr-section.svelte-7fpoih h3:where(.svelte-7fpoih),
.kybk-section.svelte-7fpoih h3:where(.svelte-7fpoih),
.mrq-section.svelte-7fpoih h3:where(.svelte-7fpoih),
.mrt-section.svelte-7fpoih h3:where(.svelte-7fpoih),
.mrct-section.svelte-7fpoih h3:where(.svelte-7fpoih),
.sme-section.svelte-7fpoih h3:where(.svelte-7fpoih),
.smr-section.svelte-7fpoih h3:where(.svelte-7fpoih),
.smct-section.svelte-7fpoih h3:where(.svelte-7fpoih),
.dwh-section.svelte-7fpoih h3:where(.svelte-7fpoih),
.dzn-section.svelte-7fpoih h3:where(.svelte-7fpoih),
.drs-section.svelte-7fpoih h3:where(.svelte-7fpoih),
.dct-section.svelte-7fpoih h3:where(.svelte-7fpoih),
.wsf-section.svelte-7fpoih h3:where(.svelte-7fpoih),
.wlt-section.svelte-7fpoih h3:where(.svelte-7fpoih),
.wsr-section.svelte-7fpoih h3:where(.svelte-7fpoih),
.wbk-section.svelte-7fpoih h3:where(.svelte-7fpoih),
.skt-section.svelte-7fpoih h3:where(.svelte-7fpoih),
.skg-section.svelte-7fpoih h3:where(.svelte-7fpoih),
.skc-section.svelte-7fpoih h3:where(.svelte-7fpoih),
.skd-section.svelte-7fpoih h3:where(.svelte-7fpoih),
.cpd-section.svelte-7fpoih h3:where(.svelte-7fpoih),
.cha-section.svelte-7fpoih h3:where(.svelte-7fpoih),
.cge-section.svelte-7fpoih h3:where(.svelte-7fpoih),
.cws-section.svelte-7fpoih h3:where(.svelte-7fpoih) {
  font-size: 18px !important;
  line-height: 1.3 !important;
}
.kwh-section.svelte-7fpoih h2:where(.svelte-7fpoih),
.kr-section.svelte-7fpoih h2:where(.svelte-7fpoih),
.kzi-section.svelte-7fpoih h2:where(.svelte-7fpoih),
.kho-section.svelte-7fpoih h2:where(.svelte-7fpoih),
.ksp-section.svelte-7fpoih h2:where(.svelte-7fpoih),
.kbf-section.svelte-7fpoih h2:where(.svelte-7fpoih),
.kna-section.svelte-7fpoih h2:where(.svelte-7fpoih),
.kct-section.svelte-7fpoih h2:where(.svelte-7fpoih),
.biw-section.svelte-7fpoih h2:where(.svelte-7fpoih),
.bir-section.svelte-7fpoih h2:where(.svelte-7fpoih),
.bih-section.svelte-7fpoih h2:where(.svelte-7fpoih),
.bina-section.svelte-7fpoih h2:where(.svelte-7fpoih),
.bict-section.svelte-7fpoih h2:where(.svelte-7fpoih),
.cbw-section.svelte-7fpoih h2:where(.svelte-7fpoih),
.cbr-section.svelte-7fpoih h2:where(.svelte-7fpoih),
.cbct-section.svelte-7fpoih h2:where(.svelte-7fpoih),
.twy-section.svelte-7fpoih h2:where(.svelte-7fpoih),
.tct-section.svelte-7fpoih h2:where(.svelte-7fpoih),
.kyk-section.svelte-7fpoih h2:where(.svelte-7fpoih),
.kys-section.svelte-7fpoih h2:where(.svelte-7fpoih),
.kyr-section.svelte-7fpoih h2:where(.svelte-7fpoih),
.kybk-section.svelte-7fpoih h2:where(.svelte-7fpoih),
.mrq-section.svelte-7fpoih h2:where(.svelte-7fpoih),
.mrt-section.svelte-7fpoih h2:where(.svelte-7fpoih),
.mrct-section.svelte-7fpoih h2:where(.svelte-7fpoih),
.sme-section.svelte-7fpoih h2:where(.svelte-7fpoih),
.smr-section.svelte-7fpoih h2:where(.svelte-7fpoih),
.smct-section.svelte-7fpoih h2:where(.svelte-7fpoih),
.dwh-section.svelte-7fpoih h2:where(.svelte-7fpoih),
.dzn-section.svelte-7fpoih h2:where(.svelte-7fpoih),
.drs-section.svelte-7fpoih h2:where(.svelte-7fpoih),
.dct-section.svelte-7fpoih h2:where(.svelte-7fpoih),
.wsf-section.svelte-7fpoih h2:where(.svelte-7fpoih),
.wlt-section.svelte-7fpoih h2:where(.svelte-7fpoih),
.wsr-section.svelte-7fpoih h2:where(.svelte-7fpoih),
.wbk-section.svelte-7fpoih h2:where(.svelte-7fpoih),
.skt-section.svelte-7fpoih h2:where(.svelte-7fpoih),
.skg-section.svelte-7fpoih h2:where(.svelte-7fpoih),
.skc-section.svelte-7fpoih h2:where(.svelte-7fpoih),
.skd-section.svelte-7fpoih h2:where(.svelte-7fpoih),
.cpd-section.svelte-7fpoih h2:where(.svelte-7fpoih),
.cha-section.svelte-7fpoih h2:where(.svelte-7fpoih),
.cge-section.svelte-7fpoih h2:where(.svelte-7fpoih),
.cws-section.svelte-7fpoih h2:where(.svelte-7fpoih) {
  font-size: clamp(1.95rem, 3.4vw, 2.65rem) !important;
}
.kwh-section.svelte-7fpoih [class*="-closing"]:where(.svelte-7fpoih),
.kwh-section.svelte-7fpoih [class*="-footer"]:where(.svelte-7fpoih),
.kwh-section.svelte-7fpoih [class*="-footnote"]:where(.svelte-7fpoih),
.kwh-section.svelte-7fpoih
  [class*="-note"]:where(.svelte-7fpoih):not([class*="-note-dot"]),
.kr-section.svelte-7fpoih [class*="-closing"]:where(.svelte-7fpoih),
.kr-section.svelte-7fpoih [class*="-footer"]:where(.svelte-7fpoih),
.kr-section.svelte-7fpoih [class*="-footnote"]:where(.svelte-7fpoih),
.kr-section.svelte-7fpoih
  [class*="-note"]:where(.svelte-7fpoih):not([class*="-note-dot"]),
.kzi-section.svelte-7fpoih [class*="-closing"]:where(.svelte-7fpoih),
.kzi-section.svelte-7fpoih [class*="-footer"]:where(.svelte-7fpoih),
.kzi-section.svelte-7fpoih [class*="-footnote"]:where(.svelte-7fpoih),
.kzi-section.svelte-7fpoih
  [class*="-note"]:where(.svelte-7fpoih):not([class*="-note-dot"]),
.kho-section.svelte-7fpoih [class*="-closing"]:where(.svelte-7fpoih),
.kho-section.svelte-7fpoih [class*="-footer"]:where(.svelte-7fpoih),
.kho-section.svelte-7fpoih [class*="-footnote"]:where(.svelte-7fpoih),
.kho-section.svelte-7fpoih
  [class*="-note"]:where(.svelte-7fpoih):not([class*="-note-dot"]),
.ksp-section.svelte-7fpoih [class*="-closing"]:where(.svelte-7fpoih),
.ksp-section.svelte-7fpoih [class*="-footer"]:where(.svelte-7fpoih),
.ksp-section.svelte-7fpoih [class*="-footnote"]:where(.svelte-7fpoih),
.ksp-section.svelte-7fpoih
  [class*="-note"]:where(.svelte-7fpoih):not([class*="-note-dot"]),
.kbf-section.svelte-7fpoih [class*="-closing"]:where(.svelte-7fpoih),
.kbf-section.svelte-7fpoih [class*="-footer"]:where(.svelte-7fpoih),
.kbf-section.svelte-7fpoih [class*="-footnote"]:where(.svelte-7fpoih),
.kbf-section.svelte-7fpoih
  [class*="-note"]:where(.svelte-7fpoih):not([class*="-note-dot"]),
.kna-section.svelte-7fpoih [class*="-closing"]:where(.svelte-7fpoih),
.kna-section.svelte-7fpoih [class*="-footer"]:where(.svelte-7fpoih),
.kna-section.svelte-7fpoih [class*="-footnote"]:where(.svelte-7fpoih),
.kna-section.svelte-7fpoih
  [class*="-note"]:where(.svelte-7fpoih):not([class*="-note-dot"]),
.kct-section.svelte-7fpoih [class*="-closing"]:where(.svelte-7fpoih),
.kct-section.svelte-7fpoih [class*="-footer"]:where(.svelte-7fpoih),
.kct-section.svelte-7fpoih [class*="-footnote"]:where(.svelte-7fpoih),
.kct-section.svelte-7fpoih
  [class*="-note"]:where(.svelte-7fpoih):not([class*="-note-dot"]),
.biw-section.svelte-7fpoih [class*="-closing"]:where(.svelte-7fpoih),
.biw-section.svelte-7fpoih [class*="-footer"]:where(.svelte-7fpoih),
.biw-section.svelte-7fpoih [class*="-footnote"]:where(.svelte-7fpoih),
.biw-section.svelte-7fpoih
  [class*="-note"]:where(.svelte-7fpoih):not([class*="-note-dot"]),
.bir-section.svelte-7fpoih [class*="-closing"]:where(.svelte-7fpoih),
.bir-section.svelte-7fpoih [class*="-footer"]:where(.svelte-7fpoih),
.bir-section.svelte-7fpoih [class*="-footnote"]:where(.svelte-7fpoih),
.bir-section.svelte-7fpoih
  [class*="-note"]:where(.svelte-7fpoih):not([class*="-note-dot"]),
.bih-section.svelte-7fpoih [class*="-closing"]:where(.svelte-7fpoih),
.bih-section.svelte-7fpoih [class*="-footer"]:where(.svelte-7fpoih),
.bih-section.svelte-7fpoih [class*="-footnote"]:where(.svelte-7fpoih),
.bih-section.svelte-7fpoih
  [class*="-note"]:where(.svelte-7fpoih):not([class*="-note-dot"]),
.bina-section.svelte-7fpoih [class*="-closing"]:where(.svelte-7fpoih),
.bina-section.svelte-7fpoih [class*="-footer"]:where(.svelte-7fpoih),
.bina-section.svelte-7fpoih [class*="-footnote"]:where(.svelte-7fpoih),
.bina-section.svelte-7fpoih
  [class*="-note"]:where(.svelte-7fpoih):not([class*="-note-dot"]),
.bict-section.svelte-7fpoih [class*="-closing"]:where(.svelte-7fpoih),
.bict-section.svelte-7fpoih [class*="-footer"]:where(.svelte-7fpoih),
.bict-section.svelte-7fpoih [class*="-footnote"]:where(.svelte-7fpoih),
.bict-section.svelte-7fpoih
  [class*="-note"]:where(.svelte-7fpoih):not([class*="-note-dot"]),
.cbw-section.svelte-7fpoih [class*="-closing"]:where(.svelte-7fpoih),
.cbw-section.svelte-7fpoih [class*="-footer"]:where(.svelte-7fpoih),
.cbw-section.svelte-7fpoih [class*="-footnote"]:where(.svelte-7fpoih),
.cbw-section.svelte-7fpoih
  [class*="-note"]:where(.svelte-7fpoih):not([class*="-note-dot"]),
.cbr-section.svelte-7fpoih [class*="-closing"]:where(.svelte-7fpoih),
.cbr-section.svelte-7fpoih [class*="-footer"]:where(.svelte-7fpoih),
.cbr-section.svelte-7fpoih [class*="-footnote"]:where(.svelte-7fpoih),
.cbr-section.svelte-7fpoih
  [class*="-note"]:where(.svelte-7fpoih):not([class*="-note-dot"]),
.cbct-section.svelte-7fpoih [class*="-closing"]:where(.svelte-7fpoih),
.cbct-section.svelte-7fpoih [class*="-footer"]:where(.svelte-7fpoih),
.cbct-section.svelte-7fpoih [class*="-footnote"]:where(.svelte-7fpoih),
.cbct-section.svelte-7fpoih
  [class*="-note"]:where(.svelte-7fpoih):not([class*="-note-dot"]),
.twy-section.svelte-7fpoih [class*="-closing"]:where(.svelte-7fpoih),
.twy-section.svelte-7fpoih [class*="-footer"]:where(.svelte-7fpoih),
.twy-section.svelte-7fpoih [class*="-footnote"]:where(.svelte-7fpoih),
.twy-section.svelte-7fpoih
  [class*="-note"]:where(.svelte-7fpoih):not([class*="-note-dot"]),
.tct-section.svelte-7fpoih [class*="-closing"]:where(.svelte-7fpoih),
.tct-section.svelte-7fpoih [class*="-footer"]:where(.svelte-7fpoih),
.tct-section.svelte-7fpoih [class*="-footnote"]:where(.svelte-7fpoih),
.tct-section.svelte-7fpoih
  [class*="-note"]:where(.svelte-7fpoih):not([class*="-note-dot"]),
.kyk-section.svelte-7fpoih [class*="-closing"]:where(.svelte-7fpoih),
.kyk-section.svelte-7fpoih [class*="-footer"]:where(.svelte-7fpoih),
.kyk-section.svelte-7fpoih [class*="-footnote"]:where(.svelte-7fpoih),
.kyk-section.svelte-7fpoih
  [class*="-note"]:where(.svelte-7fpoih):not([class*="-note-dot"]),
.kys-section.svelte-7fpoih [class*="-closing"]:where(.svelte-7fpoih),
.kys-section.svelte-7fpoih [class*="-footer"]:where(.svelte-7fpoih),
.kys-section.svelte-7fpoih [class*="-footnote"]:where(.svelte-7fpoih),
.kys-section.svelte-7fpoih
  [class*="-note"]:where(.svelte-7fpoih):not([class*="-note-dot"]),
.kyr-section.svelte-7fpoih [class*="-closing"]:where(.svelte-7fpoih),
.kyr-section.svelte-7fpoih [class*="-footer"]:where(.svelte-7fpoih),
.kyr-section.svelte-7fpoih [class*="-footnote"]:where(.svelte-7fpoih),
.kyr-section.svelte-7fpoih
  [class*="-note"]:where(.svelte-7fpoih):not([class*="-note-dot"]),
.kybk-section.svelte-7fpoih [class*="-closing"]:where(.svelte-7fpoih),
.kybk-section.svelte-7fpoih [class*="-footer"]:where(.svelte-7fpoih),
.kybk-section.svelte-7fpoih [class*="-footnote"]:where(.svelte-7fpoih),
.kybk-section.svelte-7fpoih
  [class*="-note"]:where(.svelte-7fpoih):not([class*="-note-dot"]),
.mrq-section.svelte-7fpoih [class*="-closing"]:where(.svelte-7fpoih),
.mrq-section.svelte-7fpoih [class*="-footer"]:where(.svelte-7fpoih),
.mrq-section.svelte-7fpoih [class*="-footnote"]:where(.svelte-7fpoih),
.mrq-section.svelte-7fpoih
  [class*="-note"]:where(.svelte-7fpoih):not([class*="-note-dot"]),
.mrt-section.svelte-7fpoih [class*="-closing"]:where(.svelte-7fpoih),
.mrt-section.svelte-7fpoih [class*="-footer"]:where(.svelte-7fpoih),
.mrt-section.svelte-7fpoih [class*="-footnote"]:where(.svelte-7fpoih),
.mrt-section.svelte-7fpoih
  [class*="-note"]:where(.svelte-7fpoih):not([class*="-note-dot"]),
.mrct-section.svelte-7fpoih [class*="-closing"]:where(.svelte-7fpoih),
.mrct-section.svelte-7fpoih [class*="-footer"]:where(.svelte-7fpoih),
.mrct-section.svelte-7fpoih [class*="-footnote"]:where(.svelte-7fpoih),
.mrct-section.svelte-7fpoih
  [class*="-note"]:where(.svelte-7fpoih):not([class*="-note-dot"]),
.sme-section.svelte-7fpoih [class*="-closing"]:where(.svelte-7fpoih),
.sme-section.svelte-7fpoih [class*="-footer"]:where(.svelte-7fpoih),
.sme-section.svelte-7fpoih [class*="-footnote"]:where(.svelte-7fpoih),
.sme-section.svelte-7fpoih
  [class*="-note"]:where(.svelte-7fpoih):not([class*="-note-dot"]),
.smr-section.svelte-7fpoih [class*="-closing"]:where(.svelte-7fpoih),
.smr-section.svelte-7fpoih [class*="-footer"]:where(.svelte-7fpoih),
.smr-section.svelte-7fpoih [class*="-footnote"]:where(.svelte-7fpoih),
.smr-section.svelte-7fpoih
  [class*="-note"]:where(.svelte-7fpoih):not([class*="-note-dot"]),
.smct-section.svelte-7fpoih [class*="-closing"]:where(.svelte-7fpoih),
.smct-section.svelte-7fpoih [class*="-footer"]:where(.svelte-7fpoih),
.smct-section.svelte-7fpoih [class*="-footnote"]:where(.svelte-7fpoih),
.smct-section.svelte-7fpoih
  [class*="-note"]:where(.svelte-7fpoih):not([class*="-note-dot"]),
.dwh-section.svelte-7fpoih [class*="-closing"]:where(.svelte-7fpoih),
.dwh-section.svelte-7fpoih [class*="-footer"]:where(.svelte-7fpoih),
.dwh-section.svelte-7fpoih [class*="-footnote"]:where(.svelte-7fpoih),
.dwh-section.svelte-7fpoih
  [class*="-note"]:where(.svelte-7fpoih):not([class*="-note-dot"]),
.dzn-section.svelte-7fpoih [class*="-closing"]:where(.svelte-7fpoih),
.dzn-section.svelte-7fpoih [class*="-footer"]:where(.svelte-7fpoih),
.dzn-section.svelte-7fpoih [class*="-footnote"]:where(.svelte-7fpoih),
.dzn-section.svelte-7fpoih
  [class*="-note"]:where(.svelte-7fpoih):not([class*="-note-dot"]),
.drs-section.svelte-7fpoih [class*="-closing"]:where(.svelte-7fpoih),
.drs-section.svelte-7fpoih [class*="-footer"]:where(.svelte-7fpoih),
.drs-section.svelte-7fpoih [class*="-footnote"]:where(.svelte-7fpoih),
.drs-section.svelte-7fpoih
  [class*="-note"]:where(.svelte-7fpoih):not([class*="-note-dot"]),
.dct-section.svelte-7fpoih [class*="-closing"]:where(.svelte-7fpoih),
.dct-section.svelte-7fpoih [class*="-footer"]:where(.svelte-7fpoih),
.dct-section.svelte-7fpoih [class*="-footnote"]:where(.svelte-7fpoih),
.dct-section.svelte-7fpoih
  [class*="-note"]:where(.svelte-7fpoih):not([class*="-note-dot"]),
.wsf-section.svelte-7fpoih [class*="-closing"]:where(.svelte-7fpoih),
.wsf-section.svelte-7fpoih [class*="-footer"]:where(.svelte-7fpoih),
.wsf-section.svelte-7fpoih [class*="-footnote"]:where(.svelte-7fpoih),
.wsf-section.svelte-7fpoih
  [class*="-note"]:where(.svelte-7fpoih):not([class*="-note-dot"]),
.wlt-section.svelte-7fpoih [class*="-closing"]:where(.svelte-7fpoih),
.wlt-section.svelte-7fpoih [class*="-footer"]:where(.svelte-7fpoih),
.wlt-section.svelte-7fpoih [class*="-footnote"]:where(.svelte-7fpoih),
.wlt-section.svelte-7fpoih
  [class*="-note"]:where(.svelte-7fpoih):not([class*="-note-dot"]),
.wsr-section.svelte-7fpoih [class*="-closing"]:where(.svelte-7fpoih),
.wsr-section.svelte-7fpoih [class*="-footer"]:where(.svelte-7fpoih),
.wsr-section.svelte-7fpoih [class*="-footnote"]:where(.svelte-7fpoih),
.wsr-section.svelte-7fpoih
  [class*="-note"]:where(.svelte-7fpoih):not([class*="-note-dot"]),
.wbk-section.svelte-7fpoih [class*="-closing"]:where(.svelte-7fpoih),
.wbk-section.svelte-7fpoih [class*="-footer"]:where(.svelte-7fpoih),
.wbk-section.svelte-7fpoih [class*="-footnote"]:where(.svelte-7fpoih),
.wbk-section.svelte-7fpoih
  [class*="-note"]:where(.svelte-7fpoih):not([class*="-note-dot"]),
.skt-section.svelte-7fpoih [class*="-closing"]:where(.svelte-7fpoih),
.skt-section.svelte-7fpoih [class*="-footer"]:where(.svelte-7fpoih),
.skt-section.svelte-7fpoih [class*="-footnote"]:where(.svelte-7fpoih),
.skt-section.svelte-7fpoih
  [class*="-note"]:where(.svelte-7fpoih):not([class*="-note-dot"]),
.skg-section.svelte-7fpoih [class*="-closing"]:where(.svelte-7fpoih),
.skg-section.svelte-7fpoih [class*="-footer"]:where(.svelte-7fpoih),
.skg-section.svelte-7fpoih [class*="-footnote"]:where(.svelte-7fpoih),
.skg-section.svelte-7fpoih
  [class*="-note"]:where(.svelte-7fpoih):not([class*="-note-dot"]),
.skc-section.svelte-7fpoih [class*="-closing"]:where(.svelte-7fpoih),
.skc-section.svelte-7fpoih [class*="-footer"]:where(.svelte-7fpoih),
.skc-section.svelte-7fpoih [class*="-footnote"]:where(.svelte-7fpoih),
.skc-section.svelte-7fpoih
  [class*="-note"]:where(.svelte-7fpoih):not([class*="-note-dot"]),
.skd-section.svelte-7fpoih [class*="-closing"]:where(.svelte-7fpoih),
.skd-section.svelte-7fpoih [class*="-footer"]:where(.svelte-7fpoih),
.skd-section.svelte-7fpoih [class*="-footnote"]:where(.svelte-7fpoih),
.skd-section.svelte-7fpoih
  [class*="-note"]:where(.svelte-7fpoih):not([class*="-note-dot"]),
.cpd-section.svelte-7fpoih [class*="-closing"]:where(.svelte-7fpoih),
.cpd-section.svelte-7fpoih [class*="-footer"]:where(.svelte-7fpoih),
.cpd-section.svelte-7fpoih [class*="-footnote"]:where(.svelte-7fpoih),
.cpd-section.svelte-7fpoih
  [class*="-note"]:where(.svelte-7fpoih):not([class*="-note-dot"]),
.cha-section.svelte-7fpoih [class*="-closing"]:where(.svelte-7fpoih),
.cha-section.svelte-7fpoih [class*="-footer"]:where(.svelte-7fpoih),
.cha-section.svelte-7fpoih [class*="-footnote"]:where(.svelte-7fpoih),
.cha-section.svelte-7fpoih
  [class*="-note"]:where(.svelte-7fpoih):not([class*="-note-dot"]),
.cge-section.svelte-7fpoih [class*="-closing"]:where(.svelte-7fpoih),
.cge-section.svelte-7fpoih [class*="-footer"]:where(.svelte-7fpoih),
.cge-section.svelte-7fpoih [class*="-footnote"]:where(.svelte-7fpoih),
.cge-section.svelte-7fpoih
  [class*="-note"]:where(.svelte-7fpoih):not([class*="-note-dot"]),
.cws-section.svelte-7fpoih [class*="-closing"]:where(.svelte-7fpoih),
.cws-section.svelte-7fpoih [class*="-footer"]:where(.svelte-7fpoih),
.cws-section.svelte-7fpoih [class*="-footnote"]:where(.svelte-7fpoih),
.cws-section.svelte-7fpoih
  [class*="-note"]:where(.svelte-7fpoih):not([class*="-note-dot"]) {
  font-size: 15px !important;
  line-height: 1.7 !important;
}
.kwh-trait-body.svelte-7fpoih,
.kwh-trait-label.svelte-7fpoih,
.kwh-pull.svelte-7fpoih,
.kwh-story-title.svelte-7fpoih,
.kwh-story-narrative.svelte-7fpoih,
.kwh-story-resolution.svelte-7fpoih,
.kwh-require-lead.svelte-7fpoih,
.kwh-require-closing.svelte-7fpoih,
.kwh-require-punchline.svelte-7fpoih,
.kwh-check-label.svelte-7fpoih,
.kwh-check-note.svelte-7fpoih,
.kr-item-desc.svelte-7fpoih,
.kr-item-name.svelte-7fpoih,
.kr-qa-question.svelte-7fpoih,
.kr-qa-answer.svelte-7fpoih,
.kzi-zone-desc.svelte-7fpoih,
.kzi-zone-name.svelte-7fpoih,
.kzi-zone-sub.svelte-7fpoih,
.kzi-chip.svelte-7fpoih,
.kho-card-desc.svelte-7fpoih,
.kho-card-name.svelte-7fpoih,
.kho-lead.svelte-7fpoih,
.kho-closing.svelte-7fpoih,
.ksp-panel-desc.svelte-7fpoih,
.ksp-panel-name.svelte-7fpoih,
.ksp-closing.svelte-7fpoih,
.ksp-points.svelte-7fpoih li:where(.svelte-7fpoih),
.kbf-step-desc.svelte-7fpoih,
.kbf-step-title.svelte-7fpoih,
.kbf-punch.svelte-7fpoih,
.kna-card-name.svelte-7fpoih,
.kna-card-hint.svelte-7fpoih,
.kna-card-dist.svelte-7fpoih,
.kna-closing.svelte-7fpoih,
.kct-body.svelte-7fpoih,
.kct-chip.svelte-7fpoih,
.kct-closing.svelte-7fpoih,
.kct-zone.svelte-7fpoih,
.biw-body.svelte-7fpoih,
.biw-card-desc.svelte-7fpoih,
.biw-card-name.svelte-7fpoih,
.biw-strip-text.svelte-7fpoih,
.biw-strip-label.svelte-7fpoih,
.bir-item-desc.svelte-7fpoih,
.bir-item-name.svelte-7fpoih,
.bir-item-age.svelte-7fpoih,
.bih-card-desc.svelte-7fpoih,
.bih-card-name.svelte-7fpoih,
.bih-peg.svelte-7fpoih,
.bih-sub.svelte-7fpoih,
.bict-body.svelte-7fpoih,
.bict-chip.svelte-7fpoih,
.bict-closing.svelte-7fpoih,
.bict-zone-name.svelte-7fpoih,
.bict-zone-sub.svelte-7fpoih,
.cbw-body.svelte-7fpoih,
.cbw-statement.svelte-7fpoih,
.cbw-pull.svelte-7fpoih,
.cbw-card-desc.svelte-7fpoih,
.cbw-card-name.svelte-7fpoih,
.cbr-card-desc.svelte-7fpoih,
.cbr-card-name.svelte-7fpoih,
.cbr-card-hint.svelte-7fpoih,
.cbct-body.svelte-7fpoih,
.cbct-closing.svelte-7fpoih,
.cbct-stop-name.svelte-7fpoih,
.twy-lead.svelte-7fpoih,
.twy-eyebrow.svelte-7fpoih,
.twy-chapter-body.svelte-7fpoih,
.twy-chapter-title.svelte-7fpoih,
.twy-seal-label.svelte-7fpoih,
.twy-seal-value.svelte-7fpoih,
.tct-body.svelte-7fpoih,
.tct-chip.svelte-7fpoih,
.tct-district-name.svelte-7fpoih,
.tct-district-sub.svelte-7fpoih,
.tct-closing.svelte-7fpoih,
.kyk-lead.svelte-7fpoih,
.kyk-stat-label.svelte-7fpoih,
.kyk-stat-value.svelte-7fpoih,
.kyk-callout-body.svelte-7fpoih,
.kyk-callout-label.svelte-7fpoih,
.kyk-resolution.svelte-7fpoih,
.kys-zone-desc.svelte-7fpoih,
.kys-zone-name.svelte-7fpoih,
.kys-extended-body.svelte-7fpoih,
.kys-extended-label.svelte-7fpoih,
.kyr-entry-desc.svelte-7fpoih,
.kyr-entry-name.svelte-7fpoih,
.kyr-window.svelte-7fpoih,
.kybk-body.svelte-7fpoih,
.kybk-closing.svelte-7fpoih,
.kybk-station-name.svelte-7fpoih,
.mrq-item-q.svelte-7fpoih,
.mrq-item-short.svelte-7fpoih,
.mrq-item-long.svelte-7fpoih,
.mrq-category.svelte-7fpoih,
.mrt-card-desc.svelte-7fpoih,
.mrt-card-name.svelte-7fpoih,
.mrt-window.svelte-7fpoih,
.mrct-body.svelte-7fpoih,
.mrct-pin-name.svelte-7fpoih,
.mrct-pin-sub.svelte-7fpoih,
.sme-narrative.svelte-7fpoih p:where(.svelte-7fpoih),
.sme-resolution.svelte-7fpoih p:where(.svelte-7fpoih),
.sme-marker-label.svelte-7fpoih,
.sme-marker-note.svelte-7fpoih,
.smr-card-desc.svelte-7fpoih,
.smr-card-name.svelte-7fpoih,
.smr-venue.svelte-7fpoih,
.smr-window.svelte-7fpoih,
.smct-agency-entry.svelte-7fpoih,
.smct-pill.svelte-7fpoih,
.dwh-card.svelte-7fpoih p:where(.svelte-7fpoih),
.dwh-card-label.svelte-7fpoih,
.dwh-radial-place.svelte-7fpoih,
.dwh-line-name.svelte-7fpoih,
.dzn-plate-desc.svelte-7fpoih,
.dzn-plate-name.svelte-7fpoih,
.dzn-plate-sub.svelte-7fpoih,
.dzn-plate-li-label.svelte-7fpoih,
.dzn-plate-li-note.svelte-7fpoih,
.dzn-plate-sign.svelte-7fpoih,
.drs-card-desc.svelte-7fpoih,
.drs-card-name.svelte-7fpoih,
.drs-card-age.svelte-7fpoih,
.drs-card-chip-value.svelte-7fpoih,
.dct-spoke-place.svelte-7fpoih,
.dct-spoke-note.svelte-7fpoih,
.dct-commit-text.svelte-7fpoih strong:where(.svelte-7fpoih),
.dct-commit-text.svelte-7fpoih span:where(.svelte-7fpoih),
.wsf-panel.svelte-7fpoih p:where(.svelte-7fpoih),
.wsf-panel-label.svelte-7fpoih,
.wsf-horizon-label.svelte-7fpoih,
.wsf-horizon-tag.svelte-7fpoih,
.wlt-card-body.svelte-7fpoih,
.wlt-card-heading.svelte-7fpoih,
.wlt-card-zone.svelte-7fpoih,
.wlt-card-window.svelte-7fpoih,
.wlt-card-stat.svelte-7fpoih span:where(.svelte-7fpoih),
.wlt-card-stat.svelte-7fpoih strong:where(.svelte-7fpoih),
.wsr-card-desc.svelte-7fpoih,
.wsr-card-name.svelte-7fpoih,
.wsr-card-age.svelte-7fpoih,
.wsr-card-chip-value.svelte-7fpoih,
.wsr-elev-floor-tag.svelte-7fpoih,
.wsr-elev-alt.svelte-7fpoih,
.wbk-tower-name.svelte-7fpoih,
.wbk-tower-tag.svelte-7fpoih,
.wbk-commit-text.svelte-7fpoih strong:where(.svelte-7fpoih),
.wbk-commit-text.svelte-7fpoih span:where(.svelte-7fpoih),
.skt-intercom-body.svelte-7fpoih,
.skt-intercom-label.svelte-7fpoih,
.skt-intercom-chip.svelte-7fpoih,
.skt-board-zone.svelte-7fpoih,
.skt-board-landmark.svelte-7fpoih,
.skt-board-eta.svelte-7fpoih,
.skt-board-status.svelte-7fpoih,
.skg-pass-desc.svelte-7fpoih,
.skg-pass-name.svelte-7fpoih,
.skg-pass-age.svelte-7fpoih,
.skg-pass-meta-value.svelte-7fpoih,
.skg-stub-gate.svelte-7fpoih,
.skc-item-text.svelte-7fpoih,
.skc-item-heading.svelte-7fpoih,
.skc-item-status.svelte-7fpoih,
.skc-item-signal.svelte-7fpoih,
.skd-board-place.svelte-7fpoih,
.skd-commit-text.svelte-7fpoih strong:where(.svelte-7fpoih),
.skd-commit-text.svelte-7fpoih span:where(.svelte-7fpoih),
.cpd-body-para.svelte-7fpoih,
.cpd-stamp-value.svelte-7fpoih,
.cpd-tracking-stat.svelte-7fpoih strong:where(.svelte-7fpoih),
.cpd-tracking-stat.svelte-7fpoih span:where(.svelte-7fpoih),
.cha-entry-desc.svelte-7fpoih,
.cha-entry-name.svelte-7fpoih,
.cha-entry-role.svelte-7fpoih,
.cge-plate-desc.svelte-7fpoih,
.cge-plate-name.svelte-7fpoih,
.cge-plate-age.svelte-7fpoih,
.cge-plate-curator.svelte-7fpoih,
.cge-plate-edition.svelte-7fpoih,
.cge-plate-meta-value.svelte-7fpoih,
.cws-address-name.svelte-7fpoih,
.cws-address-sub.svelte-7fpoih,
.cws-commit-text.svelte-7fpoih strong:where(.svelte-7fpoih),
.cws-commit-text.svelte-7fpoih span:where(.svelte-7fpoih) {
  font-size: 15px !important;
  line-height: 1.7 !important;
}
.kwh-trait-label.svelte-7fpoih,
.kwh-story-title.svelte-7fpoih,
.kr-item-name.svelte-7fpoih,
.kr-qa-question.svelte-7fpoih,
.kzi-zone-name.svelte-7fpoih,
.kho-card-name.svelte-7fpoih,
.ksp-panel-name.svelte-7fpoih,
.kbf-step-title.svelte-7fpoih,
.kna-card-name.svelte-7fpoih,
.kct-zone.svelte-7fpoih,
.biw-card-name.svelte-7fpoih,
.bir-item-name.svelte-7fpoih,
.bih-card-name.svelte-7fpoih,
.bict-zone-name.svelte-7fpoih,
.cbw-card-name.svelte-7fpoih,
.cbr-card-name.svelte-7fpoih,
.cbct-stop-name.svelte-7fpoih,
.twy-chapter-title.svelte-7fpoih,
.tct-district-name.svelte-7fpoih,
.kyk-callout-label.svelte-7fpoih,
.kys-zone-name.svelte-7fpoih,
.kyr-entry-name.svelte-7fpoih,
.kybk-station-name.svelte-7fpoih,
.mrq-item-q.svelte-7fpoih,
.mrt-card-name.svelte-7fpoih,
.mrct-pin-name.svelte-7fpoih,
.smr-card-name.svelte-7fpoih,
.dzn-plate-name.svelte-7fpoih,
.drs-card-name.svelte-7fpoih,
.dct-spoke-place.svelte-7fpoih,
.wsf-panel-label.svelte-7fpoih,
.wlt-card-heading.svelte-7fpoih,
.wsr-card-name.svelte-7fpoih,
.wbk-tower-name.svelte-7fpoih,
.skt-board-zone.svelte-7fpoih,
.skg-pass-name.svelte-7fpoih,
.skc-item-heading.svelte-7fpoih,
.skd-board-place.svelte-7fpoih,
.cha-entry-name.svelte-7fpoih,
.cge-plate-name.svelte-7fpoih,
.cws-address-name.svelte-7fpoih {
  font-size: 17.5px !important;
  line-height: 1.32 !important;
}
@media (max-width: 560px) {
  .kwh-section.svelte-7fpoih p:where(.svelte-7fpoih),
  .kr-section.svelte-7fpoih p:where(.svelte-7fpoih),
  .kzi-section.svelte-7fpoih p:where(.svelte-7fpoih),
  .kho-section.svelte-7fpoih p:where(.svelte-7fpoih),
  .ksp-section.svelte-7fpoih p:where(.svelte-7fpoih),
  .kbf-section.svelte-7fpoih p:where(.svelte-7fpoih),
  .kna-section.svelte-7fpoih p:where(.svelte-7fpoih),
  .kct-section.svelte-7fpoih p:where(.svelte-7fpoih),
  .biw-section.svelte-7fpoih p:where(.svelte-7fpoih),
  .bir-section.svelte-7fpoih p:where(.svelte-7fpoih),
  .bih-section.svelte-7fpoih p:where(.svelte-7fpoih),
  .bina-section.svelte-7fpoih p:where(.svelte-7fpoih),
  .bict-section.svelte-7fpoih p:where(.svelte-7fpoih),
  .cbw-section.svelte-7fpoih p:where(.svelte-7fpoih),
  .cbr-section.svelte-7fpoih p:where(.svelte-7fpoih),
  .cbct-section.svelte-7fpoih p:where(.svelte-7fpoih),
  .twy-section.svelte-7fpoih p:where(.svelte-7fpoih),
  .tct-section.svelte-7fpoih p:where(.svelte-7fpoih),
  .kyk-section.svelte-7fpoih p:where(.svelte-7fpoih),
  .kys-section.svelte-7fpoih p:where(.svelte-7fpoih),
  .kyr-section.svelte-7fpoih p:where(.svelte-7fpoih),
  .kybk-section.svelte-7fpoih p:where(.svelte-7fpoih),
  .mrq-section.svelte-7fpoih p:where(.svelte-7fpoih),
  .mrt-section.svelte-7fpoih p:where(.svelte-7fpoih),
  .mrct-section.svelte-7fpoih p:where(.svelte-7fpoih),
  .sme-section.svelte-7fpoih p:where(.svelte-7fpoih),
  .smr-section.svelte-7fpoih p:where(.svelte-7fpoih),
  .smct-section.svelte-7fpoih p:where(.svelte-7fpoih),
  .dwh-section.svelte-7fpoih p:where(.svelte-7fpoih),
  .dzn-section.svelte-7fpoih p:where(.svelte-7fpoih),
  .drs-section.svelte-7fpoih p:where(.svelte-7fpoih),
  .dct-section.svelte-7fpoih p:where(.svelte-7fpoih),
  .wsf-section.svelte-7fpoih p:where(.svelte-7fpoih),
  .wlt-section.svelte-7fpoih p:where(.svelte-7fpoih),
  .wsr-section.svelte-7fpoih p:where(.svelte-7fpoih),
  .wbk-section.svelte-7fpoih p:where(.svelte-7fpoih),
  .skt-section.svelte-7fpoih p:where(.svelte-7fpoih),
  .skg-section.svelte-7fpoih p:where(.svelte-7fpoih),
  .skc-section.svelte-7fpoih p:where(.svelte-7fpoih),
  .skd-section.svelte-7fpoih p:where(.svelte-7fpoih),
  .cpd-section.svelte-7fpoih p:where(.svelte-7fpoih),
  .cha-section.svelte-7fpoih p:where(.svelte-7fpoih),
  .cge-section.svelte-7fpoih p:where(.svelte-7fpoih),
  .cws-section.svelte-7fpoih p:where(.svelte-7fpoih) {
    font-size: 14.5px !important;
    line-height: 1.7 !important;
  }
}
.pwx-sec.svelte-7fpoih {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 110px) 0;
  border-top: 1px solid rgba(233, 30, 140, 0.14);
}
.pwx-areas.svelte-7fpoih {
  background: radial-gradient(
      700px 500px at 85% 10%,
      rgba(13, 148, 136, 0.06) 0%,
      transparent 60%
    ),
    radial-gradient(
      700px 500px at 15% 90%,
      rgba(233, 30, 140, 0.06) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #f8fffd, #fff, #fffafc);
}
.pwx-rates.svelte-7fpoih {
  background: radial-gradient(
      700px 500px at 15% 10%,
      rgba(217, 119, 6, 0.07) 0%,
      transparent 60%
    ),
    radial-gradient(
      700px 500px at 85% 90%,
      rgba(233, 30, 140, 0.05) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #fffdf8, #fff, #fff7f2);
}
.pwx-faq.svelte-7fpoih {
  background: radial-gradient(
      700px 500px at 85% 10%,
      rgba(233, 30, 140, 0.06) 0%,
      transparent 60%
    ),
    radial-gradient(
      700px 500px at 15% 90%,
      rgba(13, 148, 136, 0.05) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #fffafc, #fff 55%, #f8fffd);
}
.pwx-sec.svelte-7fpoih:before {
  content: "";
  position: absolute;
  top: -90px;
  right: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.16) 0%,
    transparent 70%
  );
}
.pwx-sec.svelte-7fpoih:after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
    circle,
    rgba(13, 148, 136, 0.16) 0%,
    transparent 70%
  );
}
.pwx-sec.svelte-7fpoih .grid-container:where(.svelte-7fpoih) {
  position: relative;
  z-index: 1;
}
.pwx-head.svelte-7fpoih {
  max-width: 820px;
  margin: 0 auto clamp(34px, 5vw, 50px);
  text-align: center;
}
.pwx-kicker.svelte-7fpoih {
  position: relative;
  display: inline-block;
  font-style: normal;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #1e293b;
  padding: 8px 16px;
  border: 2px solid #1e293b;
  border-radius: 4px;
  background: #fff;
  margin-bottom: 20px;
}
.pwx-kicker.svelte-7fpoih:before,
.pwx-kicker.svelte-7fpoih:after {
  content: "";
  position: absolute;
  top: 50%;
  width: clamp(28px, 7vw, 90px);
  height: 2px;
}
.pwx-kicker.svelte-7fpoih:before {
  right: 100%;
  margin-right: 16px;
  background: linear-gradient(90deg, transparent, #1e293b);
}
.pwx-kicker.svelte-7fpoih:after {
  left: 100%;
  margin-left: 16px;
  background: linear-gradient(90deg, #1e293b, transparent);
}
.pwx-kicker--light.svelte-7fpoih {
  color: #fff;
  border-color: #fff;
  background: transparent;
}
.pwx-h2.svelte-7fpoih {
  margin: 0 0 14px;
  font-family: Cormorant Garamond, serif;
  font-weight: 700 !important;
  font-size: clamp(1.95rem, 3.4vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  background: linear-gradient(115deg, #1e293b, #e91e8c 55%, #0d9488);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.pwx-h2--light.svelte-7fpoih {
  background: none;
  -webkit-text-fill-color: #fff;
  color: #fff;
}
.pwx-lead.svelte-7fpoih {
  max-width: 720px;
  margin: 0 auto;
  font-family: Inter, sans-serif;
  font-size: clamp(14.5px, 2.3vw, 16px);
  line-height: 1.75;
  color: #475569;
}
.pwx-areas-grid.svelte-7fpoih {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}
.pwx-area-card.svelte-7fpoih {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 14px;
  background: linear-gradient(100deg, #fdf2f880, #fff9);
  border: 1px solid rgba(233, 30, 140, 0.18);
  box-shadow: 0 10px 26px #0f172a0a;
  animation: svelte-7fpoih-pwxIn 0.6s ease calc(var(--i, 0) * 0.07s) both;
}
@keyframes svelte-7fpoih-pwxIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.pwx-area-pin.svelte-7fpoih {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, #e91e8c, #f43f5e);
  color: #fff;
  box-shadow: 0 4px 10px -2px #e91e8c59;
}
.pwx-area-pin.svelte-7fpoih svg:where(.svelte-7fpoih) {
  width: 16px;
  height: 16px;
}
.pwx-area-name.svelte-7fpoih {
  margin: 1px 0 3px;
  font-family: Cormorant Garamond, serif;
  font-weight: 700 !important;
  font-size: 16.5px;
  line-height: 1.25;
  color: #1e293b;
}
.pwx-area-note.svelte-7fpoih {
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #be185d;
}
.pwx-rates-list.svelte-7fpoih {
  list-style: none;
  max-width: 780px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  gap: 12px;
}
.pwx-rate-item.svelte-7fpoih {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: 12px;
  background: linear-gradient(100deg, #fef3c766, #fff9);
  border: 1px dashed rgba(217, 119, 6, 0.32);
  font-family: Inter, sans-serif;
  font-size: clamp(13.5px, 2.2vw, 14.5px);
  line-height: 1.6;
  color: #334155;
  animation: svelte-7fpoih-pwxIn 0.6s ease calc(var(--i, 0) * 0.07s) both;
}
.pwx-rate-tick.svelte-7fpoih {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: linear-gradient(135deg, #d97706, #f59e0b);
  color: #fff;
  box-shadow: 0 4px 10px -2px #d9770659;
  margin-top: 1px;
}
.pwx-rate-tick.svelte-7fpoih svg:where(.svelte-7fpoih) {
  width: 14px;
  height: 14px;
}
.pwx-rate-text.svelte-7fpoih strong:where(.svelte-7fpoih) {
  color: #b45309;
}
.pwx-rates-note.svelte-7fpoih {
  max-width: 720px;
  margin: 24px auto 0;
  text-align: center;
  font-family: Cormorant Garamond, serif;
  font-style: italic;
  font-size: clamp(15px, 2.3vw, 17px);
  line-height: 1.6;
  color: #b45309;
}
.pwx-faq-list.svelte-7fpoih {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.pwx-faq-item.svelte-7fpoih {
  background: linear-gradient(100deg, #fdf2f866, #ffffffb3);
  border: 1px solid rgba(233, 30, 140, 0.18);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 26px #0f172a0a;
  animation: svelte-7fpoih-pwxIn 0.6s ease calc(var(--i, 0) * 0.06s) both;
}
.pwx-faq-item[open].svelte-7fpoih {
  border-color: #e91e8c57;
  box-shadow: 0 16px 34px #e91e8c14;
}
.pwx-faq-q.svelte-7fpoih {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  font-family: Cormorant Garamond, serif;
  font-weight: 700 !important;
  font-size: clamp(16px, 2.5vw, 18px);
  color: #1e293b;
  line-height: 1.3;
}
.pwx-faq-q.svelte-7fpoih::-webkit-details-marker {
  display: none;
}
.pwx-faq-q.svelte-7fpoih:hover {
  color: #be185d;
}
.pwx-faq-q-text.svelte-7fpoih {
  flex: 1;
}
.pwx-faq-ic.svelte-7fpoih {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #e91e8c, #f43f5e);
  color: #fff;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 10px -2px #e91e8c59;
}
.pwx-faq-ic.svelte-7fpoih svg:where(.svelte-7fpoih) {
  width: 15px;
  height: 15px;
}
.pwx-faq-item[open].svelte-7fpoih .pwx-faq-ic:where(.svelte-7fpoih) {
  transform: rotate(180deg);
}
.pwx-faq-a.svelte-7fpoih {
  margin: 0;
  padding: 0 20px 18px;
  font-family: Inter, sans-serif;
  font-size: clamp(13.5px, 2.2vw, 14.5px);
  line-height: 1.75;
  color: #475569;
}
@media (max-width: 860px) {
  .pwx-areas-grid.svelte-7fpoih {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .pwx-areas-grid.svelte-7fpoih {
    grid-template-columns: 1fr;
  }
  .pwx-kicker.svelte-7fpoih:before,
  .pwx-kicker.svelte-7fpoih:after {
    width: 22px;
  }
}
@media (max-width: 380px) {
  .pwx-area-card.svelte-7fpoih,
  .pwx-rate-item.svelte-7fpoih {
    padding: 14px 15px;
  }
}
.cat-main.svelte-7fpoih,
.lab-section.svelte-7fpoih,
.ews-section.svelte-7fpoih,
.cl-section.svelte-7fpoih,
.grt-section.svelte-7fpoih,
.gfq-section.svelte-7fpoih,
.gc-section.svelte-7fpoih,
.rcx-section.svelte-7fpoih {
  border-top: 1px solid var(--border, #ead8f0);
}
@media (max-width: 620px) {
  .bn-cta-row.svelte-7fpoih,
  .bc-cta.svelte-7fpoih,
  .pc-cta.svelte-7fpoih,
  .gc-cta.svelte-7fpoih,
  .smct-cta.svelte-7fpoih,
  .mrct-cta.svelte-7fpoih,
  .kybk-cta.svelte-7fpoih,
  .tct-cta.svelte-7fpoih,
  .bict-cta.svelte-7fpoih,
  .kct-cta.svelte-7fpoih,
  .cws-actions.svelte-7fpoih,
  .skd-actions.svelte-7fpoih,
  .wbk-actions.svelte-7fpoih,
  .dct-actions.svelte-7fpoih {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .bn-cta-primary.svelte-7fpoih,
  .bc-cta-btn.svelte-7fpoih,
  .pc-cta-btn.svelte-7fpoih,
  .mc-cta-btn.svelte-7fpoih,
  .gc-cta-btn.svelte-7fpoih,
  .smct-cta-btn.svelte-7fpoih,
  .mrct-cta-btn.svelte-7fpoih,
  .kybk-cta-btn.svelte-7fpoih,
  .tct-cta-btn.svelte-7fpoih,
  .bict-cta-btn.svelte-7fpoih,
  .kct-cta-btn.svelte-7fpoih,
  .cws-btn.svelte-7fpoih,
  .skd-btn.svelte-7fpoih,
  .wbk-btn.svelte-7fpoih,
  .dct-btn.svelte-7fpoih {
    flex: 1 1 100%;
    width: 100%;
    box-sizing: border-box;
    justify-content: flex-start;
    gap: 14px;
    border-radius: 16px;
  }
  .bn-cta-primary-text.svelte-7fpoih,
  .bc-cta-btn-body.svelte-7fpoih,
  .pc-cta-btn-body.svelte-7fpoih,
  .mc-cta-btn-body.svelte-7fpoih,
  .gc-cta-btn-body.svelte-7fpoih,
  .smct-cta-btn-body.svelte-7fpoih,
  .mrct-cta-btn-body.svelte-7fpoih,
  .kybk-cta-btn-body.svelte-7fpoih,
  .tct-cta-btn-body.svelte-7fpoih,
  .bict-cta-btn-body.svelte-7fpoih,
  .kct-cta-btn-body.svelte-7fpoih {
    flex: 1 1 auto;
    min-width: 0;
    align-items: flex-start;
    text-align: left;
  }
  .bn-cta-primary-arrow.svelte-7fpoih,
  .bc-cta-btn-arrow.svelte-7fpoih,
  .pc-cta-btn-arrow.svelte-7fpoih,
  .mc-cta-btn-arrow.svelte-7fpoih,
  .gc-cta-btn-arrow.svelte-7fpoih,
  .smct-cta-btn-arrow.svelte-7fpoih,
  .mrct-cta-btn-arrow.svelte-7fpoih,
  .kybk-cta-btn-arrow.svelte-7fpoih,
  .tct-cta-btn-arrow.svelte-7fpoih,
  .bict-cta-btn-arrow.svelte-7fpoih,
  .kct-cta-btn-arrow.svelte-7fpoih {
    margin-left: auto;
    flex: none;
  }
}

/*Ends Here*/


/*terms and conditions page*/



.pv-grad.svelte-1e71jl2 {
  background: linear-gradient(135deg, var(--rose), #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pv-hero.svelte-1e71jl2,
.pv-sum-sec.svelte-1e71jl2,
.pv-body-sec.svelte-1e71jl2 {
  border-bottom: 1px solid rgba(233, 30, 140, 0.1);
}
.pv-body-sec.svelte-1e71jl2 {
  border-bottom: none;
}
.pv-hero.svelte-1e71jl2 {
  position: relative;
  overflow: hidden;
  padding: 80px 0 72px;
  background: radial-gradient(
      900px 500px at 50% 0%,
      rgba(245, 158, 11, 0.1),
      transparent 55%
    ),
    radial-gradient(
      900px 500px at 0% 50%,
      rgba(233, 30, 140, 0.08),
      transparent 55%
    ),
    radial-gradient(
      900px 500px at 100% 50%,
      rgba(245, 158, 11, 0.09),
      transparent 55%
    ),
    linear-gradient(180deg, #fff0f7, #fff5ec);
}
.pv-hero.svelte-1e71jl2:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(
      rgba(233, 30, 140, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(233, 30, 140, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    #000 40%,
    transparent 75%
  );
  mask-image: radial-gradient(ellipse at center, #000 40%, transparent 75%);
  pointer-events: none;
}
.pv-orb.svelte-1e71jl2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.5;
}
.pv-orb-1.svelte-1e71jl2 {
  top: -120px;
  left: -100px;
  width: 360px;
  height: 360px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.35),
    transparent 70%
  );
}
.pv-orb-2.svelte-1e71jl2 {
  top: 40px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.3), transparent 70%);
}
.pv-orb-3.svelte-1e71jl2 {
  bottom: -120px;
  left: 30%;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(251, 146, 60, 0.25),
    transparent 70%
  );
}
.pv-hero.svelte-1e71jl2 > .grid-container:where(.svelte-1e71jl2) {
  position: relative;
  z-index: 1;
}
.pv-hero-inner.svelte-1e71jl2 {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.pv-hero-text.svelte-1e71jl2 {
  max-width: 640px;
}
.pv-hero-vis.svelte-1e71jl2 {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1/1;
  margin-left: auto;
}
.pv-vault-glow.svelte-1e71jl2 {
  position: absolute;
  top: 10%;
  right: 10%;
  bottom: 10%;
  left: 10%;
  border-radius: 50%;
  background: radial-gradient(
      circle at 30% 30%,
      rgba(233, 30, 140, 0.35) 0%,
      transparent 55%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(245, 158, 11, 0.28) 0%,
      transparent 55%
    );
  filter: blur(28px);
  pointer-events: none;
}
.pv-vault-rings.svelte-1e71jl2 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: svelte-1e71jl2-pvSpin 40s linear infinite;
}
@keyframes svelte-1e71jl2-pvSpin {
  to {
    transform: rotate(360deg);
  }
}
.pv-vault.svelte-1e71jl2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 220px;
  padding: 20px 20px 16px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.18);
  border-radius: 22px;
  box-shadow: 0 24px 50px #e91e8c38, inset 0 1px #ffffffe6;
  text-align: center;
}
.pv-vault-shield.svelte-1e71jl2 {
  width: 62px;
  height: 62px;
  margin: 0 auto 12px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 28px #e91e8c66, inset 0 1px #ffffff4d;
}
.pv-vault-label.svelte-1e71jl2 {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--rose);
  margin-bottom: 12px;
}
.pv-vault-meter.svelte-1e71jl2 {
  position: relative;
  height: 5px;
  margin-bottom: 14px;
  background: #e91e8c14;
  border-radius: 50px;
  overflow: hidden;
}
.pv-vault-meter-track.svelte-1e71jl2 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #e91e8c0f;
}
.pv-vault-meter-bar.svelte-1e71jl2 {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--rose), #f59e0b);
  border-radius: 50px;
  animation: svelte-1e71jl2-pvMeter 3.5s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  transform-origin: left;
}
@keyframes svelte-1e71jl2-pvMeter {
  0%,
  to {
    width: 100%;
    opacity: 1;
  }
  40% {
    width: 88%;
    opacity: 0.85;
  }
  70% {
    width: 100%;
    opacity: 1;
  }
}
.pv-vault-rows.svelte-1e71jl2 {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}
.pv-vault-row.svelte-1e71jl2 {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: #fff7fb;
  border: 1px solid rgba(233, 30, 140, 0.08);
  border-radius: 10px;
}
.pv-vault-dot.svelte-1e71jl2 {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pv-vault-dot-g.svelte-1e71jl2 {
  background: #10b981;
  box-shadow: 0 0 0 2px #10b98138;
}
.pv-vault-k.svelte-1e71jl2 {
  flex: 1;
  font-size: 10.5px;
  font-weight: 500;
  color: var(--text-muted);
}
.pv-vault-v.svelte-1e71jl2 {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--rose-dark, #c2185b);
}
.pv-vault-v-off.svelte-1e71jl2 {
  color: #059669;
}
.pv-float.svelte-1e71jl2 {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 10px 10px;
  background: #fff;
  border: 1px solid rgba(45, 18, 72, 0.06);
  border-radius: 50px;
  box-shadow: 0 14px 28px #2d124824;
  z-index: 3;
  white-space: nowrap;
}
.pv-float-1.svelte-1e71jl2 {
  top: 6%;
  left: -8%;
  animation: svelte-1e71jl2-pvFloat 6s ease-in-out infinite;
}
.pv-float-2.svelte-1e71jl2 {
  top: 48%;
  right: -4%;
  animation: svelte-1e71jl2-pvFloat 7s ease-in-out infinite reverse;
  animation-delay: -2s;
}
.pv-float-3.svelte-1e71jl2 {
  bottom: 6%;
  left: -4%;
  animation: svelte-1e71jl2-pvFloat 6s ease-in-out infinite;
  animation-delay: -3s;
}
@keyframes svelte-1e71jl2-pvFloat {
  0%,
  to {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.pv-float-ic.svelte-1e71jl2 {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pv-float-ic-g.svelte-1e71jl2 {
  background: #10b98124;
  color: #059669;
}
.pv-float-ic-r.svelte-1e71jl2 {
  background: #e91e8c24;
  color: var(--rose);
}
.pv-float-livedot.svelte-1e71jl2 {
  width: 10px;
  height: 10px;
  margin: 0 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px #10b98138;
  animation: svelte-1e71jl2-pvPulse 2s ease-in-out infinite;
}
.pv-float-v.svelte-1e71jl2 {
  font-size: 12px;
  font-weight: 700;
  color: #1a0611;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.pv-float-l.svelte-1e71jl2 {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 1px;
}
.pv-crumb.svelte-1e71jl2 {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  margin-bottom: 14px;
  background: #ffffffd9;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  box-shadow: 0 4px 14px #2d12480f;
}
.pv-crumb.svelte-1e71jl2 a:where(.svelte-1e71jl2) {
  color: var(--rose);
  text-decoration: none;
  font-weight: 600;
}
.pv-crumb.svelte-1e71jl2 span:where(.svelte-1e71jl2):last-child {
  color: #2a0a1a;
  font-weight: 600;
}
.pv-chip.svelte-1e71jl2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 12px;
  margin: 0 0 20px;
  background: #ffffffd9;
  border: 1px solid rgba(245, 196, 107, 0.4);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #b45309;
  box-shadow: 0 6px 18px #f59e0b26;
}
.pv-chip-dot.svelte-1e71jl2 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px #10b98138, 0 0 10px #10b98199;
  animation: svelte-1e71jl2-pvPulse 2s ease-in-out infinite;
}
@keyframes svelte-1e71jl2-pvPulse {
  0%,
  to {
    box-shadow: 0 0 0 3px #10b98133, 0 0 10px #10b98199;
  }
  50% {
    box-shadow: 0 0 0 6px #10b9810d, 0 0 18px #10b981cc;
  }
}
.pv-h1.svelte-1e71jl2 {
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #1a0611;
  margin: 0 0 14px;
  max-width: 820px;
}
.pv-lead.svelte-1e71jl2 {
  max-width: 660px;
  margin: 0 0 28px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
}
.pv-meta.svelte-1e71jl2 {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  background: #ffffffd9;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 50px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px #2d124812;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}
.pv-meta-i.svelte-1e71jl2 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pv-meta-i.svelte-1e71jl2 svg:where(.svelte-1e71jl2) {
  color: var(--rose);
  flex-shrink: 0;
}
.pv-meta-i.svelte-1e71jl2 strong:where(.svelte-1e71jl2) {
  color: #1a0611;
  font-weight: 700;
  margin-left: 2px;
}
.pv-meta-sep.svelte-1e71jl2 {
  color: var(--text-dim, #c9b8d8);
}
.pv-sum-sec.svelte-1e71jl2 {
  padding: 90px 0;
  background: linear-gradient(180deg, #fff, #fff7fb);
}
.pv-sec-head.svelte-1e71jl2 {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.pv-eyebrow.svelte-1e71jl2 {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--rose);
  margin-bottom: 16px;
}
.pv-eyebrow-line.svelte-1e71jl2 {
  width: 30px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--rose));
}
.pv-eyebrow-line.svelte-1e71jl2:last-child {
  background: linear-gradient(90deg, var(--rose), transparent);
}
.pv-h2.svelte-1e71jl2 {
  font-size: clamp(1.7rem, 3.3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.1;
  color: #1a0611;
  margin: 0 0 14px;
}
.pv-sub.svelte-1e71jl2 {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 auto;
  max-width: 560px;
}
.pv-sum-grid.svelte-1e71jl2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.pv-sum-card.svelte-1e71jl2 {
  position: relative;
  overflow: hidden;
  padding: 26px 22px 22px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.12);
  border-radius: 20px;
  box-shadow: 0 10px 28px #2d12480f;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s,
    border-color 0.35s;
}
.pv-sum-card.svelte-1e71jl2:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--pv-grad);
  opacity: 0;
  transition: opacity 0.3s;
}
.pv-sum-card.svelte-1e71jl2:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 22px 48px var(--pv-shadow);
}
.pv-sum-card.svelte-1e71jl2:hover:before {
  opacity: 1;
}
.pv-tone-rose.svelte-1e71jl2 {
  --pv-grad: linear-gradient(90deg, var(--rose), #f472b6);
  --pv-shadow: rgba(233, 30, 140, 0.22);
}
.pv-tone-gold.svelte-1e71jl2 {
  --pv-grad: linear-gradient(90deg, #fbbf24, #d97706);
  --pv-shadow: rgba(245, 158, 11, 0.22);
}
.pv-tone-green.svelte-1e71jl2 {
  --pv-grad: linear-gradient(90deg, #34d399, #059669);
  --pv-shadow: rgba(16, 185, 129, 0.22);
}
.pv-tone-peach.svelte-1e71jl2 {
  --pv-grad: linear-gradient(90deg, #fb923c, #ea580c);
  --pv-shadow: rgba(249, 115, 22, 0.22);
}
.pv-sum-ic.svelte-1e71jl2 {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.pv-sum-card.svelte-1e71jl2 h3:where(.svelte-1e71jl2) {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #1a0611;
  margin: 0 0 8px;
}
.pv-sum-card.svelte-1e71jl2 p:where(.svelte-1e71jl2) {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}
.tc-rules-sec.svelte-1e71jl2 {
  position: relative;
  overflow: hidden;
  padding: 110px 0 120px;
  background: radial-gradient(
      800px 500px at 50% 0%,
      rgba(245, 158, 11, 0.1),
      transparent 55%
    ),
    radial-gradient(
      700px 400px at 0% 100%,
      rgba(233, 30, 140, 0.08),
      transparent 55%
    ),
    linear-gradient(180deg, #fff8f3, #fff0f7);
  color: #1a0611;
  border-bottom: 1px solid rgba(233, 30, 140, 0.1);
}
.tc-rules-bg.svelte-1e71jl2 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
}
.tc-rules-orb.svelte-1e71jl2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
}
.tc-rules-orb-1.svelte-1e71jl2 {
  top: -120px;
  left: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.32),
    transparent 70%
  );
}
.tc-rules-orb-2.svelte-1e71jl2 {
  bottom: -140px;
  right: -100px;
  width: 460px;
  height: 460px;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.28),
    transparent 70%
  );
}
.tc-rules-grid-bg.svelte-1e71jl2 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(
      rgba(233, 30, 140, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(233, 30, 140, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    #000 35%,
    transparent 75%
  );
  mask-image: radial-gradient(ellipse at center, #000 35%, transparent 75%);
}
.tc-rules-sec.svelte-1e71jl2 > .grid-container:where(.svelte-1e71jl2) {
  position: relative;
  z-index: 1;
}
.tc-rules-head.svelte-1e71jl2 {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.tc-rules-eyebrow.svelte-1e71jl2 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 7px 14px 7px 12px;
  background: #ffffffd9;
  border: 1px solid rgba(233, 30, 140, 0.2);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: #b91c5c;
  box-shadow: 0 6px 18px #e91e8c1a;
  margin-bottom: 22px;
}
.tc-rules-dot.svelte-1e71jl2 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e91e8c, #f59e0b);
  box-shadow: 0 0 0 3px #e91e8c33, 0 0 14px #f59e0bb3;
  animation: svelte-1e71jl2-tcPulse 2.4s ease-in-out infinite;
}
@keyframes svelte-1e71jl2-tcPulse {
  0%,
  to {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.25);
    opacity: 0.75;
  }
}
.tc-rules-count.svelte-1e71jl2 {
  padding: 2px 8px;
  border-radius: 20px;
  background: linear-gradient(135deg, #e91e8c, #f59e0b);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.14em;
}
.tc-rules-h2.svelte-1e71jl2 {
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin: 0 0 16px;
  color: #1a0611;
}
.tc-rules-grad.svelte-1e71jl2 {
  background: linear-gradient(135deg, #e91e8c, #f472b6 40%, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tc-rules-sub.svelte-1e71jl2 {
  font-size: 1.02rem;
  line-height: 1.7;
  color: #6b5468;
  max-width: 580px;
  margin: 0 auto;
}
.tc-rules-grid.svelte-1e71jl2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.tc-rule.svelte-1e71jl2 {
  position: relative;
  padding: 28px 24px 22px;
  background: linear-gradient(180deg, #fff, #fff7fb);
  border: 1px solid rgba(233, 30, 140, 0.1);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 30px #2d12480f;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s,
    box-shadow 0.3s;
}
.tc-rule.svelte-1e71jl2:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 22px;
  padding: 1px;
  background: var(--tc-grad, linear-gradient(135deg, #e91e8c, #f59e0b));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.tc-rule.svelte-1e71jl2:after {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  border-radius: 24px;
  background: var(
    --tc-glow,
    radial-gradient(circle at 50% 0%, rgba(233, 30, 140, 0.25), transparent 60%)
  );
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: -1;
}
.tc-rule.svelte-1e71jl2:hover {
  transform: translateY(-8px);
  border-color: transparent;
  box-shadow: 0 28px 56px #e91e8c2e, 0 10px 20px #f59e0b1a;
}
.tc-rule.svelte-1e71jl2:hover:before,
.tc-rule.svelte-1e71jl2:hover:after {
  opacity: 1;
}
.tc-rule-num.svelte-1e71jl2 {
  position: absolute;
  top: -10px;
  right: 10px;
  font-size: 92px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.06em;
  background: linear-gradient(180deg, #e91e8c14, #f59e0b00 75%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  pointer-events: none;
  transition: all 0.5s;
}
.tc-rule.svelte-1e71jl2:hover .tc-rule-num:where(.svelte-1e71jl2) {
  background: var(--tc-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.55;
  transform: scale(1.08);
}
.tc-rule-head.svelte-1e71jl2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.tc-rule-ic.svelte-1e71jl2 {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tc-ic-bg);
  color: var(--tc-ic-fg);
  border: 1px solid var(--tc-ic-br);
  box-shadow: 0 8px 20px var(--tc-ic-sh);
  flex-shrink: 0;
}
.tc-rule-tag.svelte-1e71jl2 {
  padding: 4px 10px;
  background: #e91e8c0f;
  border: 1px solid rgba(233, 30, 140, 0.14);
  border-radius: 50px;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: #b91c5c;
}
.tc-rule-title.svelte-1e71jl2 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1a0611;
  margin: 0 0 10px;
  position: relative;
  z-index: 1;
}
.tc-rule-desc.svelte-1e71jl2 {
  font-size: 13.5px;
  line-height: 1.65;
  color: #6b5468;
  margin: 0 0 20px;
  position: relative;
  z-index: 1;
}
.tc-rule-foot.svelte-1e71jl2 {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px dashed rgba(233, 30, 140, 0.14);
  position: relative;
  z-index: 1;
}
.tc-rule-check.svelte-1e71jl2 {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 9px;
  background: #10b9811a;
  color: #047857;
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 50px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.tc-rule-line.svelte-1e71jl2 {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--tc-grad), transparent);
  opacity: 0.5;
}
.tc-rule-rose.svelte-1e71jl2 {
  --tc-grad: linear-gradient(135deg, #e91e8c, #f472b6);
  --tc-glow: radial-gradient(
    circle at 50% 0%,
    rgba(233, 30, 140, 0.22),
    transparent 60%
  );
  --tc-ic-bg: linear-gradient(135deg, #ffe4ef, #ffd1e3);
  --tc-ic-fg: #c2185b;
  --tc-ic-br: rgba(233, 30, 140, 0.25);
  --tc-ic-sh: rgba(233, 30, 140, 0.22);
}
.tc-rule-gold.svelte-1e71jl2 {
  --tc-grad: linear-gradient(135deg, #f59e0b, #d97706);
  --tc-glow: radial-gradient(
    circle at 50% 0%,
    rgba(245, 158, 11, 0.22),
    transparent 60%
  );
  --tc-ic-bg: linear-gradient(135deg, #fff0db, #ffe0b3);
  --tc-ic-fg: #b45309;
  --tc-ic-br: rgba(245, 158, 11, 0.28);
  --tc-ic-sh: rgba(245, 158, 11, 0.22);
}
.tc-rule-green.svelte-1e71jl2 {
  --tc-grad: linear-gradient(135deg, #10b981, #059669);
  --tc-glow: radial-gradient(
    circle at 50% 0%,
    rgba(16, 185, 129, 0.22),
    transparent 60%
  );
  --tc-ic-bg: linear-gradient(135deg, #dcfce7, #bbf7d0);
  --tc-ic-fg: #059669;
  --tc-ic-br: rgba(16, 185, 129, 0.28);
  --tc-ic-sh: rgba(16, 185, 129, 0.22);
}
.tc-rule-peach.svelte-1e71jl2 {
  --tc-grad: linear-gradient(135deg, #fb923c, #ea580c);
  --tc-glow: radial-gradient(
    circle at 50% 0%,
    rgba(249, 115, 22, 0.22),
    transparent 60%
  );
  --tc-ic-bg: linear-gradient(135deg, #fff1ec, #ffd8c2);
  --tc-ic-fg: #ea580c;
  --tc-ic-br: rgba(249, 115, 22, 0.28);
  --tc-ic-sh: rgba(249, 115, 22, 0.22);
}
@media (max-width: 1024px) {
  .tc-rules-grid.svelte-1e71jl2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .tc-rules-sec.svelte-1e71jl2 {
    padding: 88px 0 96px;
  }
}
@media (max-width: 600px) {
  .tc-rules-grid.svelte-1e71jl2 {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .tc-rules-sec.svelte-1e71jl2 {
    padding: 64px 0 72px;
  }
  .tc-rule.svelte-1e71jl2 {
    padding: 24px 20px 18px;
  }
  .tc-rule-num.svelte-1e71jl2 {
    font-size: 76px;
    top: -6px;
  }
  .tc-rule-title.svelte-1e71jl2 {
    font-size: 16px;
  }
  .tc-rule-desc.svelte-1e71jl2 {
    font-size: 13px;
  }
  .tc-rules-head.svelte-1e71jl2 {
    margin-bottom: 40px;
  }
}
.pv-body-sec.svelte-1e71jl2 {
  padding: 80px 0 110px;
  background: linear-gradient(180deg, #fff7fb, #fff);
}
.pv-body.svelte-1e71jl2 {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}
.pv-toc.svelte-1e71jl2 {
  position: sticky;
  top: 80px;
  align-self: start;
  z-index: 10;
  padding: 16px 14px;
  background: radial-gradient(
      200px 160px at 0% 0%,
      rgba(233, 30, 140, 0.08),
      transparent 60%
    ),
    radial-gradient(
      200px 160px at 100% 100%,
      rgba(245, 158, 11, 0.08),
      transparent 60%
    ),
    linear-gradient(180deg, #fff, #fff7fb);
  border: 1px solid rgba(233, 30, 140, 0.12);
  border-radius: 20px;
  box-shadow: 0 18px 40px #2d124814;
}
.pv-toc-header.svelte-1e71jl2 {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  margin-bottom: 12px;
  border-bottom: 1px dashed rgba(233, 30, 140, 0.15);
}
.pv-toc-progress.svelte-1e71jl2 {
  position: relative;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pv-toc-progress.svelte-1e71jl2 svg:where(.svelte-1e71jl2) {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.pv-toc-progress-n.svelte-1e71jl2 {
  position: relative;
  z-index: 1;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1a0611;
}
.pv-toc-progress-n.svelte-1e71jl2 em:where(.svelte-1e71jl2) {
  font-style: normal;
  font-size: 8.5px;
  font-weight: 500;
  color: var(--text-dim, #9b8aaf);
  margin-left: 1px;
}
.pv-toc-hl.svelte-1e71jl2 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #1a0611;
}
.pv-toc-sl.svelte-1e71jl2 {
  font-size: 10.5px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 2px;
}
.pv-toc-nav.svelte-1e71jl2 {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 16px;
}
.pv-toc-link.svelte-1e71jl2 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 11px 14px 11px 10px;
  margin: 2px 0;
  border-radius: 12px;
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 500;
  color: #4a2d5e;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.pv-toc-tick.svelte-1e71jl2 {
  width: 3px;
  height: 14px;
  border-radius: 50px;
  background: #e91e8c26;
  flex-shrink: 0;
  transition: all 0.3s;
}
.pv-toc-n.svelte-1e71jl2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 22px;
  padding: 0 7px;
  background: #e91e8c1a;
  color: var(--rose-dark, #c2185b);
  border-radius: 50px;
  font-size: 10.5px;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.3s;
}
.pv-toc-lbl.svelte-1e71jl2 {
  flex: 1;
  min-width: 0;
}
.pv-toc-arr.svelte-1e71jl2 {
  color: var(--text-dim, #c9b8d8);
  flex-shrink: 0;
  opacity: 0;
  transform: translate(-4px);
  transition: all 0.3s;
}
.pv-toc-link.svelte-1e71jl2:hover {
  background: #e91e8c0f;
  color: var(--rose);
}
.pv-toc-link.svelte-1e71jl2:hover .pv-toc-tick:where(.svelte-1e71jl2) {
  background: var(--rose);
  height: 18px;
}
.pv-toc-link.svelte-1e71jl2:hover .pv-toc-n:where(.svelte-1e71jl2) {
  background: #e91e8c2e;
}
.pv-toc-link.svelte-1e71jl2:hover .pv-toc-arr:where(.svelte-1e71jl2) {
  opacity: 1;
  transform: translate(0);
  color: var(--rose);
}
.pv-toc-link.is-active.svelte-1e71jl2 {
  background: linear-gradient(135deg, #e91e8c1a, #f59e0b14);
  color: var(--rose);
  box-shadow: inset 0 0 0 1px #e91e8c2e;
}
.pv-toc-link.is-active.svelte-1e71jl2 .pv-toc-tick:where(.svelte-1e71jl2) {
  background: linear-gradient(180deg, var(--rose), #f59e0b);
  height: 20px;
  box-shadow: 0 0 0 2px #e91e8c26;
}
.pv-toc-link.is-active.svelte-1e71jl2 .pv-toc-n:where(.svelte-1e71jl2) {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  box-shadow: 0 4px 8px #e91e8c59;
}
.pv-toc-link.is-active.svelte-1e71jl2 .pv-toc-arr:where(.svelte-1e71jl2) {
  opacity: 1;
  transform: translate(0);
  color: var(--rose);
}
.pv-toc-badges.svelte-1e71jl2 {
  display: flex;
  gap: 5px;
  padding: 10px 2px;
  margin-bottom: 14px;
  border-top: 1px dashed rgba(233, 30, 140, 0.14);
  border-bottom: 1px dashed rgba(233, 30, 140, 0.14);
}
.pv-toc-badge.svelte-1e71jl2 {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex: 1;
  padding: 6px 10px 6px 8px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.12);
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #1a0611;
  justify-content: center;
}
.pv-toc-badge.svelte-1e71jl2 svg:where(.svelte-1e71jl2) {
  color: var(--rose);
}
.pv-toc-help.svelte-1e71jl2 {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 12px 24px #e91e8c59;
  transition: all 0.3s;
}
.pv-toc-help-blob.svelte-1e71jl2 {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.2),
    transparent 70%
  );
  pointer-events: none;
}
.pv-toc-help.svelte-1e71jl2:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px #e91e8c80;
  color: #fff;
}
.pv-toc-help-ic.svelte-1e71jl2 {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #ffffff38;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}
.pv-toc-help-body.svelte-1e71jl2 {
  flex: 1;
  min-width: 0;
  z-index: 1;
}
.pv-toc-help-body.svelte-1e71jl2 strong:where(.svelte-1e71jl2) {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.pv-toc-help-body.svelte-1e71jl2 span:where(.svelte-1e71jl2) {
  display: block;
  font-size: 10.5px;
  opacity: 0.88;
  margin-top: 1px;
}
.pv-toc-help-arr.svelte-1e71jl2 {
  z-index: 1;
  transition: transform 0.3s;
}
.pv-toc-help.svelte-1e71jl2:hover .pv-toc-help-arr:where(.svelte-1e71jl2) {
  transform: translate(3px);
}
.pv-content.svelte-1e71jl2 {
  max-width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.pv-section.svelte-1e71jl2 {
  position: relative;
  padding: 28px 32px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.1);
  border-radius: 20px;
  box-shadow: 0 10px 28px #2d12480f;
  scroll-margin-top: 120px;
  transition: box-shadow 0.35s, border-color 0.35s;
}
.pv-section.svelte-1e71jl2:hover {
  border-color: #e91e8c38;
  box-shadow: 0 20px 42px #e91e8c1f;
}
.pv-section.svelte-1e71jl2:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--rose), #f59e0b);
  opacity: 0.5;
  transition: opacity 0.35s, width 0.35s;
}
.pv-section.svelte-1e71jl2:hover:before {
  opacity: 1;
  width: 5px;
}
.pv-section-n.svelte-1e71jl2 {
  position: absolute;
  top: 24px;
  right: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff7fb, #fff5ec);
  border: 1.5px dashed rgba(233, 30, 140, 0.25);
  color: transparent;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  font-style: italic;
  background-image: linear-gradient(135deg, var(--rose), #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pv-section.svelte-1e71jl2 h2:where(.svelte-1e71jl2) {
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #1a0611;
  margin: 0 0 14px;
  padding-right: 60px;
  position: relative;
}
.pv-section.svelte-1e71jl2 h2:where(.svelte-1e71jl2):after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), #f59e0b);
  border-radius: 2px;
  margin-top: 10px;
}
.pv-section.svelte-1e71jl2 p:where(.svelte-1e71jl2) {
  font-size: 14.5px;
  line-height: 1.75;
  color: #3a2a4a;
  margin: 0 0 14px;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}
.pv-section.svelte-1e71jl2 p:where(.svelte-1e71jl2):last-child {
  margin-bottom: 0;
}
.pv-section.svelte-1e71jl2
  p:where(.svelte-1e71jl2)
  strong:where(.svelte-1e71jl2) {
  color: #1a0611;
  font-weight: 700;
}
.pv-section.svelte-1e71jl2 a:where(.svelte-1e71jl2) {
  color: var(--rose);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1.5px solid rgba(233, 30, 140, 0.3);
  transition: all 0.25s;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.pv-section.svelte-1e71jl2 a:where(.svelte-1e71jl2):hover {
  color: var(--rose-dark, #c2185b);
  border-bottom-color: var(--rose);
}
.pv-list.svelte-1e71jl2 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}
.pv-list-item.svelte-1e71jl2 {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  background: #fff7fb;
  border: 1px solid rgba(233, 30, 140, 0.1);
  border-radius: 14px;
  transition: all 0.25s;
}
.pv-list-item.svelte-1e71jl2:hover {
  border-color: #e91e8c40;
  transform: translate(3px);
}
.pv-list-ic.svelte-1e71jl2 {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ffe4ef, #fff0db);
  color: var(--rose-dark, #c2185b);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pv-list-item.svelte-1e71jl2 strong:where(.svelte-1e71jl2) {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: #1a0611;
  margin-bottom: 3px;
}
.pv-list-item.svelte-1e71jl2 span:where(.svelte-1e71jl2) {
  display: block;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--text-muted);
}
.pv-bullets.svelte-1e71jl2 {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pv-bullets.svelte-1e71jl2 li:where(.svelte-1e71jl2) {
  position: relative;
  padding: 8px 12px 8px 30px;
  font-size: 14px;
  line-height: 1.65;
  color: #2a1a3a;
  background: #fff7fb;
  border-radius: 10px;
  border: 1px solid rgba(233, 30, 140, 0.08);
}
.pv-bullets.svelte-1e71jl2 li:where(.svelte-1e71jl2):before {
  content: "";
  position: absolute;
  top: 14px;
  left: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), #f59e0b);
  box-shadow: 0 2px 6px #e91e8c59;
}
.pv-note.svelte-1e71jl2 {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  margin-top: 16px;
  background: linear-gradient(135deg, #e91e8c14, #f59e0b14);
  border: 1px dashed rgba(233, 30, 140, 0.3);
  border-radius: 14px;
}
.pv-note-ic.svelte-1e71jl2 {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 14px #e91e8c59;
}
.pv-note.svelte-1e71jl2 strong:where(.svelte-1e71jl2) {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--rose-dark, #c2185b);
  margin-bottom: 3px;
}
.pv-note.svelte-1e71jl2 p:where(.svelte-1e71jl2) {
  font-size: 13.5px;
  line-height: 1.65;
  color: #1a0611;
  margin: 0;
}
.pv-contact-grid.svelte-1e71jl2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 20px;
}
.pv-contact-card.svelte-1e71jl2 {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
  text-decoration: none;
  background: #fff;
  border: 1.5px solid var(--border, #ead8f0);
  box-shadow: 0 8px 22px #2d12480f;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.pv-contact-card.svelte-1e71jl2:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 18px 18px 0 0;
  opacity: 0.6;
  transition: opacity 0.35s, height 0.35s;
}
.pv-contact-card.svelte-1e71jl2:hover {
  transform: translateY(-4px);
  border-color: transparent;
}
.pv-contact-card.svelte-1e71jl2:hover:before {
  opacity: 1;
  height: 4px;
}
.pv-contact-rose.svelte-1e71jl2 {
  --pvc-shadow: rgba(233, 30, 140, 0.25);
}
.pv-contact-rose.svelte-1e71jl2:before {
  background: linear-gradient(90deg, var(--rose), var(--rose-dark));
}
.pv-contact-rose.svelte-1e71jl2:hover {
  box-shadow: 0 22px 44px var(--pvc-shadow);
}
.pv-contact-green.svelte-1e71jl2 {
  --pvc-shadow: rgba(37, 211, 102, 0.25);
}
.pv-contact-green.svelte-1e71jl2:before {
  background: linear-gradient(90deg, #10b981, #059669);
}
.pv-contact-green.svelte-1e71jl2:hover {
  box-shadow: 0 22px 44px var(--pvc-shadow);
}
.pv-contact-badge.svelte-1e71jl2 {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px 3px 7px;
  background: #e91e8c1a;
  color: var(--rose);
  border-radius: 50px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  z-index: 2;
}
.pv-contact-badge-g.svelte-1e71jl2 {
  background: #10b9811f;
  color: #059669;
}
.pv-contact-badge-dot.svelte-1e71jl2 {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 2px #e91e8c2e;
  animation: svelte-1e71jl2-pvPulse 2s ease-in-out infinite;
}
.pv-contact-badge-g.svelte-1e71jl2
  .pv-contact-badge-dot:where(.svelte-1e71jl2) {
  box-shadow: 0 0 0 2px #10b98138;
}
.pv-contact-ic.svelte-1e71jl2 {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.35s;
}
.pv-contact-rose.svelte-1e71jl2 .pv-contact-ic:where(.svelte-1e71jl2) {
  background: linear-gradient(135deg, #ffe4ef, #ffd1e3);
  color: var(--rose-dark, #c2185b);
  border: 1px solid rgba(233, 30, 140, 0.22);
}
.pv-contact-green.svelte-1e71jl2 .pv-contact-ic:where(.svelte-1e71jl2) {
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.25);
}
.pv-contact-rose.svelte-1e71jl2:hover .pv-contact-ic:where(.svelte-1e71jl2) {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  border-color: transparent;
  transform: scale(1.06) rotate(-4deg);
}
.pv-contact-green.svelte-1e71jl2:hover .pv-contact-ic:where(.svelte-1e71jl2) {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border-color: transparent;
  transform: scale(1.06) rotate(-4deg);
}
.pv-contact-body.svelte-1e71jl2 {
  flex: 1;
  min-width: 0;
}
.pv-contact-label.svelte-1e71jl2 {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--text-dim, #9b8aaf);
  margin-bottom: 4px;
}
.pv-contact-card.svelte-1e71jl2 strong:where(.svelte-1e71jl2) {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #1a0611;
  word-break: break-word;
  margin-bottom: 6px;
}
.pv-contact-card.svelte-1e71jl2 span:where(.svelte-1e71jl2) {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  font-weight: 500;
  color: var(--text-muted);
  padding-top: 6px;
  border-top: 1px dashed rgba(233, 30, 140, 0.15);
}
.pv-contact-arr.svelte-1e71jl2 {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff7fb;
  color: var(--rose);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.35s;
}
.pv-contact-green.svelte-1e71jl2 .pv-contact-arr:where(.svelte-1e71jl2) {
  background: #ecfdf5;
  color: #059669;
}
.pv-contact-rose.svelte-1e71jl2:hover .pv-contact-arr:where(.svelte-1e71jl2) {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  transform: translate(4px);
}
.pv-contact-green.svelte-1e71jl2:hover .pv-contact-arr:where(.svelte-1e71jl2) {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  transform: translate(4px);
}
@media (max-width: 1024px) {
  .pv-hero.svelte-1e71jl2 {
    padding: 64px 0 56px;
  }
  .pv-hero-inner.svelte-1e71jl2 {
    grid-template-columns: 1fr 0.9fr;
    gap: 28px;
  }
  .pv-hero-vis.svelte-1e71jl2 {
    max-width: 340px;
  }
  .pv-vault.svelte-1e71jl2 {
    width: 190px;
    padding: 16px 16px 14px;
  }
  .pv-vault-shield.svelte-1e71jl2 {
    width: 52px;
    height: 52px;
  }
  .pv-float-1.svelte-1e71jl2 {
    left: 0;
  }
  .pv-float-2.svelte-1e71jl2 {
    right: 0;
  }
  .pv-float-3.svelte-1e71jl2 {
    left: 0;
  }
  .pv-crumb.svelte-1e71jl2 {
    font-size: 13px;
  }
  .pv-chip.svelte-1e71jl2 {
    font-size: 12px;
    letter-spacing: 0.12em;
    padding: 8px 15px 8px 13px;
  }
  .pv-h1.svelte-1e71jl2 {
    font-size: clamp(1.95rem, 3.8vw, 2.6rem);
  }
  .pv-lead.svelte-1e71jl2 {
    font-size: 1.08rem;
    line-height: 1.7;
  }
  .pv-meta.svelte-1e71jl2 {
    padding: 10px 18px;
    font-size: 13px;
    gap: 12px;
  }
  .pv-meta-i.svelte-1e71jl2 svg:where(.svelte-1e71jl2) {
    width: 15px;
    height: 15px;
  }
  .pv-sum-sec.svelte-1e71jl2 {
    padding: 80px 0;
  }
  .pv-sum-grid.svelte-1e71jl2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .pv-sum-card.svelte-1e71jl2 {
    padding: 24px 22px 22px;
  }
  .pv-sum-card.svelte-1e71jl2 h3:where(.svelte-1e71jl2) {
    font-size: 16px;
  }
  .pv-sum-card.svelte-1e71jl2 p:where(.svelte-1e71jl2) {
    font-size: 14.5px;
    line-height: 1.65;
  }
  .pv-eyebrow.svelte-1e71jl2 {
    font-size: 12px;
    letter-spacing: 0.2em;
  }
  .pv-h2.svelte-1e71jl2 {
    font-size: 1.9rem;
  }
  .pv-sub.svelte-1e71jl2 {
    font-size: 15.5px;
    line-height: 1.65;
  }
  .pv-body-sec.svelte-1e71jl2 {
    padding: 64px 0 96px;
  }
  .pv-body.svelte-1e71jl2 {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .pv-toc.svelte-1e71jl2 {
    position: static;
    z-index: auto;
    padding: 18px 16px;
  }
  .pv-toc-hl.svelte-1e71jl2 {
    font-size: 17px;
  }
  .pv-toc-sl.svelte-1e71jl2 {
    font-size: 13.5px;
  }
  .pv-toc-nav.svelte-1e71jl2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 12px;
  }
  .pv-toc-link.svelte-1e71jl2 {
    font-size: 15.5px;
    padding: 13px 15px 13px 11px;
  }
  .pv-toc-n.svelte-1e71jl2 {
    font-size: 12.5px;
    min-width: 32px;
    height: 24px;
  }
  .pv-toc-badges.svelte-1e71jl2 {
    padding: 14px 2px 12px;
  }
  .pv-toc-badge.svelte-1e71jl2 {
    font-size: 13px;
    padding: 7px 13px 7px 11px;
  }
  .pv-toc-help.svelte-1e71jl2 {
    padding: 16px;
  }
  .pv-toc-help-body.svelte-1e71jl2 strong:where(.svelte-1e71jl2) {
    font-size: 15px;
  }
  .pv-toc-help-body.svelte-1e71jl2 span:where(.svelte-1e71jl2) {
    font-size: 13px;
  }
  .pv-content.svelte-1e71jl2 {
    max-width: 100%;
    gap: 22px;
  }
  .pv-section.svelte-1e71jl2 {
    padding: 32px 34px;
  }
  .pv-section.svelte-1e71jl2 h2:where(.svelte-1e71jl2) {
    font-size: 1.7rem;
    padding-right: 72px;
  }
  .pv-section.svelte-1e71jl2 p:where(.svelte-1e71jl2) {
    font-size: 17px;
    line-height: 1.75;
  }
  .pv-section-n.svelte-1e71jl2 {
    top: 22px;
    right: 22px;
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  .pv-bullets.svelte-1e71jl2 li:where(.svelte-1e71jl2) {
    font-size: 16px;
    padding: 12px 16px 12px 32px;
  }
  .pv-bullets.svelte-1e71jl2 li:where(.svelte-1e71jl2):before {
    top: 17px;
    left: 14px;
    width: 8px;
    height: 8px;
  }
  .pv-list-item.svelte-1e71jl2 {
    padding: 14px 18px;
  }
  .pv-list-ic.svelte-1e71jl2 {
    width: 36px;
    height: 36px;
  }
  .pv-list-item.svelte-1e71jl2 strong:where(.svelte-1e71jl2) {
    font-size: 15.5px;
  }
  .pv-list-item.svelte-1e71jl2 span:where(.svelte-1e71jl2) {
    font-size: 15px;
    line-height: 1.65;
  }
  .pv-note.svelte-1e71jl2 p:where(.svelte-1e71jl2) {
    font-size: 15px;
    line-height: 1.65;
  }
  .pv-note.svelte-1e71jl2 strong:where(.svelte-1e71jl2) {
    font-size: 13.5px;
  }
  .pv-contact-card.svelte-1e71jl2 {
    padding: 18px;
  }
  .pv-contact-label.svelte-1e71jl2 {
    font-size: 10px;
  }
  .pv-contact-card.svelte-1e71jl2 strong:where(.svelte-1e71jl2) {
    font-size: 14.5px;
  }
  .pv-contact-card.svelte-1e71jl2 span:where(.svelte-1e71jl2) {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .pv-hero.svelte-1e71jl2 {
    padding: 56px 0 52px;
  }
  .pv-hero-inner.svelte-1e71jl2 {
    grid-template-columns: 1fr 0.85fr;
    gap: 20px;
  }
  .pv-hero-vis.svelte-1e71jl2 {
    max-width: 260px;
    margin: 0;
  }
  .pv-vault.svelte-1e71jl2 {
    width: 160px;
    padding: 14px 14px 12px;
  }
  .pv-vault-shield.svelte-1e71jl2 {
    width: 44px;
    height: 44px;
    margin: 0 auto 10px;
  }
  .pv-vault-label.svelte-1e71jl2 {
    font-size: 8.5px;
    margin-bottom: 10px;
  }
  .pv-vault-meter.svelte-1e71jl2 {
    height: 4px;
    margin-bottom: 10px;
  }
  .pv-vault-rows.svelte-1e71jl2 {
    gap: 4px;
  }
  .pv-vault-row.svelte-1e71jl2 {
    padding: 5px 8px;
  }
  .pv-vault-k.svelte-1e71jl2,
  .pv-vault-v.svelte-1e71jl2 {
    font-size: 9.5px;
  }
  .pv-float.svelte-1e71jl2 {
    padding: 7px 10px 7px 6px;
  }
  .pv-float-ic.svelte-1e71jl2 {
    width: 22px;
    height: 22px;
  }
  .pv-float-v.svelte-1e71jl2 {
    font-size: 11px;
  }
  .pv-float-l.svelte-1e71jl2 {
    font-size: 9.5px;
  }
  .pv-float-1.svelte-1e71jl2 {
    left: 0;
    top: 4%;
  }
  .pv-float-2.svelte-1e71jl2 {
    right: 0;
    top: 48%;
  }
  .pv-float-3.svelte-1e71jl2 {
    left: 0;
    bottom: 4%;
  }
  .pv-crumb.svelte-1e71jl2 {
    font-size: 13px;
  }
  .pv-chip.svelte-1e71jl2 {
    font-size: 12px;
    letter-spacing: 0.12em;
    padding: 8px 15px 8px 13px;
  }
  .pv-h1.svelte-1e71jl2 {
    font-size: 1.85rem;
    line-height: 1.15;
  }
  .pv-lead.svelte-1e71jl2 {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 22px;
  }
  .pv-eyebrow.svelte-1e71jl2 {
    font-size: 12px;
    letter-spacing: 0.18em;
  }
  .pv-h2.svelte-1e71jl2 {
    font-size: 1.75rem;
  }
  .pv-sub.svelte-1e71jl2 {
    font-size: 15.5px;
    line-height: 1.65;
  }
  .pv-sum-card.svelte-1e71jl2 h3:where(.svelte-1e71jl2) {
    font-size: 15.5px;
  }
  .pv-sum-card.svelte-1e71jl2 p:where(.svelte-1e71jl2) {
    font-size: 14px;
    line-height: 1.65;
  }
  .pv-toc-hl.svelte-1e71jl2 {
    font-size: 16px;
  }
  .pv-toc-sl.svelte-1e71jl2 {
    font-size: 13px;
  }
  .pv-toc-link.svelte-1e71jl2 {
    font-size: 15px;
    padding: 12px 14px 12px 10px;
  }
  .pv-toc-n.svelte-1e71jl2 {
    font-size: 12.5px;
    min-width: 31px;
    height: 23px;
  }
  .pv-toc-badge.svelte-1e71jl2 {
    font-size: 12.5px;
    padding: 7px 12px 7px 10px;
  }
  .pv-toc-help-body.svelte-1e71jl2 strong:where(.svelte-1e71jl2) {
    font-size: 14.5px;
  }
  .pv-toc-help-body.svelte-1e71jl2 span:where(.svelte-1e71jl2) {
    font-size: 12.5px;
  }
  .pv-contact-label.svelte-1e71jl2 {
    font-size: 10px;
  }
  .pv-contact-card.svelte-1e71jl2 strong:where(.svelte-1e71jl2) {
    font-size: 14.5px;
  }
  .pv-contact-card.svelte-1e71jl2 span:where(.svelte-1e71jl2) {
    font-size: 12px;
  }
  .pv-meta.svelte-1e71jl2 {
    display: inline-flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .pv-meta-i.svelte-1e71jl2 {
    width: fit-content;
    padding: 9px 16px 9px 14px;
    background: #fffffff2;
    border: 1px solid rgba(233, 30, 140, 0.14);
    border-radius: 50px;
    box-shadow: 0 4px 12px #2d12480d;
    font-size: 11.5px;
    transition: all 0.25s;
  }
  .pv-meta-i.svelte-1e71jl2:hover {
    transform: translate(3px);
    border-color: #e91e8c4d;
    box-shadow: 0 8px 18px #e91e8c1f;
  }
  .pv-meta-sep.svelte-1e71jl2 {
    display: none;
  }
  .pv-sum-sec.svelte-1e71jl2,
  .pv-body-sec.svelte-1e71jl2 {
    padding: 48px 0;
  }
  .pv-sum-grid.svelte-1e71jl2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .pv-sum-card.svelte-1e71jl2 {
    padding: 18px 16px 16px;
  }
  .pv-sum-ic.svelte-1e71jl2 {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    margin-bottom: 12px;
  }
  .pv-sum-ic.svelte-1e71jl2 svg:where(.svelte-1e71jl2) {
    width: 18px;
    height: 18px;
  }
  .pv-sum-card.svelte-1e71jl2 h3:where(.svelte-1e71jl2) {
    font-size: 13.5px;
  }
  .pv-sum-card.svelte-1e71jl2 p:where(.svelte-1e71jl2) {
    font-size: 12px;
    line-height: 1.55;
  }
  .pv-toc.svelte-1e71jl2 {
    padding: 14px 12px;
    border-radius: 18px;
  }
  .pv-toc-header.svelte-1e71jl2 {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .pv-toc-hl.svelte-1e71jl2 {
    font-size: 15px;
  }
  .pv-toc-sl.svelte-1e71jl2 {
    font-size: 12px;
  }
  .pv-toc-nav.svelte-1e71jl2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 8px;
  }
  .pv-toc-link.svelte-1e71jl2 {
    padding: 10px 11px 10px 8px;
    font-size: 14px;
    gap: 8px;
  }
  .pv-toc-n.svelte-1e71jl2 {
    min-width: 28px;
    height: 22px;
    font-size: 11.5px;
    padding: 0 6px;
  }
  .pv-toc-tick.svelte-1e71jl2 {
    width: 3px;
    height: 14px;
  }
  .pv-toc-badges.svelte-1e71jl2 {
    gap: 6px;
    padding: 10px 0;
    margin-bottom: 12px;
  }
  .pv-toc-badge.svelte-1e71jl2 {
    font-size: 12px;
    padding: 6px 11px 6px 9px;
  }
  .pv-toc-help.svelte-1e71jl2 {
    padding: 14px;
  }
  .pv-toc-help-ic.svelte-1e71jl2 {
    width: 34px;
    height: 34px;
  }
  .pv-toc-help-body.svelte-1e71jl2 strong:where(.svelte-1e71jl2) {
    font-size: 14px;
  }
  .pv-toc-help-body.svelte-1e71jl2 span:where(.svelte-1e71jl2) {
    font-size: 12px;
  }
  .pv-content.svelte-1e71jl2 {
    gap: 20px;
  }
  .pv-section.svelte-1e71jl2 {
    padding: 28px 26px;
    border-radius: 18px;
  }
  .pv-section.svelte-1e71jl2 h2:where(.svelte-1e71jl2) {
    font-size: 1.65rem;
    margin-bottom: 14px;
    padding-right: 58px;
  }
  .pv-section.svelte-1e71jl2 h2:where(.svelte-1e71jl2):after {
    width: 40px;
    height: 3px;
    margin-top: 10px;
  }
  .pv-section-n.svelte-1e71jl2 {
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    font-size: 1.15rem;
    border-radius: 12px;
  }
  .pv-section.svelte-1e71jl2 p:where(.svelte-1e71jl2),
  .pv-bullets.svelte-1e71jl2 li:where(.svelte-1e71jl2) {
    font-size: 16.5px;
    line-height: 1.75;
  }
  .pv-bullets.svelte-1e71jl2 li:where(.svelte-1e71jl2) {
    padding: 12px 16px 12px 34px;
  }
  .pv-bullets.svelte-1e71jl2 li:where(.svelte-1e71jl2):before {
    top: 17px;
    left: 14px;
    width: 8px;
    height: 8px;
  }
  .pv-list-item.svelte-1e71jl2 {
    padding: 14px 16px;
    gap: 12px;
  }
  .pv-list-ic.svelte-1e71jl2 {
    width: 36px;
    height: 36px;
  }
  .pv-list-item.svelte-1e71jl2 strong:where(.svelte-1e71jl2) {
    font-size: 15.5px;
  }
  .pv-list-item.svelte-1e71jl2 span:where(.svelte-1e71jl2) {
    font-size: 15px;
    line-height: 1.65;
  }
  .pv-note.svelte-1e71jl2 {
    padding: 14px 16px;
    gap: 10px;
  }
  .pv-note-ic.svelte-1e71jl2 {
    width: 30px;
    height: 30px;
  }
  .pv-note.svelte-1e71jl2 p:where(.svelte-1e71jl2) {
    font-size: 15px;
    line-height: 1.65;
  }
  .pv-note.svelte-1e71jl2 strong:where(.svelte-1e71jl2) {
    font-size: 13.5px;
  }
  .pv-contact-grid.svelte-1e71jl2 {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
@media (max-width: 600px) {
  .pv-hero.svelte-1e71jl2 {
    padding: 48px 0 44px;
  }
  .pv-hero-inner.svelte-1e71jl2 {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .pv-hero-vis.svelte-1e71jl2 {
    max-width: 300px;
    margin: 0 auto;
  }
  .pv-vault.svelte-1e71jl2 {
    width: 200px;
    padding: 18px 18px 14px;
  }
  .pv-vault-shield.svelte-1e71jl2 {
    width: 54px;
    height: 54px;
  }
  .pv-vault-label.svelte-1e71jl2 {
    font-size: 9.5px;
  }
  .pv-vault-k.svelte-1e71jl2,
  .pv-vault-v.svelte-1e71jl2 {
    font-size: 10.5px;
  }
  .pv-float-1.svelte-1e71jl2 {
    left: 0;
  }
  .pv-float-2.svelte-1e71jl2 {
    right: 0;
  }
  .pv-float-3.svelte-1e71jl2 {
    left: 0;
  }
  .pv-h1.svelte-1e71jl2 {
    font-size: 1.75rem;
    line-height: 1.2;
  }
  .pv-lead.svelte-1e71jl2 {
    font-size: 1rem;
    line-height: 1.65;
  }
  .pv-chip.svelte-1e71jl2 {
    font-size: 11px;
    letter-spacing: 0.1em;
    padding: 7px 13px 7px 11px;
  }
  .pv-crumb.svelte-1e71jl2 {
    font-size: 12px;
  }
  .pv-sum-sec.svelte-1e71jl2,
  .pv-body-sec.svelte-1e71jl2 {
    padding: 48px 0 56px;
  }
  .pv-sec-head.svelte-1e71jl2 {
    margin-bottom: 32px;
  }
  .pv-h2.svelte-1e71jl2 {
    font-size: 1.7rem;
    line-height: 1.2;
  }
  .pv-sub.svelte-1e71jl2 {
    font-size: 14.5px;
    line-height: 1.65;
  }
  .pv-eyebrow.svelte-1e71jl2 {
    font-size: 11px;
    letter-spacing: 0.16em;
    gap: 10px;
  }
  .pv-eyebrow-line.svelte-1e71jl2 {
    width: 22px;
  }
  .pv-sum-card.svelte-1e71jl2 h3:where(.svelte-1e71jl2) {
    font-size: 15.5px;
  }
  .pv-sum-card.svelte-1e71jl2 p:where(.svelte-1e71jl2) {
    font-size: 14px;
    line-height: 1.65;
  }
  .pv-toc-hl.svelte-1e71jl2 {
    font-size: 14px;
  }
  .pv-toc-sl.svelte-1e71jl2 {
    font-size: 11.5px;
  }
  .pv-toc-link.svelte-1e71jl2 {
    font-size: 13.5px;
    padding: 11px 14px 11px 10px;
  }
  .pv-toc-n.svelte-1e71jl2 {
    font-size: 11px;
    min-width: 28px;
    height: 22px;
  }
  .pv-toc-badge.svelte-1e71jl2 {
    font-size: 11px;
    padding: 6px 11px 6px 9px;
  }
  .pv-toc-help-body.svelte-1e71jl2 strong:where(.svelte-1e71jl2) {
    font-size: 13px;
  }
  .pv-toc-help-body.svelte-1e71jl2 span:where(.svelte-1e71jl2) {
    font-size: 11.5px;
  }
  .pv-contact-label.svelte-1e71jl2 {
    font-size: 10px;
  }
  .pv-contact-card.svelte-1e71jl2 strong:where(.svelte-1e71jl2) {
    font-size: 14.5px;
  }
  .pv-contact-card.svelte-1e71jl2 span:where(.svelte-1e71jl2) {
    font-size: 12px;
  }
  .pv-meta-i.svelte-1e71jl2 {
    font-size: 12.5px;
    padding: 10px 18px 10px 16px;
  }
  .pv-meta-i.svelte-1e71jl2 svg:where(.svelte-1e71jl2) {
    width: 14px;
    height: 14px;
  }
  .pv-sum-grid.svelte-1e71jl2 {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .pv-toc-nav.svelte-1e71jl2 {
    grid-template-columns: 1fr;
  }
  .pv-toc-link.svelte-1e71jl2 {
    padding: 8px 10px 8px 6px;
    font-size: 12px;
  }
  .pv-toc-link.svelte-1e71jl2 .pv-toc-arr:where(.svelte-1e71jl2) {
    display: none;
  }
  .pv-section.svelte-1e71jl2 {
    padding: 22px 18px 20px;
    border-radius: 14px;
  }
  .pv-section.svelte-1e71jl2:before {
    width: 3px;
  }
  .pv-section.svelte-1e71jl2 h2:where(.svelte-1e71jl2) {
    font-size: 1.3rem;
    padding-right: 0;
  }
  .pv-section-n.svelte-1e71jl2 {
    position: relative;
    top: auto;
    right: auto;
    width: 38px;
    height: 38px;
    font-size: 1rem;
    margin-bottom: 12px;
  }
  .pv-section.svelte-1e71jl2 p:where(.svelte-1e71jl2),
  .pv-bullets.svelte-1e71jl2 li:where(.svelte-1e71jl2),
  .pv-list-item.svelte-1e71jl2 span:where(.svelte-1e71jl2) {
    font-size: 14.5px;
    line-height: 1.7;
  }
  .pv-list-item.svelte-1e71jl2 strong:where(.svelte-1e71jl2) {
    font-size: 14px;
  }
  .pv-note.svelte-1e71jl2 p:where(.svelte-1e71jl2) {
    font-size: 13.5px;
  }
  .pv-bullets.svelte-1e71jl2
    li:where(.svelte-1e71jl2)
    strong:where(.svelte-1e71jl2) {
    font-size: 14.5px;
  }
}
@media (max-width: 380px) {
  .pv-h1.svelte-1e71jl2 {
    font-size: 1.5rem;
  }
  .pv-lead.svelte-1e71jl2 {
    font-size: 0.95rem;
  }
  .pv-h2.svelte-1e71jl2 {
    font-size: 1.45rem;
  }
  .pv-sub.svelte-1e71jl2 {
    font-size: 13.5px;
  }
  .pv-section.svelte-1e71jl2 h2:where(.svelte-1e71jl2) {
    font-size: 1.2rem;
  }
  .pv-section.svelte-1e71jl2 p:where(.svelte-1e71jl2),
  .pv-bullets.svelte-1e71jl2 li:where(.svelte-1e71jl2) {
    font-size: 13.5px;
  }
  .pv-section.svelte-1e71jl2 {
    padding: 20px 16px 18px;
  }
  .pv-sum-card.svelte-1e71jl2 h3:where(.svelte-1e71jl2) {
    font-size: 14.5px;
  }
  .pv-sum-card.svelte-1e71jl2 p:where(.svelte-1e71jl2) {
    font-size: 13px;
  }
  .pv-toc.svelte-1e71jl2 {
    padding: 12px 10px;
  }
  .pv-toc-link.svelte-1e71jl2 {
    font-size: 12.5px;
  }
  .pv-contact-card.svelte-1e71jl2 strong:where(.svelte-1e71jl2) {
    font-size: 13.5px;
  }
}

/*ends here*/



/*privacy Policy page*/



.pv-grad.svelte-1w6724f {
  background: linear-gradient(135deg, var(--rose), #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pv-hero.svelte-1w6724f,
.pv-sum-sec.svelte-1w6724f,
.pv-body-sec.svelte-1w6724f {
  border-bottom: 1px solid rgba(233, 30, 140, 0.1);
}
.pv-body-sec.svelte-1w6724f {
  border-bottom: none;
}
.pv-hero.svelte-1w6724f {
  position: relative;
  overflow: hidden;
  padding: 80px 0 72px;
  background: radial-gradient(
      900px 500px at 50% 0%,
      rgba(245, 158, 11, 0.1),
      transparent 55%
    ),
    radial-gradient(
      900px 500px at 0% 50%,
      rgba(233, 30, 140, 0.08),
      transparent 55%
    ),
    radial-gradient(
      900px 500px at 100% 50%,
      rgba(245, 158, 11, 0.09),
      transparent 55%
    ),
    linear-gradient(180deg, #fff0f7, #fff5ec);
}
.pv-hero.svelte-1w6724f:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(
      rgba(233, 30, 140, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(233, 30, 140, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    #000 40%,
    transparent 75%
  );
  mask-image: radial-gradient(ellipse at center, #000 40%, transparent 75%);
  pointer-events: none;
}
.pv-orb.svelte-1w6724f {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.5;
}
.pv-orb-1.svelte-1w6724f {
  top: -120px;
  left: -100px;
  width: 360px;
  height: 360px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.35),
    transparent 70%
  );
}
.pv-orb-2.svelte-1w6724f {
  top: 40px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.3), transparent 70%);
}
.pv-orb-3.svelte-1w6724f {
  bottom: -120px;
  left: 30%;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(251, 146, 60, 0.25),
    transparent 70%
  );
}
.pv-hero.svelte-1w6724f > .grid-container:where(.svelte-1w6724f) {
  position: relative;
  z-index: 1;
}
.pv-hero-inner.svelte-1w6724f {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.pv-hero-text.svelte-1w6724f {
  max-width: 640px;
}
.pv-hero-vis.svelte-1w6724f {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1/1;
  margin-left: auto;
}
.pv-vault-glow.svelte-1w6724f {
  position: absolute;
  top: 10%;
  right: 10%;
  bottom: 10%;
  left: 10%;
  border-radius: 50%;
  background: radial-gradient(
      circle at 30% 30%,
      rgba(233, 30, 140, 0.35) 0%,
      transparent 55%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(245, 158, 11, 0.28) 0%,
      transparent 55%
    );
  filter: blur(28px);
  pointer-events: none;
}
.pv-vault-rings.svelte-1w6724f {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: svelte-1w6724f-pvSpin 40s linear infinite;
}
@keyframes svelte-1w6724f-pvSpin {
  to {
    transform: rotate(360deg);
  }
}
.pv-vault.svelte-1w6724f {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 220px;
  padding: 20px 20px 16px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.18);
  border-radius: 22px;
  box-shadow: 0 24px 50px #e91e8c38, inset 0 1px #ffffffe6;
  text-align: center;
}
.pv-vault-shield.svelte-1w6724f {
  width: 62px;
  height: 62px;
  margin: 0 auto 12px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 28px #e91e8c66, inset 0 1px #ffffff4d;
}
.pv-vault-label.svelte-1w6724f {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--rose);
  margin-bottom: 12px;
}
.pv-vault-meter.svelte-1w6724f {
  position: relative;
  height: 5px;
  margin-bottom: 14px;
  background: #e91e8c14;
  border-radius: 50px;
  overflow: hidden;
}
.pv-vault-meter-track.svelte-1w6724f {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #e91e8c0f;
}
.pv-vault-meter-bar.svelte-1w6724f {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--rose), #f59e0b);
  border-radius: 50px;
  animation: svelte-1w6724f-pvMeter 3.5s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  transform-origin: left;
}
@keyframes svelte-1w6724f-pvMeter {
  0%,
  to {
    width: 100%;
    opacity: 1;
  }
  40% {
    width: 88%;
    opacity: 0.85;
  }
  70% {
    width: 100%;
    opacity: 1;
  }
}
.pv-vault-rows.svelte-1w6724f {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}
.pv-vault-row.svelte-1w6724f {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: #fff7fb;
  border: 1px solid rgba(233, 30, 140, 0.08);
  border-radius: 10px;
}
.pv-vault-dot.svelte-1w6724f {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pv-vault-dot-g.svelte-1w6724f {
  background: #10b981;
  box-shadow: 0 0 0 2px #10b98138;
}
.pv-vault-k.svelte-1w6724f {
  flex: 1;
  font-size: 10.5px;
  font-weight: 500;
  color: var(--text-muted);
}
.pv-vault-v.svelte-1w6724f {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--rose-dark, #c2185b);
}
.pv-vault-v-off.svelte-1w6724f {
  color: #059669;
}
.pv-float.svelte-1w6724f {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 10px 10px;
  background: #fff;
  border: 1px solid rgba(45, 18, 72, 0.06);
  border-radius: 50px;
  box-shadow: 0 14px 28px #2d124824;
  z-index: 3;
  white-space: nowrap;
}
.pv-float-1.svelte-1w6724f {
  top: 6%;
  left: -8%;
  animation: svelte-1w6724f-pvFloat 6s ease-in-out infinite;
}
.pv-float-2.svelte-1w6724f {
  top: 48%;
  right: -4%;
  animation: svelte-1w6724f-pvFloat 7s ease-in-out infinite reverse;
  animation-delay: -2s;
}
.pv-float-3.svelte-1w6724f {
  bottom: 6%;
  left: -4%;
  animation: svelte-1w6724f-pvFloat 6s ease-in-out infinite;
  animation-delay: -3s;
}
@keyframes svelte-1w6724f-pvFloat {
  0%,
  to {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.pv-float-ic.svelte-1w6724f {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pv-float-ic-g.svelte-1w6724f {
  background: #10b98124;
  color: #059669;
}
.pv-float-ic-r.svelte-1w6724f {
  background: #e91e8c24;
  color: var(--rose);
}
.pv-float-livedot.svelte-1w6724f {
  width: 10px;
  height: 10px;
  margin: 0 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px #10b98138;
  animation: svelte-1w6724f-pvPulse 2s ease-in-out infinite;
}
.pv-float-v.svelte-1w6724f {
  font-size: 12px;
  font-weight: 700;
  color: #1a0611;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.pv-float-l.svelte-1w6724f {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 1px;
}
.pv-crumb.svelte-1w6724f {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  margin-bottom: 14px;
  background: #ffffffd9;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  box-shadow: 0 4px 14px #2d12480f;
}
.pv-crumb.svelte-1w6724f a:where(.svelte-1w6724f) {
  color: var(--rose);
  text-decoration: none;
  font-weight: 600;
}
.pv-crumb.svelte-1w6724f span:where(.svelte-1w6724f):last-child {
  color: #2a0a1a;
  font-weight: 600;
}
.pv-chip.svelte-1w6724f {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 12px;
  margin: 0 0 20px;
  background: #ffffffd9;
  border: 1px solid rgba(245, 196, 107, 0.4);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #b45309;
  box-shadow: 0 6px 18px #f59e0b26;
}
.pv-chip-dot.svelte-1w6724f {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px #10b98138, 0 0 10px #10b98199;
  animation: svelte-1w6724f-pvPulse 2s ease-in-out infinite;
}
@keyframes svelte-1w6724f-pvPulse {
  0%,
  to {
    box-shadow: 0 0 0 3px #10b98133, 0 0 10px #10b98199;
  }
  50% {
    box-shadow: 0 0 0 6px #10b9810d, 0 0 18px #10b981cc;
  }
}
.pv-h1.svelte-1w6724f {
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #1a0611;
  margin: 0 0 14px;
  max-width: 820px;
}
.pv-lead.svelte-1w6724f {
  max-width: 660px;
  margin: 0 0 28px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
}
.pv-meta.svelte-1w6724f {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  background: #ffffffd9;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 50px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px #2d124812;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}
.pv-meta-i.svelte-1w6724f {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pv-meta-i.svelte-1w6724f svg:where(.svelte-1w6724f) {
  color: var(--rose);
  flex-shrink: 0;
}
.pv-meta-i.svelte-1w6724f strong:where(.svelte-1w6724f) {
  color: #1a0611;
  font-weight: 700;
  margin-left: 2px;
}
.pv-meta-sep.svelte-1w6724f {
  color: var(--text-dim, #c9b8d8);
}
.pv-sum-sec.svelte-1w6724f {
  padding: 90px 0;
  background: linear-gradient(180deg, #fff, #fff7fb);
}
.pv-sec-head.svelte-1w6724f {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.pv-eyebrow.svelte-1w6724f {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--rose);
  margin-bottom: 16px;
}
.pv-eyebrow-line.svelte-1w6724f {
  width: 30px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--rose));
}
.pv-eyebrow-line.svelte-1w6724f:last-child {
  background: linear-gradient(90deg, var(--rose), transparent);
}
.pv-h2.svelte-1w6724f {
  font-size: clamp(1.7rem, 3.3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.1;
  color: #1a0611;
  margin: 0 0 14px;
}
.pv-sub.svelte-1w6724f {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 auto;
  max-width: 560px;
}
.pv-sum-grid.svelte-1w6724f {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.pv-sum-card.svelte-1w6724f {
  position: relative;
  overflow: hidden;
  padding: 26px 22px 22px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.12);
  border-radius: 20px;
  box-shadow: 0 10px 28px #2d12480f;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s,
    border-color 0.35s;
}
.pv-sum-card.svelte-1w6724f:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--pv-grad);
  opacity: 0;
  transition: opacity 0.3s;
}
.pv-sum-card.svelte-1w6724f:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 22px 48px var(--pv-shadow);
}
.pv-sum-card.svelte-1w6724f:hover:before {
  opacity: 1;
}
.pv-tone-rose.svelte-1w6724f {
  --pv-grad: linear-gradient(90deg, var(--rose), #f472b6);
  --pv-shadow: rgba(233, 30, 140, 0.22);
}
.pv-tone-gold.svelte-1w6724f {
  --pv-grad: linear-gradient(90deg, #fbbf24, #d97706);
  --pv-shadow: rgba(245, 158, 11, 0.22);
}
.pv-tone-green.svelte-1w6724f {
  --pv-grad: linear-gradient(90deg, #34d399, #059669);
  --pv-shadow: rgba(16, 185, 129, 0.22);
}
.pv-tone-peach.svelte-1w6724f {
  --pv-grad: linear-gradient(90deg, #fb923c, #ea580c);
  --pv-shadow: rgba(249, 115, 22, 0.22);
}
.pv-sum-ic.svelte-1w6724f {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.pv-sum-card.svelte-1w6724f h3:where(.svelte-1w6724f) {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #1a0611;
  margin: 0 0 8px;
}
.pv-sum-card.svelte-1w6724f p:where(.svelte-1w6724f) {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}
.pp-vow-sec.svelte-1w6724f {
  position: relative;
  overflow: hidden;
  padding: 110px 0 130px;
  background: radial-gradient(
      800px 500px at 20% 0%,
      rgba(233, 30, 140, 0.09),
      transparent 55%
    ),
    radial-gradient(
      700px 500px at 100% 100%,
      rgba(245, 158, 11, 0.1),
      transparent 55%
    ),
    linear-gradient(180deg, #fffaf6, #fff2f8);
  border-bottom: 1px solid rgba(233, 30, 140, 0.1);
}
.pp-vow-bg.svelte-1w6724f {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
}
.pp-vow-blob.svelte-1w6724f {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
}
.pp-vow-blob-1.svelte-1w6724f {
  top: -120px;
  left: -100px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(233, 30, 140, 0.3), transparent 70%);
}
.pp-vow-blob-2.svelte-1w6724f {
  bottom: -150px;
  right: -80px;
  width: 460px;
  height: 460px;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.28),
    transparent 70%
  );
}
.pp-vow-grid-bg.svelte-1w6724f {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(
      rgba(233, 30, 140, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(233, 30, 140, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    #000 30%,
    transparent 78%
  );
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 78%);
}
.pp-vow-sec.svelte-1w6724f > .grid-container:where(.svelte-1w6724f) {
  position: relative;
  z-index: 1;
}
.pp-vow-head.svelte-1w6724f {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}
.pp-vow-eyebrow.svelte-1w6724f {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px 6px 6px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.18);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #b91c5c;
  box-shadow: 0 6px 20px #e91e8c1a;
  margin-bottom: 22px;
}
.pp-vow-shield-ic.svelte-1w6724f {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e91e8c, #f59e0b);
  color: #fff;
}
.pp-vow-pill.svelte-1w6724f {
  padding: 3px 9px;
  background: linear-gradient(135deg, #e91e8c1f, #f59e0b1f);
  color: #b91c5c;
  border-radius: 20px;
  font-size: 10px;
  letter-spacing: 0.14em;
}
.pp-vow-h2.svelte-1w6724f {
  font-size: clamp(2rem, 4.4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: #1a0611;
  margin: 0 0 14px;
}
.pp-vow-grad.svelte-1w6724f {
  background: linear-gradient(135deg, #e91e8c, #f472b6, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pp-vow-sub.svelte-1w6724f {
  font-size: 1.02rem;
  line-height: 1.7;
  color: #6b5468;
  max-width: 580px;
  margin: 0 auto;
}
.pp-vow-grid.svelte-1w6724f {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.pp-vow.svelte-1w6724f {
  position: relative;
  padding: 26px 22px 22px;
  background: linear-gradient(180deg, #fff, #fffaf3);
  border: 1px solid rgba(233, 30, 140, 0.14);
  border-radius: 18px;
  box-shadow: 0 14px 40px -8px #2d12481a, inset 0 1px #fffffff2;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s,
    border-color 0.4s;
}
.pp-vow.svelte-1w6724f:hover {
  transform: translateY(-8px);
  border-color: var(--pp-accent);
  box-shadow: 0 32px 60px -10px var(--pp-shadow), inset 0 1px #fffffff2;
}
.pp-vow-corner.svelte-1w6724f {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid var(--pp-accent);
  pointer-events: none;
  transition: all 0.4s;
}
.pp-vow-corner-tl.svelte-1w6724f {
  top: 8px;
  left: 8px;
  border-right: none;
  border-bottom: none;
  border-top-left-radius: 6px;
}
.pp-vow-corner-tr.svelte-1w6724f {
  top: 8px;
  right: 8px;
  border-left: none;
  border-bottom: none;
  border-top-right-radius: 6px;
}
.pp-vow-corner-bl.svelte-1w6724f {
  bottom: 8px;
  left: 8px;
  border-right: none;
  border-top: none;
  border-bottom-left-radius: 6px;
}
.pp-vow-corner-br.svelte-1w6724f {
  bottom: 8px;
  right: 8px;
  border-left: none;
  border-top: none;
  border-bottom-right-radius: 6px;
}
.pp-vow.svelte-1w6724f:hover .pp-vow-corner:where(.svelte-1w6724f) {
  width: 24px;
  height: 24px;
}
.pp-vow-watermark.svelte-1w6724f {
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 150px;
  height: 150px;
  color: var(--pp-accent);
  opacity: 0.05;
  z-index: 0;
  transition: opacity 0.4s, transform 0.5s;
}
.pp-vow.svelte-1w6724f:hover .pp-vow-watermark:where(.svelte-1w6724f) {
  opacity: 0.1;
  transform: rotate(-6deg) scale(1.05);
}
.pp-vow-strip.svelte-1w6724f {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 18px;
}
.pp-vow-num.svelte-1w6724f {
  padding: 4px 10px;
  background: var(--pp-accent-bg);
  color: var(--pp-accent-strong);
  border: 1px solid var(--pp-accent-border);
  border-radius: 50px;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
}
.pp-vow-of.svelte-1w6724f {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: #c9b8d8;
}
.pp-vow-medallion.svelte-1w6724f {
  position: relative;
  z-index: 1;
  width: 68px;
  height: 68px;
  margin-bottom: 18px;
}
.pp-vow-medallion-ring.svelte-1w6724f {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  border: 1.5px dashed var(--pp-accent);
  animation: svelte-1w6724f-ppSpin 16s linear infinite;
  opacity: 0.45;
}
.pp-vow.svelte-1w6724f:hover .pp-vow-medallion-ring:where(.svelte-1w6724f) {
  opacity: 0.85;
}
@keyframes svelte-1w6724f-ppSpin {
  to {
    transform: rotate(360deg);
  }
}
.pp-vow-medallion-inner.svelte-1w6724f {
  position: absolute;
  top: 8px;
  right: 8px;
  bottom: 8px;
  left: 8px;
  border-radius: 50%;
  background: var(--pp-medallion-bg);
  color: var(--pp-accent-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px var(--pp-shadow-inner), inset 0 1px #ffffffb3;
}
.pp-vow-title.svelte-1w6724f {
  position: relative;
  z-index: 1;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1a0611;
  margin: 0 0 8px;
}
.pp-vow-desc.svelte-1w6724f {
  position: relative;
  z-index: 1;
  font-size: 13.5px;
  line-height: 1.65;
  color: #6b5468;
  margin: 0 0 22px;
}
.pp-vow-sig.svelte-1w6724f {
  position: relative;
  z-index: 1;
  padding-top: 14px;
  border-top: 1px dashed rgba(233, 30, 140, 0.18);
  color: var(--pp-accent-strong);
}
.pp-vow-sig-line.svelte-1w6724f {
  display: block;
  width: 70%;
  height: 12px;
  margin-bottom: 4px;
  color: var(--pp-accent);
  opacity: 0.6;
}
.pp-vow-sig-l.svelte-1w6724f {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #6b5468;
  opacity: 0.7;
}
.pp-vow-seal.svelte-1w6724f {
  position: absolute;
  right: -4px;
  bottom: 4px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pp-accent);
  transform: rotate(-12deg);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.pp-vow.svelte-1w6724f:hover .pp-vow-seal:where(.svelte-1w6724f) {
  transform: rotate(8deg) scale(1.1);
}
.pp-vow-seal.svelte-1w6724f svg:where(.svelte-1w6724f) {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.pp-vow-seal-text.svelte-1w6724f {
  position: relative;
  z-index: 1;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #fff;
}
.pp-vow-rose.svelte-1w6724f {
  --pp-accent: #f472b6;
  --pp-accent-strong: #c2185b;
  --pp-accent-bg: #ffe4ef;
  --pp-accent-border: rgba(233, 30, 140, 0.25);
  --pp-medallion-bg: linear-gradient(135deg, #ffe4ef, #ffd1e3);
  --pp-shadow: rgba(233, 30, 140, 0.22);
  --pp-shadow-inner: rgba(233, 30, 140, 0.18);
}
.pp-vow-gold.svelte-1w6724f {
  --pp-accent: #fbbf24;
  --pp-accent-strong: #b45309;
  --pp-accent-bg: #fff3dc;
  --pp-accent-border: rgba(245, 158, 11, 0.28);
  --pp-medallion-bg: linear-gradient(135deg, #fff3dc, #ffe0b3);
  --pp-shadow: rgba(245, 158, 11, 0.22);
  --pp-shadow-inner: rgba(245, 158, 11, 0.18);
}
.pp-vow-green.svelte-1w6724f {
  --pp-accent: #34d399;
  --pp-accent-strong: #047857;
  --pp-accent-bg: #dcfce7;
  --pp-accent-border: rgba(16, 185, 129, 0.28);
  --pp-medallion-bg: linear-gradient(135deg, #dcfce7, #bbf7d0);
  --pp-shadow: rgba(16, 185, 129, 0.22);
  --pp-shadow-inner: rgba(16, 185, 129, 0.18);
}
.pp-vow-peach.svelte-1w6724f {
  --pp-accent: #fb923c;
  --pp-accent-strong: #ea580c;
  --pp-accent-bg: #fff1ec;
  --pp-accent-border: rgba(249, 115, 22, 0.28);
  --pp-medallion-bg: linear-gradient(135deg, #fff1ec, #ffd8c2);
  --pp-shadow: rgba(249, 115, 22, 0.22);
  --pp-shadow-inner: rgba(249, 115, 22, 0.18);
}
@media (max-width: 1024px) {
  .pp-vow-grid.svelte-1w6724f {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .pp-vow-sec.svelte-1w6724f {
    padding: 88px 0 100px;
  }
  .pp-vow-head.svelte-1w6724f {
    margin-bottom: 48px;
  }
}
@media (max-width: 600px) {
  .pp-vow-grid.svelte-1w6724f {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .pp-vow-sec.svelte-1w6724f {
    padding: 64px 0 80px;
  }
  .pp-vow-head.svelte-1w6724f {
    margin-bottom: 36px;
  }
  .pp-vow.svelte-1w6724f {
    padding: 22px 18px 18px;
  }
  .pp-vow-medallion.svelte-1w6724f {
    width: 60px;
    height: 60px;
  }
  .pp-vow-title.svelte-1w6724f {
    font-size: 16.5px;
  }
  .pp-vow-desc.svelte-1w6724f {
    font-size: 13.5px;
  }
}
.pv-body-sec.svelte-1w6724f {
  padding: 80px 0 110px;
  background: linear-gradient(180deg, #fff7fb, #fff);
}
.pv-body.svelte-1w6724f {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}
.pv-toc.svelte-1w6724f {
  position: sticky;
  top: 80px;
  align-self: start;
  z-index: 10;
  padding: 16px 14px;
  background: radial-gradient(
      200px 160px at 0% 0%,
      rgba(233, 30, 140, 0.08),
      transparent 60%
    ),
    radial-gradient(
      200px 160px at 100% 100%,
      rgba(245, 158, 11, 0.08),
      transparent 60%
    ),
    linear-gradient(180deg, #fff, #fff7fb);
  border: 1px solid rgba(233, 30, 140, 0.12);
  border-radius: 20px;
  box-shadow: 0 18px 40px #2d124814;
}
.pv-toc-header.svelte-1w6724f {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  margin-bottom: 12px;
  border-bottom: 1px dashed rgba(233, 30, 140, 0.15);
}
.pv-toc-progress.svelte-1w6724f {
  position: relative;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pv-toc-progress.svelte-1w6724f svg:where(.svelte-1w6724f) {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.pv-toc-progress-n.svelte-1w6724f {
  position: relative;
  z-index: 1;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1a0611;
}
.pv-toc-progress-n.svelte-1w6724f em:where(.svelte-1w6724f) {
  font-style: normal;
  font-size: 8.5px;
  font-weight: 500;
  color: var(--text-dim, #9b8aaf);
  margin-left: 1px;
}
.pv-toc-hl.svelte-1w6724f {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #1a0611;
}
.pv-toc-sl.svelte-1w6724f {
  font-size: 10.5px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 2px;
}
.pv-toc-nav.svelte-1w6724f {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 16px;
}
.pv-toc-link.svelte-1w6724f {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 11px 14px 11px 10px;
  margin: 2px 0;
  border-radius: 12px;
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 500;
  color: #4a2d5e;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.pv-toc-tick.svelte-1w6724f {
  width: 3px;
  height: 14px;
  border-radius: 50px;
  background: #e91e8c26;
  flex-shrink: 0;
  transition: all 0.3s;
}
.pv-toc-n.svelte-1w6724f {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 22px;
  padding: 0 7px;
  background: #e91e8c1a;
  color: var(--rose-dark, #c2185b);
  border-radius: 50px;
  font-size: 10.5px;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.3s;
}
.pv-toc-lbl.svelte-1w6724f {
  flex: 1;
  min-width: 0;
}
.pv-toc-arr.svelte-1w6724f {
  color: var(--text-dim, #c9b8d8);
  flex-shrink: 0;
  opacity: 0;
  transform: translate(-4px);
  transition: all 0.3s;
}
.pv-toc-link.svelte-1w6724f:hover {
  background: #e91e8c0f;
  color: var(--rose);
}
.pv-toc-link.svelte-1w6724f:hover .pv-toc-tick:where(.svelte-1w6724f) {
  background: var(--rose);
  height: 18px;
}
.pv-toc-link.svelte-1w6724f:hover .pv-toc-n:where(.svelte-1w6724f) {
  background: #e91e8c2e;
}
.pv-toc-link.svelte-1w6724f:hover .pv-toc-arr:where(.svelte-1w6724f) {
  opacity: 1;
  transform: translate(0);
  color: var(--rose);
}
.pv-toc-link.is-active.svelte-1w6724f {
  background: linear-gradient(135deg, #e91e8c1a, #f59e0b14);
  color: var(--rose);
  box-shadow: inset 0 0 0 1px #e91e8c2e;
}
.pv-toc-link.is-active.svelte-1w6724f .pv-toc-tick:where(.svelte-1w6724f) {
  background: linear-gradient(180deg, var(--rose), #f59e0b);
  height: 20px;
  box-shadow: 0 0 0 2px #e91e8c26;
}
.pv-toc-link.is-active.svelte-1w6724f .pv-toc-n:where(.svelte-1w6724f) {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  box-shadow: 0 4px 8px #e91e8c59;
}
.pv-toc-link.is-active.svelte-1w6724f .pv-toc-arr:where(.svelte-1w6724f) {
  opacity: 1;
  transform: translate(0);
  color: var(--rose);
}
.pv-toc-badges.svelte-1w6724f {
  display: flex;
  gap: 5px;
  padding: 10px 2px;
  margin-bottom: 14px;
  border-top: 1px dashed rgba(233, 30, 140, 0.14);
  border-bottom: 1px dashed rgba(233, 30, 140, 0.14);
}
.pv-toc-badge.svelte-1w6724f {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex: 1;
  padding: 6px 10px 6px 8px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.12);
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #1a0611;
  justify-content: center;
}
.pv-toc-badge.svelte-1w6724f svg:where(.svelte-1w6724f) {
  color: var(--rose);
}
.pv-toc-help.svelte-1w6724f {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 12px 24px #e91e8c59;
  transition: all 0.3s;
}
.pv-toc-help-blob.svelte-1w6724f {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.2),
    transparent 70%
  );
  pointer-events: none;
}
.pv-toc-help.svelte-1w6724f:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px #e91e8c80;
  color: #fff;
}
.pv-toc-help-ic.svelte-1w6724f {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #ffffff38;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}
.pv-toc-help-body.svelte-1w6724f {
  flex: 1;
  min-width: 0;
  z-index: 1;
}
.pv-toc-help-body.svelte-1w6724f strong:where(.svelte-1w6724f) {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.pv-toc-help-body.svelte-1w6724f span:where(.svelte-1w6724f) {
  display: block;
  font-size: 10.5px;
  opacity: 0.88;
  margin-top: 1px;
}
.pv-toc-help-arr.svelte-1w6724f {
  z-index: 1;
  transition: transform 0.3s;
}
.pv-toc-help.svelte-1w6724f:hover .pv-toc-help-arr:where(.svelte-1w6724f) {
  transform: translate(3px);
}
.pv-content.svelte-1w6724f {
  max-width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.pv-section.svelte-1w6724f {
  position: relative;
  padding: 28px 32px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.1);
  border-radius: 20px;
  box-shadow: 0 10px 28px #2d12480f;
  scroll-margin-top: 120px;
  transition: box-shadow 0.35s, border-color 0.35s;
}
.pv-section.svelte-1w6724f:hover {
  border-color: #e91e8c38;
  box-shadow: 0 20px 42px #e91e8c1f;
}
.pv-section.svelte-1w6724f:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--rose), #f59e0b);
  opacity: 0.5;
  transition: opacity 0.35s, width 0.35s;
}
.pv-section.svelte-1w6724f:hover:before {
  opacity: 1;
  width: 5px;
}
.pv-section-n.svelte-1w6724f {
  position: absolute;
  top: 24px;
  right: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff7fb, #fff5ec);
  border: 1.5px dashed rgba(233, 30, 140, 0.25);
  color: transparent;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  font-style: italic;
  background-image: linear-gradient(135deg, var(--rose), #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pv-section.svelte-1w6724f h2:where(.svelte-1w6724f) {
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #1a0611;
  margin: 0 0 14px;
  padding-right: 60px;
  position: relative;
}
.pv-section.svelte-1w6724f h2:where(.svelte-1w6724f):after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), #f59e0b);
  border-radius: 2px;
  margin-top: 10px;
}
.pv-section.svelte-1w6724f p:where(.svelte-1w6724f) {
  font-size: 14.5px;
  line-height: 1.75;
  color: #3a2a4a;
  margin: 0 0 14px;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}
.pv-section.svelte-1w6724f p:where(.svelte-1w6724f):last-child {
  margin-bottom: 0;
}
.pv-section.svelte-1w6724f
  p:where(.svelte-1w6724f)
  strong:where(.svelte-1w6724f) {
  color: #1a0611;
  font-weight: 700;
}
.pv-section.svelte-1w6724f a:where(.svelte-1w6724f) {
  color: var(--rose);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1.5px solid rgba(233, 30, 140, 0.3);
  transition: all 0.25s;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.pv-section.svelte-1w6724f a:where(.svelte-1w6724f):hover {
  color: var(--rose-dark, #c2185b);
  border-bottom-color: var(--rose);
}
.pv-list.svelte-1w6724f {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}
.pv-list-item.svelte-1w6724f {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  background: #fff7fb;
  border: 1px solid rgba(233, 30, 140, 0.1);
  border-radius: 14px;
  transition: all 0.25s;
}
.pv-list-item.svelte-1w6724f:hover {
  border-color: #e91e8c40;
  transform: translate(3px);
}
.pv-list-ic.svelte-1w6724f {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ffe4ef, #fff0db);
  color: var(--rose-dark, #c2185b);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pv-list-item.svelte-1w6724f strong:where(.svelte-1w6724f) {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: #1a0611;
  margin-bottom: 3px;
}
.pv-list-item.svelte-1w6724f span:where(.svelte-1w6724f) {
  display: block;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--text-muted);
}
.pv-bullets.svelte-1w6724f {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pv-bullets.svelte-1w6724f li:where(.svelte-1w6724f) {
  position: relative;
  padding: 8px 12px 8px 30px;
  font-size: 14px;
  line-height: 1.65;
  color: #2a1a3a;
  background: #fff7fb;
  border-radius: 10px;
  border: 1px solid rgba(233, 30, 140, 0.08);
}
.pv-bullets.svelte-1w6724f li:where(.svelte-1w6724f):before {
  content: "";
  position: absolute;
  top: 14px;
  left: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), #f59e0b);
  box-shadow: 0 2px 6px #e91e8c59;
}
.pv-note.svelte-1w6724f {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  margin-top: 16px;
  background: linear-gradient(135deg, #e91e8c14, #f59e0b14);
  border: 1px dashed rgba(233, 30, 140, 0.3);
  border-radius: 14px;
}
.pv-note-ic.svelte-1w6724f {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 14px #e91e8c59;
}
.pv-note.svelte-1w6724f strong:where(.svelte-1w6724f) {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--rose-dark, #c2185b);
  margin-bottom: 3px;
}
.pv-note.svelte-1w6724f p:where(.svelte-1w6724f) {
  font-size: 13.5px;
  line-height: 1.65;
  color: #1a0611;
  margin: 0;
}
.pv-contact-grid.svelte-1w6724f {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 20px;
}
.pv-contact-card.svelte-1w6724f {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
  text-decoration: none;
  background: #fff;
  border: 1.5px solid var(--border, #ead8f0);
  box-shadow: 0 8px 22px #2d12480f;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.pv-contact-card.svelte-1w6724f:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 18px 18px 0 0;
  opacity: 0.6;
  transition: opacity 0.35s, height 0.35s;
}
.pv-contact-card.svelte-1w6724f:hover {
  transform: translateY(-4px);
  border-color: transparent;
}
.pv-contact-card.svelte-1w6724f:hover:before {
  opacity: 1;
  height: 4px;
}
.pv-contact-rose.svelte-1w6724f {
  --pvc-shadow: rgba(233, 30, 140, 0.25);
}
.pv-contact-rose.svelte-1w6724f:before {
  background: linear-gradient(90deg, var(--rose), var(--rose-dark));
}
.pv-contact-rose.svelte-1w6724f:hover {
  box-shadow: 0 22px 44px var(--pvc-shadow);
}
.pv-contact-green.svelte-1w6724f {
  --pvc-shadow: rgba(37, 211, 102, 0.25);
}
.pv-contact-green.svelte-1w6724f:before {
  background: linear-gradient(90deg, #10b981, #059669);
}
.pv-contact-green.svelte-1w6724f:hover {
  box-shadow: 0 22px 44px var(--pvc-shadow);
}
.pv-contact-badge.svelte-1w6724f {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px 3px 7px;
  background: #e91e8c1a;
  color: var(--rose);
  border-radius: 50px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  z-index: 2;
}
.pv-contact-badge-g.svelte-1w6724f {
  background: #10b9811f;
  color: #059669;
}
.pv-contact-badge-dot.svelte-1w6724f {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 2px #e91e8c2e;
  animation: svelte-1w6724f-pvPulse 2s ease-in-out infinite;
}
.pv-contact-badge-g.svelte-1w6724f
  .pv-contact-badge-dot:where(.svelte-1w6724f) {
  box-shadow: 0 0 0 2px #10b98138;
}
.pv-contact-ic.svelte-1w6724f {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.35s;
}
.pv-contact-rose.svelte-1w6724f .pv-contact-ic:where(.svelte-1w6724f) {
  background: linear-gradient(135deg, #ffe4ef, #ffd1e3);
  color: var(--rose-dark, #c2185b);
  border: 1px solid rgba(233, 30, 140, 0.22);
}
.pv-contact-green.svelte-1w6724f .pv-contact-ic:where(.svelte-1w6724f) {
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.25);
}
.pv-contact-rose.svelte-1w6724f:hover .pv-contact-ic:where(.svelte-1w6724f) {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  border-color: transparent;
  transform: scale(1.06) rotate(-4deg);
}
.pv-contact-green.svelte-1w6724f:hover .pv-contact-ic:where(.svelte-1w6724f) {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border-color: transparent;
  transform: scale(1.06) rotate(-4deg);
}
.pv-contact-body.svelte-1w6724f {
  flex: 1;
  min-width: 0;
}
.pv-contact-label.svelte-1w6724f {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--text-dim, #9b8aaf);
  margin-bottom: 4px;
}
.pv-contact-card.svelte-1w6724f strong:where(.svelte-1w6724f) {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #1a0611;
  word-break: break-word;
  margin-bottom: 6px;
}
.pv-contact-card.svelte-1w6724f span:where(.svelte-1w6724f) {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  font-weight: 500;
  color: var(--text-muted);
  padding-top: 6px;
  border-top: 1px dashed rgba(233, 30, 140, 0.15);
}
.pv-contact-arr.svelte-1w6724f {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff7fb;
  color: var(--rose);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.35s;
}
.pv-contact-green.svelte-1w6724f .pv-contact-arr:where(.svelte-1w6724f) {
  background: #ecfdf5;
  color: #059669;
}
.pv-contact-rose.svelte-1w6724f:hover .pv-contact-arr:where(.svelte-1w6724f) {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  transform: translate(4px);
}
.pv-contact-green.svelte-1w6724f:hover .pv-contact-arr:where(.svelte-1w6724f) {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  transform: translate(4px);
}
@media (max-width: 1024px) {
  .pv-hero.svelte-1w6724f {
    padding: 64px 0 56px;
  }
  .pv-hero-inner.svelte-1w6724f {
    grid-template-columns: 1fr 0.9fr;
    gap: 28px;
  }
  .pv-hero-vis.svelte-1w6724f {
    max-width: 340px;
  }
  .pv-vault.svelte-1w6724f {
    width: 190px;
    padding: 16px 16px 14px;
  }
  .pv-vault-shield.svelte-1w6724f {
    width: 52px;
    height: 52px;
  }
  .pv-float-1.svelte-1w6724f {
    left: 0;
  }
  .pv-float-2.svelte-1w6724f {
    right: 0;
  }
  .pv-float-3.svelte-1w6724f {
    left: 0;
  }
  .pv-crumb.svelte-1w6724f {
    font-size: 13px;
  }
  .pv-chip.svelte-1w6724f {
    font-size: 12px;
    letter-spacing: 0.12em;
    padding: 8px 15px 8px 13px;
  }
  .pv-h1.svelte-1w6724f {
    font-size: clamp(1.95rem, 3.8vw, 2.6rem);
  }
  .pv-lead.svelte-1w6724f {
    font-size: 1.08rem;
    line-height: 1.7;
  }
  .pv-meta.svelte-1w6724f {
    padding: 10px 18px;
    font-size: 13px;
    gap: 12px;
  }
  .pv-meta-i.svelte-1w6724f svg:where(.svelte-1w6724f) {
    width: 15px;
    height: 15px;
  }
  .pv-sum-sec.svelte-1w6724f {
    padding: 80px 0;
  }
  .pv-sum-grid.svelte-1w6724f {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .pv-sum-card.svelte-1w6724f {
    padding: 24px 22px 22px;
  }
  .pv-sum-card.svelte-1w6724f h3:where(.svelte-1w6724f) {
    font-size: 16px;
  }
  .pv-sum-card.svelte-1w6724f p:where(.svelte-1w6724f) {
    font-size: 14.5px;
    line-height: 1.65;
  }
  .pv-eyebrow.svelte-1w6724f {
    font-size: 12px;
    letter-spacing: 0.2em;
  }
  .pv-h2.svelte-1w6724f {
    font-size: 1.9rem;
  }
  .pv-sub.svelte-1w6724f {
    font-size: 15.5px;
    line-height: 1.65;
  }
  .pv-body-sec.svelte-1w6724f {
    padding: 64px 0 96px;
  }
  .pv-body.svelte-1w6724f {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .pv-toc.svelte-1w6724f {
    position: static;
    z-index: auto;
    padding: 18px 16px;
  }
  .pv-toc-hl.svelte-1w6724f {
    font-size: 17px;
  }
  .pv-toc-sl.svelte-1w6724f {
    font-size: 13.5px;
  }
  .pv-toc-nav.svelte-1w6724f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 10px;
  }
  .pv-toc-link.svelte-1w6724f {
    font-size: 15.5px;
    padding: 13px 15px 13px 11px;
  }
  .pv-toc-n.svelte-1w6724f {
    font-size: 12.5px;
    min-width: 32px;
    height: 24px;
  }
  .pv-toc-badges.svelte-1w6724f {
    padding: 12px 2px 10px;
  }
  .pv-toc-badge.svelte-1w6724f {
    font-size: 13px;
    padding: 7px 13px 7px 11px;
  }
  .pv-toc-help.svelte-1w6724f {
    padding: 14px;
  }
  .pv-toc-help-body.svelte-1w6724f strong:where(.svelte-1w6724f) {
    font-size: 15px;
  }
  .pv-toc-help-body.svelte-1w6724f span:where(.svelte-1w6724f) {
    font-size: 13px;
  }
  .pv-content.svelte-1w6724f {
    max-width: 100%;
    gap: 22px;
  }
  .pv-section.svelte-1w6724f {
    padding: 32px 34px;
  }
  .pv-section.svelte-1w6724f h2:where(.svelte-1w6724f) {
    font-size: 1.7rem;
    padding-right: 72px;
  }
  .pv-section.svelte-1w6724f p:where(.svelte-1w6724f) {
    font-size: 17px;
    line-height: 1.75;
  }
  .pv-section-n.svelte-1w6724f {
    top: 22px;
    right: 22px;
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  .pv-bullets.svelte-1w6724f li:where(.svelte-1w6724f) {
    font-size: 16px;
    padding: 12px 16px 12px 32px;
  }
  .pv-bullets.svelte-1w6724f li:where(.svelte-1w6724f):before {
    top: 17px;
    left: 14px;
    width: 8px;
    height: 8px;
  }
  .pv-list-item.svelte-1w6724f {
    padding: 14px 18px;
  }
  .pv-list-ic.svelte-1w6724f {
    width: 36px;
    height: 36px;
  }
  .pv-list-item.svelte-1w6724f strong:where(.svelte-1w6724f) {
    font-size: 15.5px;
  }
  .pv-list-item.svelte-1w6724f span:where(.svelte-1w6724f) {
    font-size: 15px;
    line-height: 1.65;
  }
  .pv-note.svelte-1w6724f p:where(.svelte-1w6724f) {
    font-size: 15px;
    line-height: 1.65;
  }
  .pv-note.svelte-1w6724f strong:where(.svelte-1w6724f) {
    font-size: 13.5px;
  }
  .pv-contact-card.svelte-1w6724f {
    padding: 18px;
  }
  .pv-contact-label.svelte-1w6724f {
    font-size: 10px;
  }
  .pv-contact-card.svelte-1w6724f strong:where(.svelte-1w6724f) {
    font-size: 14.5px;
  }
  .pv-contact-card.svelte-1w6724f span:where(.svelte-1w6724f) {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .pv-hero.svelte-1w6724f {
    padding: 56px 0 52px;
  }
  .pv-hero-inner.svelte-1w6724f {
    grid-template-columns: 1fr 0.85fr;
    gap: 20px;
  }
  .pv-hero-vis.svelte-1w6724f {
    max-width: 260px;
    margin: 0;
  }
  .pv-vault.svelte-1w6724f {
    width: 160px;
    padding: 14px 14px 12px;
  }
  .pv-vault-shield.svelte-1w6724f {
    width: 44px;
    height: 44px;
    margin: 0 auto 10px;
  }
  .pv-vault-label.svelte-1w6724f {
    font-size: 8.5px;
    margin-bottom: 10px;
  }
  .pv-vault-meter.svelte-1w6724f {
    height: 4px;
    margin-bottom: 10px;
  }
  .pv-vault-rows.svelte-1w6724f {
    gap: 4px;
  }
  .pv-vault-row.svelte-1w6724f {
    padding: 5px 8px;
  }
  .pv-vault-k.svelte-1w6724f,
  .pv-vault-v.svelte-1w6724f {
    font-size: 9.5px;
  }
  .pv-float.svelte-1w6724f {
    padding: 7px 10px 7px 6px;
  }
  .pv-float-ic.svelte-1w6724f {
    width: 22px;
    height: 22px;
  }
  .pv-float-v.svelte-1w6724f {
    font-size: 11px;
  }
  .pv-float-l.svelte-1w6724f {
    font-size: 9.5px;
  }
  .pv-float-1.svelte-1w6724f {
    left: 0;
    top: 4%;
  }
  .pv-float-2.svelte-1w6724f {
    right: 0;
    top: 48%;
  }
  .pv-float-3.svelte-1w6724f {
    left: 0;
    bottom: 4%;
  }
  .pv-crumb.svelte-1w6724f {
    font-size: 13px;
  }
  .pv-chip.svelte-1w6724f {
    font-size: 12px;
    letter-spacing: 0.12em;
    padding: 8px 15px 8px 13px;
  }
  .pv-h1.svelte-1w6724f {
    font-size: 1.85rem;
    line-height: 1.15;
  }
  .pv-lead.svelte-1w6724f {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 22px;
  }
  .pv-eyebrow.svelte-1w6724f {
    font-size: 12px;
    letter-spacing: 0.18em;
  }
  .pv-h2.svelte-1w6724f {
    font-size: 1.75rem;
  }
  .pv-sub.svelte-1w6724f {
    font-size: 15.5px;
    line-height: 1.65;
  }
  .pv-sum-card.svelte-1w6724f h3:where(.svelte-1w6724f) {
    font-size: 15.5px;
  }
  .pv-sum-card.svelte-1w6724f p:where(.svelte-1w6724f) {
    font-size: 14px;
    line-height: 1.65;
  }
  .pv-toc-hl.svelte-1w6724f {
    font-size: 16px;
  }
  .pv-toc-sl.svelte-1w6724f {
    font-size: 13px;
  }
  .pv-toc-link.svelte-1w6724f {
    font-size: 15px;
    padding: 12px 14px 12px 10px;
  }
  .pv-toc-n.svelte-1w6724f {
    font-size: 12.5px;
    min-width: 31px;
    height: 23px;
  }
  .pv-toc-badge.svelte-1w6724f {
    font-size: 12.5px;
    padding: 7px 12px 7px 10px;
  }
  .pv-toc-help-body.svelte-1w6724f strong:where(.svelte-1w6724f) {
    font-size: 14.5px;
  }
  .pv-toc-help-body.svelte-1w6724f span:where(.svelte-1w6724f) {
    font-size: 12.5px;
  }
  .pv-contact-label.svelte-1w6724f {
    font-size: 10px;
  }
  .pv-contact-card.svelte-1w6724f strong:where(.svelte-1w6724f) {
    font-size: 14.5px;
  }
  .pv-contact-card.svelte-1w6724f span:where(.svelte-1w6724f) {
    font-size: 12px;
  }
  .pv-meta.svelte-1w6724f {
    display: inline-flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .pv-meta-i.svelte-1w6724f {
    width: fit-content;
    padding: 9px 16px 9px 14px;
    background: #fffffff2;
    border: 1px solid rgba(233, 30, 140, 0.14);
    border-radius: 50px;
    box-shadow: 0 4px 12px #2d12480d;
    font-size: 11.5px;
    transition: all 0.25s;
  }
  .pv-meta-i.svelte-1w6724f:hover {
    transform: translate(3px);
    border-color: #e91e8c4d;
    box-shadow: 0 8px 18px #e91e8c1f;
  }
  .pv-meta-sep.svelte-1w6724f {
    display: none;
  }
  .pv-sum-sec.svelte-1w6724f,
  .pv-body-sec.svelte-1w6724f {
    padding: 48px 0;
  }
  .pv-sum-grid.svelte-1w6724f {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .pv-sum-card.svelte-1w6724f {
    padding: 18px 16px 16px;
  }
  .pv-sum-ic.svelte-1w6724f {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    margin-bottom: 12px;
  }
  .pv-sum-ic.svelte-1w6724f svg:where(.svelte-1w6724f) {
    width: 18px;
    height: 18px;
  }
  .pv-sum-card.svelte-1w6724f h3:where(.svelte-1w6724f) {
    font-size: 13.5px;
  }
  .pv-sum-card.svelte-1w6724f p:where(.svelte-1w6724f) {
    font-size: 12px;
    line-height: 1.55;
  }
  .pv-toc.svelte-1w6724f {
    padding: 14px 12px;
    border-radius: 18px;
  }
  .pv-toc-header.svelte-1w6724f {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .pv-toc-hl.svelte-1w6724f {
    font-size: 15px;
  }
  .pv-toc-sl.svelte-1w6724f {
    font-size: 12px;
  }
  .pv-toc-nav.svelte-1w6724f {
    grid-template-columns: repeat(2, 1fr);
  }
  .pv-toc-link.svelte-1w6724f {
    padding: 10px 11px 10px 8px;
    font-size: 14px;
    gap: 8px;
  }
  .pv-toc-n.svelte-1w6724f {
    min-width: 28px;
    height: 22px;
    font-size: 11.5px;
    padding: 0 6px;
  }
  .pv-toc-tick.svelte-1w6724f {
    width: 2.5px;
    height: 12px;
  }
  .pv-toc-badges.svelte-1w6724f {
    gap: 4px;
    padding: 8px 0;
    margin-bottom: 10px;
  }
  .pv-toc-badge.svelte-1w6724f {
    font-size: 12px;
    padding: 6px 11px 6px 9px;
  }
  .pv-toc-help.svelte-1w6724f {
    padding: 10px;
  }
  .pv-toc-help-ic.svelte-1w6724f {
    width: 28px;
    height: 28px;
  }
  .pv-toc-help-body.svelte-1w6724f strong:where(.svelte-1w6724f) {
    font-size: 14px;
  }
  .pv-toc-help-body.svelte-1w6724f span:where(.svelte-1w6724f) {
    font-size: 12px;
  }
  .pv-content.svelte-1w6724f {
    gap: 20px;
  }
  .pv-section.svelte-1w6724f {
    padding: 28px 26px;
    border-radius: 18px;
  }
  .pv-section.svelte-1w6724f h2:where(.svelte-1w6724f) {
    font-size: 1.65rem;
    margin-bottom: 14px;
    padding-right: 58px;
  }
  .pv-section.svelte-1w6724f h2:where(.svelte-1w6724f):after {
    width: 40px;
    height: 3px;
    margin-top: 10px;
  }
  .pv-section-n.svelte-1w6724f {
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    font-size: 1.15rem;
    border-radius: 12px;
  }
  .pv-section.svelte-1w6724f p:where(.svelte-1w6724f),
  .pv-bullets.svelte-1w6724f li:where(.svelte-1w6724f) {
    font-size: 16.5px;
    line-height: 1.75;
  }
  .pv-bullets.svelte-1w6724f li:where(.svelte-1w6724f) {
    padding: 12px 16px 12px 34px;
  }
  .pv-bullets.svelte-1w6724f li:where(.svelte-1w6724f):before {
    top: 17px;
    left: 14px;
    width: 8px;
    height: 8px;
  }
  .pv-list-item.svelte-1w6724f {
    padding: 14px 16px;
    gap: 12px;
  }
  .pv-list-ic.svelte-1w6724f {
    width: 36px;
    height: 36px;
  }
  .pv-list-item.svelte-1w6724f strong:where(.svelte-1w6724f) {
    font-size: 15.5px;
  }
  .pv-list-item.svelte-1w6724f span:where(.svelte-1w6724f) {
    font-size: 15px;
    line-height: 1.65;
  }
  .pv-note.svelte-1w6724f {
    padding: 14px 16px;
    gap: 10px;
  }
  .pv-note-ic.svelte-1w6724f {
    width: 30px;
    height: 30px;
  }
  .pv-note.svelte-1w6724f p:where(.svelte-1w6724f) {
    font-size: 15px;
    line-height: 1.65;
  }
  .pv-note.svelte-1w6724f strong:where(.svelte-1w6724f) {
    font-size: 13.5px;
  }
  .pv-contact-grid.svelte-1w6724f {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
@media (max-width: 600px) {
  .pv-hero.svelte-1w6724f {
    padding: 48px 0 44px;
  }
  .pv-hero-inner.svelte-1w6724f {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .pv-hero-vis.svelte-1w6724f {
    max-width: 300px;
    margin: 0 auto;
  }
  .pv-vault.svelte-1w6724f {
    width: 200px;
    padding: 18px 18px 14px;
  }
  .pv-vault-shield.svelte-1w6724f {
    width: 54px;
    height: 54px;
  }
  .pv-vault-label.svelte-1w6724f {
    font-size: 9.5px;
  }
  .pv-vault-k.svelte-1w6724f,
  .pv-vault-v.svelte-1w6724f {
    font-size: 10.5px;
  }
  .pv-float-1.svelte-1w6724f {
    left: 0;
  }
  .pv-float-2.svelte-1w6724f {
    right: 0;
  }
  .pv-float-3.svelte-1w6724f {
    left: 0;
  }
  .pv-h1.svelte-1w6724f {
    font-size: 1.75rem;
    line-height: 1.2;
  }
  .pv-lead.svelte-1w6724f {
    font-size: 1rem;
    line-height: 1.65;
  }
  .pv-chip.svelte-1w6724f {
    font-size: 11px;
    letter-spacing: 0.1em;
    padding: 7px 13px 7px 11px;
  }
  .pv-crumb.svelte-1w6724f {
    font-size: 12px;
  }
  .pv-sum-sec.svelte-1w6724f,
  .pv-body-sec.svelte-1w6724f {
    padding: 48px 0 56px;
  }
  .pv-sec-head.svelte-1w6724f {
    margin-bottom: 32px;
  }
  .pv-h2.svelte-1w6724f {
    font-size: 1.7rem;
    line-height: 1.2;
  }
  .pv-sub.svelte-1w6724f {
    font-size: 14.5px;
    line-height: 1.65;
  }
  .pv-eyebrow.svelte-1w6724f {
    font-size: 11px;
    letter-spacing: 0.16em;
    gap: 10px;
  }
  .pv-eyebrow-line.svelte-1w6724f {
    width: 22px;
  }
  .pv-sum-card.svelte-1w6724f h3:where(.svelte-1w6724f) {
    font-size: 15.5px;
  }
  .pv-sum-card.svelte-1w6724f p:where(.svelte-1w6724f) {
    font-size: 14px;
    line-height: 1.65;
  }
  .pv-toc-hl.svelte-1w6724f {
    font-size: 14px;
  }
  .pv-toc-sl.svelte-1w6724f {
    font-size: 11.5px;
  }
  .pv-toc-link.svelte-1w6724f {
    font-size: 13.5px;
    padding: 11px 14px 11px 10px;
  }
  .pv-toc-n.svelte-1w6724f {
    font-size: 11px;
    min-width: 28px;
    height: 22px;
  }
  .pv-toc-badge.svelte-1w6724f {
    font-size: 11px;
    padding: 6px 11px 6px 9px;
  }
  .pv-toc-help-body.svelte-1w6724f strong:where(.svelte-1w6724f) {
    font-size: 13px;
  }
  .pv-toc-help-body.svelte-1w6724f span:where(.svelte-1w6724f) {
    font-size: 11.5px;
  }
  .pv-contact-label.svelte-1w6724f {
    font-size: 10px;
  }
  .pv-contact-card.svelte-1w6724f strong:where(.svelte-1w6724f) {
    font-size: 14.5px;
  }
  .pv-contact-card.svelte-1w6724f span:where(.svelte-1w6724f) {
    font-size: 12px;
  }
  .pv-meta-i.svelte-1w6724f {
    font-size: 12.5px;
    padding: 10px 18px 10px 16px;
  }
  .pv-meta-i.svelte-1w6724f svg:where(.svelte-1w6724f) {
    width: 14px;
    height: 14px;
  }
  .pv-sum-grid.svelte-1w6724f {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .pv-toc-nav.svelte-1w6724f {
    grid-template-columns: 1fr;
  }
  .pv-toc-link.svelte-1w6724f {
    padding: 8px 10px 8px 6px;
    font-size: 12px;
  }
  .pv-toc-link.svelte-1w6724f .pv-toc-arr:where(.svelte-1w6724f) {
    display: none;
  }
  .pv-section.svelte-1w6724f {
    padding: 22px 18px 20px;
    border-radius: 14px;
  }
  .pv-section.svelte-1w6724f:before {
    width: 3px;
  }
  .pv-section.svelte-1w6724f h2:where(.svelte-1w6724f) {
    font-size: 1.3rem;
    padding-right: 0;
  }
  .pv-section-n.svelte-1w6724f {
    position: relative;
    top: auto;
    right: auto;
    width: 38px;
    height: 38px;
    font-size: 1rem;
    margin-bottom: 12px;
  }
  .pv-section.svelte-1w6724f p:where(.svelte-1w6724f),
  .pv-bullets.svelte-1w6724f li:where(.svelte-1w6724f),
  .pv-list-item.svelte-1w6724f span:where(.svelte-1w6724f) {
    font-size: 14.5px;
    line-height: 1.7;
  }
  .pv-list-item.svelte-1w6724f strong:where(.svelte-1w6724f) {
    font-size: 14px;
  }
  .pv-note.svelte-1w6724f p:where(.svelte-1w6724f) {
    font-size: 13.5px;
  }
  .pv-bullets.svelte-1w6724f
    li:where(.svelte-1w6724f)
    strong:where(.svelte-1w6724f) {
    font-size: 14.5px;
  }
}
@media (max-width: 380px) {
  .pv-h1.svelte-1w6724f {
    font-size: 1.5rem;
  }
  .pv-lead.svelte-1w6724f {
    font-size: 0.95rem;
  }
  .pv-h2.svelte-1w6724f {
    font-size: 1.45rem;
  }
  .pv-sub.svelte-1w6724f {
    font-size: 13.5px;
  }
  .pv-section.svelte-1w6724f h2:where(.svelte-1w6724f) {
    font-size: 1.2rem;
  }
  .pv-section.svelte-1w6724f p:where(.svelte-1w6724f),
  .pv-bullets.svelte-1w6724f li:where(.svelte-1w6724f) {
    font-size: 13.5px;
  }
  .pv-section.svelte-1w6724f {
    padding: 20px 16px 18px;
  }
  .pv-sum-card.svelte-1w6724f h3:where(.svelte-1w6724f) {
    font-size: 14.5px;
  }
  .pv-sum-card.svelte-1w6724f p:where(.svelte-1w6724f) {
    font-size: 13px;
  }
  .pv-toc.svelte-1w6724f {
    padding: 12px 10px;
  }
  .pv-toc-link.svelte-1w6724f {
    font-size: 12.5px;
  }
  .pv-contact-card.svelte-1w6724f strong:where(.svelte-1w6724f) {
    font-size: 13.5px;
  }
}

/*Ends here*/

/*Disclaimer page*/


.pv-grad.svelte-o3curx {
  background: linear-gradient(135deg, var(--rose), #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pv-hero.svelte-o3curx,
.pv-sum-sec.svelte-o3curx,
.pv-body-sec.svelte-o3curx {
  border-bottom: 1px solid rgba(233, 30, 140, 0.1);
}
.pv-body-sec.svelte-o3curx {
  border-bottom: none;
}
.pv-hero.svelte-o3curx {
  position: relative;
  overflow: hidden;
  padding: 80px 0 72px;
  background: radial-gradient(
      900px 500px at 50% 0%,
      rgba(245, 158, 11, 0.1),
      transparent 55%
    ),
    radial-gradient(
      900px 500px at 0% 50%,
      rgba(233, 30, 140, 0.08),
      transparent 55%
    ),
    radial-gradient(
      900px 500px at 100% 50%,
      rgba(245, 158, 11, 0.09),
      transparent 55%
    ),
    linear-gradient(180deg, #fff0f7, #fff5ec);
}
.pv-hero.svelte-o3curx:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(
      rgba(233, 30, 140, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(233, 30, 140, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    #000 40%,
    transparent 75%
  );
  mask-image: radial-gradient(ellipse at center, #000 40%, transparent 75%);
  pointer-events: none;
}
.pv-orb.svelte-o3curx {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.5;
}
.pv-orb-1.svelte-o3curx {
  top: -120px;
  left: -100px;
  width: 360px;
  height: 360px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.35),
    transparent 70%
  );
}
.pv-orb-2.svelte-o3curx {
  top: 40px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.3), transparent 70%);
}
.pv-orb-3.svelte-o3curx {
  bottom: -120px;
  left: 30%;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(251, 146, 60, 0.25),
    transparent 70%
  );
}
.pv-hero.svelte-o3curx > .grid-container:where(.svelte-o3curx) {
  position: relative;
  z-index: 1;
}
.pv-hero-inner.svelte-o3curx {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.pv-hero-text.svelte-o3curx {
  max-width: 640px;
}
.pv-hero-vis.svelte-o3curx {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1/1;
  margin-left: auto;
}
.pv-vault-glow.svelte-o3curx {
  position: absolute;
  top: 10%;
  right: 10%;
  bottom: 10%;
  left: 10%;
  border-radius: 50%;
  background: radial-gradient(
      circle at 30% 30%,
      rgba(233, 30, 140, 0.35) 0%,
      transparent 55%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(245, 158, 11, 0.28) 0%,
      transparent 55%
    );
  filter: blur(28px);
  pointer-events: none;
}
.pv-vault-rings.svelte-o3curx {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: svelte-o3curx-pvSpin 40s linear infinite;
}
@keyframes svelte-o3curx-pvSpin {
  to {
    transform: rotate(360deg);
  }
}
.pv-vault.svelte-o3curx {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 220px;
  padding: 20px 20px 16px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.18);
  border-radius: 22px;
  box-shadow: 0 24px 50px #e91e8c38, inset 0 1px #ffffffe6;
  text-align: center;
}
.pv-vault-shield.svelte-o3curx {
  width: 62px;
  height: 62px;
  margin: 0 auto 12px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 28px #e91e8c66, inset 0 1px #ffffff4d;
}
.pv-vault-label.svelte-o3curx {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--rose);
  margin-bottom: 12px;
}
.pv-vault-meter.svelte-o3curx {
  position: relative;
  height: 5px;
  margin-bottom: 14px;
  background: #e91e8c14;
  border-radius: 50px;
  overflow: hidden;
}
.pv-vault-meter-track.svelte-o3curx {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #e91e8c0f;
}
.pv-vault-meter-bar.svelte-o3curx {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--rose), #f59e0b);
  border-radius: 50px;
  animation: svelte-o3curx-pvMeter 3.5s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  transform-origin: left;
}
@keyframes svelte-o3curx-pvMeter {
  0%,
  to {
    width: 100%;
    opacity: 1;
  }
  40% {
    width: 88%;
    opacity: 0.85;
  }
  70% {
    width: 100%;
    opacity: 1;
  }
}
.pv-vault-rows.svelte-o3curx {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}
.pv-vault-row.svelte-o3curx {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: #fff7fb;
  border: 1px solid rgba(233, 30, 140, 0.08);
  border-radius: 10px;
}
.pv-vault-dot.svelte-o3curx {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pv-vault-dot-g.svelte-o3curx {
  background: #10b981;
  box-shadow: 0 0 0 2px #10b98138;
}
.pv-vault-k.svelte-o3curx {
  flex: 1;
  font-size: 10.5px;
  font-weight: 500;
  color: var(--text-muted);
}
.pv-vault-v.svelte-o3curx {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--rose-dark, #c2185b);
}
.pv-vault-v-off.svelte-o3curx {
  color: #059669;
}
.pv-float.svelte-o3curx {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 10px 10px;
  background: #fff;
  border: 1px solid rgba(45, 18, 72, 0.06);
  border-radius: 50px;
  box-shadow: 0 14px 28px #2d124824;
  z-index: 3;
  white-space: nowrap;
}
.pv-float-1.svelte-o3curx {
  top: 6%;
  left: -8%;
  animation: svelte-o3curx-pvFloat 6s ease-in-out infinite;
}
.pv-float-2.svelte-o3curx {
  top: 48%;
  right: -4%;
  animation: svelte-o3curx-pvFloat 7s ease-in-out infinite reverse;
  animation-delay: -2s;
}
.pv-float-3.svelte-o3curx {
  bottom: 6%;
  left: -4%;
  animation: svelte-o3curx-pvFloat 6s ease-in-out infinite;
  animation-delay: -3s;
}
@keyframes svelte-o3curx-pvFloat {
  0%,
  to {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.pv-float-ic.svelte-o3curx {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pv-float-ic-g.svelte-o3curx {
  background: #10b98124;
  color: #059669;
}
.pv-float-ic-r.svelte-o3curx {
  background: #e91e8c24;
  color: var(--rose);
}
.pv-float-livedot.svelte-o3curx {
  width: 10px;
  height: 10px;
  margin: 0 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px #10b98138;
  animation: svelte-o3curx-pvPulse 2s ease-in-out infinite;
}
.pv-float-v.svelte-o3curx {
  font-size: 12px;
  font-weight: 700;
  color: #1a0611;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.pv-float-l.svelte-o3curx {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 1px;
}
.pv-crumb.svelte-o3curx {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  margin-bottom: 14px;
  background: #ffffffd9;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  box-shadow: 0 4px 14px #2d12480f;
}
.pv-crumb.svelte-o3curx a:where(.svelte-o3curx) {
  color: var(--rose);
  text-decoration: none;
  font-weight: 600;
}
.pv-crumb.svelte-o3curx span:where(.svelte-o3curx):last-child {
  color: #2a0a1a;
  font-weight: 600;
}
.pv-chip.svelte-o3curx {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 12px;
  margin: 0 0 20px;
  background: #ffffffd9;
  border: 1px solid rgba(245, 196, 107, 0.4);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #b45309;
  box-shadow: 0 6px 18px #f59e0b26;
}
.pv-chip-dot.svelte-o3curx {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px #10b98138, 0 0 10px #10b98199;
  animation: svelte-o3curx-pvPulse 2s ease-in-out infinite;
}
@keyframes svelte-o3curx-pvPulse {
  0%,
  to {
    box-shadow: 0 0 0 3px #10b98133, 0 0 10px #10b98199;
  }
  50% {
    box-shadow: 0 0 0 6px #10b9810d, 0 0 18px #10b981cc;
  }
}
.pv-h1.svelte-o3curx {
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #1a0611;
  margin: 0 0 14px;
  max-width: 820px;
}
.pv-lead.svelte-o3curx {
  max-width: 660px;
  margin: 0 0 28px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
}
.pv-meta.svelte-o3curx {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  background: #ffffffd9;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 50px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px #2d124812;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}
.pv-meta-i.svelte-o3curx {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pv-meta-i.svelte-o3curx svg:where(.svelte-o3curx) {
  color: var(--rose);
  flex-shrink: 0;
}
.pv-meta-i.svelte-o3curx strong:where(.svelte-o3curx) {
  color: #1a0611;
  font-weight: 700;
  margin-left: 2px;
}
.pv-meta-sep.svelte-o3curx {
  color: var(--text-dim, #c9b8d8);
}
.pv-sum-sec.svelte-o3curx {
  padding: 90px 0;
  background: linear-gradient(180deg, #fff, #fff7fb);
}
.pv-sec-head.svelte-o3curx {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.pv-eyebrow.svelte-o3curx {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--rose);
  margin-bottom: 16px;
}
.pv-eyebrow-line.svelte-o3curx {
  width: 30px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--rose));
}
.pv-eyebrow-line.svelte-o3curx:last-child {
  background: linear-gradient(90deg, var(--rose), transparent);
}
.pv-h2.svelte-o3curx {
  font-size: clamp(1.7rem, 3.3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.1;
  color: #1a0611;
  margin: 0 0 14px;
}
.pv-sub.svelte-o3curx {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 auto;
  max-width: 560px;
}
.pv-sum-grid.svelte-o3curx {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.pv-sum-card.svelte-o3curx {
  position: relative;
  overflow: hidden;
  padding: 26px 22px 22px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.12);
  border-radius: 20px;
  box-shadow: 0 10px 28px #2d12480f;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s,
    border-color 0.35s;
}
.pv-sum-card.svelte-o3curx:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--pv-grad);
  opacity: 0;
  transition: opacity 0.3s;
}
.pv-sum-card.svelte-o3curx:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 22px 48px var(--pv-shadow);
}
.pv-sum-card.svelte-o3curx:hover:before {
  opacity: 1;
}
.pv-tone-rose.svelte-o3curx {
  --pv-grad: linear-gradient(90deg, var(--rose), #f472b6);
  --pv-shadow: rgba(233, 30, 140, 0.22);
}
.pv-tone-gold.svelte-o3curx {
  --pv-grad: linear-gradient(90deg, #fbbf24, #d97706);
  --pv-shadow: rgba(245, 158, 11, 0.22);
}
.pv-tone-green.svelte-o3curx {
  --pv-grad: linear-gradient(90deg, #34d399, #059669);
  --pv-shadow: rgba(16, 185, 129, 0.22);
}
.pv-tone-peach.svelte-o3curx {
  --pv-grad: linear-gradient(90deg, #fb923c, #ea580c);
  --pv-shadow: rgba(249, 115, 22, 0.22);
}
.pv-sum-ic.svelte-o3curx {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.pv-sum-card.svelte-o3curx h3:where(.svelte-o3curx) {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #1a0611;
  margin: 0 0 8px;
}
.pv-sum-card.svelte-o3curx p:where(.svelte-o3curx) {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}
.tc-rules-sec.svelte-o3curx {
  position: relative;
  overflow: hidden;
  padding: 110px 0 120px;
  background: radial-gradient(
      800px 500px at 50% 0%,
      rgba(245, 158, 11, 0.1),
      transparent 55%
    ),
    radial-gradient(
      700px 400px at 0% 100%,
      rgba(233, 30, 140, 0.08),
      transparent 55%
    ),
    linear-gradient(180deg, #fff8f3, #fff0f7);
  color: #1a0611;
  border-bottom: 1px solid rgba(233, 30, 140, 0.1);
}
.tc-rules-bg.svelte-o3curx {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
}
.tc-rules-orb.svelte-o3curx {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
}
.tc-rules-orb-1.svelte-o3curx {
  top: -120px;
  left: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.32),
    transparent 70%
  );
}
.tc-rules-orb-2.svelte-o3curx {
  bottom: -140px;
  right: -100px;
  width: 460px;
  height: 460px;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.28),
    transparent 70%
  );
}
.tc-rules-grid-bg.svelte-o3curx {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(
      rgba(233, 30, 140, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(233, 30, 140, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    #000 35%,
    transparent 75%
  );
  mask-image: radial-gradient(ellipse at center, #000 35%, transparent 75%);
}
.tc-rules-head.svelte-o3curx {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.tc-rules-eyebrow.svelte-o3curx {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 7px 14px 7px 12px;
  background: #ffffffd9;
  border: 1px solid rgba(233, 30, 140, 0.2);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: #b91c5c;
  box-shadow: 0 6px 18px #e91e8c1a;
  margin-bottom: 22px;
}
.tc-rules-dot.svelte-o3curx {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e91e8c, #f59e0b);
  box-shadow: 0 0 0 3px #e91e8c33, 0 0 14px #f59e0bb3;
  animation: svelte-o3curx-tcPulse 2.4s ease-in-out infinite;
}
@keyframes svelte-o3curx-tcPulse {
  0%,
  to {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.25);
    opacity: 0.75;
  }
}
.tc-rules-count.svelte-o3curx {
  padding: 2px 8px;
  border-radius: 20px;
  background: linear-gradient(135deg, #e91e8c, #f59e0b);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.14em;
}
.tc-rules-h2.svelte-o3curx {
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin: 0 0 16px;
  color: #1a0611;
}
.tc-rules-grad.svelte-o3curx {
  background: linear-gradient(135deg, #e91e8c, #f472b6 40%, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tc-rules-sub.svelte-o3curx {
  font-size: 1.02rem;
  line-height: 1.7;
  color: #6b5468;
  max-width: 580px;
  margin: 0 auto;
}
.tc-rules-grid.svelte-o3curx {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.tc-rule.svelte-o3curx {
  position: relative;
  padding: 28px 24px 22px;
  background: linear-gradient(180deg, #fff, #fff7fb);
  border: 1px solid rgba(233, 30, 140, 0.1);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 30px #2d12480f;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s,
    box-shadow 0.3s;
}
.tc-rule.svelte-o3curx:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 22px;
  padding: 1px;
  background: var(--tc-grad, linear-gradient(135deg, #e91e8c, #f59e0b));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.tc-rule.svelte-o3curx:after {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  border-radius: 24px;
  background: var(
    --tc-glow,
    radial-gradient(circle at 50% 0%, rgba(233, 30, 140, 0.25), transparent 60%)
  );
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: -1;
}
.tc-rule.svelte-o3curx:hover {
  transform: translateY(-8px);
  border-color: transparent;
  box-shadow: 0 28px 56px #e91e8c2e, 0 10px 20px #f59e0b1a;
}
.tc-rule.svelte-o3curx:hover:before,
.tc-rule.svelte-o3curx:hover:after {
  opacity: 1;
}
.tc-rule-num.svelte-o3curx {
  position: absolute;
  top: -10px;
  right: 10px;
  font-size: 92px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.06em;
  background: linear-gradient(180deg, #e91e8c14, #f59e0b00 75%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  pointer-events: none;
  transition: all 0.5s;
}
.tc-rule-head.svelte-o3curx {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.tc-rule-ic.svelte-o3curx {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tc-ic-bg);
  color: var(--tc-ic-fg);
  border: 1px solid var(--tc-ic-br);
  box-shadow: 0 8px 20px var(--tc-ic-sh);
  flex-shrink: 0;
}
.tc-rule-tag.svelte-o3curx {
  padding: 4px 10px;
  background: #e91e8c0f;
  border: 1px solid rgba(233, 30, 140, 0.14);
  border-radius: 50px;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: #b91c5c;
}
.tc-rule-title.svelte-o3curx {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1a0611;
  margin: 0 0 10px;
  position: relative;
  z-index: 1;
}
.tc-rule-desc.svelte-o3curx {
  font-size: 13.5px;
  line-height: 1.65;
  color: #6b5468;
  margin: 0 0 20px;
  position: relative;
  z-index: 1;
}
.tc-rule-foot.svelte-o3curx {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px dashed rgba(233, 30, 140, 0.14);
  position: relative;
  z-index: 1;
}
.tc-rule-check.svelte-o3curx {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 9px;
  background: #10b9811a;
  color: #047857;
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 50px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.tc-rule-line.svelte-o3curx {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--tc-grad), transparent);
  opacity: 0.5;
}
.tc-rule-rose.svelte-o3curx {
  --tc-grad: linear-gradient(135deg, #e91e8c, #f472b6);
  --tc-glow: radial-gradient(
    circle at 50% 0%,
    rgba(233, 30, 140, 0.22),
    transparent 60%
  );
  --tc-ic-bg: linear-gradient(135deg, #ffe4ef, #ffd1e3);
  --tc-ic-fg: #c2185b;
  --tc-ic-br: rgba(233, 30, 140, 0.25);
  --tc-ic-sh: rgba(233, 30, 140, 0.22);
}
.tc-rule-gold.svelte-o3curx {
  --tc-grad: linear-gradient(135deg, #f59e0b, #d97706);
  --tc-glow: radial-gradient(
    circle at 50% 0%,
    rgba(245, 158, 11, 0.22),
    transparent 60%
  );
  --tc-ic-bg: linear-gradient(135deg, #fff0db, #ffe0b3);
  --tc-ic-fg: #b45309;
  --tc-ic-br: rgba(245, 158, 11, 0.28);
  --tc-ic-sh: rgba(245, 158, 11, 0.22);
}
.tc-rule-green.svelte-o3curx {
  --tc-grad: linear-gradient(135deg, #10b981, #059669);
  --tc-glow: radial-gradient(
    circle at 50% 0%,
    rgba(16, 185, 129, 0.22),
    transparent 60%
  );
  --tc-ic-bg: linear-gradient(135deg, #dcfce7, #bbf7d0);
  --tc-ic-fg: #059669;
  --tc-ic-br: rgba(16, 185, 129, 0.28);
  --tc-ic-sh: rgba(16, 185, 129, 0.22);
}
.tc-rule-peach.svelte-o3curx {
  --tc-grad: linear-gradient(135deg, #fb923c, #ea580c);
  --tc-glow: radial-gradient(
    circle at 50% 0%,
    rgba(249, 115, 22, 0.22),
    transparent 60%
  );
  --tc-ic-bg: linear-gradient(135deg, #fff1ec, #ffd8c2);
  --tc-ic-fg: #ea580c;
  --tc-ic-br: rgba(249, 115, 22, 0.28);
  --tc-ic-sh: rgba(249, 115, 22, 0.22);
}
@media (max-width: 1024px) {
  .tc-rules-grid.svelte-o3curx {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .tc-rules-sec.svelte-o3curx {
    padding: 88px 0 96px;
  }
}
@media (max-width: 600px) {
  .tc-rules-grid.svelte-o3curx {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .tc-rules-sec.svelte-o3curx {
    padding: 64px 0 72px;
  }
  .tc-rule.svelte-o3curx {
    padding: 24px 20px 18px;
  }
  .tc-rule-num.svelte-o3curx {
    font-size: 76px;
    top: -6px;
  }
  .tc-rule-title.svelte-o3curx {
    font-size: 16px;
  }
  .tc-rule-desc.svelte-o3curx {
    font-size: 13px;
  }
  .tc-rules-head.svelte-o3curx {
    margin-bottom: 40px;
  }
}
.dc-tix-sec.svelte-o3curx {
  position: relative;
  overflow: hidden;
  padding: 110px 0 130px;
  background: radial-gradient(
      700px 480px at 80% 0%,
      rgba(245, 158, 11, 0.1),
      transparent 55%
    ),
    radial-gradient(
      700px 400px at 0% 100%,
      rgba(233, 30, 140, 0.08),
      transparent 55%
    ),
    linear-gradient(180deg, #fff8f3, #fff0f7);
  border-bottom: 1px solid rgba(233, 30, 140, 0.1);
}
.dc-tix-bg.svelte-o3curx {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
}
.dc-tix-blob.svelte-o3curx {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.dc-tix-blob-1.svelte-o3curx {
  top: -100px;
  right: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.32),
    transparent 70%
  );
}
.dc-tix-blob-2.svelte-o3curx {
  bottom: -120px;
  left: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.28),
    transparent 70%
  );
}
.dc-tix-blob-3.svelte-o3curx {
  top: 50%;
  left: 45%;
  width: 240px;
  height: 240px;
  background: radial-gradient(
    circle,
    rgba(251, 146, 60, 0.18),
    transparent 70%
  );
  transform: translate(-50%, -50%);
}
.dc-tix-sec.svelte-o3curx > .grid-container:where(.svelte-o3curx) {
  position: relative;
  z-index: 1;
}
.dc-tix-head.svelte-o3curx {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}
.dc-tix-eyebrow.svelte-o3curx {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 12px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.18);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #b91c5c;
  box-shadow: 0 6px 20px #e91e8c1a;
  margin-bottom: 22px;
}
.dc-tix-eyebrow.svelte-o3curx svg:where(.svelte-o3curx) {
  color: #ea580c;
}
.dc-tix-eyebrow-pill.svelte-o3curx {
  padding: 3px 8px;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  color: #fff;
  border-radius: 20px;
  font-size: 9.5px;
  letter-spacing: 0.16em;
}
.dc-tix-h2.svelte-o3curx {
  font-size: clamp(2rem, 4.4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: #1a0611;
  margin: 0 0 14px;
}
.dc-tix-grad.svelte-o3curx {
  background: linear-gradient(135deg, #e91e8c, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.dc-tix-sub.svelte-o3curx {
  font-size: 1.02rem;
  line-height: 1.7;
  color: #6b5468;
  max-width: 560px;
  margin: 0 auto;
}
.dc-tix-grid.svelte-o3curx {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  perspective: 1400px;
}
.dc-tix.svelte-o3curx {
  position: relative;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 50px -10px #2d12481f, 0 4px 10px #2d12480a;
  transform: rotate(calc(var(--dc-i, 0) * 0.6deg - 0.9deg));
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s;
  isolation: isolate;
}
.dc-tix.svelte-o3curx:hover {
  transform: rotate(0) translateY(-10px) scale(1.02);
  box-shadow: 0 36px 60px -10px var(--dc-shadow, rgba(233, 30, 140, 0.32)),
    0 8px 16px #2d12480f;
  z-index: 2;
}
.dc-tix-top.svelte-o3curx {
  position: relative;
  padding: 26px 22px 30px;
  background: var(--dc-top-bg);
  color: var(--dc-top-fg);
  overflow: hidden;
}
.dc-tix-pattern.svelte-o3curx {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.4) 1.2px,
    transparent 1.5px
  );
  background-size: 14px 14px;
  opacity: 0.35;
  pointer-events: none;
}
.dc-tix-stamp.svelte-o3curx {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 6px 10px;
  background: #ffffff8c;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px dashed rgba(255, 255, 255, 0.85);
  border-radius: 10px;
  line-height: 1;
  transform: rotate(6deg);
  box-shadow: 0 4px 12px #0000000f;
}
.dc-tix-stamp.svelte-o3curx span:where(.svelte-o3curx) {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--dc-top-fg);
  opacity: 0.78;
}
.dc-tix-stamp.svelte-o3curx strong:where(.svelte-o3curx) {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--dc-top-fg);
  margin-top: 3px;
}
.dc-tix-icon.svelte-o3curx {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: #ffffffb3;
  border: 1px solid rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dc-icon-fg);
  box-shadow: 0 8px 18px #00000014, inset 0 1px #fffffff2;
}
.dc-tix-perf.svelte-o3curx {
  position: relative;
  height: 18px;
  background: var(--dc-top-bg);
  display: flex;
  align-items: center;
  padding: 0 8px;
}
.dc-tix-cut.svelte-o3curx {
  width: 18px;
  height: 18px;
  background: #fff8f3;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px #e91e8c14;
}
.dc-tix-cut-l.svelte-o3curx {
  margin-left: -16px;
}
.dc-tix-cut-r.svelte-o3curx {
  margin-right: -16px;
  margin-left: auto;
}
.dc-tix-dash.svelte-o3curx {
  flex: 1;
  height: 0;
  border-top: 1.5px dashed rgba(255, 255, 255, 0.85);
  margin: 0 8px;
}
.dc-tix-bottom.svelte-o3curx {
  padding: 22px 22px 18px;
  background: #fff;
}
.dc-tix-bottom.svelte-o3curx h3:where(.svelte-o3curx) {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1a0611;
  margin: 0 0 8px;
}
.dc-tix-bottom.svelte-o3curx p:where(.svelte-o3curx) {
  font-size: 13.5px;
  line-height: 1.65;
  color: #6b5468;
  margin: 0 0 18px;
}
.dc-tix-foot.svelte-o3curx {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px dashed rgba(233, 30, 140, 0.14);
}
.dc-tix-ack.svelte-o3curx {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: #10b9811a;
  color: #047857;
  border: 1px solid rgba(16, 185, 129, 0.28);
  border-radius: 50px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.dc-tix-of.svelte-o3curx {
  font-size: 11px;
  font-weight: 700;
  color: var(--dc-icon-fg);
}
.dc-tix-of.svelte-o3curx em:where(.svelte-o3curx) {
  font-style: normal;
  color: #c9b8d8;
  font-weight: 500;
}
.dc-tix-rose.svelte-o3curx {
  --dc-top-bg: linear-gradient(135deg, #ffd1e3, #ffb1d0);
  --dc-top-fg: #9d174d;
  --dc-icon-fg: #c2185b;
  --dc-shadow: rgba(233, 30, 140, 0.32);
}
.dc-tix-gold.svelte-o3curx {
  --dc-top-bg: linear-gradient(135deg, #ffe5b6, #fbbf24);
  --dc-top-fg: #8a4a00;
  --dc-icon-fg: #b45309;
  --dc-shadow: rgba(245, 158, 11, 0.32);
}
.dc-tix-green.svelte-o3curx {
  --dc-top-bg: linear-gradient(135deg, #bbf7d0, #6ee7b7);
  --dc-top-fg: #064e3b;
  --dc-icon-fg: #059669;
  --dc-shadow: rgba(16, 185, 129, 0.32);
}
.dc-tix-peach.svelte-o3curx {
  --dc-top-bg: linear-gradient(135deg, #fed7c0, #fb923c);
  --dc-top-fg: #7c2d12;
  --dc-icon-fg: #ea580c;
  --dc-shadow: rgba(249, 115, 22, 0.32);
}
@media (max-width: 1024px) {
  .dc-tix-grid.svelte-o3curx {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .dc-tix-sec.svelte-o3curx {
    padding: 88px 0 100px;
  }
  .dc-tix-head.svelte-o3curx {
    margin-bottom: 48px;
  }
  .dc-tix.svelte-o3curx {
    transform: rotate(0);
  }
}
@media (max-width: 600px) {
  .dc-tix-grid.svelte-o3curx {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .dc-tix-sec.svelte-o3curx {
    padding: 64px 0 80px;
  }
  .dc-tix-head.svelte-o3curx {
    margin-bottom: 36px;
  }
  .dc-tix-top.svelte-o3curx {
    padding: 22px 20px 26px;
  }
  .dc-tix-icon.svelte-o3curx {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }
  .dc-tix-bottom.svelte-o3curx {
    padding: 20px 20px 16px;
  }
  .dc-tix-bottom.svelte-o3curx h3:where(.svelte-o3curx) {
    font-size: 16.5px;
  }
  .dc-tix-bottom.svelte-o3curx p:where(.svelte-o3curx) {
    font-size: 13.5px;
  }
}
.pv-body-sec.svelte-o3curx {
  padding: 80px 0 110px;
  background: linear-gradient(180deg, #fff7fb, #fff);
}
.pv-body.svelte-o3curx {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}
.pv-toc.svelte-o3curx {
  position: sticky;
  top: 80px;
  align-self: start;
  z-index: 10;
  padding: 16px 14px;
  background: radial-gradient(
      200px 160px at 0% 0%,
      rgba(233, 30, 140, 0.08),
      transparent 60%
    ),
    radial-gradient(
      200px 160px at 100% 100%,
      rgba(245, 158, 11, 0.08),
      transparent 60%
    ),
    linear-gradient(180deg, #fff, #fff7fb);
  border: 1px solid rgba(233, 30, 140, 0.12);
  border-radius: 20px;
  box-shadow: 0 18px 40px #2d124814;
}
.pv-toc-header.svelte-o3curx {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  margin-bottom: 12px;
  border-bottom: 1px dashed rgba(233, 30, 140, 0.15);
}
.pv-toc-progress.svelte-o3curx {
  position: relative;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pv-toc-progress.svelte-o3curx svg:where(.svelte-o3curx) {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.pv-toc-progress-n.svelte-o3curx {
  position: relative;
  z-index: 1;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1a0611;
}
.pv-toc-progress-n.svelte-o3curx em:where(.svelte-o3curx) {
  font-style: normal;
  font-size: 8.5px;
  font-weight: 500;
  color: var(--text-dim, #9b8aaf);
  margin-left: 1px;
}
.pv-toc-hl.svelte-o3curx {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #1a0611;
}
.pv-toc-sl.svelte-o3curx {
  font-size: 10.5px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 2px;
}
.pv-toc-nav.svelte-o3curx {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 16px;
}
.pv-toc-link.svelte-o3curx {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 11px 14px 11px 10px;
  margin: 2px 0;
  border-radius: 12px;
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 500;
  color: #4a2d5e;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.pv-toc-tick.svelte-o3curx {
  width: 3px;
  height: 14px;
  border-radius: 50px;
  background: #e91e8c26;
  flex-shrink: 0;
  transition: all 0.3s;
}
.pv-toc-n.svelte-o3curx {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 22px;
  padding: 0 7px;
  background: #e91e8c1a;
  color: var(--rose-dark, #c2185b);
  border-radius: 50px;
  font-size: 10.5px;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.3s;
}
.pv-toc-lbl.svelte-o3curx {
  flex: 1;
  min-width: 0;
}
.pv-toc-arr.svelte-o3curx {
  color: var(--text-dim, #c9b8d8);
  flex-shrink: 0;
  opacity: 0;
  transform: translate(-4px);
  transition: all 0.3s;
}
.pv-toc-link.svelte-o3curx:hover {
  background: #e91e8c0f;
  color: var(--rose);
}
.pv-toc-link.svelte-o3curx:hover .pv-toc-tick:where(.svelte-o3curx) {
  background: var(--rose);
  height: 18px;
}
.pv-toc-link.svelte-o3curx:hover .pv-toc-n:where(.svelte-o3curx) {
  background: #e91e8c2e;
}
.pv-toc-link.svelte-o3curx:hover .pv-toc-arr:where(.svelte-o3curx) {
  opacity: 1;
  transform: translate(0);
  color: var(--rose);
}
.pv-toc-link.is-active.svelte-o3curx {
  background: linear-gradient(135deg, #e91e8c1a, #f59e0b14);
  color: var(--rose);
  box-shadow: inset 0 0 0 1px #e91e8c2e;
}
.pv-toc-link.is-active.svelte-o3curx .pv-toc-tick:where(.svelte-o3curx) {
  background: linear-gradient(180deg, var(--rose), #f59e0b);
  height: 20px;
  box-shadow: 0 0 0 2px #e91e8c26;
}
.pv-toc-link.is-active.svelte-o3curx .pv-toc-n:where(.svelte-o3curx) {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  box-shadow: 0 4px 8px #e91e8c59;
}
.pv-toc-link.is-active.svelte-o3curx .pv-toc-arr:where(.svelte-o3curx) {
  opacity: 1;
  transform: translate(0);
  color: var(--rose);
}
.pv-toc-badges.svelte-o3curx {
  display: flex;
  gap: 5px;
  padding: 10px 2px;
  margin-bottom: 14px;
  border-top: 1px dashed rgba(233, 30, 140, 0.14);
  border-bottom: 1px dashed rgba(233, 30, 140, 0.14);
}
.pv-toc-badge.svelte-o3curx {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex: 1;
  padding: 6px 10px 6px 8px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.12);
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #1a0611;
  justify-content: center;
}
.pv-toc-badge.svelte-o3curx svg:where(.svelte-o3curx) {
  color: var(--rose);
}
.pv-toc-help.svelte-o3curx {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 12px 24px #e91e8c59;
  transition: all 0.3s;
}
.pv-toc-help-blob.svelte-o3curx {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.2),
    transparent 70%
  );
  pointer-events: none;
}
.pv-toc-help.svelte-o3curx:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px #e91e8c80;
  color: #fff;
}
.pv-toc-help-ic.svelte-o3curx {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #ffffff38;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}
.pv-toc-help-body.svelte-o3curx {
  flex: 1;
  min-width: 0;
  z-index: 1;
}
.pv-toc-help-body.svelte-o3curx strong:where(.svelte-o3curx) {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.pv-toc-help-body.svelte-o3curx span:where(.svelte-o3curx) {
  display: block;
  font-size: 10.5px;
  opacity: 0.88;
  margin-top: 1px;
}
.pv-toc-help-arr.svelte-o3curx {
  z-index: 1;
  transition: transform 0.3s;
}
.pv-toc-help.svelte-o3curx:hover .pv-toc-help-arr:where(.svelte-o3curx) {
  transform: translate(3px);
}
.pv-content.svelte-o3curx {
  max-width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.pv-section.svelte-o3curx {
  position: relative;
  padding: 28px 32px;
  background: #fff;
  border: 1px solid rgba(233, 30, 140, 0.1);
  border-radius: 20px;
  box-shadow: 0 10px 28px #2d12480f;
  scroll-margin-top: 120px;
  transition: box-shadow 0.35s, border-color 0.35s;
}
.pv-section.svelte-o3curx:hover {
  border-color: #e91e8c38;
  box-shadow: 0 20px 42px #e91e8c1f;
}
.pv-section.svelte-o3curx:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--rose), #f59e0b);
  opacity: 0.5;
  transition: opacity 0.35s, width 0.35s;
}
.pv-section.svelte-o3curx:hover:before {
  opacity: 1;
  width: 5px;
}
.pv-section-n.svelte-o3curx {
  position: absolute;
  top: 24px;
  right: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff7fb, #fff5ec);
  border: 1.5px dashed rgba(233, 30, 140, 0.25);
  color: transparent;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  font-style: italic;
  background-image: linear-gradient(135deg, var(--rose), #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pv-section.svelte-o3curx h2:where(.svelte-o3curx) {
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #1a0611;
  margin: 0 0 14px;
  padding-right: 60px;
  position: relative;
}
.pv-section.svelte-o3curx h2:where(.svelte-o3curx):after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), #f59e0b);
  border-radius: 2px;
  margin-top: 10px;
}
.pv-section.svelte-o3curx p:where(.svelte-o3curx) {
  font-size: 14.5px;
  line-height: 1.75;
  color: #3a2a4a;
  margin: 0 0 14px;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}
.pv-section.svelte-o3curx p:where(.svelte-o3curx):last-child {
  margin-bottom: 0;
}
.pv-section.svelte-o3curx p:where(.svelte-o3curx) strong:where(.svelte-o3curx) {
  color: #1a0611;
  font-weight: 700;
}
.pv-section.svelte-o3curx a:where(.svelte-o3curx) {
  color: var(--rose);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1.5px solid rgba(233, 30, 140, 0.3);
  transition: all 0.25s;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.pv-section.svelte-o3curx a:where(.svelte-o3curx):hover {
  color: var(--rose-dark, #c2185b);
  border-bottom-color: var(--rose);
}
.pv-list.svelte-o3curx {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}
.pv-list-item.svelte-o3curx {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  background: #fff7fb;
  border: 1px solid rgba(233, 30, 140, 0.1);
  border-radius: 14px;
  transition: all 0.25s;
}
.pv-list-item.svelte-o3curx:hover {
  border-color: #e91e8c40;
  transform: translate(3px);
}
.pv-list-ic.svelte-o3curx {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ffe4ef, #fff0db);
  color: var(--rose-dark, #c2185b);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pv-list-item.svelte-o3curx strong:where(.svelte-o3curx) {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: #1a0611;
  margin-bottom: 3px;
}
.pv-list-item.svelte-o3curx span:where(.svelte-o3curx) {
  display: block;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--text-muted);
}
.pv-list-item.svelte-o3curx em:where(.svelte-o3curx) {
  color: var(--rose);
  font-style: normal;
  font-weight: 700;
}
.pv-bullets.svelte-o3curx {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pv-bullets.svelte-o3curx li:where(.svelte-o3curx) {
  position: relative;
  padding: 8px 12px 8px 30px;
  font-size: 14px;
  line-height: 1.65;
  color: #2a1a3a;
  background: #fff7fb;
  border-radius: 10px;
  border: 1px solid rgba(233, 30, 140, 0.08);
}
.pv-bullets.svelte-o3curx li:where(.svelte-o3curx):before {
  content: "";
  position: absolute;
  top: 14px;
  left: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), #f59e0b);
  box-shadow: 0 2px 6px #e91e8c59;
}
.pv-note.svelte-o3curx {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  margin-top: 16px;
  background: linear-gradient(135deg, #e91e8c14, #f59e0b14);
  border: 1px dashed rgba(233, 30, 140, 0.3);
  border-radius: 14px;
}
.pv-note-ic.svelte-o3curx {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 14px #e91e8c59;
}
.pv-note.svelte-o3curx strong:where(.svelte-o3curx) {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--rose-dark, #c2185b);
  margin-bottom: 3px;
}
.pv-note.svelte-o3curx p:where(.svelte-o3curx) {
  font-size: 13.5px;
  line-height: 1.65;
  color: #1a0611;
  margin: 0;
}
.pv-contact-grid.svelte-o3curx {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 20px;
}
.pv-contact-card.svelte-o3curx {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
  text-decoration: none;
  background: #fff;
  border: 1.5px solid var(--border, #ead8f0);
  box-shadow: 0 8px 22px #2d12480f;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.pv-contact-card.svelte-o3curx:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 18px 18px 0 0;
  opacity: 0.6;
  transition: opacity 0.35s, height 0.35s;
}
.pv-contact-card.svelte-o3curx:hover {
  transform: translateY(-4px);
  border-color: transparent;
}
.pv-contact-card.svelte-o3curx:hover:before {
  opacity: 1;
  height: 4px;
}
.pv-contact-rose.svelte-o3curx {
  --pvc-shadow: rgba(233, 30, 140, 0.25);
}
.pv-contact-rose.svelte-o3curx:before {
  background: linear-gradient(90deg, var(--rose), var(--rose-dark));
}
.pv-contact-rose.svelte-o3curx:hover {
  box-shadow: 0 22px 44px var(--pvc-shadow);
}
.pv-contact-green.svelte-o3curx {
  --pvc-shadow: rgba(37, 211, 102, 0.25);
}
.pv-contact-green.svelte-o3curx:before {
  background: linear-gradient(90deg, #10b981, #059669);
}
.pv-contact-green.svelte-o3curx:hover {
  box-shadow: 0 22px 44px var(--pvc-shadow);
}
.pv-contact-badge.svelte-o3curx {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px 3px 7px;
  background: #e91e8c1a;
  color: var(--rose);
  border-radius: 50px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  z-index: 2;
}
.pv-contact-badge-g.svelte-o3curx {
  background: #10b9811f;
  color: #059669;
}
.pv-contact-badge-dot.svelte-o3curx {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 2px #e91e8c2e;
  animation: svelte-o3curx-pvPulse 2s ease-in-out infinite;
}
.pv-contact-badge-g.svelte-o3curx .pv-contact-badge-dot:where(.svelte-o3curx) {
  box-shadow: 0 0 0 2px #10b98138;
}
.pv-contact-ic.svelte-o3curx {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.35s;
}
.pv-contact-rose.svelte-o3curx .pv-contact-ic:where(.svelte-o3curx) {
  background: linear-gradient(135deg, #ffe4ef, #ffd1e3);
  color: var(--rose-dark, #c2185b);
  border: 1px solid rgba(233, 30, 140, 0.22);
}
.pv-contact-green.svelte-o3curx .pv-contact-ic:where(.svelte-o3curx) {
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.25);
}
.pv-contact-rose.svelte-o3curx:hover .pv-contact-ic:where(.svelte-o3curx) {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  border-color: transparent;
  transform: scale(1.06) rotate(-4deg);
}
.pv-contact-green.svelte-o3curx:hover .pv-contact-ic:where(.svelte-o3curx) {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border-color: transparent;
  transform: scale(1.06) rotate(-4deg);
}
.pv-contact-body.svelte-o3curx {
  flex: 1;
  min-width: 0;
}
.pv-contact-label.svelte-o3curx {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--text-dim, #9b8aaf);
  margin-bottom: 4px;
}
.pv-contact-card.svelte-o3curx strong:where(.svelte-o3curx) {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #1a0611;
  word-break: break-word;
  margin-bottom: 6px;
}
.pv-contact-card.svelte-o3curx span:where(.svelte-o3curx) {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  font-weight: 500;
  color: var(--text-muted);
  padding-top: 6px;
  border-top: 1px dashed rgba(233, 30, 140, 0.15);
}
.pv-contact-arr.svelte-o3curx {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff7fb;
  color: var(--rose);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.35s;
}
.pv-contact-green.svelte-o3curx .pv-contact-arr:where(.svelte-o3curx) {
  background: #ecfdf5;
  color: #059669;
}
.pv-contact-rose.svelte-o3curx:hover .pv-contact-arr:where(.svelte-o3curx) {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  transform: translate(4px);
}
.pv-contact-green.svelte-o3curx:hover .pv-contact-arr:where(.svelte-o3curx) {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  transform: translate(4px);
}
@media (max-width: 1024px) {
  .pv-hero.svelte-o3curx {
    padding: 64px 0 56px;
  }
  .pv-hero-inner.svelte-o3curx {
    grid-template-columns: 1fr 0.9fr;
    gap: 28px;
  }
  .pv-hero-vis.svelte-o3curx {
    max-width: 340px;
  }
  .pv-vault.svelte-o3curx {
    width: 190px;
    padding: 16px 16px 14px;
  }
  .pv-vault-shield.svelte-o3curx {
    width: 52px;
    height: 52px;
  }
  .pv-float-1.svelte-o3curx {
    left: 0;
  }
  .pv-float-2.svelte-o3curx {
    right: 0;
  }
  .pv-float-3.svelte-o3curx {
    left: 0;
  }
  .pv-crumb.svelte-o3curx {
    font-size: 13px;
  }
  .pv-chip.svelte-o3curx {
    font-size: 12px;
    letter-spacing: 0.12em;
    padding: 8px 15px 8px 13px;
  }
  .pv-h1.svelte-o3curx {
    font-size: clamp(1.95rem, 3.8vw, 2.6rem);
  }
  .pv-lead.svelte-o3curx {
    font-size: 1.08rem;
    line-height: 1.7;
  }
  .pv-meta.svelte-o3curx {
    padding: 10px 18px;
    font-size: 13px;
    gap: 12px;
  }
  .pv-meta-i.svelte-o3curx svg:where(.svelte-o3curx) {
    width: 15px;
    height: 15px;
  }
  .pv-sum-sec.svelte-o3curx {
    padding: 80px 0;
  }
  .pv-sum-grid.svelte-o3curx {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .pv-sum-card.svelte-o3curx {
    padding: 24px 22px 22px;
  }
  .pv-sum-card.svelte-o3curx h3:where(.svelte-o3curx) {
    font-size: 16px;
  }
  .pv-sum-card.svelte-o3curx p:where(.svelte-o3curx) {
    font-size: 14.5px;
    line-height: 1.65;
  }
  .pv-eyebrow.svelte-o3curx {
    font-size: 12px;
    letter-spacing: 0.2em;
  }
  .pv-h2.svelte-o3curx {
    font-size: 1.9rem;
  }
  .pv-sub.svelte-o3curx {
    font-size: 15.5px;
    line-height: 1.65;
  }
  .pv-body-sec.svelte-o3curx {
    padding: 64px 0 96px;
  }
  .pv-body.svelte-o3curx {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .pv-toc.svelte-o3curx {
    position: static;
    z-index: auto;
    padding: 18px 16px;
  }
  .pv-toc-hl.svelte-o3curx {
    font-size: 17px;
  }
  .pv-toc-sl.svelte-o3curx {
    font-size: 13.5px;
  }
  .pv-toc-nav.svelte-o3curx {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 12px;
  }
  .pv-toc-link.svelte-o3curx {
    font-size: 15.5px;
    padding: 13px 15px 13px 11px;
  }
  .pv-toc-n.svelte-o3curx {
    font-size: 12.5px;
    min-width: 32px;
    height: 24px;
  }
  .pv-toc-badges.svelte-o3curx {
    padding: 14px 2px 12px;
  }
  .pv-toc-badge.svelte-o3curx {
    font-size: 13px;
    padding: 7px 13px 7px 11px;
  }
  .pv-toc-help.svelte-o3curx {
    padding: 16px;
  }
  .pv-toc-help-body.svelte-o3curx strong:where(.svelte-o3curx) {
    font-size: 15px;
  }
  .pv-toc-help-body.svelte-o3curx span:where(.svelte-o3curx) {
    font-size: 13px;
  }
  .pv-content.svelte-o3curx {
    max-width: 100%;
    gap: 22px;
  }
  .pv-section.svelte-o3curx {
    padding: 32px 34px;
  }
  .pv-section.svelte-o3curx h2:where(.svelte-o3curx) {
    font-size: 1.7rem;
    padding-right: 72px;
  }
  .pv-section.svelte-o3curx p:where(.svelte-o3curx) {
    font-size: 17px;
    line-height: 1.75;
  }
  .pv-section-n.svelte-o3curx {
    top: 22px;
    right: 22px;
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  .pv-bullets.svelte-o3curx li:where(.svelte-o3curx) {
    font-size: 16px;
    padding: 12px 16px 12px 32px;
  }
  .pv-bullets.svelte-o3curx li:where(.svelte-o3curx):before {
    top: 17px;
    left: 14px;
    width: 8px;
    height: 8px;
  }
  .pv-list-item.svelte-o3curx {
    padding: 14px 18px;
  }
  .pv-list-ic.svelte-o3curx {
    width: 36px;
    height: 36px;
  }
  .pv-list-item.svelte-o3curx strong:where(.svelte-o3curx) {
    font-size: 15.5px;
  }
  .pv-list-item.svelte-o3curx span:where(.svelte-o3curx) {
    font-size: 15px;
    line-height: 1.65;
  }
  .pv-note.svelte-o3curx p:where(.svelte-o3curx) {
    font-size: 15px;
    line-height: 1.65;
  }
  .pv-note.svelte-o3curx strong:where(.svelte-o3curx) {
    font-size: 13.5px;
  }
  .pv-contact-card.svelte-o3curx {
    padding: 18px;
  }
  .pv-contact-label.svelte-o3curx {
    font-size: 10px;
  }
  .pv-contact-card.svelte-o3curx strong:where(.svelte-o3curx) {
    font-size: 14.5px;
  }
  .pv-contact-card.svelte-o3curx span:where(.svelte-o3curx) {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .pv-hero.svelte-o3curx {
    padding: 56px 0 52px;
  }
  .pv-hero-inner.svelte-o3curx {
    grid-template-columns: 1fr 0.85fr;
    gap: 20px;
  }
  .pv-hero-vis.svelte-o3curx {
    max-width: 260px;
    margin: 0;
  }
  .pv-vault.svelte-o3curx {
    width: 160px;
    padding: 14px 14px 12px;
  }
  .pv-vault-shield.svelte-o3curx {
    width: 44px;
    height: 44px;
    margin: 0 auto 10px;
  }
  .pv-vault-label.svelte-o3curx {
    font-size: 8.5px;
    margin-bottom: 10px;
  }
  .pv-vault-meter.svelte-o3curx {
    height: 4px;
    margin-bottom: 10px;
  }
  .pv-vault-rows.svelte-o3curx {
    gap: 4px;
  }
  .pv-vault-row.svelte-o3curx {
    padding: 5px 8px;
  }
  .pv-vault-k.svelte-o3curx,
  .pv-vault-v.svelte-o3curx {
    font-size: 9.5px;
  }
  .pv-float.svelte-o3curx {
    padding: 7px 10px 7px 6px;
  }
  .pv-float-ic.svelte-o3curx {
    width: 22px;
    height: 22px;
  }
  .pv-float-v.svelte-o3curx {
    font-size: 11px;
  }
  .pv-float-l.svelte-o3curx {
    font-size: 9.5px;
  }
  .pv-float-1.svelte-o3curx {
    left: 0;
    top: 4%;
  }
  .pv-float-2.svelte-o3curx {
    right: 0;
    top: 48%;
  }
  .pv-float-3.svelte-o3curx {
    left: 0;
    bottom: 4%;
  }
  .pv-crumb.svelte-o3curx {
    font-size: 13px;
  }
  .pv-chip.svelte-o3curx {
    font-size: 12px;
    letter-spacing: 0.12em;
    padding: 8px 15px 8px 13px;
  }
  .pv-h1.svelte-o3curx {
    font-size: 1.85rem;
    line-height: 1.15;
  }
  .pv-lead.svelte-o3curx {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 22px;
  }
  .pv-eyebrow.svelte-o3curx {
    font-size: 12px;
    letter-spacing: 0.18em;
  }
  .pv-h2.svelte-o3curx {
    font-size: 1.75rem;
  }
  .pv-sub.svelte-o3curx {
    font-size: 15.5px;
    line-height: 1.65;
  }
  .pv-sum-card.svelte-o3curx h3:where(.svelte-o3curx) {
    font-size: 15.5px;
  }
  .pv-sum-card.svelte-o3curx p:where(.svelte-o3curx) {
    font-size: 14px;
    line-height: 1.65;
  }
  .pv-toc-hl.svelte-o3curx {
    font-size: 16px;
  }
  .pv-toc-sl.svelte-o3curx {
    font-size: 13px;
  }
  .pv-toc-link.svelte-o3curx {
    font-size: 15px;
    padding: 12px 14px 12px 10px;
  }
  .pv-toc-n.svelte-o3curx {
    font-size: 12.5px;
    min-width: 31px;
    height: 23px;
  }
  .pv-toc-badge.svelte-o3curx {
    font-size: 12.5px;
    padding: 7px 12px 7px 10px;
  }
  .pv-toc-help-body.svelte-o3curx strong:where(.svelte-o3curx) {
    font-size: 14.5px;
  }
  .pv-toc-help-body.svelte-o3curx span:where(.svelte-o3curx) {
    font-size: 12.5px;
  }
  .pv-contact-label.svelte-o3curx {
    font-size: 10px;
  }
  .pv-contact-card.svelte-o3curx strong:where(.svelte-o3curx) {
    font-size: 14.5px;
  }
  .pv-contact-card.svelte-o3curx span:where(.svelte-o3curx) {
    font-size: 12px;
  }
  .pv-meta.svelte-o3curx {
    display: inline-flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .pv-meta-i.svelte-o3curx {
    width: fit-content;
    padding: 9px 16px 9px 14px;
    background: #fffffff2;
    border: 1px solid rgba(233, 30, 140, 0.14);
    border-radius: 50px;
    box-shadow: 0 4px 12px #2d12480d;
    font-size: 11.5px;
    transition: all 0.25s;
  }
  .pv-meta-i.svelte-o3curx:hover {
    transform: translate(3px);
    border-color: #e91e8c4d;
    box-shadow: 0 8px 18px #e91e8c1f;
  }
  .pv-meta-sep.svelte-o3curx {
    display: none;
  }
  .pv-sum-sec.svelte-o3curx,
  .pv-body-sec.svelte-o3curx {
    padding: 48px 0;
  }
  .pv-sum-grid.svelte-o3curx {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .pv-sum-card.svelte-o3curx {
    padding: 18px 16px 16px;
  }
  .pv-sum-ic.svelte-o3curx {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    margin-bottom: 12px;
  }
  .pv-sum-ic.svelte-o3curx svg:where(.svelte-o3curx) {
    width: 18px;
    height: 18px;
  }
  .pv-sum-card.svelte-o3curx h3:where(.svelte-o3curx) {
    font-size: 13.5px;
  }
  .pv-sum-card.svelte-o3curx p:where(.svelte-o3curx) {
    font-size: 12px;
    line-height: 1.55;
  }
  .pv-toc.svelte-o3curx {
    padding: 14px 12px;
    border-radius: 18px;
  }
  .pv-toc-header.svelte-o3curx {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .pv-toc-hl.svelte-o3curx {
    font-size: 15px;
  }
  .pv-toc-sl.svelte-o3curx {
    font-size: 12px;
  }
  .pv-toc-nav.svelte-o3curx {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 8px;
  }
  .pv-toc-link.svelte-o3curx {
    padding: 10px 11px 10px 8px;
    font-size: 14px;
    gap: 8px;
  }
  .pv-toc-n.svelte-o3curx {
    min-width: 28px;
    height: 22px;
    font-size: 11.5px;
    padding: 0 6px;
  }
  .pv-toc-tick.svelte-o3curx {
    width: 3px;
    height: 14px;
  }
  .pv-toc-badges.svelte-o3curx {
    gap: 6px;
    padding: 10px 0;
    margin-bottom: 12px;
  }
  .pv-toc-badge.svelte-o3curx {
    font-size: 12px;
    padding: 6px 11px 6px 9px;
  }
  .pv-toc-help.svelte-o3curx {
    padding: 14px;
  }
  .pv-toc-help-ic.svelte-o3curx {
    width: 34px;
    height: 34px;
  }
  .pv-toc-help-body.svelte-o3curx strong:where(.svelte-o3curx) {
    font-size: 14px;
  }
  .pv-toc-help-body.svelte-o3curx span:where(.svelte-o3curx) {
    font-size: 12px;
  }
  .pv-content.svelte-o3curx {
    gap: 20px;
  }
  .pv-section.svelte-o3curx {
    padding: 28px 26px;
    border-radius: 18px;
  }
  .pv-section.svelte-o3curx h2:where(.svelte-o3curx) {
    font-size: 1.65rem;
    margin-bottom: 14px;
    padding-right: 58px;
  }
  .pv-section.svelte-o3curx h2:where(.svelte-o3curx):after {
    width: 40px;
    height: 3px;
    margin-top: 10px;
  }
  .pv-section-n.svelte-o3curx {
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    font-size: 1.15rem;
    border-radius: 12px;
  }
  .pv-section.svelte-o3curx p:where(.svelte-o3curx),
  .pv-bullets.svelte-o3curx li:where(.svelte-o3curx) {
    font-size: 16.5px;
    line-height: 1.75;
  }
  .pv-bullets.svelte-o3curx li:where(.svelte-o3curx) {
    padding: 12px 16px 12px 34px;
  }
  .pv-bullets.svelte-o3curx li:where(.svelte-o3curx):before {
    top: 17px;
    left: 14px;
    width: 8px;
    height: 8px;
  }
  .pv-list-item.svelte-o3curx {
    padding: 14px 16px;
    gap: 12px;
  }
  .pv-list-ic.svelte-o3curx {
    width: 36px;
    height: 36px;
  }
  .pv-list-item.svelte-o3curx strong:where(.svelte-o3curx) {
    font-size: 15.5px;
  }
  .pv-list-item.svelte-o3curx span:where(.svelte-o3curx) {
    font-size: 15px;
    line-height: 1.65;
  }
  .pv-note.svelte-o3curx {
    padding: 14px 16px;
    gap: 10px;
  }
  .pv-note-ic.svelte-o3curx {
    width: 30px;
    height: 30px;
  }
  .pv-note.svelte-o3curx p:where(.svelte-o3curx) {
    font-size: 15px;
    line-height: 1.65;
  }
  .pv-note.svelte-o3curx strong:where(.svelte-o3curx) {
    font-size: 13.5px;
  }
  .pv-contact-grid.svelte-o3curx {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
@media (max-width: 600px) {
  .pv-hero.svelte-o3curx {
    padding: 48px 0 44px;
  }
  .pv-hero-inner.svelte-o3curx {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .pv-hero-vis.svelte-o3curx {
    max-width: 300px;
    margin: 0 auto;
  }
  .pv-vault.svelte-o3curx {
    width: 200px;
    padding: 18px 18px 14px;
  }
  .pv-vault-shield.svelte-o3curx {
    width: 54px;
    height: 54px;
  }
  .pv-vault-label.svelte-o3curx {
    font-size: 9.5px;
  }
  .pv-vault-k.svelte-o3curx,
  .pv-vault-v.svelte-o3curx {
    font-size: 10.5px;
  }
  .pv-float-1.svelte-o3curx {
    left: 0;
  }
  .pv-float-2.svelte-o3curx {
    right: 0;
  }
  .pv-float-3.svelte-o3curx {
    left: 0;
  }
  .pv-h1.svelte-o3curx {
    font-size: 1.75rem;
    line-height: 1.2;
  }
  .pv-lead.svelte-o3curx {
    font-size: 1rem;
    line-height: 1.65;
  }
  .pv-chip.svelte-o3curx {
    font-size: 11px;
    letter-spacing: 0.1em;
    padding: 7px 13px 7px 11px;
  }
  .pv-crumb.svelte-o3curx {
    font-size: 12px;
  }
  .pv-sum-sec.svelte-o3curx,
  .pv-body-sec.svelte-o3curx {
    padding: 48px 0 56px;
  }
  .pv-sec-head.svelte-o3curx {
    margin-bottom: 32px;
  }
  .pv-h2.svelte-o3curx {
    font-size: 1.7rem;
    line-height: 1.2;
  }
  .pv-sub.svelte-o3curx {
    font-size: 14.5px;
    line-height: 1.65;
  }
  .pv-eyebrow.svelte-o3curx {
    font-size: 11px;
    letter-spacing: 0.16em;
    gap: 10px;
  }
  .pv-eyebrow-line.svelte-o3curx {
    width: 22px;
  }
  .pv-sum-card.svelte-o3curx h3:where(.svelte-o3curx) {
    font-size: 15.5px;
  }
  .pv-sum-card.svelte-o3curx p:where(.svelte-o3curx) {
    font-size: 14px;
    line-height: 1.65;
  }
  .pv-toc-hl.svelte-o3curx {
    font-size: 14px;
  }
  .pv-toc-sl.svelte-o3curx {
    font-size: 11.5px;
  }
  .pv-toc-link.svelte-o3curx {
    font-size: 13.5px;
    padding: 11px 14px 11px 10px;
  }
  .pv-toc-n.svelte-o3curx {
    font-size: 11px;
    min-width: 28px;
    height: 22px;
  }
  .pv-toc-badge.svelte-o3curx {
    font-size: 11px;
    padding: 6px 11px 6px 9px;
  }
  .pv-toc-help-body.svelte-o3curx strong:where(.svelte-o3curx) {
    font-size: 13px;
  }
  .pv-toc-help-body.svelte-o3curx span:where(.svelte-o3curx) {
    font-size: 11.5px;
  }
  .pv-contact-label.svelte-o3curx {
    font-size: 10px;
  }
  .pv-contact-card.svelte-o3curx strong:where(.svelte-o3curx) {
    font-size: 14.5px;
  }
  .pv-contact-card.svelte-o3curx span:where(.svelte-o3curx) {
    font-size: 12px;
  }
  .pv-meta-i.svelte-o3curx {
    font-size: 12.5px;
    padding: 10px 18px 10px 16px;
  }
  .pv-meta-i.svelte-o3curx svg:where(.svelte-o3curx) {
    width: 14px;
    height: 14px;
  }
  .pv-sum-grid.svelte-o3curx {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .pv-toc-nav.svelte-o3curx {
    grid-template-columns: 1fr;
  }
  .pv-toc-link.svelte-o3curx {
    padding: 8px 10px 8px 6px;
    font-size: 12px;
  }
  .pv-toc-link.svelte-o3curx .pv-toc-arr:where(.svelte-o3curx) {
    display: none;
  }
  .pv-section.svelte-o3curx {
    padding: 22px 18px 20px;
    border-radius: 14px;
  }
  .pv-section.svelte-o3curx:before {
    width: 3px;
  }
  .pv-section.svelte-o3curx h2:where(.svelte-o3curx) {
    font-size: 1.3rem;
    padding-right: 0;
  }
  .pv-section-n.svelte-o3curx {
    position: relative;
    top: auto;
    right: auto;
    width: 38px;
    height: 38px;
    font-size: 1rem;
    margin-bottom: 12px;
  }
  .pv-section.svelte-o3curx p:where(.svelte-o3curx),
  .pv-bullets.svelte-o3curx li:where(.svelte-o3curx),
  .pv-list-item.svelte-o3curx span:where(.svelte-o3curx) {
    font-size: 14.5px;
    line-height: 1.7;
  }
  .pv-list-item.svelte-o3curx strong:where(.svelte-o3curx) {
    font-size: 14px;
  }
  .pv-note.svelte-o3curx p:where(.svelte-o3curx) {
    font-size: 13.5px;
  }
}
@media (max-width: 380px) {
  .pv-h1.svelte-o3curx {
    font-size: 1.5rem;
  }
  .pv-lead.svelte-o3curx {
    font-size: 0.95rem;
  }
  .pv-h2.svelte-o3curx {
    font-size: 1.45rem;
  }
  .pv-sub.svelte-o3curx {
    font-size: 13.5px;
  }
  .pv-section.svelte-o3curx h2:where(.svelte-o3curx) {
    font-size: 1.2rem;
  }
  .pv-section.svelte-o3curx p:where(.svelte-o3curx),
  .pv-bullets.svelte-o3curx li:where(.svelte-o3curx) {
    font-size: 13.5px;
  }
  .pv-section.svelte-o3curx {
    padding: 20px 16px 18px;
  }
  .pv-sum-card.svelte-o3curx h3:where(.svelte-o3curx) {
    font-size: 14.5px;
  }
  .pv-sum-card.svelte-o3curx p:where(.svelte-o3curx) {
    font-size: 13px;
  }
  .pv-toc.svelte-o3curx {
    padding: 12px 10px;
  }
  .pv-toc-link.svelte-o3curx {
    font-size: 12.5px;
  }
  .pv-contact-card.svelte-o3curx strong:where(.svelte-o3curx) {
    font-size: 13.5px;
  }
}

/*ends here*/


.favorite-toggle-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.favorite-toggle-btn.is-favorite svg {
    fill: #e91e63 !important;
    stroke: #e91e63 !important;
}

.favorite-toggle-btn svg {
    transition: transform 0.2s ease, fill 0.2s ease;
}

.favorite-toggle-btn:active svg {
    transform: scale(1.25);
}


/* Navbar Favorites Bubble Styling */
.nav-fav-bubble-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(233, 30, 140, 0.25);
    background: #fff;
    color: #e91e63;
    transition: all 0.2s ease;
    text-decoration: none;
}

.nav-fav-bubble-wrap:hover {
    border-color: #e91e63;
    transform: translateY(-1px);
}

/* Active filled heart state when items exist */
.nav-fav-bubble-wrap.has-favorites svg {
    fill: #e91e63;
}

/* Counter Badge Bubble */
.favorite-counter-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #e91e63;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    height: 20px;
    min-width: 20px;
    padding: 0 5px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(233, 30, 140, 0.4);
    line-height: 1;
}

/* Hide counter badge if 0 */
 

/* Completely hide notification badge when empty, zero, or un-favorited */
.favorite-counter-badge:empty,
.favorite-counter-badge[data-count="0"],
.favorite-counter-badge:not([data-count]),
.nav-fav-bubble-wrap:not(.has-favorites) .favorite-counter-badge {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}
