body{
    font-family: "Inter", sans-serif;
    background: #0a101c;
    margin:0;
    color:white;
}

/* Header */
:root {
    --bg: #0B1220;
    --ink: #ffffff;
    --ink-dim: #f4f6fb9e;
    --border-soft: #ffffff14;
    --border-med: #ffffff24;
    --amber: #00264D;
    --amber-soft: #00498d2d;
    --teal: #0052A2;
    --teal-soft: #92929225;
    --text-muted: #aaa;
    --text-light: #fff;
    --accent-color: #ff5252;
    --radius-pill: 999px;
    --card-width: 320px;
    --card-height: 420px;
    --card-gap: 20px;
}
*, *::before, *::after {
    box-sizing: border-box;
}
:focus-visible {
    outline: 2px solid var(--teal);
    outline-offset: 2px;
}
.site-nav {
    position: sticky;
    top: 12px;
    z-index: 99;
}
.nav-bar {
    max-width: 1100px;
    margin: 20px auto;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: var(--radius-pill);
    background: rgba(12, 16, 26, 0.65);
    border: 1px solid var(--border-soft);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.02em;
    text-decoration: none;
    color: var(--ink);
}
.logo-mark {
    position:relative;
    width:auto;
    height:50px;
}
.logo-mark img {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    display: block;
}
@keyframes ripple {
    0%, 100% {
        transform: scale(0.88);
        opacity: 0.45;
    }
    50% {
        transform: scale(1.18);
        opacity: 0.9;
    }
}
.links {
    display: flex;
    gap: 28px;
}
.links a {
    align-items:center;
    position: relative;
    color: var(--ink-dim);
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding-bottom: 6px;
    transition: color 0.2s ease;
}
.links a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--amber), var(--teal));
    border-radius: 2px;
    transform: translateX(-50%);
    transition:.25s;
}
.links a:hover,
.links a:focus-visible {
    color: var(--ink);
}
.links a:hover::after,
.links a:focus-visible::after {
    width: 100%;
}
.nav-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}
.quote {
    padding:12px;
    border-radius: var(--radius-pill);
    background: transparent;
    border: 1px solid var(--border-soft);
    color: var(--ink);
    text-decoration: none;
    font-size: 14px;
    transition: .2s;
    height:44px;
    display:flex;
    align-items:center;
}
.quote:hover,
.quote:focus-visible {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--border-med);
    color: var(--ink);
}
.hamburger {
    position: relative;
    display: none;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-med);
    background: transparent;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s ease;
}
.hamburger:hover,
.hamburger:focus-visible {
    border-color: var(--teal-soft);
}
.hamburger-bars,
.hamburger-x {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.15s ease;
}
.hamburger-bars {
    width: 18px;
    height: 12px;
}
.hamburger-bars span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: var(--ink);
}
.hamburger-bars span:nth-child(1) {
    top: 0;
}
.hamburger-bars span:nth-child(2) {
    top: 5px;
}
.hamburger-bars span:nth-child(3) {
    top: 10px;
}
.hamburger-x {
    opacity: 0;
    font-size: 16px;
    line-height: 1;
    color: var(--ink);
}
.hamburger[aria-expanded="true"] .hamburger-bars {
    opacity: 0;
}
.hamburger[aria-expanded="true"] .hamburger-x {
    opacity: 1;
}
.overlay {
    position: fixed;
    inset: 0;
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 26px;
    z-index: 100;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease;
}
.overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.overlay nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
}
.overlay a {
    color: var(--ink);
    font-size: 26px;
    text-decoration: none;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.2s ease;
}
.overlay nav a {
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}
.overlay nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--amber), var(--teal));
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width 0.25s ease;
}
.overlay nav a:hover,
.overlay nav a:focus-visible {
    color: var(--teal);
}
.overlay nav a:hover::after,
.overlay nav a:focus-visible::after {
    width: 100%;
}
.overlay.is-open a {
    opacity: 1;
    transform: translateY(0);
}
.overlay.is-open nav a:nth-child(1) {
    transition-delay: 0.05s;
}
.overlay.is-open nav a:nth-child(2) {
    transition-delay: 0.1s;
}
.overlay.is-open nav a:nth-child(3) {
    transition-delay: 0.15s;
}
.overlay.is-open .quote-big {
    transition-delay: 0.2s;
}
.quote-big {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, var(--amber), var(--teal));
    color: #0B1220;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 8px 28px var(--amber-soft);
}
.overlay a.quote-big {
    transition: opacity 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.quote-big .arrow {
    transition: transform 0.2s ease;
}
.quote-big:hover,
.quote-big:focus-visible {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 34px var(--amber-soft);
}
.quote-big:hover .arrow,
.quote-big:focus-visible .arrow {
    transform: translateX(3px);
}
.close {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 24px;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
}
.close:hover,
.close:focus-visible {
    color: var(--teal);
    transform: rotate(90deg);
}
@media (prefers-reduced-motion: reduce) {
    .logo-mark::before {
        animation: none;
        opacity: 0.6;
    }

    .overlay a,
    .overlay nav a::after,
    .quote-big,
    .quote-big .arrow,
    .quote,
    .hamburger-bars,
    .hamburger-x,
    .close {
        transition: none !important;
    }
}


/* Footer */
.footer {
    background-color: #111;
    color: #ccc;
    padding: 40px 20px;
    font-size: 14px;
    border-top:1.5px solid #333333;
    z-index:50;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.footer-col{
    right:0;
}
.footer-col h2 {
    color: var(--ink);
    margin-bottom: 12px;
    font-size: 16px;
    text-align:center;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    text-align:center;
}
.footer-col li {
    margin: 15px 0;
    color:#aaa;
}
.footer-col a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-col a:hover{
    color:#ffffff;
}
#footer-img {
    width:200px;
}
.description {
    color: var(--ink);
    font-size:14px;
    max-width: 400px;
    opacity:.5;
    left:0;
}
.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    padding-bottom: 10px;
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.footer-bottom p {
    opacity:.5;
}

.footer-bottom a {
    text-decoration:none;
}
/*Social tooltips*/
[data-tooltip] { position: relative;}

[data-tooltip]::before, [data-tooltip]::after {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  pointer-events: none; z-index: 1000;
}

[data-tooltip]::before {
  content: attr(data-tooltip);
  background: rgba(26, 26, 26, 1);
  color: var(--ink);
  padding: 8px 16px;
  border-radius: 6px;
  max-width: 250px;
  width: max-content;
  text-align: center;
  font-size: 14px;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.3));
}

[data-tooltip]::after { content: ""; border: 8px solid transparent; }

[data-direction="top"]::before, [data-direction="top"]::after { left: 50%; bottom: 100%; transform: translateX(-50%) translateY(10px); }
[data-direction="top"]::after { border-top-color: rgba(26, 26, 26, 1); margin-bottom: -4px; }
[data-direction="top"]::before { margin-bottom: 12px; }

[data-direction="bottom"]::before, [data-direction="bottom"]::after { left: 50%; top: 100%; transform: translateX(-50%) translateY(-10px); }
[data-direction="bottom"]::after { border-bottom-color: rgba(26, 26, 26, 1); margin-top: -4px; }
[data-direction="bottom"]::before { margin-top: 12px; }

[data-direction="left"]::before, [data-direction="left"]::after{ top: 50%; right: 100%; transform: translateY(-50%) translateX(10px); }
[data-direction="left"]::after { border-left-color: rgba(26, 26, 26, 1); margin-right: -4px; }
[data-direction="left"]::before { margin-right: 12px; }

[data-direction="right"]::before, [data-direction="right"]::after { top: 50%; left: 100%; transform: translateY(-50%) translateX(-10px); }
[data-direction="right"]::after { border-right-color: rgba(26, 26, 26, 1); margin-left: -4px; }
[data-direction="right"]::before { margin-left: 12px; }

[data-tooltip]:hover::before, [data-tooltip]:hover::after { opacity: 1; visibility: visible; }
[data-direction="top"]:hover::before, [data-direction="top"]:hover::after,
[data-direction="bottom"]:hover::before, [data-direction="bottom"]:hover::after { transform: translateX(-50%) translateY(0); }
[data-direction="left"]:hover::before, [data-direction="left"]:hover::after,
[data-direction="right"]:hover::before, [data-direction="right"]:hover::after { transform: translateY(-50%) translateX(0); }




/* Main */
#heroNotif{
    display:flex;
    justify-content:center;
    margin-top:100px;
}
#heroNotif a{
    font-size:2vh;
    padding:5px 15px 5px 15px;
    text-decoration:none;
    border: 1px solid #329fe9;
    background:#2ea1ee93;
    color:white;
    border-radius:30px;

}
#hero-title{
    margin-top:0;
    font-size:100px;
    color:#f0f0f0;
    text-align:center;
}
.highlight{
    background: #34A0A4;
    background: linear-gradient(to right, #3db5ba 0%, #184E77 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
@property --gradient-angle{
    syntax: '<angle>';
    inherits: false;
    initial-value: 200deg;
}
#hero-quote{
    display:flex;
    justify-content:center;
}
#hero-quote a{
    width:250px;
    height:50px;
    font-size:1.2em;
    font-weight:600;
    display:flex;
    justify-content:center;
    align-items:center;
    color:white;
    text-decoration:none;
    border-radius: 9px;
    border:1px;
    padding:10px;
    background: radial-gradient(circle at 100% 100%, #000000 0, #000000 8px, transparent 8px) 0% 0%/9px 9px no-repeat,
            radial-gradient(circle at 0 100%, #000000 0, #000000 8px, transparent 8px) 100% 0%/9px 9px no-repeat,
            radial-gradient(circle at 100% 0, #000000 0, #000000 8px, transparent 8px) 0% 100%/9px 9px no-repeat,
            radial-gradient(circle at 0 0, #000000 0, #000000 8px, transparent 8px) 100% 100%/9px 9px no-repeat,
            linear-gradient(#000000, #000000) 50% 50%/calc(100% - 2px) calc(100% - 18px) no-repeat,
            linear-gradient(#000000, #000000) 50% 50%/calc(100% - 18px) calc(100% - 2px) no-repeat,
            linear-gradient(var(--gradient-angle), #ffffff 0%, transparent 100%);
    box-sizing: border-box;
    transition: --gradient-angle 1s ease;
}
#hero-quote a:hover{
    --gradient-angle: 24deg;
}
.carousel-window{
    display:flex;
    overflow-x:auto;
    margin:100px 0px 100px 0px;
}
.carousel-window::-webkit-scrollbar{
    display:none
}
.carousel-track{
    display:flex;
    gap:var(--card-gap);
    animation: spin 30s infinite linear;
    padding-right:1em;
}
.card{
    position:relative;
    width:var(--card-width);
    height:var(--card-height);
    border-radius:24px;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    padding:24px;
    box-sizing:border-box;
    flex-shrink:0;
    user-select:none;
}
.card-image-placeholder{
    position:absolute;
    inset:0;
    object-fit:cover;
    z-index:0;

}
.card::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(to bottom,#0000001a 0%,#000000d9 100%);
    z-index:1;
}
.card-header, .card-footer{
    position:relative;
    z-index:2;
}
.tag{
    font-size:10px;
    text-transform:uppercase;
    letter-spacing:1px;
    color:var(--text-muted);
    font-weight:700;
}
.card-title{
    font-size:1.3rem;
    font-weight:600;
    margin:0 0 8px;
    line-height:1.2;
    color:var(--text-light);
}
.card-description{
    font-size:0.85rem;
    color:var(--text-muted);
    margin:0;
    line-height:1.4;
}
@keyframes spin {
    from {translate:0;}
    to {translate:-100%;}
}



































































































/*Mobile*/
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-col {
        margin-bottom:15px;
        align-items:center;
    }

    .links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-bar {
        max-width: calc(100% - 16px);
    }

    .logo-mark {
        height:30px;
    }

    #hero-buttons{
        flex-direction:column;
        align-items:center;
        margin-bottom:50px;
    }
    #hero-quote{
        margin:15px;
    }
    #hero-quote2{
        margin:15px;
    }
    #hero-quote a, #hero-quote2 a{
        width:350px;
        box-sizing:border-box;
        text-align:center;
        display:block;
    }
    #hero-title{
        align-items:flex-start;
        flex-direction: column;
        font-size:65px;
    }
}
