/* =========================================================
   PHASE S LANDING CSS
   /landings/phase-s/css/phase-s.css
========================================================= */

:root{

    --ps-bg:#050505;
    --ps-bg-2:#0b0908;

    --ps-surface:#12100f;
    --ps-surface-2:#181412;

    --ps-text:#ffffff;
    --ps-soft:rgba(255,255,255,.84);
    --ps-muted:rgba(255,255,255,.62);
    --ps-muted-2:rgba(255,255,255,.40);

    --ps-gold:#f3c28c;
    --ps-gold-2:#ffddb5;
    --ps-gold-dark:#bb7f4d;

    --ps-border:rgba(255,255,255,.10);
    --ps-border-gold:rgba(243,194,140,.28);

    --ps-shadow:0 42px 120px rgba(0,0,0,.56);
    --ps-shadow-soft:0 22px 70px rgba(0,0,0,.32);
    --ps-shadow-gold:0 26px 90px rgba(243,194,140,.16);

    --ps-radius-sm:18px;
    --ps-radius-md:28px;
    --ps-radius-lg:40px;
    --ps-radius-xl:54px;

    --ps-container:1180px;

    --ps-ease:cubic-bezier(.2,.8,.2,1);
}

/* RESET */

*,
*::before,
*::after{
    box-sizing:border-box;
}

html{
    margin:0;
    padding:0;
    background:var(--ps-bg);
    scroll-behavior:smooth;
    overflow-x:hidden;
}

body.phase-s-body{
    margin:0 !important;
    padding:0 !important;
    overflow-x:hidden;
    min-height:100svh;
    direction:rtl;
    background:var(--ps-bg) !important;
    color:var(--ps-text) !important;
    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;
}

body.phase-s-body a{
    color:inherit;
    text-decoration:none;
}

body.phase-s-body img{
    max-width:100%;
}

body.phase-s-body button,
body.phase-s-body input{
    font-family:inherit !important;
}

/* PAGE */

.ps-page{
    position:relative;
    overflow:hidden;
    isolation:isolate;
    background:
        radial-gradient(circle at 50% -5%, rgba(243,194,140,.10), transparent 34%),
        radial-gradient(circle at 18% 22%, rgba(243,194,140,.06), transparent 28%),
        radial-gradient(circle at 82% 68%, rgba(243,194,140,.07), transparent 32%),
        linear-gradient(180deg,#050505 0%, #0b0908 40%, #050505 100%);
}

.ps-light-field{
    position:fixed;
    inset:0;
    z-index:0;
    pointer-events:none;
    opacity:.32;
    background:
        radial-gradient(circle at 50% 12%, rgba(243,194,140,.24), transparent 28%),
        radial-gradient(circle at 50% 30%, rgba(255,221,181,.08), transparent 42%);
}

.ps-touch-lines{
    position:fixed;
    inset:0;
    z-index:0;
    pointer-events:none;
    opacity:.06;
    background-image:
        linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
    background-size:58px 58px;
    mask-image:radial-gradient(circle at center, black 0 38%, transparent 82%);
    -webkit-mask-image:radial-gradient(circle at center, black 0 38%, transparent 82%);
}

.ps-container{
    width:min(var(--ps-container), calc(100% - 42px));
    margin:0 auto;
    position:relative;
    z-index:3;
}

/* BUTTONS */

.ps-main-btn,
.ps-ghost-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-height:58px;
    padding:0 32px;
    border-radius:999px;
    font-size:15px;
    line-height:1.4;
    font-weight:950;
    transition:
        transform .25s var(--ps-ease),
        box-shadow .25s var(--ps-ease),
        border-color .25s var(--ps-ease),
        background .25s var(--ps-ease);
    cursor:pointer;
}

.ps-main-btn{
    color:#1d1208 !important;
    background:
        linear-gradient(180deg,var(--ps-gold-2),var(--ps-gold));
    border:1px solid rgba(255,255,255,.24);
    box-shadow:
        0 22px 60px rgba(243,194,140,.24),
        inset 0 1px 0 rgba(255,255,255,.42);
}

.ps-main-btn:hover{
    transform:translateY(-4px);
    box-shadow:
        0 34px 90px rgba(243,194,140,.34),
        inset 0 1px 0 rgba(255,255,255,.54);
}

.ps-ghost-btn{
    color:#fff !important;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.12);
    box-shadow:0 18px 48px rgba(0,0,0,.24);
}

.ps-ghost-btn:hover{
    transform:translateY(-4px);
    border-color:rgba(243,194,140,.32);
    background:rgba(255,255,255,.08);
}

.ps-main-btn-big{
    width:100%;
    min-height:68px;
    font-size:16px;
}

/* PAYMENT */

.ps-payment-message{
    position:relative;
    z-index:30;
    width:min(760px, calc(100% - 32px));
    margin:28px auto 0;
    padding:32px 26px;
    border-radius:30px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.03));
    border:1px solid rgba(255,255,255,.12);
    box-shadow:var(--ps-shadow-soft);
    text-align:center;
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
}

.ps-payment-icon{
    width:64px;
    height:64px;
    margin:0 auto 16px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#1d1208 !important;
    background:var(--ps-gold);
    font-size:30px;
    font-weight:950;
}

.ps-payment-message h2{
    margin:0 0 10px;
    color:#fff !important;
    font-size:25px;
    line-height:1.6;
    font-weight:950;
}

.ps-payment-message p{
    margin:0;
    color:var(--ps-muted) !important;
    font-size:15px;
    line-height:2;
    font-weight:600;
}

.ps-payment-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:52px;
    margin-top:22px;
    padding:0 26px;
    border-radius:999px;
    color:#1d1208 !important;
    background:var(--ps-gold);
    font-size:15px;
    font-weight:950;
}

/* HERO */

.ps-hero{
    position:relative;
    min-height:100svh;
    display:flex;
    align-items:center;
    padding:90px 0 110px;
    overflow:hidden;
}

.ps-hero-bg{
    position:absolute;
    inset:0;
    z-index:0;
}

.ps-hero-bg-image{
    position:absolute;
    inset:-34px;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    transform:scale(1.08);
    filter:blur(18px) brightness(.34) saturate(.92);
    opacity:.82;
}

.ps-hero::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:1;
    pointer-events:none;
    background:
        radial-gradient(circle at 50% 38%, rgba(243,194,140,.16), transparent 24%),
        linear-gradient(90deg, rgba(0,0,0,.26) 0%, rgba(0,0,0,.72) 56%, rgba(0,0,0,.88) 100%),
        linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.86) 100%);
}

.ps-hero-layout{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1.02fr .98fr;
    gap:54px;
    align-items:center;
}

.ps-hero-copy{
    position:relative;
    overflow:hidden;
    padding:50px 44px;
    border-radius:var(--ps-radius-xl);
    background:
        radial-gradient(circle at 50% 0%, rgba(243,194,140,.12), transparent 30%),
        linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.026));
    border:1px solid rgba(255,255,255,.10);
    box-shadow:var(--ps-shadow);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
}

.ps-hero-copy::before{
    content:"";
    position:absolute;
    top:0;
    right:44px;
    left:44px;
    height:2px;
    background:linear-gradient(90deg, transparent, var(--ps-gold), transparent);
    box-shadow:0 0 26px rgba(243,194,140,.52);
}

.ps-soft-signal{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    margin-bottom:22px;
    padding:10px 18px;
    border-radius:999px;
    color:#ffe7cf !important;
    background:rgba(243,194,140,.10);
    border:1px solid rgba(243,194,140,.22);
    font-size:12px;
    line-height:1;
    font-weight:950;
    letter-spacing:1.2px;
}

.ps-soft-signal span{
    width:9px;
    height:9px;
    border-radius:50%;
    background:var(--ps-gold);
    box-shadow:0 0 18px rgba(243,194,140,.82);
    animation:psPulse 1.7s ease-in-out infinite;
}

@keyframes psPulse{
    0%,100%{opacity:1; transform:scale(1);}
    50%{opacity:.38; transform:scale(.72);}
}

.ps-hero h1{
    margin:0 0 24px;
    color:#fff !important;
    font-size:clamp(64px,8vw,120px);
    line-height:.92;
    letter-spacing:-5px;
    font-weight:950;
    text-shadow:
        0 0 42px rgba(243,194,140,.18),
        0 16px 42px rgba(0,0,0,.42);
}

.ps-hero h1::first-letter{
    color:var(--ps-gold);
}

.ps-hero-lead{
    max-width:720px;
    margin:0;
    color:var(--ps-soft) !important;
    font-size:17px;
    line-height:2.18;
    font-weight:650;
}

.ps-hero-actions{
    display:flex;
    align-items:center;
    gap:14px;
    flex-wrap:wrap;
    margin-top:34px;
}

.ps-hero-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
    margin-top:38px;
}

.ps-stat-card{
    min-height:118px;
    padding:20px 14px;
    border-radius:24px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.10);
    text-align:center;
}

.ps-stat-card span{
    display:block;
    margin-bottom:8px;
    color:var(--ps-gold) !important;
    font-size:32px;
    line-height:1;
    font-weight:950;
}

.ps-stat-card strong{
    display:block;
    color:#fff !important;
    font-size:13.5px;
    line-height:1.8;
    font-weight:900;
}

/* HERO VISUAL */

.ps-hero-visual{
    position:relative;
}

.ps-poster-card{
    position:relative;
    overflow:hidden;
    border-radius:44px;
    border:1px solid rgba(255,255,255,.10);
    box-shadow:var(--ps-shadow);
    background:#080808;
}

.ps-poster-card::before{
    content:"";
    position:absolute;
    inset:14px;
    z-index:2;
    pointer-events:none;
    border-radius:32px;
    border:1px solid rgba(243,194,140,.14);
}

.ps-poster-card::after{
    content:"";
    position:absolute;
    inset:0;
    z-index:3;
    pointer-events:none;
    background:
        radial-gradient(circle at 50% 42%, rgba(243,194,140,.14), transparent 18%),
        linear-gradient(180deg, transparent 54%, rgba(0,0,0,.42) 100%);
}

.ps-poster-card img{
    display:block;
    width:100%;
    aspect-ratio:1 / 1;
    object-fit:cover;
}

.ps-pulse-panel{
    position:absolute;
    left:-24px;
    bottom:40px;
    width:min(340px,82%);
    padding:20px 22px;
    border-radius:26px;
    background:rgba(7,7,7,.74);
    border:1px solid rgba(255,255,255,.12);
    box-shadow:0 24px 70px rgba(0,0,0,.42);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
}

.ps-pulse-panel span{
    display:block;
    margin-bottom:7px;
    color:var(--ps-gold) !important;
    font-size:11px;
    font-weight:950;
    letter-spacing:1.2px;
}

.ps-pulse-panel strong{
    display:block;
    color:#fff !important;
    font-size:22px;
    line-height:1.5;
    font-weight:950;
}

.ps-pulse-panel p{
    margin:4px 0 0;
    color:var(--ps-muted) !important;
    font-size:13px;
    line-height:1.8;
    font-weight:600;
}

/* GENERAL */

.ps-section{
    position:relative;
    z-index:2;
    padding:112px 0;
}

.ps-section-head{
    text-align:center;
    margin-bottom:48px;
}

.ps-section-head-right{
    text-align:right;
    margin-bottom:28px;
}

.ps-section-head span,
.ps-intimacy-title span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-bottom:14px;
    padding:9px 16px;
    border-radius:999px;
    color:#ffe7cf !important;
    background:rgba(243,194,140,.10);
    border:1px solid rgba(243,194,140,.22);
    font-size:12px;
    line-height:1;
    font-weight:950;
}

.ps-section-head h2,
.ps-intimacy-title h2{
    margin:0;
    color:#fff !important;
    font-size:clamp(34px,5vw,64px);
    line-height:1.22;
    letter-spacing:-1.8px;
    font-weight:950;
}

.ps-text-block p{
    margin:0 0 20px;
    color:var(--ps-muted) !important;
    font-size:16px;
    line-height:2.22;
    font-weight:600;
}

.ps-text-block p:last-child{
    margin-bottom:0;
}

/* INTRO */

.ps-intimacy-panel{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:52px;
    align-items:start;
    padding:42px;
    border-radius:var(--ps-radius-xl);
    background:
        radial-gradient(circle at 50% 0%, rgba(243,194,140,.10), transparent 32%),
        linear-gradient(135deg, rgba(255,255,255,.072), rgba(255,255,255,.024));
    border:1px solid rgba(255,255,255,.10);
    box-shadow:var(--ps-shadow-soft);
}

.ps-intimacy-text{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.ps-intimacy-text p{
    margin:0;
    color:var(--ps-soft) !important;
    font-size:16px;
    line-height:2.22;
    font-weight:600;
}

/* PRINCIPLES */

.ps-principles-strip{
    position:relative;
    z-index:2;
    padding:36px 0;
}

.ps-principles-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:14px;
}

.ps-principle-card{
    min-height:180px;
    padding:26px 20px;
    border-radius:28px;
    background:
        radial-gradient(circle at 50% 0%, rgba(243,194,140,.10), transparent 36%),
        linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.026));
    border:1px solid rgba(255,255,255,.10);
    box-shadow:0 20px 62px rgba(0,0,0,.24);
    text-align:center;
}

.ps-principle-card span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:58px;
    height:58px;
    margin-bottom:14px;
    border-radius:20px;
    color:#1d1208 !important;
    background:var(--ps-gold);
    font-size:16px;
    font-weight:950;
}

.ps-principle-card strong{
    display:block;
    margin-bottom:10px;
    color:#fff !important;
    font-size:22px;
    line-height:1.5;
    font-weight:950;
}

.ps-principle-card p{
    margin:0;
    color:var(--ps-muted) !important;
    font-size:14px;
    line-height:2;
    font-weight:600;
}

/* TOUCH MAP */

.ps-touch-map{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.ps-touch-card{
    position:relative;
    overflow:hidden;
    min-height:310px;
    padding:28px 24px;
    border-radius:34px;
    background:
        radial-gradient(circle at 50% 0%, rgba(243,194,140,.10), transparent 34%),
        linear-gradient(180deg, rgba(255,255,255,.070), rgba(255,255,255,.026));
    border:1px solid rgba(255,255,255,.10);
    box-shadow:var(--ps-shadow-soft);
}

.ps-touch-card::before{
    content:"";
    position:absolute;
    top:24px;
    bottom:24px;
    right:0;
    width:3px;
    border-radius:999px;
    background:linear-gradient(180deg,var(--ps-gold-2),var(--ps-gold-dark));
}

.ps-touch-card::after{
    content:"";
    position:absolute;
    left:-90px;
    bottom:-115px;
    width:230px;
    height:230px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(243,194,140,.12), transparent 68%);
}

.ps-touch-wide{
    grid-column:span 2;
}

.ps-touch-final{
    border-color:rgba(243,194,140,.22);
    background:
        radial-gradient(circle at 50% 0%, rgba(243,194,140,.16), transparent 34%),
        linear-gradient(180deg, rgba(255,255,255,.082), rgba(255,255,255,.028));
}

.ps-touch-number{
    position:relative;
    z-index:2;
    color:rgba(243,194,140,.18) !important;
    font-size:62px;
    line-height:1;
    font-weight:950;
    letter-spacing:-3px;
    margin-bottom:18px;
}

.ps-touch-card div:not(.ps-touch-number){
    position:relative;
    z-index:2;
}

.ps-touch-card span{
    display:inline-flex;
    margin-bottom:12px;
    color:var(--ps-gold) !important;
    font-size:11px;
    line-height:1;
    font-weight:950;
    letter-spacing:1.1px;
}

.ps-touch-card h3{
    margin:0 0 12px;
    color:#fff !important;
    font-size:22px;
    line-height:1.65;
    font-weight:950;
}

.ps-touch-card p{
    margin:0;
    color:var(--ps-muted) !important;
    font-size:14px;
    line-height:2;
    font-weight:600;
}

/* ETHICS */

.ps-ethics-panel{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:42px;
    align-items:center;
    padding:40px;
    border-radius:var(--ps-radius-xl);
    background:
        radial-gradient(circle at 50% 0%, rgba(243,194,140,.12), transparent 34%),
        linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.024));
    border:1px solid rgba(255,255,255,.10);
    box-shadow:var(--ps-shadow-soft);
}

.ps-boundary-board{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
}

.ps-boundary-card{
    min-height:150px;
    padding:24px 20px;
    border-radius:30px;
    background:
        radial-gradient(circle at 50% 0%, rgba(255,255,255,.06), transparent 38%),
        linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.026));
    border:1px solid rgba(255,255,255,.10);
    text-align:center;
}

.ps-boundary-card span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:36px;
    padding:0 14px;
    margin-bottom:14px;
    border-radius:999px;
    color:#fff !important;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.10);
    font-size:12px;
    font-weight:950;
}

.ps-boundary-card strong{
    display:block;
    color:#fff !important;
    font-size:19px;
    line-height:1.6;
    font-weight:950;
}

.ps-boundary-gold span{
    color:#1d1208 !important;
    background:var(--ps-gold);
    border-color:rgba(255,255,255,.20);
}

/* DETAILS */

.ps-details-card{
    display:grid;
    grid-template-columns:180px 1fr;
    gap:32px;
    align-items:center;
    padding:42px;
    border-radius:var(--ps-radius-xl);
    background:
        radial-gradient(circle at 50% 0%, rgba(243,194,140,.12), transparent 34%),
        linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.026));
    border:1px solid rgba(255,255,255,.10);
    box-shadow:var(--ps-shadow-soft);
}

.ps-details-icon{
    width:180px;
    height:180px;
    border-radius:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#1d1208 !important;
    background:
        linear-gradient(180deg,var(--ps-gold-2),var(--ps-gold-dark));
    font-size:92px;
    line-height:1;
    font-weight:950;
    box-shadow:0 26px 80px rgba(243,194,140,.20);
}

.ps-details-content span{
    display:inline-flex;
    margin-bottom:12px;
    color:var(--ps-gold) !important;
    font-size:12px;
    font-weight:950;
    letter-spacing:1px;
}

.ps-details-content h2{
    margin:0 0 28px;
    color:#fff !important;
    font-size:44px;
    line-height:1.25;
    font-weight:950;
}

.ps-detail-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
}

.ps-detail-item{
    padding:18px;
    border-radius:24px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.10);
}

.ps-detail-item strong{
    display:block;
    margin-bottom:8px;
    color:#fff !important;
    font-size:16px;
    line-height:1.6;
    font-weight:900;
}

.ps-detail-item p{
    margin:0;
    color:var(--ps-muted) !important;
    font-size:14px;
    line-height:2;
    font-weight:600;
}

/* RESULT */

.ps-result-panel{
    display:grid;
    grid-template-columns:.95fr 1.05fr;
    gap:42px;
    align-items:center;
    padding:40px;
    border-radius:var(--ps-radius-xl);
    background:
        radial-gradient(circle at 50% 0%, rgba(243,194,140,.12), transparent 34%),
        linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.024));
    border:1px solid rgba(255,255,255,.10);
    box-shadow:var(--ps-shadow-soft);
}

.ps-result-visual{
    overflow:hidden;
    border-radius:36px;
    border:1px solid rgba(255,255,255,.10);
    box-shadow:var(--ps-shadow-soft);
}

.ps-result-visual img{
    display:block;
    width:100%;
    aspect-ratio:1 / 1;
    object-fit:cover;
}

.ps-result-list{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.ps-result-item{
    display:flex;
    align-items:flex-start;
    gap:14px;
    min-height:76px;
    padding:16px 18px;
    border-radius:24px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.10);
}

.ps-result-item span{
    width:32px;
    height:32px;
    min-width:32px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#1d1208 !important;
    background:var(--ps-gold);
    font-size:15px;
    font-weight:950;
}

.ps-result-item p{
    margin:0;
    color:#fff !important;
    font-size:14px;
    line-height:2;
    font-weight:700;
}

/* FAQ */

.ps-faq-list{
    width:min(920px,100%);
    margin:0 auto;
    display:flex;
    flex-direction:column;
    gap:16px;
}

.ps-faq-item{
    padding:28px 30px;
    border-radius:30px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.070), rgba(255,255,255,.026));
    border:1px solid rgba(255,255,255,.10);
    box-shadow:0 18px 54px rgba(0,0,0,.22);
}

.ps-faq-item h3{
    margin:0 0 12px;
    color:#fff !important;
    font-size:21px;
    line-height:1.7;
    font-weight:950;
}

.ps-faq-item p{
    margin:0;
    color:var(--ps-muted) !important;
    font-size:15px;
    line-height:2.05;
    font-weight:600;
}

/* PRICING */

.ps-pricing-section{
    padding-bottom:150px;
    background:
        radial-gradient(circle at 50% 20%, rgba(243,194,140,.10), transparent 32%);
}

.ps-pricing-card{
    position:relative;
    overflow:hidden;
    width:min(900px,100%);
    margin:0 auto;
    padding:56px 48px 50px;
    border-radius:var(--ps-radius-xl);
    text-align:center;
    background:
        radial-gradient(circle at 50% 0%, rgba(243,194,140,.18), transparent 34%),
        linear-gradient(180deg, rgba(255,255,255,.086), rgba(255,255,255,.030));
    border:1px solid rgba(243,194,140,.20);
    box-shadow:var(--ps-shadow);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
}

.ps-pricing-card::before{
    content:"";
    position:absolute;
    inset:auto -20% -42% -20%;
    height:360px;
    pointer-events:none;
    background:radial-gradient(circle, rgba(243,194,140,.16), transparent 72%);
}

.ps-pricing-card > *{
    position:relative;
    z-index:2;
}

.ps-pricing-kicker{
    display:inline-flex;
    margin-bottom:22px;
    padding:10px 18px;
    border-radius:999px;
    color:#ffe7cf !important;
    background:rgba(243,194,140,.10);
    border:1px solid rgba(243,194,140,.22);
    font-size:13px;
    font-weight:950;
}

.ps-pricing-card h2{
    margin:0 0 18px;
    color:#fff !important;
    font-size:clamp(40px,6vw,76px);
    line-height:1.08;
    letter-spacing:-2px;
    font-weight:950;
}

.ps-pricing-text{
    max-width:680px;
    margin:0 auto;
    color:var(--ps-soft) !important;
    font-size:16px;
    line-height:2.1;
    font-weight:650;
}

.ps-price-wrap{
    margin:40px 0 30px;
}

.ps-old-price{
    display:inline-block;
    margin-bottom:12px;
    color:rgba(255,255,255,.42) !important;
    font-size:34px;
    line-height:1.2;
    font-weight:950;
    text-decoration:line-through;
    text-decoration-thickness:3px;
    text-decoration-color:rgba(243,194,140,.72);
}

.ps-new-price{
    display:block;
    color:#fff !important;
    font-size:clamp(50px,7vw,84px);
    line-height:1;
    font-weight:950;
    letter-spacing:-2px;
    text-shadow:
        0 0 42px rgba(243,194,140,.18),
        0 14px 34px rgba(0,0,0,.34);
}

.ps-price-empty{
    font-size:30px;
    line-height:1.6;
}

.ps-benefits{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
    margin:34px 0;
}

.ps-benefit{
    display:flex;
    align-items:flex-start;
    gap:12px;
    min-height:78px;
    padding:18px;
    border-radius:22px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.10);
    text-align:right;
}

.ps-benefit span{
    width:30px;
    height:30px;
    min-width:30px;
    margin-top:4px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#1d1208 !important;
    background:var(--ps-gold);
    font-size:15px;
    font-weight:950;
}

.ps-benefit p{
    margin:0;
    color:#fff !important;
    font-size:14px;
    line-height:2;
    font-weight:800;
}

/* FORM */

.ps-signup-form{
    margin-top:28px;
}

.ps-form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
    margin-bottom:18px;
}

.ps-form-field{
    display:flex;
    flex-direction:column;
    gap:10px;
    text-align:right;
}

.ps-form-field span{
    color:var(--ps-soft) !important;
    font-size:14px;
    font-weight:800;
}

.ps-form-field input{
    width:100%;
    height:62px;
    padding:0 18px;
    border-radius:18px;
    outline:none;
    color:#fff !important;
    background:rgba(0,0,0,.24);
    border:1px solid rgba(255,255,255,.10);
    font-size:15px;
    font-weight:700;
}

.ps-form-field input::placeholder{
    color:rgba(255,255,255,.32);
}

.ps-form-field input:focus{
    border-color:rgba(243,194,140,.34);
    box-shadow:
        0 0 0 4px rgba(243,194,140,.10),
        inset 0 1px 0 rgba(255,255,255,.07);
}

.ps-form-field input[name="phone"]{
    direction:rtl;
    text-align:right;
}

/* HOVER */

.ps-principle-card,
.ps-touch-card,
.ps-boundary-card,
.ps-detail-item,
.ps-result-item,
.ps-faq-item,
.ps-benefit,
.ps-stat-card{
    transition:
        transform .24s var(--ps-ease),
        box-shadow .24s var(--ps-ease),
        border-color .24s var(--ps-ease),
        background .24s var(--ps-ease);
}

@media (hover:hover){
    .ps-principle-card:hover,
    .ps-touch-card:hover,
    .ps-boundary-card:hover,
    .ps-detail-item:hover,
    .ps-result-item:hover,
    .ps-faq-item:hover,
    .ps-benefit:hover,
    .ps-stat-card:hover{
        transform:translateY(-5px);
        border-color:rgba(243,194,140,.24);
        box-shadow:0 28px 82px rgba(0,0,0,.34);
        background:linear-gradient(180deg, rgba(255,255,255,.086), rgba(255,255,255,.032));
    }
}

/* RESPONSIVE */

@media (max-width:1180px){

    .ps-touch-map{
        grid-template-columns:repeat(2,1fr);
    }

    .ps-principles-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width:980px){

    .ps-hero-layout,
    .ps-intimacy-panel,
    .ps-ethics-panel,
    .ps-details-card,
    .ps-result-panel{
        grid-template-columns:1fr;
    }

    .ps-section-head-right{
        text-align:center;
    }

    .ps-hero-copy,
    .ps-intimacy-title{
        text-align:center;
    }

    .ps-hero-actions{
        justify-content:center;
    }

    .ps-hero-visual,
    .ps-result-visual{
        max-width:620px;
        margin:0 auto;
    }
}

@media (max-width:768px){

    .ps-container{
        width:100%;
        max-width:100%;
        padding-left:16px;
        padding-right:16px;
    }

    .ps-hero{
        min-height:auto;
        padding:62px 0 76px;
    }

    .ps-hero-layout{
        gap:28px;
    }

    .ps-hero-copy{
        padding:32px 20px 28px;
        border-radius:34px;
    }

    .ps-hero h1{
        font-size:clamp(56px,16vw,82px);
        line-height:1;
        letter-spacing:-2px;
    }

    .ps-hero-lead{
        font-size:14.5px;
        line-height:2.05;
    }

    .ps-hero-actions{
        flex-direction:column;
        width:100%;
    }

    .ps-main-btn,
    .ps-ghost-btn{
        width:100%;
    }

    .ps-hero-stats{
        grid-template-columns:1fr;
        gap:10px;
    }

    .ps-stat-card{
        min-height:auto;
        padding:14px 16px;
    }

    .ps-poster-card{
        border-radius:32px;
    }

    .ps-pulse-panel{
        position:relative;
        left:auto;
        bottom:auto;
        width:100%;
        margin-top:14px;
    }

    .ps-section{
        padding:76px 0;
    }

    .ps-section-head{
        margin-bottom:32px;
    }

    .ps-section-head h2,
    .ps-intimacy-title h2{
        font-size:31px;
        line-height:1.34;
        letter-spacing:-.8px;
    }

    .ps-intimacy-panel,
    .ps-ethics-panel,
    .ps-details-card,
    .ps-result-panel,
    .ps-pricing-card{
        padding:20px;
        border-radius:32px;
    }

    .ps-intimacy-text p,
    .ps-text-block p{
        font-size:14px;
        line-height:2.05;
        text-align:center;
    }

    .ps-principles-grid{
        grid-template-columns:1fr;
        gap:12px;
    }

    .ps-principle-card{
        min-height:auto;
        padding:22px 18px;
        border-radius:24px;
    }

    .ps-touch-map{
        grid-template-columns:1fr;
        gap:14px;
    }

    .ps-touch-wide{
        grid-column:auto;
    }

    .ps-touch-card{
        min-height:auto;
        padding:24px 20px;
        border-radius:28px;
    }

    .ps-touch-number{
        font-size:46px;
        margin-bottom:12px;
    }

    .ps-touch-card h3{
        font-size:19px;
    }

    .ps-touch-card p{
        font-size:13.5px;
    }

    .ps-boundary-board{
        grid-template-columns:1fr;
    }

    .ps-boundary-card{
        min-height:auto;
        padding:20px 18px;
        border-radius:24px;
    }

    .ps-details-card{
        gap:22px;
    }

    .ps-details-icon{
        width:140px;
        height:140px;
        margin:0 auto;
        border-radius:30px;
        font-size:72px;
    }

    .ps-details-content{
        text-align:center;
    }

    .ps-details-content h2{
        font-size:32px;
        line-height:1.3;
    }

    .ps-detail-grid{
        grid-template-columns:1fr;
    }

    .ps-result-visual{
        border-radius:28px;
    }

    .ps-result-list{
        gap:12px;
    }

    .ps-result-item{
        padding:14px;
        border-radius:22px;
    }

    .ps-faq-item{
        padding:22px 20px;
        border-radius:24px;
    }

    .ps-faq-item h3{
        font-size:18px;
    }

    .ps-faq-item p{
        font-size:14px;
    }

    .ps-pricing-section{
        padding-bottom:92px;
    }

    .ps-pricing-card h2{
        font-size:36px;
        line-height:1.2;
        letter-spacing:-1px;
    }

    .ps-pricing-text{
        font-size:14px;
        line-height:2;
    }

    .ps-old-price{
        font-size:26px;
    }

    .ps-new-price{
        font-size:44px;
        letter-spacing:-1px;
    }

    .ps-benefits{
        grid-template-columns:1fr;
        gap:12px;
    }

    .ps-form-grid{
        grid-template-columns:1fr;
    }

    .ps-form-field input{
        height:58px;
        font-size:14px;
    }
}

@media (max-width:420px){

    .ps-container{
        padding-left:12px;
        padding-right:12px;
    }

    .ps-hero-copy{
        padding:28px 16px 24px;
        border-radius:28px;
    }

    .ps-hero h1{
        font-size:52px;
    }

    .ps-section-head h2,
    .ps-intimacy-title h2{
        font-size:29px;
    }

    .ps-intimacy-panel,
    .ps-ethics-panel,
    .ps-details-card,
    .ps-result-panel,
    .ps-pricing-card{
        padding-left:16px;
        padding-right:16px;
    }
}

/* REDUCED MOTION */

@media (prefers-reduced-motion:reduce){

    *,
    *::before,
    *::after{
        animation-duration:.001ms !important;
        animation-iteration-count:1 !important;
        transition-duration:.001ms !important;
        scroll-behavior:auto !important;
    }
}



/* =========================
   FOOTER
   ========================= */

.pb-footer {
  position: relative;
  z-index: 2;

  padding: 38px 20px;

  border-top: 1px solid rgba(255,255,255,0.08);

  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,0.015),
      rgba(255,255,255,0.03)
    );
}

.pb-footer-inner {
  max-width: 1180px;

  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  flex-wrap: wrap;
}

.pb-footer p {
  margin: 0;

  color: var(--text-muted);

  font-size: 15px;

  line-height: 1.9;
}

.pb-footer-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.pb-footer-links a {
  color: #dbe5ee;

  text-decoration: none;

  font-size: 15px;
  font-weight: 700;

  transition:
    opacity 0.25s ease,
    color 0.25s ease;
}

.pb-footer-links a:hover {
  color: var(--accent);
}

/* MOBILE */

@media (max-width: 768px) {

  .pb-footer-inner {
    flex-direction: column;

    text-align: center;
  }

  .pb-footer-links {
    gap: 18px;
  }

}
