:root {
    --color-light-green: #E2FFD3;
    --color-normal-green: #25d366;
    --color-dark-green: #075e54;
    --color-light-grey: #f8f9fa;

}

pre {
    display: inline;
}
a {
    color: inherit;
}
.grecaptcha-badge {
    visibility: hidden;
}

.debug {
    border: 1px solid red;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Open Sans", sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
nav {
    background: var(--color-light-green);
    /* box-shadow: 0 2px 4px rgba(0,0,0,0.1); */
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-placeholder {
    background: var(--color-light-green);
    padding: 0.5rem 2rem;
    border-radius: 4px;
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #007bff;
}

.cta-button {
    background: var(--color-normal-green);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    border-color: var(--color-light-green);
}

.cta-button:hover {
    background: var(--color-dark-green);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--color-dark-green) 60%, #0a8f6d 90%);
    padding: 3rem 0 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-title-below {
    padding: 1em;
    backgr1ound: linear-gradient(270deg, var(--color-dark-green) 0%, #0a8f6d 70%);

    background-color: var(--color-dark-green);
    text-align: center;
    color: var(--color-dark-green);
}

.hero-title-below p {
    margin: 0;
    color: var(--color-light-green);
    font-size: 1em;
    font-weight: 600;
}


@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    margin-bottom: 1.5rem;
    font-size: 3.2rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero-title b {
    background: linear-gradient(135deg, #ffffff 0%, var(--color-light-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    margin-bottom: 2.3rem;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.15);
    line-height: 1.6;
}

/* Hero security message and tagline */
.hero .demo-card+div,
.hero-content>p {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    font-weight: 500;
}

.hero .fa-shield-halved {
    opacity: 0.8;
    font-size: 1rem;
}

/* Demo/Try Tool Section */
.demo-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.demo-card .row {
    align-items: center;
}

.demo-card>form>.container>.row>div:first-child>div:first-child {
    text-align: left;
    padding-left: 5px;
    color: var(--color-dark-green);
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.input-placeholder {
    backgr1ound: #f8f9fa;
    border: 2px dashed #ccc;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    text-align: center;
    color: #666;
    font-size: 1.3rem;
}

.button-placeholder {
    background: #28a745;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    width: 100%;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.button-placeholder:hover {
    background: #218838;
}

/* Features Section */
.features {
    padding: 1rem 0;
    background: white;
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card-clean {
    background: rgba(255, 255, 255, 0.7);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(37, 211, 102, 0.2);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05),
        0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-normal-green), var(--color-dark-green));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 24px rgba(37, 211, 102, 0.15),
        0 6px 12px rgba(0, 0, 0, 0.1);
    border-color: rgba(37, 211, 102, 0.4);
}

.feature-card:hover::before {
    opacity: 1;
}

/* Modern Icon Styling */
.feature-card i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--color-normal-green), var(--color-dark-green));
    color: white;
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    position: relative;
}

.feature-card i::before {
    transition: transform 0.4s ease;
}

.feature-card:hover i {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-dark-green);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: var(--color-normal-green);
}

.feature-card p {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}





/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero {
        padding: 2rem 0.3rem 3rem 0.3rem;
    }

    .features-grid {
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
        margin-right: 0;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .demo-card,
    .demo-c1ard {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .demo-card form .container,
    .demo-c1ard form .container {
        padding: 0;
    }

    .demo-card .row,
    .demo-c1ard .row {
        flex-direction: column !important;
        display: flex !important;
    }

    .demo-card .col-8,
    .demo-card .col-4,
    .demo-c1ard .col-8,
    .demo-c1ard .col-4 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .demo-card .col-4,
    .demo-c1ard .col-4 {
        margin-top: 0.5rem;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .demo-card .col-4 .pt-3,
    .demo-c1ard .col-4 .pt-3 {
        padding-top: 0 !important;
    }

    .demo-card .col-4>div,
    .demo-c1ard .col-4>div {
        padding-top: 0 !important;
    }

    #startbtn {
        margin-top: 0.5rem;
    }

    .demo-card>form>.container>.row>div:first-child>div:first-child,
    .demo-c1ard>form>.container>.row>div:first-child>div:first-child {
        text-align: center !important;
        padding-left: 0 !important;
    }

    .hero::before,
    .hero::after {
        width: 300px;
        height: 300px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .features-grid {
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
        margin-right: 0;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero {
        padding: 1.5rem 0.6rem 2.5rem 0.6rem;
    }

    .hero-content {
        padding: 0 0.5rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    .demo-card,
    .demo-c1ard {
        padding: 1.25rem;
        border-radius: 12px;
    }

    .demo-card>form>.container>.row>div:first-child>div:first-child,
    .demo-c1ard>form>.container>.row>div:first-child>div:first-child {
        font-size: 0.95rem;
        margin-bottom: 8px;
        padding-left: 0 !important;
        text-align: center !important;
    }

    .demo-card .container>.row>div:first-child>div,
    .demo-c1ard .container>.row>div:first-child>div {
        text-align: center !important;
        padding-left: 0 !important;
    }

    #phone {
        font-size: 14px;
        padding: 12px 14px;
    }

    #startbtn {
        padding: 14px 20px;
        font-size: 14px;
    }

    .feature-card {
        padding: 1.5rem;
    }
}


.pagefooter {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.95));
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(37, 211, 102, 0.2);
    padding-top: 10px;
    padding-bottom: 5px;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

/* Add subtle gradient overlay */
.pagefooter::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #C5221F, #25D366, #2463EB);
    opacity: 0.6;
}

.logo {
    width: 200px;
}

/* Footer logo enhancement */
.pagefooter .logo {
    filter: grayscale(1) contrast(1.2) brightness(0.8);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.pagefooter .logo:hover {
    filter: grayscale(0);
    transform: scale(1.05);
}

/* Footer text styling */
.pagefooter .text-main-content {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Footer headings */
.pagefooter h4 {
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.pagefooter h4::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #25D366;
}

/* Footer links */
.pagefooter .gjs-link {
    color: #666;
    text-decoration: none;
    display: block;
    padding: 1px 0;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.pagefooter .gjs-link:hover {
    color: #25D366;
    transform: translateX(5px);
}

.pagefooter .gjs-link::before {

    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.pagefooter .gjs-link:hover::before {
    opacity: 1;
    left: -10px;
}

/* Badge/certification images enhancement */
.pagefooter .scale-effect {
    filter: grayscale(0.5);
    transition: all 0.3s ease;
    margin: 5px;
}

.pagefooter .scale-effect:hover {
    filter: grayscale(0);
    transform: scale(1.15);
}

/* Social icons */
.pagefooter .fa-brands {
    background: #f0f0f0;
    padding: 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.pagefooter .fa-brands:hover {
    background: #25D366;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Footer copyright text */
.pagefooter .text-main-content a {
    color: #25D366;
    text-decoration: none;
    font-weight: 600;
}

.pagefooter .text-main-content a:hover {
    text-decoration: underline;
}


.pagefooter #iv3be5 {
    padding: 20px 0px;
}

/* Footer responsive flexbox */
.pagefooter .gjs-grid-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.pagefooter .gjs-grid-column {
    flex: 1 1 200px;
    min-width: 200px;
}

.pagefooter .gjs-grid-column-wide {
    flex: 2 1 400px;
}

@media (max-width: 767px) {
    .features-grid {
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
        margin-right: 0;
    }

    .pagefooter {
        padding: 30px 20px;
        text-align: center;
    }

    .pagefooter h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .pagefooter .gjs-link::before {
        display: none;
    }

    .pagefooter .gjs-grid-column {
        margin-bottom: 30px;
        flex: 1 1 100%;
        min-width: 0;
    }

    .pagefooter .gjs-grid-column-wide {
        flex: 1 1 100%;
        min-width: 0;
    }

    .pagefooter .gjs-grid-row {
        gap: 20px;
    }

    /* Wrap footer badge images on mobile */
    .pagefooter .text-main-content {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        align-items: flex-start;
    }

    .pagefooter .text-main-content a {
        display: block;
    }

    .pagefooter .text-main-content a img {
        max-width: 100%;
        height: auto;
    }
}


/* Submit Button - Modern Design */
#startbtn {
    width: 100%;
    padding: 16px 25px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    margin-top: 7px;
    outline: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

#startbtn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

#startbtn:not(:disabled) {
    background: linear-gradient(135deg, var(--color-normal-green), #0ea76f);
    color: white !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

#startbtn:not(:disabled):hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

#startbtn:not(:disabled):hover::before {
    left: 100%;
}

#startbtn:not(:disabled):active {
    transform: translateY(-1px);
}

#startbtn:disabled {
    background: linear-gradient(135deg, #e0e0e0, #c0c0c0) !important;
    color: #888 !important;
    cursor: not-allowed;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#phone {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(7, 94, 84, 0.2);
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Phone Input Enhancement */
.iti {
    width: 100%;
    margin-bottom: 5px;
}

#phone:focus {
    border-color: var(--color-normal-green);
    outline: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2),
        0 0 0 3px rgba(37, 211, 102, 0.1);
    tran1sform: translateY(-2px);
}

/* menu */
.menu-wrapper,
.menu a {
    background-color: Tomato;
    width: 100%;
    color: #fff;
}

.menu::after {
    content: "";
    clear: both;
    display: block;
}

.menu a {
    display: block;
    padding: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;

}

.menu li {
    position: relative;

}

.menu>li {
    float: left;
    margin-left: 10px;
    ;
    margin-right: 10px;
    ;

}

.menu,
.menu ul {
    padding: 0;
    margin: 3px;
    margin-top: 0px;
    list-style-type: none;

}

.menu ul li+li {
    border-top: 1px solid #fff;
}

.menu ul {
    position: absolute;
    box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.5);
}

.menu>li ul,
.menu ul ul {
    /* opacity: 0;
    -webkit-tran2sition: all 0.2s ease-in;
    -moz-tra2nsition: all 0.2s ease-in;
    transition: all 0.2s ease; */
    z-index: -1;
    visibility: hidden;
    border-radius: 5px;
}

.menu>li ul {
    top: 30%;
    left: 0;
}

.menu ul ul {
    left: 130%;
    top: 0;
}

.menu ul a {
    width: 250px;
}

.menu>li:hover>ul {
    top: 100%;
    opacity: 1;
    z-index: 1;
    visibility: visible;
    border: 6px solid white;
}

.menu ul>li:hover>ul {
    left: 100%;
    opacity: 1;
    z-index: 1;
    visibility: visible;
}

.menu-sub li a {
    background-color: #FFF;
    font-size: 0.9rem;
    color: #075e54;
}

/* color set */
.menu-gold,
.menu-gold a {
    background-color: #E2FFD3;
    font-weight: 500;
    font-size: 1.05rem;
    color: #075e54;
}

.menu-sub li a:hover {
    background-color: #E2FFD3;
}

.use-cases h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    /* Reduced from 2rem */
    margin-bottom: 20px;
    /* Reduced */
    text-align: center;
    position: relative;
}

.use-cases h3::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-green));
}

.use-cases ul {
    list-style: none;
    padding: 0;
    margin-top: 25px;
    /* Add spacing after title */
}

.use-cases li {
    padding: 12px 0;
    /* Reduced */
    padding-left: 35px;
    /* Reduced */
    position: relative;
    font-size: 15px;
    /* Slightly smaller */
    line-height: 1.6;
    color: #555;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.use-cases li:last-child {
    border-bottom: none;
}

.use-cases li::before {
    content: "✓";
    position: absolute;
    left: 10px;
    color: var(--color-normal-green);
    font-weight: bold;
    font-size: 18px;
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-dark-green);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 320px;
    height: 100%;
    background: white;
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background: var(--color-light-green);
    border-bottom: 2px solid var(--color-normal-green);
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-dark-green);
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-items {
    list-style: none;
    margin: 0;
}

.mobile-menu-items>li {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu-items a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--color-dark-green);
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.mobile-menu-items a:hover {
    background: var(--color-light-green);
}

.mobile-submenu-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    color: var(--color-dark-green);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    text-align: left;
    transition: background 0.3s ease;
}

.mobile-submenu-toggle:hover {
    background: var(--color-light-green);
}

.mobile-submenu-toggle i {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.mobile-submenu-toggle.active i {
    transform: rotate(180deg);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    background: #f8f9fa;
    transition: max-height 0.3s ease;
}

.mobile-submenu.active {
    max-height: 500px;
}

.mobile-submenu a {
    padding: 0.75rem 2rem;
    font-size: 0.95rem;
}

/* Show mobile menu button on mobile */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    /* Hide desktop menu on mobile */
    .nav-content table {
        display: none;
    }
}

/* Hide mobile menu elements on desktop */
@media (min-width: 769px) {

    .mobile-menu,
    .mobile-menu-overlay {
        display: none !important;
    }
}

/* Responsive images */
img {
    max-width: 100%;
    height: auto;
}


@media (width >=1444px) {
    .ribbon {
        position: fixed;
        background: #2c7;
        box-shadow: 0 0 0 999px #2c7;
        font-size: 1.3em;
        clip-path: inset(0 -100%);
        color: white;
        z-index: 1000;
    }

    .right {
        inset: 0 0 auto auto;
        transform-origin: 0 0;
        transform: translate(29.3%) rotate(45deg);
    }

}

@media (width < 1444px) {
    .ribbon {

        font-size: 1.1em;
        color: white;
        position: absolute;
        top: 100px;
        right: 0;
        --r: .8em;
        border-block: .5em solid #0000;
        padding-inline: calc(var(--r) + .25em) .5em;
        line-height: 1.8;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 calc(100% - .25em), var(--r) 50%, 0 .25em);
        background: radial-gradient(.2em 50% at right, #000a, #0000) border-box, #2c7 padding-box;
        width: fit-content;
    }

}