
:root {
    /* Palette tuned for the *site.* subdomain look: dark UI + red accents */
    --brand: #d81f26;
    --brand2: #ff4d57;
    --bg: #0b0f14;
    --panel: #0f1620;
    --card: #0f1620;
    --ink: #f3f4f6;
    --muted: #a7b0bf;
    --border: rgba(255, 255, 255, 0.1);
    --shadow: 0 16px 50px rgba(0, 0, 0, 0.4);
    --radius: 18px;
    --max: 1160px;
    --header-h: 78px;
    --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}
@font-face {
    font-family: "CorporateRounded";
    src: url('../fonts/Corporate/Corporate Rounded Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "CorporateRounded";
    src: url('../fonts/Corporate/Corporate Rounded Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: "CorporateRounded";
    src: url('../fonts/Corporate/Corporate Rounded Oblique.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: "CorporateRounded";
    src: url('../fonts/Corporate/Corporate Rounded Bold Oblique.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

* {
    box-sizing: border-box;
}
html,
body {
    height: 100%;
}
body {
    margin: 0;
    font-family:
        CorporateRounded,
        ui-sans-serif,
        system-ui,
        -apple-system,
        Segoe UI,
        Roboto,
        Helvetica,
        Arial,
        "Apple Color Emoji",
        "Segoe UI Emoji";
    color: var(--ink);
    /* background:
        radial-gradient(
            900px 500px at 20% -10%,
            rgba(216, 31, 38, 0.18),
            transparent 55%
        ),
        radial-gradient(
            900px 500px at 80% 0%,
            rgba(255, 77, 87, 0.1),
            transparent 55%
        ),
        var(--bg); */
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}


.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 18px;
}
.stack {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgb(28 42 55);
    backdrop-filter: saturate(150%) blur(10px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    min-height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    font-weight: 800;
    letter-spacing: 0.3px;
}

.brand-mark {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgb(28, 42, 55);
    width: fit-content;
    max-width: fit-content;
    box-shadow: 0 10px 28px rgba(216, 31, 38, 0.18);
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    line-height: 1.1;
}

.brand-title {
    display: block;
    font-size: 1.7rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.02em;
}

.brand-subtitle {
    display: block;
    margin-top: 2px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.02em;
}

.nav {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.nav > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 14px;
    border-radius: 14px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 700;
    color: rgba(243, 244, 246, 0.92);
    white-space: nowrap;
    transition:
        background 0.2s var(--ease),
        color 0.2s var(--ease),
        border-color 0.2s var(--ease);
}

.nav > a:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.08);
}

.header-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, var(--brand), var(--brand2));
    color: #fff !important;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 14px 30px rgba(216, 31, 38, 0.2);
    transition:
        transform 0.2s var(--ease),
        filter 0.2s var(--ease),
        box-shadow 0.2s var(--ease);
}

.cta:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
}

.utility {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(243, 244, 246, 0.9);
}

.util-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    font-weight: 700;
    font-size: 13px;
    white-space: nowrap;
}

.util-link:hover {
    background: rgba(255, 255, 255, 0.06);
}
.util-ico {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.95;
}

.mobile-toggle {
    display: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: var(--ink);
    border-radius: 14px;
    padding: 10px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
}
.mobile-toggle:hover {
    background: rgba(255, 255, 255, 0.06);
}
.hamburger {
    width: 18px;
    height: 14px;
    position: relative;
}
.hamburger i {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--ink);
    border-radius: 999px;
}
.hamburger i:nth-child(1) {
    top: 0;
}
.hamburger i:nth-child(2) {
    top: 6px;
    opacity: 0.9;
}
.hamburger i:nth-child(3) {
    top: 12px;
}

.offcanvas-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s var(--ease);
    z-index: 60;
}
.offcanvas {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: min(88vw, 400px);
    background: rgba(15, 22, 32, 0.98);
    transform: translateX(100%);
    transition: transform 0.25s var(--ease);
    z-index: 61;
    box-shadow: -12px 0 46px rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--border);
}
.offcanvas.open {
    transform: translateX(0);
}
.offcanvas-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}
.offcanvas-header {
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    border-bottom: 1px solid var(--border);
}
.offcanvas-body {
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.mlink {
    padding: 12px 12px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    font-weight: 800;
}
.mlink:hover {
    background: rgba(255, 255, 255, 0.06);
}
.mgroup {
    margin-top: 8px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.mgroup-title {
    font-weight: 900;
    font-size: 12px;
    color: var(--muted);
    margin: 2px 6px 10px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
.mgroup a {
    display: block;
}
.main-container h6{
    border-bottom: 3px solid red;
    width: fit-content;
}
.hero {
    margin-top: 88px;
    position: relative;
    height: min(74vh, 600px);
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}
.hero .slides {
    position: absolute;
    inset: 0;
    display: flex;
    transition: transform 0.6s var(--ease);
}
.slide {
    min-width: 100%;
    position: relative;
    display: flex;
    align-items: flex-end;
}
.slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--bgimg);
    background-size: cover;
    background-position: center;
    filter: saturate(1.08) contrast(1.06);
    /* transform: scale(1.03); */
}
.slide::after {
    content: "";
    position: absolute;
    inset: 0;
    /* background: linear-gradient(
        180deg,
        rgba(11, 15, 20, 0.15),
        rgba(11, 15, 20, 0.75)
    ); */
}
.hero-inner {
    position: relative;
    width: 100%;
    padding: 28px 0 42px;
}
.hero-card {
    max-width: 760px;
    color: #fff;
    padding: 22px 22px 18px;
    border-radius: 24px;
    background: rgba(15, 22, 32, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
}
.kicker {
    /* color: rgba(243, 244, 246, 0.82); */
    color: white;
    font-weight: 900;
    letter-spacing: 0.35px;
    font-size: 12px;
    text-transform: uppercase;
}
.hero-card h1 {
    margin: 10px 0 10px;
    line-height: 1.06;
    font-size: clamp(30px, 4.3vw, 50px);
}
.hero-card p {
    margin: 0;
    /* color: rgba(243, 244, 246, 0.86); */
    color:#fff;
    max-width: 70ch;
}
.hero-card > * {
    color: white;
}
.hero-controls {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}
.icon-btn {
    cursor: pointer;
    pointer-events: auto;
    width: 48px;
    height: 48px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(15, 22, 32, 0.3);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 14px;
    transition:
        transform 0.15s var(--ease),
        background 0.15s var(--ease);
}
.icon-btn:hover {
    transform: translateY(-1px);
    background: rgba(15, 22, 32, 0.42);
}
.icon-btn svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #fff;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dots {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.22);
    cursor: pointer;
}
.dot.active {
    background: linear-gradient(135deg, var(--brand), var(--brand2));
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 26px rgba(216, 31, 38, 0.28);
}

.section {
    padding: 54px 0;
}
.h2 {
    font-size: 26px;
    margin: 0 0 10px;
    line-height: 1.2;
}
.lead {
    color: var(--muted);
    margin: 0 0 18px;
}

.grid3 {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* border-radius: var(--radius); */
    padding: 18px;
    color: black;
    margin-top: 86px;
    /* background: rgba(15, 22, 32, 0.65); */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    transition:
        transform 0.15s var(--ease),
        box-shadow 0.15s var(--ease),
        border-color 0.15s var(--ease);
}
.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.16);
}
.card h3 {
    margin: 8px 0 8px;
    font-size: 18px;
    line-height: 1.25;
}
.card p {
    margin: 0;
    color: var(--muted);
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 950;
    font-size: 12px;
    letter-spacing: 0.35px;
    color: #fff;
    text-transform: uppercase;
}
.badge::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 99px;
    background: linear-gradient(135deg, var(--brand), var(--brand2));
    box-shadow: 0 0 0 4px rgba(216, 31, 38, 0.14);
}

.split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 18px;
    align-items: start;
}
.panel {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius);
    padding: 18px;
}
.panel h3 {
    margin: 0 0 8px;
}
.panel p {
    margin: 0;
    color: var(--muted);
}

.footer {
    border-top: 1px solid var(--border);
    background: rgba(11, 15, 20, 0.92);
    padding: 30px 0;
}
.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: space-between;
    align-items: flex-start;
}
.footer small {
    color: var(--muted);
}
.footer-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-links span{
    padding-top: 10px;
    padding-bottom: 8px;
}
.footer-links a {
    font-weight: 750;
    color: var(--muted);
}
.footer-links a:hover {
    color: var(--brand2);
}

.meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: var(--muted);
}
.meta b {
    color: var(--ink);
}
.hr {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 18px 0;
}

.page-hero {
    padding: 38px 0 10px;
}
.page-hero h1 {
    margin: 0;
    font-size: 34px;
    line-height: 1.15;
}
.page-hero p {
    margin: 8px 0 0;
    color: var(--muted);
    max-width: 78ch;
}

.list {
    margin: 0;
    padding-left: 18px;
}
.list li {
    margin: 6px 0;
}

@media (max-width: 980px) {
    .grid3 {
        grid-template-columns: 1fr;
    }
    .split {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 980px) {
    .utility {
        display: none;
    }
}
@media (max-width: 860px) {
    .nav {
        display: none;
    }
    .mobile-toggle {
        display: flex;
    }
    .hero {
        height: min(74vh, 560px);
    }
}
/* glass button */
.glass-btn {
    position: relative;
    color: #fff;
    border-radius: 12px;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.08);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    transition: all 0.35s ease;
    overflow: hidden;

    box-shadow:
        0 8px 25px rgba(0,0,0,0.35),
        inset 0 1px 0 rgba(255,255,255,0.25);
        background-color: transparent;
    box-shadow: none;
    opacity: 1;
    transition: all .45s cubic-bezier(.25, 1, .33, 1);
    border-radius: 5px;
    border: 2px solid rgba(255, 255, 255, .75);
}

/* Sizes */

.glass-sm{
    width: 90px;
    height: 45px;
    padding: 5px 5px;
    font-size: 14px;
}

.glass-md{
    padding: 10px 26px;
    font-size: 16px;
}

.glass-lg{
    padding: 14px 36px;
    font-size: 18px;
}

/* hover */

.glass-btn:hover {
    background: rgba(90,140,255,0.25);
    border-color: rgba(140,170,255,0.8);

    box-shadow:
        0 10px 35px rgba(80,120,255,0.5),
        inset 0 1px 0 rgba(255,255,255,0.35);

    transform: translateY(-2px);
}

.glass-btn:active {
    transform: scale(0.96);
}

/* reflection */

.glass-btn::before {
    content: "";
    position: absolute;
    top: -120%;
    left: -50%;
    width: 200%;
    height: 300%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.35),
        transparent
    );

    transform: rotate(25deg);
    transition: all 0.7s ease;
}



.glass-text{
    position: relative;
    z-index: 2;
}
/* end of glass button */
