/* ═══════════════════════════════════════════
   KLOSYT — Glass Runway
   Frosted glass + animated gradient mesh
   ═══════════════════════════════════════════ */

*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}

:root{
    --glass-bg:rgba(255,255,255,.06);
    --glass-border:rgba(255,255,255,.12);
    --glass-hover:rgba(255,255,255,.10);
    --text-1:#fff;
    --text-2:rgba(255,255,255,.6);
    --text-3:rgba(255,255,255,.35);
    --radius:20px;
    --ease:cubic-bezier(.16,1,.3,1);
}

html{scroll-behavior:smooth}

body{
    font-family:-apple-system,BlinkMacSystemFont,"SF Pro Display","SF Pro Text",system-ui,sans-serif;
    -webkit-font-smoothing:antialiased;
    background:#050508;
    color:var(--text-1);
    min-height:100vh;
    overflow-x:hidden;
}

/* ── Animated Gradient Mesh ── */

.mesh-bg{
    position:fixed;inset:0;z-index:0;overflow:hidden;
    background:#050508;
}

.mesh-orb{
    position:absolute;
    border-radius:50%;
    filter:blur(120px);
    opacity:.5;
    will-change:transform;
}

.orb-1{
    width:600px;height:600px;
    background:radial-gradient(circle,#1a3d8f 0%,transparent 70%);
    top:-10%;left:-5%;
    animation:float-1 18s ease-in-out infinite alternate;
}
.orb-2{
    width:500px;height:500px;
    background:radial-gradient(circle,#6a2fc1 0%,transparent 70%);
    bottom:-10%;right:-5%;
    animation:float-2 22s ease-in-out infinite alternate;
}
.orb-3{
    width:400px;height:400px;
    background:radial-gradient(circle,#0a5e8a 0%,transparent 70%);
    top:40%;left:50%;
    animation:float-3 20s ease-in-out infinite alternate;
}

@keyframes float-1{0%{transform:translate(0,0) scale(1)}100%{transform:translate(80px,60px) scale(1.15)}}
@keyframes float-2{0%{transform:translate(0,0) scale(1)}100%{transform:translate(-70px,-50px) scale(1.1)}}
@keyframes float-3{0%{transform:translate(0,0) scale(1)}100%{transform:translate(-40px,70px) scale(1.2)}}

/* ── Language switcher (injected by i18n.js) ── */

.lang-switcher{position:relative;display:flex;align-items:center}
.lang-btn{
    display:inline-flex;align-items:center;gap:4px;
    padding:0;border-radius:100px;border:none;
    background:none;
    text-decoration:none!important;color:var(--text-2)!important;
    font-size:.85rem;cursor:pointer;transition:opacity .2s;
    white-space:nowrap;height:22px;
}
.lang-btn:hover{opacity:.7;color:var(--text-1)!important}
.lang-icon{display:inline-flex;align-items:center}
.lang-icon svg{width:22px;height:22px}
.lang-label-text{display:none}
.theme-name-text{display:none}

.lang-dropdown{
    display:none;position:absolute;top:calc(100% + 10px);right:0;
    min-width:180px;max-height:400px;overflow-y:auto;
    background:rgba(20,20,20,.92);
    backdrop-filter:blur(40px) saturate(1.6);
    -webkit-backdrop-filter:blur(40px) saturate(1.6);
    border:1px solid var(--glass-border);
    border-radius:16px;padding:6px;z-index:200;
    box-shadow:0 16px 48px rgba(0,0,0,.6);
}
.lang-switcher.open .lang-dropdown{display:block}

.lang-option{
    display:block;width:100%;padding:8px 14px;
    border:none;background:none;color:var(--text-2);
    font-size:.88rem;font-weight:500;text-align:left;
    cursor:pointer;border-radius:10px;
    font-family:inherit;transition:background .15s,color .15s;
}
.lang-option:hover{background:rgba(255,255,255,.08);color:var(--text-1)}
.lang-option.active{background:rgba(255,255,255,.1);color:var(--text-1);font-weight:600}

@media(max-width:640px){.lang-label-text{display:none}}

/* ── Nav overflow fix ── */

.nav-links{overflow:visible;flex-shrink:1;min-width:0}
.nav-bar{overflow:visible}

/* ── Glass utility ── */

.glass{
    background:var(--glass-bg);
    backdrop-filter:blur(40px) saturate(1.6);
    -webkit-backdrop-filter:blur(40px) saturate(1.6);
    border:1px solid var(--glass-border);
}

/* ── Layout ── */

.wrap{max-width:1080px;margin:0 auto;padding:0 1.5rem;position:relative;z-index:1}
.section{padding:5rem 0;position:relative;z-index:1}
.tc{text-align:center}

/* ── Nav ── */

.nav-wrap{
    position:fixed;top:16px;left:0;width:100%;
    display:flex;justify-content:center;z-index:100;
}

.nav-bar{
    width:90%;max-width:720px;height:52px;
    border-radius:100px;
    display:flex;justify-content:space-between;align-items:center;
    padding:0 1.25rem;
    transition:background .3s var(--ease);
}

.nav-bar:hover{background:var(--glass-hover)}

.nav-brand{
    display:flex;align-items:center;gap:8px;
    text-decoration:none;color:var(--text-1);
    font-weight:700;font-size:1.05rem;letter-spacing:-.02em;
}
.nav-icon{height:28px;width:28px;border-radius:7px}

.nav-links{display:flex;align-items:center;gap:1rem}
.nav-links a{
    display:inline-flex;align-items:center;gap:4px;
    text-decoration:none;color:var(--text-2);
    font-weight:500;font-size:.9rem;
    transition:color .2s;
}
.nav-links a:hover{color:var(--text-1)}
.nav-links a svg{flex-shrink:0}

/* Theme switcher */
.theme-switcher{position:relative;display:flex;align-items:center}
.theme-toggle{
    background:none;border:none;
    padding:0;border-radius:100px;
    font-size:.85rem;cursor:pointer;
    color:var(--text-2);transition:opacity .2s;
    display:inline-flex;align-items:center;
    height:22px;
}
.theme-toggle:hover{opacity:.7}
#theme-pill{display:inline-flex;align-items:center;gap:6px}

.theme-menu{
    display:none;position:absolute;top:calc(100% + 10px);right:0;
    min-width:200px;max-height:400px;overflow-y:auto;
    background:rgba(20,20,20,.92);
    backdrop-filter:blur(40px) saturate(1.6);
    -webkit-backdrop-filter:blur(40px) saturate(1.6);
    border:1px solid var(--glass-border);
    border-radius:16px;padding:6px;z-index:200;
    box-shadow:0 16px 48px rgba(0,0,0,.6);
}
.theme-switcher.open .theme-menu{display:block}

.theme-option{
    display:flex;align-items:center;width:100%;padding:8px 14px;
    border:none;background:none;color:var(--text-2);
    font-size:.88rem;font-weight:500;text-align:left;
    cursor:pointer;border-radius:10px;
    font-family:inherit;transition:background .15s,color .15s;
}
.theme-option:hover{background:rgba(255,255,255,.08);color:var(--text-1)}
.theme-option.active{background:rgba(255,255,255,.1);color:var(--text-1);font-weight:600}

/* ── Hero ── */

.hero{
    min-height:100vh;min-height:100dvh;
    display:flex;align-items:center;justify-content:center;
    text-align:center;padding:120px 1.5rem 80px;
    position:relative;z-index:1;
}

.hero-inner{max-width:640px}

.hero-glow{
    position:relative;display:inline-block;margin-bottom:2.5rem;
}
.hero-glow::after{
    content:'';position:absolute;inset:-30%;
    border-radius:50%;
    background:radial-gradient(circle,rgba(26,61,143,.4) 0%,transparent 70%);
    z-index:-1;filter:blur(40px);
    animation:pulse 4s ease-in-out infinite alternate;
}
@keyframes pulse{0%{opacity:.5;transform:scale(1)}100%{opacity:.8;transform:scale(1.1)}}

.hero-icon{
    width:128px;height:128px;border-radius:30px;
    box-shadow:0 24px 64px rgba(0,0,0,.4);
}

.hero h1{
    font-size:clamp(2.5rem,6vw,4rem);
    font-weight:800;letter-spacing:-.04em;line-height:1.08;
    margin-bottom:1.25rem;
}

.hero-sub{
    font-size:clamp(1rem,2.2vw,1.2rem);
    color:var(--text-2);line-height:1.65;
    margin-bottom:2.5rem;
    max-width:520px;margin-left:auto;margin-right:auto;
}

.badge-link{display:inline-block;transition:transform .2s,opacity .2s;opacity:.92}
.badge-link:hover{opacity:1;transform:translateY(-2px)}
.badge-img{height:48px}

.hero-devices{
    margin-top:1.25rem;
    font-size:.85rem;color:var(--text-3);font-weight:500;letter-spacing:.02em;
}

/* ── What's New ── */

.wn-section{padding-top:0;padding-bottom:0}
.wn-card{max-width:480px;margin:0 auto;text-align:center}
.wn-card .card-ico{margin-left:auto;margin-right:auto}

/* ── Steps ── */

.steps{
    display:flex;align-items:flex-start;
    padding:2.5rem 2.5rem;border-radius:var(--radius);
    gap:0;
}

.step{
    flex:1;display:flex;gap:1rem;align-items:flex-start;
    padding:0 1.5rem;
}
.step h3{font-size:1rem;font-weight:700;margin-bottom:.3rem;letter-spacing:-.01em}
.step p{font-size:.88rem;color:var(--text-2);line-height:1.5}

.step-n{
    width:36px;height:36px;border-radius:50%;flex-shrink:0;
    display:flex;align-items:center;justify-content:center;
    font-weight:700;font-size:.95rem;
    background:rgba(0,122,255,.12);color:#4d9fff;
    border:1px solid rgba(0,122,255,.2);
}

.step-div{
    width:1px;height:56px;flex-shrink:0;align-self:center;
    background:var(--glass-border);
}

/* ── Section title ── */

.sec-title{
    text-align:center;margin-bottom:3.5rem;
    font-size:clamp(2rem,4.5vw,3rem);
    font-weight:800;letter-spacing:-.04em;line-height:1.1;
}

/* ── Feature grid ── */

.grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1.25rem;
}

.card{
    padding:2rem;border-radius:var(--radius);
    transition:background .3s var(--ease),border-color .3s var(--ease),transform .3s var(--ease);
}
.card:hover{
    background:var(--glass-hover);
    border-color:rgba(255,255,255,.18);
    transform:translateY(-3px);
}

.card-ico{
    width:44px;height:44px;border-radius:12px;
    display:flex;align-items:center;justify-content:center;
    font-size:1.25rem;margin-bottom:1.25rem;
    background:var(--bg);color:var(--c);
}

.card-ico svg,.pl-ico svg{display:block}

.card h3{font-size:1.05rem;font-weight:700;margin-bottom:.5rem;letter-spacing:-.01em}
.card p{font-size:.88rem;color:var(--text-2);line-height:1.55}

/* ── Pricing ── */

.price-card{
    max-width:420px;width:100%;margin:0 auto;
    border-radius:var(--radius);overflow:hidden;
    transition:border-color .3s var(--ease),transform .3s var(--ease);
}
.price-card:hover{border-color:rgba(255,255,255,.18);transform:translateY(-3px)}

.price-head{
    padding:2.5rem 2rem 2rem;text-align:center;
    border-bottom:1px solid var(--glass-border);
}

.price-badge{
    display:inline-block;padding:6px 20px;
    background:linear-gradient(135deg,rgba(255,204,0,.15),rgba(255,149,0,.15));
    border:1px solid rgba(255,204,0,.2);
    border-radius:100px;font-size:.9rem;font-weight:700;
    color:#ffcc00;letter-spacing:.02em;margin-bottom:1.25rem;
}

.price-amt{display:flex;align-items:baseline;justify-content:center;gap:4px;margin-bottom:.5rem}
.price-num{font-size:3rem;font-weight:800;letter-spacing:-.04em}
.price-per{font-size:1rem;color:var(--text-2);font-weight:500}
.price-trial{font-size:.88rem;color:var(--text-3)}

.price-list{
    list-style:none;padding:1.5rem 2rem;
    display:flex;flex-direction:column;gap:4px;
}
.price-list li{
    display:flex;align-items:center;gap:12px;
    padding:10px 12px;border-radius:12px;
    transition:background .15s;
}
.price-list li:hover{background:rgba(255,255,255,.04)}

.pl-ico{
    width:32px;height:32px;border-radius:8px;flex-shrink:0;
    display:flex;align-items:center;justify-content:center;
    font-size:1rem;background:var(--bg);color:var(--c);
}
.price-list li span:last-child{font-size:.92rem;font-weight:500}

.price-foot{
    padding:1.5rem 2rem 2rem;text-align:center;
    border-top:1px solid var(--glass-border);
}
.price-note{margin-top:.75rem;font-size:.8rem;color:var(--text-3)}

/* ── Languages ── */

.lang-label{
    font-size:.9rem;color:var(--text-3);font-weight:600;
    text-transform:uppercase;letter-spacing:.08em;margin-bottom:1.25rem;
}
.lang-row{
    display:flex;flex-wrap:wrap;justify-content:center;
    gap:8px;max-width:680px;margin:0 auto;
}
.lang-row span{
    padding:6px 14px;
    background:var(--glass-bg);border:1px solid var(--glass-border);
    border-radius:100px;font-size:.82rem;color:var(--text-2);font-weight:500;
    transition:background .15s;
}
.lang-row span:hover{background:var(--glass-hover)}

/* ── Legal / Support pages ── */

.legal-content{max-width:800px;margin:0 auto;display:flex;flex-direction:column;gap:1.25rem}
.legal-card{border-radius:var(--radius);padding:2rem}
.legal-card h3{font-size:1.15rem;font-weight:700;margin-bottom:.75rem}
.legal-card p{color:var(--text-2);line-height:1.7;font-size:.95rem}
.legal-card p+p{margin-top:.75rem}
.legal-card ul{color:var(--text-2);line-height:1.8;padding-left:1.5rem;margin-top:.5rem;font-size:.95rem}
.legal-card a{color:#5ac8fa}

.legal-table{width:100%;border-collapse:collapse;font-size:.88rem;color:var(--text-2);margin-top:.75rem}
.legal-table th{text-align:left;padding:8px 12px;color:var(--text-1);border-bottom:1px solid var(--glass-border)}
.legal-table td{padding:8px 12px;border-bottom:1px solid rgba(255,255,255,.04)}

.faq-grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:1.25rem}

@media(max-width:768px){
    .faq-grid-2{grid-template-columns:1fr}
    .legal-card{padding:1.5rem}
}

/* ── Footer ── */

.foot{padding:4rem 0;position:relative;z-index:1}
.foot-links{display:flex;justify-content:center;gap:2rem;margin-bottom:1.5rem}
.foot-links a{
    color:var(--text-2);text-decoration:none;
    font-size:.9rem;font-weight:500;transition:color .2s;
}
.foot-links a:hover{color:var(--text-1)}
.foot-copy{color:var(--text-3);font-size:.82rem}

/* ── Scroll Reveal ── */

.fade-up{
    opacity:0;transform:translateY(28px);
    transition:opacity .7s var(--ease),transform .7s var(--ease);
}
.fade-up.in{opacity:1;transform:translateY(0)}

/* ═══════════════════════════════════════
   Support page compat
   ═══════════════════════════════════════ */

.support-header{padding:7rem 0 2rem}
.description{color:var(--text-2);font-size:1.1rem;line-height:1.6;margin-top:.5rem}

.support-section{max-width:900px;margin:0 auto;padding:3rem 2rem 2rem}
.support-section .section-title{font-size:clamp(1.8rem,4vw,2.5rem);margin-bottom:1.5rem}

.faq-section{max-width:900px;margin:0 auto;padding:3rem 2rem 4rem}
.faq-grid{display:grid;grid-template-columns:1fr;gap:1.5rem}
.faq-card{
    background:var(--glass-bg);border:1px solid var(--glass-border);
    border-radius:var(--radius);padding:2rem;
    transition:transform .3s var(--ease),border-color .3s var(--ease);
}
.faq-card:hover{transform:translateY(-2px);border-color:rgba(255,255,255,.18)}
.faq-card h3{font-size:1.15rem;margin-bottom:.5rem}
.faq-card p{color:var(--text-2);line-height:1.6;font-size:.95rem}

.glass-panel-sm{
    background:var(--glass-bg);border:1px solid var(--glass-border);
    border-radius:var(--radius);padding:2rem;
    backdrop-filter:blur(40px) saturate(1.6);
    -webkit-backdrop-filter:blur(40px) saturate(1.6);
}

.glass-btn{
    display:inline-flex;align-items:center;justify-content:center;
    padding:14px 32px;font-size:1rem;font-weight:600;
    border-radius:100px;text-decoration:none;
    background:var(--text-1);color:#050508;
    transition:transform .2s,box-shadow .2s;
}
.glass-btn:hover{transform:scale(1.02);box-shadow:0 8px 30px rgba(255,255,255,.2)}

.getting-started-grid{display:grid;grid-template-columns:1fr;gap:1.5rem}
.step-card{position:relative}
.step-number{
    display:inline-flex;align-items:center;justify-content:center;
    width:40px;height:40px;border-radius:50%;
    background:rgba(0,122,255,.12);color:#4d9fff;
    font-weight:700;font-size:1.1rem;
    margin-bottom:.75rem;border:1px solid rgba(0,122,255,.2);
}

.tips-grid{display:grid;grid-template-columns:1fr;gap:1.5rem}
.tip-card{display:flex;gap:1rem;align-items:flex-start}
.tip-icon{font-size:2rem;flex-shrink:0}
.tip-card h3{font-size:1.05rem;margin-bottom:.3rem}
.tip-card p{color:var(--text-2);font-size:.9rem;line-height:1.5}

.contact-card h3{font-size:1.15rem;margin-bottom:.75rem}

.subscription-info{
    display:flex;align-items:center;gap:1rem;
    padding:1rem 1.25rem;border-radius:12px;
    background:var(--glass-bg);border:1px solid var(--glass-border);
}
.subscription-info .sub-icon{
    width:38px;height:38px;border-radius:10px;
    display:flex;align-items:center;justify-content:center;
    font-size:1.2rem;flex-shrink:0;
}
.subscription-info strong{font-size:.95rem}
.subscription-info p{color:var(--text-2);font-size:.82rem;margin:0}

.troubleshoot-item summary{
    cursor:pointer;font-weight:600;font-size:1.05rem;
    padding:1rem 0;color:var(--text-1);list-style:none;
    display:flex;align-items:center;gap:.75rem;
    border-bottom:1px solid var(--glass-border);
    transition:color .2s;
}
.troubleshoot-item summary::-webkit-details-marker{display:none}
.troubleshoot-item summary::before{
    content:'▸';font-size:.9rem;color:var(--text-3);
    transition:transform .2s;
}
.troubleshoot-item[open] summary::before{transform:rotate(90deg)}
.troubleshoot-item summary:hover{color:rgba(255,255,255,.9)}
.troubleshoot-answer{
    padding:.75rem 0 1.25rem 1.65rem;
    color:var(--text-2);font-size:.95rem;line-height:1.6;
}

.cta-section{max-width:900px;margin:0 auto;padding:0 2rem}

/* ═══════════════════════════════════════
   Responsive
   ═══════════════════════════════════════ */

@media(max-width:900px){
    .grid{grid-template-columns:repeat(2,1fr)}
}

@media(max-width:768px){
    .section{padding:3.5rem 0}

    .steps{flex-direction:column;padding:2rem;gap:0}
    .step{padding:1rem 0}
    .step-div{width:100%;height:1px;align-self:stretch}

    .grid{grid-template-columns:1fr}

    .nav-bar{width:94%;padding:0 1rem;height:48px}
    .nav-links{gap:.6rem}
    .nav-links a{font-size:.82rem}

    .faq-grid,.getting-started-grid,.tips-grid{grid-template-columns:1fr}
    .support-header{padding:5rem 0 1rem}

    .mesh-orb{filter:blur(80px);opacity:.35}
}

@media(max-width:480px){
    .hero h1{font-size:2.2rem}
    .hero-icon{width:100px;height:100px;border-radius:24px}

    .nav-brand span{font-size:.9rem}
    .nav-icon{height:24px;width:24px}
    .nav-bar{border-radius:18px;height:44px}

    .wrap{padding:0 1rem}
    .card{padding:1.5rem}
    .section{padding:2.5rem 0}
    .price-card{border-radius:16px}

    .theme-toggle .theme-name-text{display:none}

    .contact-card table,.contact-card thead,.contact-card tbody,
    .contact-card tr,.contact-card th,.contact-card td{display:block;width:100%}
    .contact-card thead{display:none}
    .contact-card tr{
        margin-bottom:1rem;padding:.75rem;border-radius:12px;
        background:var(--glass-bg);border:1px solid var(--glass-border);
    }
    .contact-card td{padding:4px 0!important;text-align:left!important}
}

/* ═══════════════════════════════════════
   Light mode
   ═══════════════════════════════════════ */

@media(prefers-color-scheme:light){
    :root{
        --glass-bg:rgba(255,255,255,.45);
        --glass-border:rgba(0,0,0,.08);
        --glass-hover:rgba(255,255,255,.6);
        --text-1:#1d1d1f;
        --text-2:rgba(0,0,0,.5);
        --text-3:rgba(0,0,0,.3);
    }

    body{background:#f2f2f7;color:var(--text-1)}

    .mesh-bg{background:#f2f2f7}
    .mesh-orb{opacity:.3}
    .orb-1{background:radial-gradient(circle,#a8c4f0 0%,transparent 70%)}
    .orb-2{background:radial-gradient(circle,#d4b8f0 0%,transparent 70%)}
    .orb-3{background:radial-gradient(circle,#a0d8e8 0%,transparent 70%)}

    .hero-glow::after{background:radial-gradient(circle,rgba(26,61,143,.15) 0%,transparent 70%)}
    .hero-icon{box-shadow:0 24px 64px rgba(0,0,0,.12)}

    .nav-bar{background:rgba(255,255,255,.6);border:1px solid rgba(0,0,0,.06)}
    .nav-bar:hover{background:rgba(255,255,255,.75)}

    .theme-toggle{background:none}
    .theme-toggle:hover{opacity:.7}

    .theme-menu{
        background:rgba(255,255,255,.9);border:1px solid rgba(0,0,0,.08);
        box-shadow:0 16px 48px rgba(0,0,0,.1);
    }
    .theme-option{color:var(--text-2)}
    .theme-option:hover{background:rgba(0,0,0,.05);color:var(--text-1)}
    .theme-option.active{background:rgba(0,0,0,.07);color:var(--text-1)}

    .card:hover{background:rgba(255,255,255,.6);border-color:rgba(0,0,0,.12)}
    .price-card:hover{border-color:rgba(0,0,0,.12)}
    .price-badge{color:#cc8800;background:linear-gradient(135deg,rgba(255,204,0,.2),rgba(255,149,0,.2));border:1px solid rgba(255,204,0,.3)}

    .step-n{background:rgba(0,122,255,.1);color:#007aff;border:1px solid rgba(0,122,255,.15)}

    .glass-btn{background:var(--text-1);color:#fff}
    .glass-btn:hover{box-shadow:0 8px 30px rgba(0,0,0,.1)}

    .faq-card{background:rgba(255,255,255,.45);border:1px solid rgba(0,0,0,.08)}
    .faq-card:hover{border-color:rgba(0,0,0,.12)}
    .glass-panel-sm{background:rgba(255,255,255,.45);border:1px solid rgba(0,0,0,.08)}
    .subscription-info{background:rgba(255,255,255,.45);border:1px solid rgba(0,0,0,.08)}
    .troubleshoot-item summary{border-bottom:1px solid rgba(0,0,0,.06)}
    .troubleshoot-item summary:hover{color:rgba(0,0,0,.85)}

    .contact-card tr{background:rgba(0,0,0,.02);border:1px solid rgba(0,0,0,.06)}
    .price-list li:hover{background:rgba(0,0,0,.03)}
    .lang-row span{background:rgba(255,255,255,.45);border:1px solid rgba(0,0,0,.06)}
    .lang-row span:hover{background:rgba(255,255,255,.65)}

    .lang-btn{background:none;color:var(--text-2)!important}
    .lang-btn:hover{opacity:.7;color:var(--text-1)!important}
    .lang-dropdown{
        background:rgba(255,255,255,.92);border:1px solid rgba(0,0,0,.08);
        box-shadow:0 16px 48px rgba(0,0,0,.1);
    }
    .lang-option{color:var(--text-2)}
    .lang-option:hover{background:rgba(0,0,0,.05);color:var(--text-1)}
    .lang-option.active{background:rgba(0,0,0,.07);color:var(--text-1)}
}