/* --- Global Styles & Variables --- */
:root {
    --primary-purple: #6a11cb;
    --primary-purple-dark: #5e0daf;
    --primary-blue: #2575fc;
    --gradient-main: linear-gradient(45deg, var(--primary-purple), var(--primary-blue));
    --gradient-secondary: linear-gradient(45deg, rgba(106, 17, 203, 0.4), rgba(37, 117, 252, 0.4));
    --gradient-tertiary: linear-gradient(45deg, #480ca8, #001233, #001233);
    --text-dark: #333;
    --text-normal: #6b7280;
    --text-light: #f8f9fa;
    --bg-light: #ffffff;
    --bg-grey: #f9fafb;
    --border-light: #e0e0e0;
    --shadow-xs: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 24px;
    --border-color: #e5e7eb;
    --slider-gap: 1rem;
    --transition-speed: 400ms;
}

/* --- End Global Styles & Variables --- */

/* ---Cookie Consent Styles --- */

#cc-main {
    --cc-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    --cc-btn-primary-bg: var(--primary-purple);
    --cc-btn-primary-border-color: var(--primary-purple);
    --cc-btn-primary-hover-bg: var(--primary-purple-dark);
    --cc-btn-primary-hover-border-color: var(--primary-purple-dark);
}

/* --- End Cookie Consent Styles --- */

/* --- Basic Html Styles --- */

* {
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
    min-height: 100vh;
    /*position: relative;*/
}

body:has(.nav-menu.active) {
    overflow: hidden;
}

h1, h2, h3 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.2rem;
}

a {
    cursor: pointer;
    text-decoration: none;
    color: var(--primary-blue);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-purple);
}

a, button {
    -webkit-user-drag: none;
    user-drag: none;
    user-select: none;
}

section {
    overflow: hidden;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;

    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: auto; /* still clickable if wrapped in <a> */
    -webkit-touch-callout: none; /* Prevent save image on iOS */
    -webkit-user-select: none;
    user-select: none;
}

/* --- End Basic Html Styles --- */

.site-header {
    box-shadow: var(--shadow-xs);
}

.site-content {
    flex-grow: 1;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-primary:hover {
    color: white;
    filter: brightness(1.1);
}

.btn-secondary {
    background: var(--bg-light);
    color: var(--primary-blue);
    border: 2px solid var(--border-light);
}

.btn-secondary:hover {
    background: var(--bg-grey);
    color: var(--primary-purple);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: white;
}

.nav-btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.arrow-icon {
    width: 1em;
    height: 1em;
}

.mobile-cta-bar {
    display: none;
    background: var(--gradient-main);
    text-align: center;
    font-weight: bold;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.15), 0 2px 5px rgba(0, 0, 0, 0.15);
}

.nav-btn-cta {
    color: white;
    /*background: linear-gradient(45deg, #431a8a, #1c274c);*/
    /*background: linear-gradient(45deg, #6d28d9, #4338ca, #1e1b4b);*/
    background: var(--gradient-tertiary);
}

.nav-btn-cta:hover {
    color: white;
    filter: brightness(1.3);
}

/*.desktop-only-cta {*/
/*    display: inline-flex;*/
/*}*/

/* --- End Buttons --- */


/* --- Navigation --- */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: box-shadow 0.3s ease;
}

.btn.nav-btn-cta.desktop-only-cta {
    margin-left: auto;
}

.navbar {
    display: flex;
    justify-content: start;
    align-items: center;
    height: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 2rem;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-dark);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 100;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-dark);
    transition: all 0.3s ease-in-out;
}

/* --- End Navigation --- */


/* --- Footer --- */

.site-footer {
    position: relative;
    min-width: 300px;
}

.site-footer * {
    color: var(--text-light);
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-wave-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.footer-wave-background svg {
    opacity: 0.95;
    display: block;
    position: absolute;
    height: 100%;
    width: 100%;
    min-width: 800px;
    left: 50%;
    transform: translateX(-50%);
}

.footer-content {
    position: relative;
    z-index: 1;
    margin: 170px 20px 50px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-col {
    max-width: 220px;
}

.footer-col h4 {
    margin-bottom: 1rem;
}

.footer-col p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: var(--text-light);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-col .store-badge, .footer-col p {
    width: 160px;
    max-width: 180px;
}

.footer-col .svg-link {
    display: block;
}

.footer-col .footnote {
    margin-top: 0;
}

.svg-link {
    cursor: pointer;
}

.svg-link embed {
    pointer-events: none; /* allows clicks to pass to the <a> */
}

/* --- End Footer --- */

/* --- Responsive Design --- */

.nav-menu-wrapper {
    display: none;
}

@media (max-width: 992px) {
    .footer-content {
        margin-top: 220px !important;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .mobile-cta-bar {
        display: block;
        position: sticky;
        top: 80px;
        z-index: 99;
    }

    .mobile-cta-bar .nav-btn-cta {
        width: 100%;
        justify-content: center;
        padding: 1rem 0;
        border-radius: 0;
    }

    .desktop-only-cta {
        display: none;
    }

    body.mobile-menu-active {
        overflow: hidden;
    }

    .nav-menu-wrapper {
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
    }

    .nav-menu {
        position: fixed;
        left: auto;
        right: -100%;
        top: 137px;
        height: calc(100vh - 137px);
        width: 100%;
        flex-direction: column;
        text-align: center;
        transition: right 0.3s ease-in-out;
        gap: 0;

        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 1.5rem 0;
        border-bottom: 1px solid var(--border-light);
        font-size: 1.2rem;
        color: var(--text-dark);
    }

    .nav-link:hover::after {
        width: 0;
    }

    .hamburger {
        display: block;
        margin-left: auto;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .footer-content {
        margin-top: 250px !important;
    }
}

/* --- Title + Description Section --- */

.sticker-logo {
    padding: 2rem;
    max-height: 300px;
}

.sticker-logo-sm {
    padding: 2rem;
    max-height: 150px;
    object-fit: scale-down;
}

.title-with-description-section-card {
    width: 100%;
    height: 100%;
    background-color: var(--bg-grey);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
}

.title-with-description-section {
    text-align: center;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 3rem;
    padding-bottom: 4rem;
    overflow-x: hidden;
}

.title-with-description-section h1 {
    font-size: 3rem; /* 48px */
    font-weight: 800;
    color: #1a1d28;
    margin: 0 0 1rem 0;
    padding-bottom: 20px;
}

.title-with-description-section p {
    font-size: 1.125rem; /* 18px */
    color: #646f90;
    line-height: 1.6;
    margin: 0;
    padding: 1rem 2rem 1rem 2rem;
    max-width: 1000px;
}


.section-title {
    margin-bottom: 50px;
}

/* --- End Title + Description Section --- */

.site-header * {
    box-sizing: border-box;
}

.site-footer * {
    box-sizing: border-box;
}

.container {
    /*background-color: var(--bg-grey);*/
    /*border-radius: var(--border-radius);*/
    /*box-shadow: var(--shadow-sm);*/
    padding: 60px 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.container:first-child {
    padding: 60px 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.colored-box {
    background-color: var(--bg-grey);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.footnote {
    font-size: 0.7rem;
    font-weight: normal;
    color: #888;
    margin-top: 2rem;
}

.unset-color {
    color: unset;
}

#social-media-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-media-icon {
    width: 2em;
    height: 2em;
    fill: currentColor;
}