html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    font-family: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

html,
body {
    font-family: "Poppins", "Arial", sans-serif;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

*,
*:before,
*:after {
    box-sizing: border-box;
    font-family: inherit;
}

button,
input,
textarea,
select,
option {
    font-family: inherit;
}

:root {
    --omny-orange: #FE9B04;
    --omny-blue: #30C3F9;
    --omny-lime: #B9DC1B;
    --omny-pink: #FD5886;
    --ink: #101214;
    --muted: rgba(16, 18, 20, 0.70);
    --card: #FFFFFF;
    --r-xxl: 44px;
    --r-xl: 34px;
    --r-lg: 28px;
    --r-md: 18px;
    --r-sm: 14px;
}

body {
    color: var(--ink);
    background:
        radial-gradient(900px 420px at 30px 40px, rgba(48, 195, 249, 0.18), rgba(255, 255, 255, 0) 60%),
        radial-gradient(900px 420px at 100% 10px, rgba(253, 88, 134, 0.16), rgba(255, 255, 255, 0) 60%),
        radial-gradient(900px 520px at 40% 100%, rgba(185, 220, 27, 0.18), rgba(255, 255, 255, 0) 60%),
        linear-gradient(180deg, rgba(254, 155, 4, 0.06), rgba(255, 255, 255, 0) 320px),
        #FFFFFF;
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.header {
    position: sticky;
    top: 0px;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(16, 18, 20, 0.08);
}

.header_menu_left_logo {
    width: 200px;
    height: auto;
    padding: 18px 0px;
}

.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.header_menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header_menu_right_link {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.header_menu_right_link>a {
    text-decoration: none;
    color: var(--ink);
    font-size: 15px;
    font-weight: 700;
    padding: 12px 16px;
    border-radius: 999px;
    background:
        radial-gradient(18px 18px at 30% 40%, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0) 70%),
        rgba(16, 18, 20, 0.035);
    border: 1px solid rgba(16, 18, 20, 0.08);
    box-shadow: 0px 10px 20px rgba(16, 18, 20, 0.10);
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header_menu_right_link>a:hover {
    transform: translateY(-2px) rotate(-1deg);
    background:
        radial-gradient(22px 22px at 30% 40%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0) 70%),
        rgba(254, 155, 4, 0.14);
    box-shadow: 0px 16px 34px rgba(254, 155, 4, 0.22);
}

.slider_section {
    padding: 22px 0px 10px 0px;
}

.slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--r-xxl);
    background: rgba(255, 255, 255, 0.80);
    border: 1px solid rgba(16, 18, 20, 0.08);
    box-shadow: 0px 22px 50px rgba(16, 18, 20, 0.12);
}

.slider:before {
    content: "";
    position: absolute;
    inset: -120px -120px auto -120px;
    height: 240px;
    background: radial-gradient(220px 160px at 18% 40%, rgba(48, 195, 249, 0.20), rgba(255, 255, 255, 0) 70%),
        radial-gradient(220px 160px at 60% 20%, rgba(253, 88, 134, 0.18), rgba(255, 255, 255, 0) 70%),
        radial-gradient(220px 160px at 88% 60%, rgba(185, 220, 27, 0.20), rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.slider_track {
    display: flex;
    width: 100%;
    transform: translateX(0px);
    transition: transform 700ms ease;
    will-change: transform;
    position: relative;
    z-index: 1;
}

.slider_page {
    min-width: 100%;
    padding: 16px;
}

.slider_page_img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: calc(var(--r-xxl) - 12px);
    box-shadow: 0px 16px 36px rgba(16, 18, 20, 0.16);
    transform: translateZ(0);
}

.hero_overlay {
    position: absolute;
    left: 26px;
    bottom: 22px;
    width: 560px;
    max-width: calc(100% - 52px);
    padding: 18px 18px 16px 18px;
    border-radius: var(--r-xxl);
    background:
        radial-gradient(90px 70px at 14% 8%, rgba(254, 155, 4, 0.22), rgba(255, 255, 255, 0) 70%),
        radial-gradient(110px 80px at 86% 20%, rgba(48, 195, 249, 0.18), rgba(255, 255, 255, 0) 70%),
        radial-gradient(110px 80px at 70% 110%, rgba(253, 88, 134, 0.16), rgba(255, 255, 255, 0) 70%),
        rgba(255, 255, 255, 0.92);
    border: 2px solid rgba(16, 18, 20, 0.10);
    box-shadow: 0px 18px 45px rgba(16, 18, 20, 0.14);
    z-index: 3;
}

.hero_overlay:after {
    content: "";
    position: absolute;
    right: -18px;
    top: -18px;
    width: 64px;
    height: 64px;
    border-radius: 22px;
    transform: rotate(10deg);
    background:
        radial-gradient(18px 18px at 30% 30%, rgba(255, 255, 255, 0.90), rgba(255, 255, 255, 0) 70%),
        rgba(185, 220, 27, 0.65);
    box-shadow: 0px 14px 28px rgba(16, 18, 20, 0.14);
}

.hero_badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.hero_badge {
    font-size: 13px;
    font-weight: 800;
    padding: 9px 12px;
    border-radius: 999px;
    color: var(--ink);
    border: 2px solid rgba(16, 18, 20, 0.10);
    background: rgba(255, 255, 255, 0.70);
    box-shadow: 0px 10px 18px rgba(16, 18, 20, 0.10);
    transform: rotate(-1deg);
}

.badge_orange {
    background: rgba(254, 155, 4, 0.22);
    border-color: rgba(254, 155, 4, 0.45);
}

.badge_blue {
    background: rgba(48, 195, 249, 0.22);
    border-color: rgba(48, 195, 249, 0.45);
}

.badge_pink {
    background: rgba(253, 88, 134, 0.22);
    border-color: rgba(253, 88, 134, 0.45);
}

.hero_overlay h1 {
    font-size: 32px;
    font-weight: 900;
    line-height: 36px;
    margin-bottom: 8px;
}

.hero_overlay p {
    font-size: 15px;
    line-height: 22px;
    color: var(--muted);
    margin-bottom: 12px;
    font-weight: 600;
}

.hero_actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 15px;
    font-weight: 900;
    padding: 12px 18px;
    border-radius: 999px;
    border: 2px solid rgba(16, 18, 20, 0.10);
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn_primary {
    background: var(--omny-orange);
    color: #111111;
    border-color: rgba(16, 18, 20, 0.12);
    box-shadow: 0px 18px 36px rgba(254, 155, 4, 0.24);
}

.btn_primary:hover {
    transform: translateY(-2px) rotate(-1deg);
    box-shadow: 0px 22px 46px rgba(254, 155, 4, 0.28);
}

.btn_secondary {
    background: rgba(255, 255, 255, 0.85);
    color: var(--ink);
    box-shadow: 0px 14px 28px rgba(16, 18, 20, 0.10);
}

.btn_secondary:hover {
    transform: translateY(-2px) rotate(1deg);
    background: rgba(48, 195, 249, 0.16);
    box-shadow: 0px 18px 40px rgba(48, 195, 249, 0.20);
}

.slider_nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 999px;
    color: #111111;
    font-size: 30px;
    line-height: 56px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0px 18px 40px rgba(16, 18, 20, 0.16);
    transition: transform 160ms ease, filter 160ms ease;
}

.slider_prev {
    left: 18px;
    background: rgba(48, 195, 249, 0.94);
}

.slider_next {
    right: 18px;
    background: rgba(253, 88, 134, 0.94);
}

.slider_nav:hover {
    transform: translateY(-50%) scale(1.06) rotate(-2deg);
    filter: brightness(1.03);
}

.slider_dots {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 6;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    border: 2px solid rgba(16, 18, 20, 0.08);
    box-shadow: 0px 14px 30px rgba(16, 18, 20, 0.10);
}

.slider_dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    background: rgba(16, 18, 20, 0.22);
    transition: transform 160ms ease, background 160ms ease;
}

.slider_dot.is-active {
    background: var(--omny-lime);
    transform: scale(1.25);
}

.rituel_section {
    padding: 34px 0px 10px 0px;
    position: relative;
}

.rituel_section:before {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    top: -10px;
    height: 140px;
    background:
        radial-gradient(260px 140px at 12% 40%, rgba(254, 155, 4, 0.12), rgba(255, 255, 255, 0) 70%),
        radial-gradient(260px 140px at 50% 10%, rgba(48, 195, 249, 0.12), rgba(255, 255, 255, 0) 70%),
        radial-gradient(260px 140px at 88% 50%, rgba(253, 88, 134, 0.10), rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.section_head {
    text-align: center;
    margin-bottom: 18px;
}

.section_head h2 {
    font-size: 36px;
    font-weight: 900;
    line-height: 40px;
    margin-bottom: 10px;
}

.section_head p {
    font-size: 16px;
    line-height: 24px;
    color: var(--muted);
    font-weight: 600;
}

.rituel_cards {
    display: flex;
    gap: 18px;
    justify-content: center;
    align-items: stretch;
}

.rituel_card {
    width: 100%;
    max-width: 390px;
    border-radius: var(--r-xxl);
    border: 2px solid rgba(16, 18, 20, 0.10);
    background:
        radial-gradient(120px 90px at 20% 0%, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0) 70%),
        rgba(255, 255, 255, 0.90);
    box-shadow: 0px 18px 45px rgba(16, 18, 20, 0.12);
    padding: 18px;
    transition: transform 160ms ease, box-shadow 160ms ease;
    position: relative;
    overflow: hidden;
}

.rituel_card:after {
    content: "";
    position: absolute;
    right: -26px;
    top: -26px;
    width: 86px;
    height: 86px;
    border-radius: 30px;
    transform: rotate(12deg);
    background: rgba(16, 18, 20, 0.035);
    border: 2px solid rgba(16, 18, 20, 0.06);
}

.rituel_card:hover {
    transform: translateY(-4px) rotate(-1deg);
    box-shadow: 0px 22px 55px rgba(16, 18, 20, 0.14);
}

.rituel_icon {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 12px;
    border: 2px solid rgba(16, 18, 20, 0.10);
    background: rgba(255, 255, 255, 0.70);
    box-shadow: 0px 12px 24px rgba(16, 18, 20, 0.10);
}

.card_orange .rituel_icon {
    background: rgba(254, 155, 4, 0.26);
    border-color: rgba(254, 155, 4, 0.45);
}

.card_blue .rituel_icon {
    background: rgba(48, 195, 249, 0.26);
    border-color: rgba(48, 195, 249, 0.45);
}

.card_pink .rituel_icon {
    background: rgba(253, 88, 134, 0.26);
    border-color: rgba(253, 88, 134, 0.45);
}

.rituel_card h3 {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 8px;
}

.rituel_card p {
    font-size: 15px;
    line-height: 22px;
    color: var(--muted);
    font-weight: 600;
}

.about_section {
    padding: 26px 0px 10px 0px;
    position: relative;
}

.about_section:before {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    top: -10px;
    height: 140px;
    background:
        radial-gradient(260px 140px at 20% 50%, rgba(185, 220, 27, 0.12), rgba(255, 255, 255, 0) 70%),
        radial-gradient(260px 140px at 70% 20%, rgba(254, 155, 4, 0.10), rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.about_page_title>h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 900;
    padding: 18px 0px 18px 0px;
}

.about_pages_info {
    display: flex;
    justify-content: center;
    gap: 18px;
    padding: 10px 0px 20px 0px;
    align-items: stretch;
}

.about_media {
    width: 44%;
    border-radius: var(--r-xxl);
    background:
        radial-gradient(120px 90px at 20% 0%, rgba(48, 195, 249, 0.14), rgba(255, 255, 255, 0) 70%),
        rgba(255, 255, 255, 0.92);
    border: 2px solid rgba(16, 18, 20, 0.10);
    box-shadow: 0px 18px 45px rgba(16, 18, 20, 0.12);
    padding: 16px;
}

.about_pages_info_img {
    width: 100%;
    height: 360px;
    object-fit: contain;
    border-radius: calc(var(--r-xxl) - 14px);
    box-shadow: 0px 14px 30px rgba(16, 18, 20, 0.14);
}

.about_stats {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-top: 12px;
    flex-wrap: wrap;
}

.stat {
    width: calc(25% - 8px);
    min-width: 130px;
    border-radius: 22px;
    padding: 12px 12px;
    background:
        radial-gradient(40px 26px at 25% 30%, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0) 70%),
        rgba(16, 18, 20, 0.04);
    border: 2px solid rgba(16, 18, 20, 0.08);
    text-align: center;
    box-shadow: 0px 12px 24px rgba(16, 18, 20, 0.10);
}

.stat_num {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 4px;
}

.stat_txt {
    font-size: 13px;
    font-weight: 800;
    color: rgba(16, 18, 20, 0.72);
}

.about_text {
    width: 56%;
    border-radius: var(--r-xxl);
    background:
        radial-gradient(120px 90px at 12% 10%, rgba(253, 88, 134, 0.12), rgba(255, 255, 255, 0) 70%),
        radial-gradient(120px 90px at 92% 20%, rgba(185, 220, 27, 0.12), rgba(255, 255, 255, 0) 70%),
        rgba(255, 255, 255, 0.94);
    border: 2px solid rgba(16, 18, 20, 0.10);
    box-shadow: 0px 18px 45px rgba(16, 18, 20, 0.12);
    padding: 18px 18px 18px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about_text h3 {
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 10px;
}

.about_text p {
    font-size: 16px;
    line-height: 26px;
    color: var(--muted);
    margin-bottom: 14px;
    font-weight: 600;
}

.about_tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.tag {
    font-size: 13px;
    font-weight: 900;
    padding: 9px 12px;
    border-radius: 999px;
    border: 2px solid rgba(16, 18, 20, 0.10);
    background: rgba(255, 255, 255, 0.70);
    box-shadow: 0px 12px 22px rgba(16, 18, 20, 0.10);
    transform: rotate(-1deg);
}

.tag_lime {
    background: rgba(185, 220, 27, 0.24);
    border-color: rgba(185, 220, 27, 0.45);
}

.tag_orange {
    background: rgba(254, 155, 4, 0.22);
    border-color: rgba(254, 155, 4, 0.45);
}

.tag_blue {
    background: rgba(48, 195, 249, 0.20);
    border-color: rgba(48, 195, 249, 0.40);
}

.tag_pink {
    background: rgba(253, 88, 134, 0.20);
    border-color: rgba(253, 88, 134, 0.40);
}

.about_cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.jungle_section {
    padding: 22px 0px 26px 0px;
    position: relative;
}

.jungle_section:before {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    top: -10px;
    height: 140px;
    background:
        radial-gradient(280px 150px at 14% 40%, rgba(48, 195, 249, 0.12), rgba(255, 255, 255, 0) 70%),
        radial-gradient(280px 150px at 86% 40%, rgba(253, 88, 134, 0.10), rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.jungle_page_title {
    text-align: center;
    padding: 12px 0px 10px 0px;
}

.jungle_page_title>h2 {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 10px;
}

.jungle_page_title>p {
    font-size: 16px;
    line-height: 24px;
    color: var(--muted);
    font-weight: 600;
}

.jungle_page_card {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 18px;
    padding: 16px 0px 12px 0px;
    flex-wrap: wrap;
}

.jungle_page_grid {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.friend_card {
    width: 320px;
    border-radius: var(--r-xxl);
    background:
        radial-gradient(120px 90px at 18% 10%, rgba(254, 155, 4, 0.10), rgba(255, 255, 255, 0) 70%),
        radial-gradient(120px 90px at 90% 20%, rgba(48, 195, 249, 0.10), rgba(255, 255, 255, 0) 70%),
        rgba(255, 255, 255, 0.94);
    border: 2px solid rgba(16, 18, 20, 0.10);
    box-shadow: 0px 18px 45px rgba(16, 18, 20, 0.12);
    padding: 16px;
    transition: transform 160ms ease, box-shadow 160ms ease;
    position: relative;
}

.friend_card:after {
    content: "";
    position: absolute;
    left: -14px;
    top: -14px;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    transform: rotate(-10deg);
    background: rgba(185, 220, 27, 0.55);
    box-shadow: 0px 14px 28px rgba(16, 18, 20, 0.14);
}

.friend_card:hover {
    transform: translateY(-4px) rotate(1deg);
    box-shadow: 0px 22px 55px rgba(16, 18, 20, 0.14);
}

.jungle_page_grid_img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: calc(var(--r-xxl) - 14px);
    border: 2px solid rgba(253, 88, 134, 0.80);
    box-shadow: 0px 14px 30px rgba(16, 18, 20, 0.14);
}

.friend_meta {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.friend_name {
    font-size: 20px;
    font-weight: 900;
}

.friend_badge {
    font-size: 12px;
    font-weight: 900;
    padding: 9px 10px;
    border-radius: 999px;
    border: 2px solid rgba(16, 18, 20, 0.10);
    background: rgba(255, 255, 255, 0.70);
    box-shadow: 0px 12px 22px rgba(16, 18, 20, 0.10);
}

.jungle_note {
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.jungle_note_card {
    width: 100%;
    max-width: 860px;
    border-radius: var(--r-xxl);
    padding: 18px 18px;
    border: 2px solid rgba(16, 18, 20, 0.10);
    background:
        radial-gradient(180px 120px at 18% 20%, rgba(185, 220, 27, 0.22), rgba(255, 255, 255, 0) 70%),
        radial-gradient(180px 120px at 82% 20%, rgba(48, 195, 249, 0.16), rgba(255, 255, 255, 0) 70%),
        radial-gradient(180px 120px at 50% 120%, rgba(253, 88, 134, 0.14), rgba(255, 255, 255, 0) 70%),
        rgba(255, 255, 255, 0.90);
    box-shadow: 0px 18px 45px rgba(16, 18, 20, 0.12);
    text-align: center;
}

.jungle_note_card h3 {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 8px;
}

.jungle_note_card p {
    font-size: 15px;
    line-height: 22px;
    color: rgba(16, 18, 20, 0.74);
    font-weight: 600;
}

.footer {
    background:
        radial-gradient(320px 180px at 12% 20%, rgba(48, 195, 249, 0.20), rgba(255, 255, 255, 0) 70%),
        radial-gradient(320px 180px at 88% 30%, rgba(253, 88, 134, 0.16), rgba(255, 255, 255, 0) 70%),
        linear-gradient(135deg, rgba(185, 220, 27, 0.88), rgba(254, 155, 4, 0.18));
    border-top: 1px solid rgba(16, 18, 20, 0.10);
}

.footer_page_left_img {
    width: 200px;
    height: auto;
}

.footer_page {
    display: flex;
    justify-content: space-between;
    padding: 42px 0px 18px 0px;
    gap: 20px;
    flex-wrap: wrap;
}

.footer_page_left {
    width: 280px;
}

.footer_slogan {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 900;
    color: rgba(16, 18, 20, 0.78);
}

.footer_page_right {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    width: calc(100% - 300px);
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer_col {
    width: 260px;
    border-radius: var(--r-xl);
    background: rgba(255, 255, 255, 0.78);
    border: 2px solid rgba(16, 18, 20, 0.10);
    box-shadow: 0px 16px 36px rgba(16, 18, 20, 0.12);
    padding: 16px 16px;
}

.footer_title {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 12px;
}

.footer_links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer_links a {
    text-decoration: none;
    color: rgba(16, 18, 20, 0.84);
    font-size: 14px;
    font-weight: 800;
    line-height: 20px;
    padding: 10px 12px;
    border-radius: 18px;
    background:
        radial-gradient(32px 22px at 30% 30%, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0) 70%),
        rgba(16, 18, 20, 0.04);
    border: 2px solid rgba(16, 18, 20, 0.08);
    box-shadow: 0px 12px 22px rgba(16, 18, 20, 0.10);
    transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.footer_links a:hover {
    transform: translateY(-2px) rotate(-1deg);
    background:
        radial-gradient(32px 22px at 30% 30%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0) 70%),
        rgba(48, 195, 249, 0.16);
    box-shadow: 0px 16px 34px rgba(48, 195, 249, 0.18);
}

.footer_bottom {
    padding: 14px 0px 18px 0px;
}

.footer_bottom_line {
    height: 2px;
    width: 100%;
    background: rgba(16, 18, 20, 0.12);
    margin-bottom: 10px;
    border-radius: 999px;
}

.footer_bottom_text {
    font-size: 13px;
    font-weight: 900;
    color: rgba(16, 18, 20, 0.70);
}

@media (max-width: 1100px) {
    .hero_overlay {
        width: 520px;
    }

    .about_pages_info {
        flex-direction: column;
    }

    .about_media,
    .about_text {
        width: 100%;
    }

    .footer_page_right {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 760px) {
    .header_menu {
        flex-direction: column;
        align-items: center;
        padding-bottom: 10px;
    }

    .header_menu_right_link {
        justify-content: center;
    }

    .slider_page_img {
        height: 420px;
    }

    .hero_overlay {
        left: 16px;
        bottom: 16px;
        width: calc(100% - 32px);
    }

    .section_head h2 {
        font-size: 30px;
        line-height: 34px;
    }

    .rituel_cards {
        flex-direction: column;
        align-items: center;
    }

    .rituel_card {
        max-width: 520px;
    }

    .jungle_page_title>h2 {
        font-size: 32px;
    }

    .about_page_title>h2 {
        font-size: 32px;
    }
}

@media (max-width: 520px) {
    .slider_page_img {
        height: 330px;
    }

    .slider_nav {
        width: 48px;
        height: 48px;
        font-size: 26px;
    }

    .friend_card {
        width: 100%;
        max-width: 360px;
    }

    .footer_col {
        width: 100%;
    }

    .footer_page_left {
        width: 100%;
    }
}

.about_hero {
    padding: 22px 0px 10px 0px;
    position: relative;
}

.about_hero:before {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    top: -10px;
    height: 180px;
    background:
        radial-gradient(320px 180px at 12% 40%, rgba(48, 195, 249, 0.14), rgba(255, 255, 255, 0) 70%),
        radial-gradient(320px 180px at 50% 10%, rgba(253, 88, 134, 0.12), rgba(255, 255, 255, 0) 70%),
        radial-gradient(320px 180px at 88% 50%, rgba(185, 220, 27, 0.14), rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.about_hero_wrap {
    display: flex;
    gap: 18px;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about_hero_left {
    width: calc(52% - 9px);
    border-radius: var(--r-xxl);
    background:
        radial-gradient(160px 120px at 12% 10%, rgba(254, 155, 4, 0.14), rgba(255, 255, 255, 0) 70%),
        radial-gradient(180px 130px at 88% 20%, rgba(48, 195, 249, 0.12), rgba(255, 255, 255, 0) 70%),
        rgba(255, 255, 255, 0.92);
    border: 2px solid rgba(16, 18, 20, 0.10);
    box-shadow: 0px 18px 45px rgba(16, 18, 20, 0.12);
    padding: 18px;
    position: relative;
    overflow: hidden;
}

.about_hero_left:after {
    content: "";
    position: absolute;
    right: -18px;
    top: -18px;
    width: 72px;
    height: 72px;
    border-radius: 24px;
    transform: rotate(12deg);
    background: rgba(185, 220, 27, 0.55);
    box-shadow: 0px 14px 28px rgba(16, 18, 20, 0.14);
}

.about_hero_badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.about_hero_left h1 {
    font-size: 40px;
    font-weight: 900;
    line-height: 44px;
    margin-bottom: 10px;
}

.about_hero_left p {
    font-size: 16px;
    line-height: 26px;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 14px;
}

.about_hero_actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.about_hero_stats {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.about_stat {
    width: calc(25% - 8px);
    min-width: 140px;
    border-radius: 22px;
    padding: 12px 12px;
    background:
        radial-gradient(40px 26px at 25% 30%, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0) 70%),
        rgba(16, 18, 20, 0.04);
    border: 2px solid rgba(16, 18, 20, 0.08);
    text-align: center;
    box-shadow: 0px 12px 24px rgba(16, 18, 20, 0.10);
}

.about_stat_num {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 4px;
}

.about_stat_txt {
    font-size: 13px;
    font-weight: 800;
    color: rgba(16, 18, 20, 0.72);
}

.about_hero_right {
    width: calc(48% - 9px);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about_hero_media {
    border-radius: var(--r-xxl);
    background: rgba(255, 255, 255, 0.92);
    border: 2px solid rgba(16, 18, 20, 0.10);
    box-shadow: 0px 18px 45px rgba(16, 18, 20, 0.12);
    padding: 16px;
    position: relative;
    overflow: hidden;
}

.about_hero_media:before {
    content: "";
    position: absolute;
    left: -40px;
    bottom: -40px;
    width: 180px;
    height: 180px;
    border-radius: 60px;
    transform: rotate(-10deg);
    background: rgba(253, 88, 134, 0.16);
    box-shadow: 0px 18px 45px rgba(16, 18, 20, 0.10);
}

.about_hero_img {
    width: 100%;
    height: 380px;
    object-fit: contain;
    border-radius: calc(var(--r-xxl) - 14px);
    box-shadow: 0px 14px 30px rgba(16, 18, 20, 0.14);
    position: relative;
    z-index: 1;
}

.about_hero_stickers {
    position: absolute;
    left: 35px;
    bottom: 35px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    z-index: 2;
}

.sticker {
    font-size: 13px;
    font-weight: 900;
    padding: 10px 12px;
    border-radius: 999px;
    border: 2px solid rgba(16, 18, 20, 0.10);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0px 14px 28px rgba(16, 18, 20, 0.12);
    transform: rotate(-2deg);
}

.sticker_lime {
    background: rgba(185, 220, 27, 0.30);
    border-color: rgba(185, 220, 27, 0.45);
}

.sticker_orange {
    background: rgba(254, 155, 4, 0.26);
    border-color: rgba(254, 155, 4, 0.45);
}

.sticker_blue {
    background: rgba(48, 195, 249, 0.24);
    border-color: rgba(48, 195, 249, 0.45);
}

.about_hero_card {
    border-radius: var(--r-xxl);
    background:
        radial-gradient(160px 120px at 16% 20%, rgba(185, 220, 27, 0.16), rgba(255, 255, 255, 0) 70%),
        radial-gradient(160px 120px at 88% 10%, rgba(254, 155, 4, 0.14), rgba(255, 255, 255, 0) 70%),
        rgba(255, 255, 255, 0.92);
    border: 2px solid rgba(16, 18, 20, 0.10);
    box-shadow: 0px 18px 45px rgba(16, 18, 20, 0.12);
    padding: 18px;
}

.about_hero_card h2 {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 8px;
}

.about_hero_card p {
    font-size: 15px;
    line-height: 24px;
    color: rgba(16, 18, 20, 0.74);
    font-weight: 600;
}

.story_section {
    padding: 26px 0px 10px 0px;
}

.story_head {
    text-align: center;
    margin-bottom: 18px;
}

.story_head h2 {
    font-size: 36px;
    font-weight: 900;
    line-height: 40px;
    margin-bottom: 10px;
}

.story_head p {
    font-size: 16px;
    line-height: 24px;
    color: var(--muted);
    font-weight: 600;
}

.story_grid {
    display: flex;
    gap: 18px;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
}

.story_panel {
    border-radius: var(--r-xxl);
    background: rgba(255, 255, 255, 0.92);
    border: 2px solid rgba(16, 18, 20, 0.10);
    box-shadow: 0px 18px 45px rgba(16, 18, 20, 0.12);
    padding: 18px;
    position: relative;
    overflow: hidden;
}

.story_panel_left {
    width: calc(52% - 9px);
    background:
        radial-gradient(170px 120px at 10% 10%, rgba(253, 88, 134, 0.12), rgba(255, 255, 255, 0) 70%),
        radial-gradient(170px 120px at 90% 20%, rgba(48, 195, 249, 0.12), rgba(255, 255, 255, 0) 70%),
        rgba(255, 255, 255, 0.94);
}

.story_panel_right {
    width: calc(48% - 9px);
    background:
        radial-gradient(170px 120px at 12% 10%, rgba(254, 155, 4, 0.12), rgba(255, 255, 255, 0) 70%),
        radial-gradient(170px 120px at 88% 30%, rgba(185, 220, 27, 0.12), rgba(255, 255, 255, 0) 70%),
        rgba(255, 255, 255, 0.94);
}

.story_panel h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 10px;
}

.story_panel p {
    font-size: 16px;
    line-height: 26px;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 14px;
}

.story_tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.story_cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.story_steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 14px;
}

.story_step {
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 26px;
    border: 2px solid rgba(16, 18, 20, 0.10);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0px 14px 28px rgba(16, 18, 20, 0.10);
    padding: 12px;
}

.story_step_text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.story_step_title {
    font-size: 16px;
    font-weight: 900;
}

.story_step_desc {
    font-size: 14px;
    font-weight: 700;
    color: rgba(16, 18, 20, 0.70);
    line-height: 20px;
}

.story_quote {
    border-radius: 30px;
    border: 2px solid rgba(16, 18, 20, 0.10);
    background:
        radial-gradient(140px 100px at 14% 20%, rgba(185, 220, 27, 0.16), rgba(255, 255, 255, 0) 70%),
        radial-gradient(140px 100px at 86% 20%, rgba(48, 195, 249, 0.12), rgba(255, 255, 255, 0) 70%),
        rgba(255, 255, 255, 0.90);
    box-shadow: 0px 18px 45px rgba(16, 18, 20, 0.12);
    padding: 16px;
}

.story_quote h3 {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 8px;
}

.story_quote p {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 0px;
}

.values_section {
    padding: 26px 0px 10px 0px;
}

.values_head {
    text-align: center;
    margin-bottom: 18px;
}

.values_head h2 {
    font-size: 36px;
    font-weight: 900;
    line-height: 40px;
    margin-bottom: 10px;
}

.values_head p {
    font-size: 16px;
    line-height: 24px;
    color: var(--muted);
    font-weight: 600;
}

.values_grid {
    display: flex;
    gap: 18px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.value_card {
    width: calc(25% - 14px);
    min-width: 260px;
    border-radius: var(--r-xxl);
    border: 2px solid rgba(16, 18, 20, 0.10);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0px 18px 45px rgba(16, 18, 20, 0.12);
    padding: 18px;
    transition: transform 160ms ease, box-shadow 160ms ease;
    position: relative;
    overflow: hidden;
}

.value_card:hover {
    transform: translateY(-4px) rotate(-1deg);
    box-shadow: 0px 22px 55px rgba(16, 18, 20, 0.14);
}

.value_icon {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 12px;
    border: 2px solid rgba(16, 18, 20, 0.10);
    background: rgba(255, 255, 255, 0.70);
    box-shadow: 0px 14px 28px rgba(16, 18, 20, 0.12);
}

.value_card h3 {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 8px;
}

.value_card p {
    font-size: 15px;
    line-height: 22px;
    color: var(--muted);
    font-weight: 600;
}

.value_orange {
    background:
        radial-gradient(180px 120px at 12% 10%, rgba(254, 155, 4, 0.14), rgba(255, 255, 255, 0) 70%),
        rgba(255, 255, 255, 0.94);
}

.value_blue {
    background:
        radial-gradient(180px 120px at 12% 10%, rgba(48, 195, 249, 0.14), rgba(255, 255, 255, 0) 70%),
        rgba(255, 255, 255, 0.94);
}

.value_lime {
    background:
        radial-gradient(180px 120px at 12% 10%, rgba(185, 220, 27, 0.14), rgba(255, 255, 255, 0) 70%),
        rgba(255, 255, 255, 0.94);
}

.value_pink {
    background:
        radial-gradient(180px 120px at 12% 10%, rgba(253, 88, 134, 0.14), rgba(255, 255, 255, 0) 70%),
        rgba(255, 255, 255, 0.94);
}

.faq_section {
    padding: 26px 0px 26px 0px;
}

.faq_head {
    text-align: center;
    margin-bottom: 18px;
}

.faq_head h2 {
    font-size: 36px;
    font-weight: 900;
    line-height: 40px;
    margin-bottom: 10px;
}

.faq_head p {
    font-size: 16px;
    line-height: 24px;
    color: var(--muted);
    font-weight: 600;
}

.faq_grid {
    display: flex;
    gap: 18px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.faq_item {
    width: calc(50% - 9px);
    min-width: 320px;
    border-radius: var(--r-xxl);
    border: 2px solid rgba(16, 18, 20, 0.10);
    background:
        radial-gradient(140px 100px at 14% 20%, rgba(48, 195, 249, 0.10), rgba(255, 255, 255, 0) 70%),
        rgba(255, 255, 255, 0.92);
    box-shadow: 0px 18px 45px rgba(16, 18, 20, 0.12);
    padding: 18px;
}

.faq_item h3 {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 8px;
}

.faq_item p {
    font-size: 15px;
    line-height: 22px;
    color: var(--muted);
    font-weight: 600;
}

.faq_cta {
    padding-top: 14px;
    display: flex;
    justify-content: center;
}

.faq_cta_actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 12px;
}

@media (max-width: 1100px) {

    .about_hero_left,
    .about_hero_right,
    .story_panel_left,
    .story_panel_right {
        width: 100%;
    }

    .about_hero_img {
        height: 360px;
    }

    .faq_item {
        width: 100%;
    }
}

@media (max-width: 760px) {
    .about_hero_left h1 {
        font-size: 32px;
        line-height: 36px;
    }

    .about_hero_img {
        height: 320px;
    }

    .story_head h2,
    .values_head h2,
    .faq_head h2 {
        font-size: 30px;
        line-height: 34px;
    }
}

@media (max-width: 520px) {
    .about_stat {
        width: 100%;
        min-width: 0px;
    }

    .about_hero_img {
        height: 280px;
    }

    .faq_item {
        min-width: 0px;
    }
}

.friends_hero {
    padding: 22px 0px 10px 0px;
    position: relative;
}

.friends_hero:before {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    top: -10px;
    height: 200px;
    background:
        radial-gradient(320px 180px at 10% 35%, rgba(48, 195, 249, 0.14), rgba(255, 255, 255, 0) 70%),
        radial-gradient(320px 180px at 50% 10%, rgba(253, 88, 134, 0.12), rgba(255, 255, 255, 0) 70%),
        radial-gradient(320px 180px at 90% 45%, rgba(185, 220, 27, 0.14), rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.friends_hero_wrap {
    display: flex;
    gap: 18px;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
}

.friends_hero_left {
    width: calc(52% - 9px);
    border-radius: var(--r-xxl);
    background:
        radial-gradient(170px 120px at 12% 10%, rgba(254, 155, 4, 0.14), rgba(255, 255, 255, 0) 70%),
        radial-gradient(170px 120px at 88% 20%, rgba(48, 195, 249, 0.12), rgba(255, 255, 255, 0) 70%),
        rgba(255, 255, 255, 0.94);
    border: 2px solid rgba(16, 18, 20, 0.10);
    box-shadow: 0px 18px 45px rgba(16, 18, 20, 0.12);
    padding: 18px;
    position: relative;
    overflow: hidden;
}

.friends_hero_left:after {
    content: "";
    position: absolute;
    left: -22px;
    top: -22px;
    width: 78px;
    height: 78px;
    border-radius: 26px;
    transform: rotate(-10deg);
    background: rgba(253, 88, 134, 0.18);
    box-shadow: 0px 14px 28px rgba(16, 18, 20, 0.14);
}

.friends_badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.friends_hero_left h1 {
    font-size: 40px;
    font-weight: 900;
    line-height: 44px;
    margin-bottom: 10px;
}

.friends_hero_left p {
    font-size: 16px;
    line-height: 26px;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 14px;
}

.friends_actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.friends_chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.chip {
    font-size: 13px;
    font-weight: 900;
    padding: 10px 12px;
    border-radius: 999px;
    border: 2px solid rgba(16, 18, 20, 0.10);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0px 12px 24px rgba(16, 18, 20, 0.10);
}

.chip_orange {
    background: rgba(254, 155, 4, 0.22);
    border-color: rgba(254, 155, 4, 0.40);
}

.chip_blue {
    background: rgba(48, 195, 249, 0.20);
    border-color: rgba(48, 195, 249, 0.40);
}

.chip_lime {
    background: rgba(185, 220, 27, 0.22);
    border-color: rgba(185, 220, 27, 0.42);
}

.chip_pink {
    background: rgba(253, 88, 134, 0.20);
    border-color: rgba(253, 88, 134, 0.40);
}

.friends_hero_right {
    width: calc(48% - 9px);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.friends_hero_card {
    border-radius: var(--r-xxl);
    background:
        radial-gradient(180px 120px at 12% 10%, rgba(185, 220, 27, 0.14), rgba(255, 255, 255, 0) 70%),
        radial-gradient(180px 120px at 88% 20%, rgba(253, 88, 134, 0.12), rgba(255, 255, 255, 0) 70%),
        rgba(255, 255, 255, 0.94);
    border: 2px solid rgba(16, 18, 20, 0.10);
    box-shadow: 0px 18px 45px rgba(16, 18, 20, 0.12);
    padding: 18px;
    position: relative;
    overflow: hidden;
}

.friends_hero_card_top {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.friends_hero_card h2 {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 8px;
}

.friends_hero_card p {
    font-size: 15px;
    line-height: 24px;
    color: rgba(16, 18, 20, 0.74);
    font-weight: 600;
    margin-bottom: 12px;
}

.friends_hero_card_bottom {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.mini_stat {
    width: calc(25% - 8px);
    min-width: 140px;
    border-radius: 22px;
    padding: 12px 12px;
    background: rgba(16, 18, 20, 0.04);
    border: 2px solid rgba(16, 18, 20, 0.08);
    box-shadow: 0px 12px 24px rgba(16, 18, 20, 0.10);
    text-align: center;
}

.mini_num {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 4px;
}

.mini_txt {
    font-size: 13px;
    font-weight: 800;
    color: rgba(16, 18, 20, 0.72);
}

.friends_note {
    border-radius: var(--r-xxl);
    padding: 18px 18px;
    border: 2px solid rgba(16, 18, 20, 0.10);
    background: linear-gradient(135deg, rgba(185, 220, 27, 0.22), rgba(48, 195, 249, 0.12), rgba(253, 88, 134, 0.10));
    box-shadow: 0px 18px 45px rgba(16, 18, 20, 0.12);
    text-align: center;
}

.friends_note h3 {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 8px;
}

.friends_note p {
    font-size: 15px;
    line-height: 22px;
    color: rgba(16, 18, 20, 0.74);
    font-weight: 700;
}

.friends_list {
    padding: 18px 0px 26px 0px;
}

.friends_head {
    text-align: center;
    margin-bottom: 12px;
}

.friends_head h2 {
    font-size: 36px;
    font-weight: 900;
    line-height: 40px;
    margin-bottom: 10px;
}

.friends_head p {
    font-size: 16px;
    line-height: 24px;
    color: var(--muted);
    font-weight: 600;
}

.friends_toolbar {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 10px 0px 14px 0px;
}

.filter_btn {
    border: 2px solid rgba(16, 18, 20, 0.10);
    background: rgba(255, 255, 255, 0.85);
    color: rgba(16, 18, 20, 0.84);
    font-size: 14px;
    font-weight: 900;
    padding: 10px 14px;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0px 12px 24px rgba(16, 18, 20, 0.10);
    transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.filter_btn:hover {
    transform: translateY(-2px);
    background: rgba(48, 195, 249, 0.16);
    box-shadow: 0px 16px 34px rgba(16, 18, 20, 0.12);
}

.filter_btn.is-active {
    background: rgba(254, 155, 4, 0.20);
    border-color: rgba(254, 155, 4, 0.40);
}

.friends_grid {
    display: flex;
    gap: 18px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    padding-top: 8px;
}

.friend_media {
    position: relative;
    padding: 16px;
    background:
        radial-gradient(160px 120px at 12% 20%, rgba(48, 195, 249, 0.10), rgba(255, 255, 255, 0) 70%),
        rgba(255, 255, 255, 0.85);
}

.friend_img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: calc(var(--r-xxl) - 14px);
    box-shadow: 0px 14px 30px rgba(16, 18, 20, 0.14);
    border: 2px solid rgba(253, 88, 134, 0.60);
}

.friend_ribbon {
    position: absolute;
    left: 24px;
    top: 24px;
    font-size: 12px;
    font-weight: 900;
    padding: 8px 10px;
    border-radius: 999px;
    border: 2px solid rgba(16, 18, 20, 0.10);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0px 14px 28px rgba(16, 18, 20, 0.12);
    transform: rotate(-3deg);
}

.ribbon_orange {
    background: rgba(254, 155, 4, 0.22);
    border-color: rgba(254, 155, 4, 0.42);
}

.ribbon_blue {
    background: rgba(48, 195, 249, 0.22);
    border-color: rgba(48, 195, 249, 0.42);
}

.ribbon_pink {
    background: rgba(253, 88, 134, 0.20);
    border-color: rgba(253, 88, 134, 0.42);
}

.ribbon_lime {
    background: rgba(185, 220, 27, 0.22);
    border-color: rgba(185, 220, 27, 0.44);
}

.friend_body {
    padding: 14px 16px 16px 16px;
}

.friend_mood {
    font-size: 14px;
    font-weight: 700;
    color: rgba(16, 18, 20, 0.70);
    line-height: 20px;
    margin-bottom: 12px;
}

.friend_tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.friends_bottom_cta {
    padding-top: 14px;
    display: flex;
    justify-content: center;
}

.friends_bottom_card {
    width: 100%;
    max-width: 920px;
    border-radius: var(--r-xxl);
    padding: 18px 18px;
    border: 2px solid rgba(16, 18, 20, 0.10);
    background:
        radial-gradient(190px 120px at 14% 20%, rgba(185, 220, 27, 0.16), rgba(255, 255, 255, 0) 70%),
        radial-gradient(190px 120px at 86% 20%, rgba(254, 155, 4, 0.14), rgba(255, 255, 255, 0) 70%),
        rgba(255, 255, 255, 0.92);
    box-shadow: 0px 18px 45px rgba(16, 18, 20, 0.12);
    text-align: center;
}

.friends_bottom_card h3 {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 8px;
}

.friends_bottom_card p {
    font-size: 15px;
    line-height: 22px;
    color: rgba(16, 18, 20, 0.74);
    font-weight: 700;
}

.friends_bottom_actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 12px;
}

@media (max-width: 1100px) {

    .friends_hero_left,
    .friends_hero_right {
        width: 100%;
    }
}

@media (max-width: 760px) {
    .friends_hero_left h1 {
        font-size: 32px;
        line-height: 36px;
    }

    .friends_head h2 {
        font-size: 30px;
        line-height: 34px;
    }

    .mini_stat {
        width: 100%;
        min-width: 0px;
    }
}

@media (max-width: 520px) {
    .friend_card {
        width: 100%;
        max-width: 360px;
    }
}

.contact_form {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.contact_field {
    width: calc(50% - 6px);
    min-width: 240px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact_field_full {
    width: 100%;
    min-width: 0px;
}

.contact_label {
    font-size: 14px;
    font-weight: 800;
    color: rgba(16, 18, 20, 0.78);
}

.contact_input,
.contact_textarea {
    width: 100%;
    border-radius: 18px;
    border: 1px solid rgba(16, 18, 20, 0.12);
    background: rgba(255, 255, 255, 0.92);
    padding: 12px 14px;
    font-size: 15px;
    font-weight: 700;
    color: rgba(16, 18, 20, 0.90);
    outline: none;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.contact_textarea {
    min-height: 150px;
    resize: vertical;
}

.contact_input:focus,
.contact_textarea:focus {
    border-color: rgba(254, 155, 4, 0.45);
    box-shadow: 0px 16px 34px rgba(254, 155, 4, 0.16);
    background: rgba(255, 255, 255, 0.98);
}

.contact_actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 6px;
}

.contact_hint {
    font-size: 13px;
    font-weight: 700;
    color: rgba(16, 18, 20, 0.66);
    line-height: 18px;
}

#story.story_section {
    padding: 26px 0px 26px 0px;
}

#story .story_head h2 {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

#story .story_head p {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

#story .story_panel {
    border-radius: var(--r-xxl);
    border: 2px solid rgba(16, 18, 20, 0.10);
    box-shadow: 0px 18px 45px rgba(16, 18, 20, 0.12);
    position: relative;
    overflow: hidden;
}

#story .story_panel:before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 999px;
    top: -110px;
    right: -120px;
    background: radial-gradient(circle at 35% 35%, rgba(48, 195, 249, 0.22), rgba(48, 195, 249, 0.00) 68%);
    pointer-events: none;
}

#story .story_panel:after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 999px;
    bottom: -140px;
    left: -140px;
    background: radial-gradient(circle at 35% 35%, rgba(253, 88, 134, 0.18), rgba(253, 88, 134, 0.00) 70%);
    pointer-events: none;
}

#story .story_panel h3 {
    position: relative;
    z-index: 1;
}

#story .story_panel p {
    position: relative;
    z-index: 1;
}

#story .story_steps {
    position: relative;
    z-index: 1;
}

#story .story_step {
    border-radius: 28px;
}

#story .story_quote {
    position: relative;
    overflow: hidden;
}

#story .story_quote:before {
    content: "";
    position: absolute;
    right: -18px;
    top: -18px;
    width: 72px;
    height: 72px;
    border-radius: 24px;
    transform: rotate(12deg);
    background: rgba(185, 220, 27, 0.55);
    box-shadow: 0px 14px 28px rgba(16, 18, 20, 0.14);
    pointer-events: none;
}

#story .story_quote h3,
#story .story_quote p {
    position: relative;
    z-index: 1;
}

#story .story_cta {
    justify-content: flex-start;
}

#story .btn_primary {
    box-shadow: 0px 18px 36px rgba(254, 155, 4, 0.24);
}

#story .btn_secondary {
    background: rgba(255, 255, 255, 0.88);
}

#story .tag {
    transform: rotate(-1deg);
}

@media (max-width: 1100px) {

    #story .story_panel_left,
    #story .story_panel_right {
        width: 100%;
    }
}

@media (max-width: 760px) {
    #story .story_head h2 {
        font-size: 30px;
        line-height: 34px;
    }

    #story .story_panel h3 {
        font-size: 22px;
    }
}

@media (max-width: 520px) {
    #story .story_panel {
        padding: 16px;
    }

    #story .story_step {
        padding: 12px;
    }
}

body.is-loading {
    overflow: hidden;
}

.page_loader {
    position: fixed;
    inset: 0px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(900px 420px at 30px 40px, rgba(48, 195, 249, 0.18), rgba(255, 255, 255, 0) 60%),
        radial-gradient(900px 420px at 100% 10px, rgba(253, 88, 134, 0.16), rgba(255, 255, 255, 0) 60%),
        radial-gradient(900px 520px at 40% 100%, rgba(185, 220, 27, 0.18), rgba(255, 255, 255, 0) 60%),
        linear-gradient(180deg, rgba(254, 155, 4, 0.10), rgba(255, 255, 255, 0) 320px),
        #FFFFFF;
    transition: opacity 320ms ease, visibility 320ms ease;
}

.page_loader_logo {
    width: 140px;
    height: 140px;
    animation: omny_pulse 900ms ease-in-out infinite;
    filter: drop-shadow(0px 16px 36px rgba(16, 18, 20, 0.16));
    transform-origin: center;
    user-select: none;
    -webkit-user-drag: none;
}

.page_loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@keyframes omny_pulse {
    0% {
        transform: scale(0.92);
    }

    50% {
        transform: scale(1.06);
    }

    100% {
        transform: scale(0.92);
    }
}

@media (prefers-reduced-motion: reduce) {
    .page_loader_logo {
        animation: none;
    }
}

.header {
    width: 100%;
}

.header.is-sticky {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 9998;
    transform: translateY(-110%);
    transition: transform 260ms ease;
}

.header.is-sticky.is-visible {
    transform: translateY(0px);
}

body.has-sticky-header {
    padding-top: var(--header-h, 0px);
}

.header_menu_right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.header_hamburger {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 2px solid rgba(16, 18, 20, 0.10);
    background:
        radial-gradient(18px 18px at 30% 40%, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0) 70%),
        rgba(16, 18, 20, 0.035);
    box-shadow: 0px 10px 20px rgba(16, 18, 20, 0.10);
    cursor: pointer;
    padding: 0px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header_hamburger:hover {
    transform: translateY(-2px) rotate(-1deg);
    background:
        radial-gradient(22px 22px at 30% 40%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0) 70%),
        rgba(48, 195, 249, 0.14);
    box-shadow: 0px 16px 34px rgba(48, 195, 249, 0.20);
}

.header_hamburger_line {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: rgba(16, 18, 20, 0.80);
    transition: transform 220ms ease, opacity 220ms ease;
}

.menu_backdrop {
    position: fixed;
    inset: 0px;
    background: rgba(16, 18, 20, 0.42);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
    z-index: 9997;
}

body.menu-open .menu_backdrop {
    opacity: 1;
    pointer-events: auto;
}

body.menu-open {
    overflow: hidden;
}

@media (max-width: 760px) {
    .header_menu {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding-bottom: 0px;
    }

    .header_menu_left {
        display: flex;
        align-items: center;
    }

    .header_menu_right {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 12px;
    }

    .header_hamburger {
        display: flex;
    }

    .header_menu_right_link {
        position: fixed;
        top: var(--header-h, 72px);
        left: 14px;
        right: 14px;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 10px;
        padding: 14px;
        border-radius: 26px;
        background:
            radial-gradient(120px 90px at 12% 10%, rgba(48, 195, 249, 0.14), rgba(255, 255, 255, 0) 70%),
            radial-gradient(120px 90px at 88% 20%, rgba(253, 88, 134, 0.12), rgba(255, 255, 255, 0) 70%),
            rgba(255, 255, 255, 0.96);
        border: 2px solid rgba(16, 18, 20, 0.10);
        box-shadow: 0px 18px 45px rgba(16, 18, 20, 0.16);
        max-height: calc(100vh - var(--header-h, 72px) - 28px);
        overflow: auto;
        transform: translateY(-14px);
        opacity: 0;
        pointer-events: none;
        transition: transform 220ms ease, opacity 220ms ease;
        z-index: 9999;
    }

    body.menu-open .header_menu_right_link {
        transform: translateY(0px);
        opacity: 1;
        pointer-events: auto;
    }

    .header_menu_right_link>a {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 14px 16px;
        border-radius: 22px;
    }

    body.menu-open .header_hamburger_line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    body.menu-open .header_hamburger_line:nth-child(2) {
        opacity: 0;
    }

    body.menu-open .header_hamburger_line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}