/* #region Configuration */

:root {
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --color-bg-main: #030712;
    --color-bg-secondary: #050505;
    --color-accent: #c81880;
    --color-accent-bright: #ff3e9c;
    --color-accent-dark-soft: rgba(138, 16, 88, 0.4);
    --color-text-primary: #FFFFFF;
    --color-text-secondary: #b6c2d3;
    --color-text-muted: #64748B;
    --color-text-inverse: #030712;
    --color-success: #10b981;
    --color-error: #ef4444;
    --glass-bg: rgba(15, 23, 42, 0.7);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-blur: 24px;
    --glow-accent: 0 0 30px rgba(200, 24, 128, 0.5);
    --glow-accent-strong: 0 0 70px rgba(200, 24, 128, 0.7), 0 0 30px rgba(200, 24, 128, 0.5);
    --shadow-card: 0 20px 40px -20px rgba(0, 0, 0, 0.6);
    --container-width: 1200px;
    --section-spacing-desktop: 160px;
    --section-spacing-mobile: 60px;
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --ease-smooth: cubic-bezier(0.25, 0.8, 0.25, 1);
    --ease-elastic: cubic-bezier(0.34, 1.56, 0.64, 1);
    --anim-duration-base: 1s;
    --anim-duration-slow: 1.6s;
}

/* #endregion */

/* #region Basic */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    color-scheme: dark;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg-main);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

    body.no-scroll {
        overflow: hidden;
    }

input, button, textarea {
    font-family: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease, text-shadow 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

main, header {
    position: relative;
    z-index: 10;
    background: transparent;
}

footer {
    position: relative;
    background: transparent;
}

/* #endregion */

/* #region Background */

.bg-effects-wrapper {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.bg-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
    opacity: 0.4;
    mix-blend-mode: overlay;
}

.bg-aurora {
    position: absolute;
    inset: 0;
    filter: blur(120px);
}

.aurora-orb {
    position: absolute;
    border-radius: 50%;
    animation: auroraFloat infinite alternate ease-in-out;
    opacity: 0.25;
    will-change: transform;
}

.glass-card,
.btn,
.creator-circle,
.blog-card,
.number-card,
.price-card.pro {
    transform: none;
}

    .glass-card:hover,
    .btn:hover,
    .creator-circle:hover,
    .blog-card:hover,
    .number-card:hover,
    .price-card.pro:hover {
        transform: translateZ(0);
    }

.orb-1 {
    top: -20%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: var(--color-accent);
    animation-duration: 25s;
}

.orb-2 {
    bottom: -20%;
    right: -10%;
    width: 70vw;
    height: 70vw;
    background: #4F46E5;
    animation-duration: 30s;
    animation-delay: -5s;
}

@keyframes auroraFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(10%, 15%) scale(1.1);
    }
}

/* #endregion */

/* #region Typography & Utilities */

h1, h2, h3, h4 {
    color: var(--color-text-primary);
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 800;
}

h2, h3 {
    letter-spacing: 0.5px;
}

p {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    max-width: 680px;
    line-height: 1.7;
}

    p b {
        color: var(--color-text-primary);
        font-weight: 800;
    }

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.section {
    padding: var(--section-spacing-desktop) 0;
}

.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.text-accent {
    color: var(--color-accent);
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-text-primary) 30%, var(--color-accent-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.btn-form {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
}

.field-validation {
    color: #e12700;
    margin-top: 5px;
    font-weight: 700;
}

.section-heading-lg {
    font-size: 4.5rem;
    line-height: 5.8rem;
    margin-bottom: 100px;
    text-shadow: 0 0 30px rgba(255,255,255,0.1);
    text-align: center;
}

h2.section-heading-lg {
    font-size: 2.5rem;
}

.section-introduction {
    font-weight: 700;
    margin: -40px auto 0 auto;
    font-size: 1.3rem;
    max-width: 800px;
    color: var(--color-text-secondary);
    text-align: center;
}

.section-tag {
    font-size: 0.9rem;
    color: var(--color-accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 10px;
}

div.password-box {
    position: relative;
}

    div.password-box span {
        position: absolute;
        top: 15px;
        right: 20px;
        width: 25px;
        cursor: pointer;
    }

/* #endregion */

/* #region Scroll Animations */

.reveal,
.reveal-immediate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--anim-duration-base) cubic-bezier(0.25, 0.46, 0.45, 0.94), transform var(--anim-duration-base) cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, opacity;
}

    .reveal.active,
    .reveal-immediate.active {
        opacity: 1;
        transform: translateY(0);
    }

.stagger-parent .reveal {
    opacity: 0;
    transform: translateY(30px);
}

.stagger-parent.active .reveal {
    opacity: 1;
    transform: translateY(0);
}

    .stagger-parent.active .reveal:nth-child(1) {
        transition-delay: 0.15s;
    }

    .stagger-parent.active .reveal:nth-child(2) {
        transition-delay: 0.3s;
    }

    .stagger-parent.active .reveal:nth-child(3) {
        transition-delay: 0.45s;
    }

    .stagger-parent.active .reveal:nth-child(4) {
        transition-delay: 0.6s;
    }

    .stagger-parent.active .reveal:nth-child(5) {
        transition-delay: 0.75s;
    }

    .stagger-parent.active .reveal:nth-child(6) {
        transition-delay: 1.0s;
    }

    .stagger-parent.active .reveal:hover {
        transition-delay: 0s;
    }

/* #endregion */

/* #region Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 36px;
    font-weight: 700;
    border-radius: 100px;
    cursor: pointer;
    font-size: 1.05rem;
    border: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth), background-color 0.3s var(--ease-smooth), color 0.3s var(--ease-smooth), border-color 0.3s var(--ease-smooth);
}

    .btn:active {
        transform: scale(0.98) !important;
    }

.btn-primary {
    background: var(--color-accent);
    color: var(--color-text-primary);
    box-shadow: var(--glow-accent);
}

    .btn-primary::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(45deg, var(--color-accent), var(--color-accent-bright));
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .btn-primary:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: var(--glow-accent-strong);
    }

        .btn-primary:hover::before {
            opacity: 1;
        }

.btn-secondary {
    background: transparent;
    color: var(--color-text-primary);
    border: 2px solid var(--glass-border);
}

    .btn-secondary:hover {
        border-color: var(--color-accent);
        background: rgba(200, 24, 128, 0.1);
        transform: translateY(-3px);
        box-shadow: var(--glow-accent);
    }

/* #endregion */

/* #region Glass Cards */

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s var(--ease-smooth), border-color 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

    .glass-card::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: var(--radius-xl);
        padding: 1px;
        background: linear-gradient(145deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask-composite: exclude;
        pointer-events: none;
    }

    .glass-card:hover {
        transform: translateY(-8px);
        border-color: var(--color-accent);
        box-shadow: var(--glow-accent);
    }

    .glass-card h3 {
        margin-bottom: 16px;
    }

/* #endregion */

/* #region Header & Navigation */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: background-color 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
    background: transparent;
}

    header.scrolled {
        background: rgba(3, 7, 18, 0.25);
        backdrop-filter: blur(20px);
        padding: 16px 0;
        border-bottom: 1px solid var(--glass-border);
    }

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    z-index: 1002;
}

    .logo img {
        height: 28px;
    }

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.lang-switch span {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: 0.3s;
    margin: 0 4px;
}

    .lang-switch span.active,
    .lang-switch span:hover {
        color: var(--color-text-primary);
    }

.nav-link {
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-text-primary);
    position: relative;
}

    .nav-link:hover {
        color: var(--color-accent);
        text-shadow: 0 0 10px var(--color-accent);
    }

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1002;
    position: relative;
}

    .mobile-menu-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background: var(--color-text-primary);
        border-radius: 2px;
        transition: transform 0.3s var(--ease-smooth), opacity 0.3s var(--ease-smooth), background-color 0.3s var(--ease-smooth);
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: var(--color-bg-main);
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-smooth);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

    .mobile-nav-overlay.active {
        transform: translateX(0);
    }

    .mobile-nav-overlay::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(200, 24, 128, 0.1);
        filter: blur(100px);
        z-index: -1;
        pointer-events: none;
    }

.mobile-nav-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--color-text-muted);
    transition: 0.3s;
}

    .mobile-nav-close:hover {
        color: var(--color-accent);
        transform: rotate(90deg);
    }

.mobile-nav-links {
    list-style: none;
    text-align: center;
}

    .mobile-nav-links li {
        margin-bottom: 16px;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s var(--ease-smooth), transform 0.4s var(--ease-smooth);
    }

.mobile-nav-overlay.active .mobile-nav-links li {
    opacity: 1;
    transform: translateY(0);
}

    .mobile-nav-overlay.active .mobile-nav-links li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .mobile-nav-overlay.active .mobile-nav-links li:nth-child(2) {
        transition-delay: 0.15s;
    }

    .mobile-nav-overlay.active .mobile-nav-links li:nth-child(3) {
        transition-delay: 0.2s;
    }

    .mobile-nav-overlay.active .mobile-nav-links li:nth-child(4) {
        transition-delay: 0.25s;
    }

    .mobile-nav-overlay.active .mobile-nav-links li:nth-child(5) {
        transition-delay: 0.3s;
    }

    .mobile-nav-overlay.active .mobile-nav-links li:nth-child(6) {
        transition-delay: 0.35s;
    }

    .mobile-nav-overlay.active .mobile-nav-links li:nth-child(7) {
        transition-delay: 0.4s;
    }

    .mobile-nav-overlay.active .mobile-nav-links li:nth-child(8) {
        transition-delay: 0.45s;
    }

    .mobile-nav-overlay.active .mobile-nav-links li:nth-child(9) {
        transition-delay: 0.5s;
    }

    .mobile-nav-overlay.active .mobile-nav-links li:nth-child(10) {
        transition-delay: 0.55s;
    }

.mobile-nav-link {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text-primary);
}

    .mobile-nav-link:hover {
        color: var(--color-accent);
    }

    .mobile-nav-link.highlight {
        color: var(--color-accent);
    }

.mobile-lang-switch {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    opacity: 0;
    transition: 0.4s var(--ease-smooth) 0.6s;
    padding-bottom: 30px;
}

.mobile-nav-overlay.active .mobile-lang-switch {
    opacity: 1;
}

.mobile-lang-switch span {
    color: var(--color-text-muted);
    cursor: pointer;
}

    .mobile-lang-switch span.active {
        color: var(--color-accent);
    }

/* #endregion */

/* #region Home / Index / Hero */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 140px 0;
    text-align: center;
    position: relative;
}

    .hero h1 {
        font-size: clamp(3rem, 8vw, 6.5rem);
        margin-bottom: 50px;
        letter-spacing: -0.03em;
        line-height: 1.3;
        padding-bottom: 5px;
    }

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.8rem);
    font-weight: 700;
    color: var(--color-text-secondary);
    margin-bottom: 50px;
    display: block;
    max-width: 800px;
    line-height: 1.4;
}

@keyframes formFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-footer {
    margin-top: 50px;
    font-size: 1rem;
    color: var(--color-text-secondary);
    font-weight: 500;
}

    .hero-footer a {
        color: var(--color-text-primary);
        font-weight: 700;
        border-bottom: 2px solid var(--color-accent);
        display: inline-block;
        margin-top: 15px;
    }

/* #endregion */

/* #region Home / Index / Social Proof */

.social-proof {
    padding: 80px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    background: rgba(15, 23, 42, 0.3);
    overflow: hidden;
}

.social-proof__heading-container {
    margin-bottom: 60px;
}

.social-proof__heading {
    font-size: 1.8rem;
    text-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.marquee-wrapper {
    display: flex;
    width: fit-content;
    animation: marquee 30s linear infinite;
    padding: 40px 0;
}

    .marquee-wrapper:hover {
        animation-play-state: paused;
    }

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.333%);
    }
}

.creator-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin: 0 30px;
    border: 4px solid var(--color-bg-secondary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s var(--ease-smooth), border-color 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

    .creator-circle:hover {
        transform: scale(1.15);
        border-color: var(--color-accent);
        box-shadow: var(--glow-accent);
    }

.creator-overlay {
    position: absolute;
    inset: 0;
    background: rgba(3, 7, 18, 0.8);
    opacity: 0;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 10px;
}

.creator-circle:hover .creator-overlay {
    opacity: 1;
}

.creator-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-text-primary);
}

.creator-btn-sm {
    font-size: 0.85rem;
    background: var(--color-accent);
    color: var(--color-text-primary);
    padding: 8px 16px;
    border-radius: 100px;
    margin-top: 10px;
    font-weight: 700;
    box-shadow: var(--glow-accent);
}

/* #endregion */

/* #region Home / Index / Intro */

.intro-section {
    padding: 200px 0 140px;
}

.intro-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 600px;
}

.intro-mark img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
    animation: breathe 4s infinite ease-in-out;
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

.intro-title {
    font-size: 2.5rem;
    font-weight: 800;
}

.intro-subtitle {
    font-size: 1.3rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    font-weight: 700;
}

/* #endregion */

/* #region Home / Index / Benefits */

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

.b-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    background: rgba(200, 24, 128, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    transition: transform 0.3s var(--ease-smooth), background-color 0.3s var(--ease-smooth), border-color 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth);
    border: 1px solid var(--glass-border);
}

.glass-card:hover .b-icon-wrapper {
    transform: scale(1.1) rotate(10deg);
    background: var(--color-accent);
    border-color: transparent;
    box-shadow: var(--glow-accent);
}

.b-icon {
    font-size: 2rem;
    color: var(--color-accent);
    transition: 0.3s;
}

.glass-card:hover .b-icon {
    color: var(--color-text-primary);
}

@keyframes rotateOnScroll {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.b-icon-wrapper .b-icon {
    animation: rotateOnScroll linear both;
    animation-timeline: view();
    animation-range: entry 20% cover 80%;
}

/* #endregion */

/* #region Home / Index / Comparison */

.comparison-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
}

.comp-col {
    padding: 80px 60px;
}

    .comp-col h3 {
        margin-bottom: 12px;
    }

.comp-old {
    background: rgba(15, 23, 42, 0.8);
    position: relative;
}

    .comp-old::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.1);
        pointer-events: none;
    }

    .comp-old * {
        opacity: 0.85;
        filter: grayscale(0.5);
        transition: 0.3s;
    }

    .comp-old h3, .comp-old strong {
        opacity: 1;
        color: var(--color-text-secondary);
    }

.comp-new {
    background: rgba(200, 24, 128, 0.05);
    position: relative;
    backdrop-filter: blur(20px);
}

    .comp-new::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--color-accent);
        box-shadow: var(--glow-accent);
    }

.comp-label {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.comp-subtitle-old {
    color: var(--color-text-secondary);
}

.comp-subtitle-new {
    color: var(--color-accent);
    text-shadow: 0 0 15px var(--color-accent);
}

.comp-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.comp-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.icon-box {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}

.icon-x {
    background: rgba(239, 68, 68, 0.1);
    color: var(--color-error);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.icon-check {
    background: rgba(200, 24, 128, 0.2);
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
    box-shadow: var(--glow-accent);
}

.comp-item strong {
    display: block;
    font-size: 1.15rem;
    margin-bottom: 5px;
    color: var(--color-text-primary);
}

/* #endregion */

/* #region Home / Index / How It Works? */

.steps-h {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 100px;
}

.steps-line {
    position: absolute;
    top: 50px;
    left: 60px;
    right: 60px;
    height: 4px;
    background: rgba(255,255,255,0.1);
    z-index: -1;
    overflow: hidden;
    border-radius: 10px;
}

    .steps-line::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 40%;
        background: var(--color-accent);
        filter: blur(4px);
        animation: connectFlow 3s infinite ease-in-out;
        box-shadow: var(--glow-accent);
    }

@keyframes connectFlow {
    0% {
        left: -40%;
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

.step-h-item {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}

.step-num {
    width: 100px;
    height: 100px;
    background: var(--color-bg-secondary);
    border: 4px solid var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--color-accent);
    margin: 0 auto 40px;
    box-shadow: 0 0 0 15px var(--color-bg-main), var(--glow-accent);
    position: relative;
    z-index: 1;
    transition: 0.3s var(--ease-smooth);
}

.step-h-item:hover .step-num {
    transform: scale(1.1);
    background: var(--color-accent);
    color: var(--color-text-primary);
    box-shadow: 0 0 0 15px var(--color-bg-main), var(--glow-accent-strong);
}

.step-h-item p {
    margin-top: 15px;
}

.steps-cta-container {
    margin-top: 100px;
}

.steps-btn {
    font-size: 1.2rem;
    padding: 20px 48px;
}

/* #endregion */

/* #region Home / Index / Pricing */

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
}

.price-card {
    text-align: center;
    background: rgba(15, 23, 42, 0.6);
}

    .price-card.reveal {
        transition-duration: var(--anim-duration-slow);
    }

    .price-card.pro {
        border: 2px solid var(--color-accent);
        position: relative;
        transform: scale(1.05);
        z-index: 10;
        background: rgba(200, 24, 128, 0.05);
        box-shadow: var(--shadow-card), var(--glow-accent);
        overflow: visible;
    }

        .price-card.pro:hover {
            transform: scale(1.08);
            box-shadow: var(--shadow-card), var(--glow-accent-strong);
        }

.pro-badge {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: var(--color-text-primary);
    font-weight: 800;
    font-size: 0.9rem;
    padding: 10px 24px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--glow-accent);
    white-space: nowrap;
}

.price {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--color-text-primary);
    line-height: 1;
    margin: 30px 0;
    letter-spacing: -0.02em;
    text-shadow: 0 0 20px rgba(255,255,255,0.2);
}

    .price span {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--color-text-secondary);
    }

.price-card-desc {
    margin-bottom: 40px;
}

.price-btn {
    width: 100%;
    margin-bottom: 50px;
}

.check-list li {
    margin-bottom: 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    text-align: left;
}

.check-icon {
    color: var(--color-accent);
    font-weight: 800;
    margin-top: 2px;
    text-shadow: 0 0 10px var(--color-accent);
}

.check-list li span {
    display: block;
    margin-top: 0;
    color: var(--color-text-secondary);
}

/* #endregion */

/* #region Home / Index / Final CTA */

.final-cta-wrapper {
    padding-bottom: 160px;
    position: relative;
}

.final-cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(200,24,128,0.3) 0%, transparent 70%);
    filter: blur(100px);
    z-index: -1;
    pointer-events: none;
}

.final-cta {
    background: linear-gradient(135deg, var(--color-accent-dark-soft), var(--color-bg-main));
    border-radius: 48px;
    padding: 120px 40px;
    text-align: center;
    border: 2px solid var(--color-accent);
    box-shadow: var(--glow-accent-strong);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .final-cta h2 {
        font-size: 4rem;
        margin-bottom: 30px;
        color: var(--color-text-primary);
    }

    .final-cta p.cta-lead {
        font-size: 1.5rem;
        color: var(--color-text-primary);
        opacity: 0.9;
        margin-bottom: 50px;
        max-width: 700px;
    }

.final-cta-btn {
    background: var(--color-text-primary);
    color: var(--color-text-inverse);
    padding: 24px 56px;
    font-size: 1.3rem;
    box-shadow: 0 10px 30px rgba(255,255,255,0.2);
}

.final-cta-note {
    font-size: 0.95rem;
    margin-top: 30px;
    opacity: 0.6;
}

/* #endregion */

/* #region Home / Index / Footer */

footer {
    background: var(--color-bg-secondary);
    padding: 80px 0 40px;
    border-top: 1px solid var(--glass-border);
}

    footer.section {
        padding: 140px 0 40px 0;
    }

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 100px;
}

.footer-heading {
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    color: var(--color-text-primary);
}

.footer-links {
    list-style: none;
}

    .footer-links li {
        margin-bottom: 16px;
    }

    .footer-links a {
        font-weight: 600;
        color: var(--color-text-secondary);
        position: relative;
    }

        .footer-links a:hover {
            color: var(--color-accent);
            text-shadow: 0 0 10px var(--color-accent);
        }

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    color: var(--color-text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 30px;
}

    .social-links a.social-icon svg {
        width: 24px;
        height: 24px;
        fill: var(--color-text-primary);
        transition: all 0.3s ease;
    }

    .social-links a.social-icon:hover svg {
        fill: var(--color-accent);
        filter: drop-shadow(0 0 8px var(--color-accent));
        transform: translateY(-3px);
    }

@media (max-width: 768px) {
    :root {
        --section-spacing-desktop: var(--section-spacing-mobile);
        --radius-xl: var(--radius-lg);
    }

    .container {
        padding: 0 24px;
    }

    p.mx-auto {
        width: 100%;
    }

    .section {
        padding-top: var(--section-spacing-mobile) !important;
        padding-bottom: var(--section-spacing-mobile) !important;
    }

    header {
        padding: 15px 0;
    }

        header.scrolled {
            padding: 10px 0;
        }

    .logo img {
        height: 28px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-nav-overlay {
        padding: 80px 40px 40px;
    }

    .mobile-nav-close {
        top: 25px;
        right: 25px;
    }

    h1 {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 16px !important;
    }

    h2, .section-heading-lg {
        font-size: 1.8rem !important;
        margin-bottom: 100px;
    }

    .section-tag {
        margin-top: 30px;
    }

    .section-introduction {
        margin-top: 50px;
        font-size: 1.0rem;
    }

    h3 {
        font-size: 1.3rem !important;
        margin-bottom: 12px !important;
    }

    p {
        font-size: 1.05rem !important;
    }

    .hero-subtitle {
        font-size: 1.15rem;
        font-weight: 700;
        margin-bottom: 40px;
        line-height: 1.5;
    }

    .btn {
        padding: 14px 24px;
        font-size: 1.05rem;
    }

    .glass-card {
        padding: 32px 24px;
    }

    .hero {
        min-height: 100svh;
        padding: 80px 0;
        justify-content: center;
    }

    .hero-footer {
        line-height: 1.3;
    }

        .hero-footer span {
            display: block;
        }

        .hero-footer a {
            margin-top: 12px;
        }

    .social-proof__heading {
        line-height: 1.4 !important;
    }

    .social-proof__heading-container {
        margin-bottom: 30px !important;
    }

    .marquee-wrapper {
        padding: 10px 0;
        margin: 20px 0;
    }

    .creator-circle {
        width: 110px;
        height: 110px;
        margin: 0 8px;
        border-width: 3px;
    }

    .creator-overlay {
        padding: 5px;
    }

    .creator-name {
        font-size: 0.85rem !important;
        line-height: 1.1;
        word-wrap: break-word;
        max-width: 95%;
    }

    .creator-btn-sm {
        margin-top: 4px;
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .intro-content {
        gap: 16px;
    }

    .intro-mark {
        width: 48px;
        height: 48px;
        margin-bottom: 0;
    }

    .intro-title {
        font-size: 1.8rem;
    }

    .intro-subtitle {
        font-size: 1.15rem;
    }

    #benefits .section-heading-lg {
        margin-bottom: 50px !important;
    }

    .grid-3 {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .b-icon-wrapper {
        width: 60px;
        height: 60px;
        border-radius: 18px;
        margin-bottom: 24px;
    }

    .b-icon {
        font-size: 1.5rem;
    }

    .comparison-wrapper {
        grid-template-columns: 1fr;
    }

    .comp-col {
        padding: 32px 24px;
    }

    .comp-old {
        border-right: none;
        border-bottom: 1px solid var(--glass-border);
        margin-bottom: 40px;
    }

    .comp-list {
        gap: 20px;
        margin-top: 24px;
    }

    .comp-label {
        margin-bottom: 8px;
    }

    .steps-h {
        flex-direction: column;
        gap: 40px;
        margin-top: 40px;
    }

    .steps-line {
        width: 4px;
        height: 100%;
        left: 50%;
        top: 0;
        margin-left: -2px;
    }

    .step-num {
        width: 64px;
        height: 64px;
        font-size: 1.3rem;
        margin-bottom: 16px;
        box-shadow: 0 0 0 8px var(--color-bg-main), var(--glow-accent);
    }

    .step-h-item p {
        margin-top: 8px;
    }

    .steps-cta-container {
        margin-top: 60px;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .price-card.pro {
        transform: scale(1);
        margin-top: 20px;
    }

    .price {
        font-size: 3rem;
        margin: 20px 0;
    }

    .pro-badge {
        font-size: 0.75rem;
        padding: 6px 16px;
        top: -16px;
    }

    .glass-card.price-card {
        padding-bottom: 32px;
    }

    .price-btn {
        margin-bottom: 40px !important;
    }

    .check-list li {
        margin-bottom: 16px;
    }

    .final-cta-wrapper.section {
        padding-bottom: 80px !important;
    }

    .final-cta {
        padding: 48px 24px;
        border-radius: var(--radius-lg);
    }

        .final-cta h2 {
            font-size: 2rem;
            margin-bottom: 16px;
        }

        .final-cta p.cta-lead {
            font-size: 1.1rem;
            margin-bottom: 32px;
        }

    .final-cta-btn {
        width: 100%;
        padding: 16px;
        font-size: 1.1rem;
    }

    @media (max-width: 400px) {
        .final-cta-btn {
            font-size: 0.95rem !important;
            padding: 14px 20px !important;
            white-space: normal;
            text-align: center;
        }
    }

    footer.section {
        padding-top: 50px !important;
        padding-bottom: 30px !important;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px 20px;
        margin-bottom: 40px;
        text-align: center !important;
    }

    .footer-heading {
        display: none;
    }

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        font-size: 0.95rem;
    }

    .footer-col:nth-of-type(3) .footer-links li,
    .footer-col:nth-of-type(4) .footer-links li {
        margin-bottom: 5px;
        opacity: 0.5;
    }

        .footer-col:nth-of-type(3) .footer-links li a,
        .footer-col:nth-of-type(4) .footer-links li a {
            font-size: 0.8rem;
        }

    .footer-bottom {
        flex-direction: column-reverse;
        gap: 25px;
        text-align: center;
        padding-top: 25px;
    }

        .footer-bottom .social-links {
            display: flex;
            gap: 30px;
            margin: 0 auto;
        }

    .footer-copyright {
        font-size: 0.85rem;
        opacity: 0.7;
    }
}

/* #endregion */

/* #region Home / Contact */

.form-container {
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin-left: 4px;
}

.form-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 16px 20px;
    color: var(--color-text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

    .form-input:focus {
        outline: none;
        border-color: var(--color-accent);
        background: rgba(0, 0, 0, 0.4);
        box-shadow: 0 0 0 4px rgba(200, 24, 128, 0.1);
    }

/* #endregion */

/* #region Home / Terms & Privacy */

.legal-wrapper {
    max-width: 900px;
    margin: 100px auto 0 auto;
    position: relative;
    z-index: 2;
}

.legal-card {
    padding: 60px 80px;
}

.legal-meta {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legal-prose h2 {
    font-size: 1.5rem;
    color: var(--color-text-primary);
    margin-top: 50px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.legal-prose h3 {
    font-size: 1.2rem;
    color: var(--color-text-primary);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-prose p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
    text-align: justify;
}

.legal-prose a {
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 4px;
}

    .legal-prose a:hover {
        color: var(--color-text-primary);
    }

.legal-prose ol, .legal-prose ul {
    margin-top: 10px;
    margin-bottom: 24px;
    padding-left: 20px;
    color: var(--color-text-secondary);
}

.legal-prose ol {
    list-style-type: decimal;
}

    .legal-prose ol > li {
        margin-bottom: 12px;
        line-height: 1.6;
        padding-left: 8px;
    }

        .legal-prose ol > li::marker {
            color: var(--color-accent);
            font-weight: 700;
            font-size: 1.05em;
        }

    .legal-prose ol ol {
        list-style-type: lower-alpha;
        margin-top: 10px;
        margin-bottom: 10px;
        padding-left: 25px;
    }

        .legal-prose ol ol > li::marker {
            color: var(--color-text-primary);
            font-weight: 600;
        }

    .legal-prose ol ul,
    .legal-prose ul {
        list-style-type: disc;
        margin-top: 8px;
        padding-left: 25px;
    }

        .legal-prose ul > li::marker {
            color: var(--color-text-muted);
        }

@media (max-width: 768px) {
    .legal-card {
        padding: 40px 24px;
    }

    .legal-meta {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}

/* #endregion */

/* #region Home / Contact */

.contact-page-section {
    padding-top: 160px;
    padding-bottom: 100px;
}

@media (max-width: 768px) {
    .contact-page-section {
        padding-top: 80px;
    }
}

.contact-content-wrapper {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-hero-block {
    margin-bottom: 80px;
}

.contact-desc {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-top: 40px;
    margin-bottom: 40px;
}

.contact-write {
    margin-top: 20px;
    font-weight: 600;
    color: var(--color-text-primary);
}

.email-display-link {
    display: inline-block;
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    font-weight: 700;
    color: var(--color-text-primary);
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 100px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
    word-break: break-all;
}

    .email-display-link:hover {
        background: rgba(255,255,255,0.08);
        border-color: var(--color-accent);
        box-shadow: 0 0 30px rgba(200, 24, 128, 0.2);
        transform: translateY(-3px);
    }

.contact-social-block {
    margin-bottom: 80px;
    padding-top: 60px;
    border-top: 1px solid var(--glass-border);
}

    .contact-social-block h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: var(--color-text-primary);
    }

.contact-company p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 15px;
}

.social-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

    .social-grid .social-icon {
        background: rgba(255,255,255,0.02);
        border: 1px solid var(--glass-border);
        width: 64px;
        height: 64px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        padding: 0;
        flex-shrink: 0;
    }

        .social-grid .social-icon:hover {
            background: rgba(255,255,255,0.08);
            border-color: var(--color-text-primary);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        .social-grid .social-icon svg {
            width: 28px;
            height: 28px;
            fill: currentColor;
            color: var(--color-text-secondary);
            transition: 0.3s;
        }

        .social-grid .social-icon:hover svg {
            color: var(--color-accent);
            transform: scale(1.1);
        }

.company-details {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    background: rgba(0,0,0,0.2);
    padding: 30px;
    border-radius: 20px;
    display: inline-block;
    border: 1px solid var(--glass-border);
}

    .company-details strong {
        color: var(--color-text-primary);
        display: block;
        margin-bottom: 5px;
        font-size: 1rem;
    }

@media (max-width: 600px) {
    .email-display-link {
        width: 100%;
        padding: 15px 10px;
    }

    .social-grid {
        gap: 10px;
        flex-wrap: nowrap;
    }

        .social-grid .social-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
        }
}

/* #endregion */

/* #region Home / Media */

.media-page-section {
    padding-top: 160px;
    padding-bottom: 100px;
}

@media (max-width: 768px) {
    .media-page-section {
        padding-top: 120px;
    }
}

.media-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}

.fact-card {
    padding: 24px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: 0.3s;
}

    .fact-card:hover {
        background: rgba(255,255,255,0.04);
        border-color: var(--color-accent);
    }

.fact-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin: 0;
}

    .fact-text b {
        color: var(--color-text-primary);
        font-weight: 700;
        display: block;
        margin-bottom: 8px;
        font-size: 1.1rem;
    }

.press-release-card {
    padding: 60px;
    margin-bottom: 80px;
    position: relative;
}

.pr-label {
    display: inline-block;
    background: var(--color-accent);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.pr-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
    color: var(--color-text-primary);
}

.pr-headline {
    font-size: 1.2rem;
    color: var(--color-text-primary);
    margin-bottom: 30px;
    font-weight: 600;
    line-height: 1.5;
    border-left: 4px solid var(--color-accent);
    padding-left: 20px;
}

.pr-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
}

    .pr-content h3 {
        margin-top: 40px;
        margin-bottom: 20px;
    }

    .pr-content p {
        margin-bottom: 20px;
    }

.pr-quote {
    background: rgba(255,255,255,0.03);
    padding: 24px;
    border-radius: 12px;
    font-style: italic;
    color: var(--color-text-primary);
    margin: 30px 0;
    border: 1px solid var(--glass-border);
}

.assets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}

.asset-card {
    display: flex;
    flex-direction: column;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: 0.3s;
    height: 100%;
}

    .asset-card:hover {
        transform: translateY(-5px);
        border-color: var(--color-text-primary);
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }

.asset-preview {
    height: 160px;
    background-color: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

    .asset-preview img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.6;
        transition: 0.3s;
    }

.asset-card:hover .asset-preview img {
    opacity: 1;
    transform: scale(1.05);
}

.asset-info {
    padding: 20px;
    text-align: center;
    background: rgba(255,255,255,0.02);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.asset-title {
    display: block;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 5px;
}

.media-contact-box {
    text-align: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.media-contact-text {
    max-width: 500px;
    margin: 0 auto 30px;
    text-align: center;
    width: 100%;
}

    .media-contact-text p {
        margin: 0;
        line-height: 1.5;
    }

.email-display-link {
    display: inline-block;
    font-size: clamp(1.1rem, 4vw, 1.5rem);
    font-weight: 700;
    color: var(--color-text-primary);
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 100px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    text-align: center;
}

    .email-display-link:hover {
        background: rgba(255,255,255,0.08);
        border-color: var(--color-accent);
        box-shadow: 0 0 30px rgba(200, 24, 128, 0.2);
        transform: translateY(-3px);
    }

@media (max-width: 900px) {
    .facts-grid {
        grid-template-columns: 1fr;
    }

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

    .press-release-card {
        padding: 40px 24px;
    }

    .pr-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 600px) {
    .media-contact-box {
        padding: 30px 15px;
    }

    .email-display-link {
        padding: 12px 15px;
        font-size: 1rem;
        width: 100%;
        border-radius: 12px;
    }
}

/* #endregion */

/* #region Home / Pricing */

.pricing-page-section {
    padding-top: 160px;
    padding-bottom: 100px;
}

@media (max-width: 768px) {
    .pricing-page-section {
        padding-top: 80px;
    }
}

.pricing-hero-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin: 40px auto 140px auto;
    text-align: center;
    max-width: 700px;
}

.dedicated-plan-box {
    margin-top: 80px;
    padding: 40px;
    padding-bottom: 35px;
    text-align: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

    .dedicated-plan-box::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(180, 138, 56, 0.1) 0%, transparent 60%);
        pointer-events: none;
    }

.dedicated-text {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    position: relative;
    z-index: 1;
    line-height: 2.0rem;
    margin: 0 auto;
    max-width: 480px
}

    .dedicated-text b {
        color: var(--color-text-primary);
        font-weight: 700;
    }

.dedicated-link {
    color: var(--color-accent);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid rgba(200, 24, 128, 0.3);
    transition: 0.3s;
    padding-bottom: 2px;
}

    .dedicated-link:hover {
        color: var(--color-text-primary);
        border-color: var(--color-accent);
    }


@media (max-width: 768px) {
    .pricing-hero-text {
        font-size: 1.0rem;
    }
}

/* #endregion */

/* #region Home / Help */

.help-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

    .help-section .glass-card p {
        max-width: 100%;
    }

    .help-section .glass-card h3 {
        color: var(--color-accent);
        margin-bottom: 20px;
    }

    .help-section .glass-card ul.check-list {
        margin-top: 20px;
        margin-bottom: -15px;
    }

        .help-section .glass-card ul.check-list li {
            margin-bottom: 15px;
            color: var(--color-text-secondary);
        }

/* #endregion */

/* #region Blog / Index */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0 !important;
    height: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease, border-color 0.3s ease;
}

    .blog-card.active {
        opacity: 1;
        transform: translateY(0);
    }

    .blog-card:hover {
        transform: translateY(-10px) !important;
        box-shadow: 0 20px 40px -10px rgba(200, 24, 128, 0.4) !important;
        border-color: var(--color-accent) !important;
        z-index: 2;
    }

.blog-img-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--glass-border);
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-card:hover .blog-img {
    transform: scale(1.1);
}

.blog-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-title {
    font-size: 1.4rem;
    line-height: 2.0rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text-primary);
    transition: color 0.3s;
}

.blog-card:hover .blog-title {
    color: var(--color-accent);
}

.blog-excerpt {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.blog-section-spacing {
    padding-top: 140px;
    padding-bottom: 100px;
}

@media (max-width: 768px) {
    .blog-section-spacing {
        padding-top: 80px !important;
        padding-bottom: 60px;
    }
}

/* #endregion */

/* #region Blog / Article */

.article-view-section {
    padding-top: 120px;
    padding-bottom: 100px;
}

@media (max-width: 768px) {
    .article-view-section {
        padding-top: 90px;
        padding-bottom: 60px;
    }
}

.article-narrow {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text-muted);
    font-weight: 600;
    margin-bottom: 60px;
    transition: 0.3s;
    font-size: 0.95rem;
    text-decoration: none;
}

    .back-link:hover {
        color: var(--color-accent);
        transform: translateX(-5px);
    }

.article-header {
    margin-bottom: 40px;
    text-align: center;
}

.article-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 80px;
    font-weight: 800;
    color: var(--color-text-primary);
}

.article-hero-img-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 100px;
    box-shadow: 0 20px 50px -20px rgba(0,0,0,0.5);
    border: 1px solid var(--glass-border);
}

.article-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    color: var(--color-text-secondary);
    font-size: 1.15rem;
    line-height: 1.8;
}

    .article-content p, .article-content ul, .article-content ol {
        margin-bottom: 24px;
    }

    .article-content > p:first-of-type::first-letter {
        float: left;
        font-size: 4.5rem;
        line-height: 0.75;
        padding-top: 10px;
        padding-right: 16px;
        margin: 0;
        font-weight: 800;
        color: var(--color-accent);
    }

    .article-content h2 {
        font-size: 1.8rem;
        color: var(--color-text-primary);
        margin-top: 100px;
        margin-bottom: 40px;
        font-weight: 800;
        line-height: 1.2;
    }

    .article-content h3 {
        font-size: 1.4rem;
        color: var(--color-text-primary);
        margin-top: 40px;
    }

    .article-content ul, .article-content ol {
        padding-left: 20px;
    }

    .article-content li {
        margin-bottom: 12px;
    }

        .article-content li::marker {
            color: var(--color-accent);
            font-weight: 700;
        }

    .article-content a.btn {
        margin-top: 60px;
        margin-bottom: 80px;
    }

@media (max-width: 768px) {
    .article-title {
        font-size: 2rem;
    }

    .article-content {
        font-size: 1.05rem;
    }

    .article-hero-img-wrapper {
        border-radius: 16px;
        margin-bottom: 40px;
    }

    .article-content a.btn {
        max-width: 100%;
    }
}

/* #endregion */

/* #region Account / Log In & Register */

.auth-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 140px 20px 140px;
}

@media (max-width: 768px) {
    .auth-section {
        padding-top: 100px;
        padding-bottom: 80px;
        min-height: auto;
    }
}

.auth-card-wrapper {
    width: 100%;
    max-width: 440px;
    position: relative;
    z-index: 2;
}

    .auth-card-wrapper h1 {
        font-size: 2rem;
        margin-top: 5px;
        margin-bottom: 20px;
    }

        .auth-card-wrapper h1 + p {
            font-size: 1.0rem;
            margin-bottom: 40px;
        }

.glass-card-static {
    transform: none !important;
    transition: background 0.3s, border-color 0.3s !important;
}

    .glass-card-static:hover {
        transform: none !important;
        box-shadow: var(--shadow-card) !important;
        border-color: var(--glass-border) !important;
    }

.auth-link {
    color: var(--color-text-muted);
    transition: 0.3s;
    font-weight: 500;
    font-size: 0.85rem;
}

    .auth-link:hover {
        color: var(--color-accent);
        text-decoration: underline;
    }

.auth-separator {
    display: flex;
    align-items: center;
    margin: 30px 0;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

    .auth-separator::before,
    .auth-separator::after {
        content: '';
        flex: 1;
        height: 1px;
        background: var(--glass-border);
    }

    .auth-separator span {
        padding: 0 15px;
        background: transparent;
    }

.nick-input-group {
    display: flex;
    align-items: stretch;
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid var(--glass-border);
    border-radius: 16px;
    padding: 8px;
    transition: 0.3s;
    position: relative;
    margin-bottom: 20px;
}

    .nick-input-group:focus-within {
        border-color: var(--color-accent);
        background: rgba(0, 0, 0, 0.4);
        box-shadow: 0 0 20px rgba(200, 24, 128, 0.15);
    }

.nick-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--color-text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    padding: 10px 15px;
    min-width: 0;
    outline: none;
}

    .nick-input::placeholder {
        color: rgba(255,255,255,0.2);
        font-weight: 500;
    }

.nick-suffix {
    display: flex;
    align-items: center;
    padding: 0 15px;
    color: var(--color-text-muted);
    font-size: 1.1rem;
    font-weight: 600;
    user-select: none;
    border-right: 1px solid var(--glass-border);
}

.btn-check {
    background: transparent;
    border: none;
    color: var(--color-text-primary);
    width: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: 0.3s;
    border-radius: 8px;
}

    .btn-check:hover {
        background: rgba(255,255,255,0.1);
        color: var(--color-accent);
    }

.nick-input-group.state-error {
    border-color: #ef4444;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.2);
    animation: shake 0.4s ease-in-out;
}

.nick-input-group.state-success {
    border-color: #10b981;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
}

.hero-nick {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-column-gap: 20px;
    margin: 0 auto;
    margin-top: 100px;
    max-width: 800px;
}

    .hero-nick .nick-input-group {
        margin: 0;
    }

    .hero-nick .nick-suffix {
        border-right: 0;
    }

.validation-list {
    text-align: left;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    list-style: none;
}

.validation-item {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

    .validation-item:last-child {
        margin-bottom: 0;
    }

.validation-icon {
    flex-shrink: 0;
}

.registration-details {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

    .registration-details.open {
        max-height: 800px;
        opacity: 1;
        margin-top: 30px;
        padding-top: 30px;
        border-top: 1px solid var(--glass-border);
    }

.custom-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
    text-align: left;
}

    .custom-checkbox input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

.checkmark {
    height: 22px;
    width: 22px;
    background-color: rgba(255,255,255,0.1);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    flex-shrink: 0;
    position: relative;
    transition: 0.2s;
}

.custom-checkbox:hover .checkmark {
    border-color: var(--color-text-muted);
}

.custom-checkbox input:checked ~ .checkmark {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 11px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.custom-checkbox a {
    color: var(--color-text-primary);
    text-decoration: underline;
    font-weight: 600;
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

@media (max-width: 600px) {
    .nick-input-group {
        flex-wrap: wrap;
    }

    .nick-suffix {
        order: 2;
        width: 100%;
        border-right: none;
        border-top: 1px solid var(--glass-border);
        padding: 10px 15px;
        background: rgba(255,255,255,0.02);
        font-size: 0.9rem;
        justify-content: center;
    }

    .nick-input {
        order: 1;
        width: calc(100% - 50px);
    }

    .btn-check {
        order: 1;
    }

    .hero-nick {
        grid-template-columns: 1fr;
        margin-top: 60px;
    }

        .hero-nick .nickname-btn {
            margin-top: 20px;
        }
}

/* #endregion */

/* #region Account / Profile */

.dash-plan-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid var(--glass-border);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--color-text-primary);
    transition: 0.3s;
}

    .dash-plan-badge:hover {
        border-color: var(--color-text-primary);
        background: rgba(255, 255, 255, 0.15);
    }

    .dash-plan-badge.pro {
        background: rgba(200, 24, 128, 0.2);
        border-color: var(--color-accent);
        color: var(--color-text-primary);
        box-shadow: 0 0 15px rgba(200, 24, 128, 0.3);
    }

        .dash-plan-badge.pro:hover {
            background: rgba(200, 24, 128, 0.4);
            box-shadow: 0 0 25px rgba(200, 24, 128, 0.5);
        }

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-text-primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    opacity: 0.2;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.action-card {
    padding: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    min-height: 100px;
}

.action-card-icon {
    font-size: 1.6rem;
    margin-bottom: 2px;
}

.action-card h4 {
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.3;
}

.action-card.primary {
    background: linear-gradient(135deg, var(--color-accent), #db2777);
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 10px 30px rgba(200, 24, 128, 0.3);
    position: relative;
    overflow: hidden;
}

    .action-card.primary::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 50%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transform: skewX(-20deg);
        animation: shine 6s infinite;
    }

    .action-card.primary:hover {
        box-shadow: 0 15px 40px rgba(200, 24, 128, 0.5);
        transform: translateY(-5px);
        border-color: #fff;
    }

    .action-card.primary .action-card-icon,
    .action-card.primary h4 {
        color: #ffffff !important;
        text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    }

.settings-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 60px;
}

.setting-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: rgba(255,255,255,0.03);
    border-radius: 16px;
    border: 1px solid transparent;
    transition: 0.3s;
    cursor: pointer;
    text-decoration: none;
}

    .setting-item:hover {
        background: rgba(255,255,255,0.08);
        border-color: var(--glass-border);
        transform: translateX(5px);
    }

.setting-left {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    color: var(--color-text-primary);
}

.setting-icon {
    width: 24px;
    text-align: center;
    color: var(--color-text-secondary);
}

.setting-arrow {
    color: var(--color-text-muted);
    font-weight: 800;
}

.danger-zone {
    border-top: 1px solid var(--glass-border);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.btn-danger-text {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    transition: 0.3s;
}

    .btn-danger-text:hover {
        color: var(--color-error);
        text-decoration: underline;
    }

@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

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

    .action-card {
        flex-direction: row;
        justify-content: flex-start;
        padding: 15px 20px;
        min-height: auto;
        gap: 20px;
    }

    .danger-zone {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.share-zero-state {
    padding: 50px 30px 70px 30px;
    text-align: center;
    border: 2px dashed var(--glass-border);
    background: rgba(255, 255, 255, 0.02);
    margin-bottom: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .share-zero-state:hover {
        border-color: var(--color-accent);
        background: rgba(255, 255, 255, 0.04);
    }

.zero-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(200, 24, 128, 0.4));
    animation: floatRocket 3s infinite ease-in-out;
}

@keyframes floatRocket {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.zero-text {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: 30px;
    max-width: 500px;
    line-height: 1.6;
}

.link-display-box {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    padding: 15px 25px;
    border-radius: 12px;
    font-family: monospace;
    font-size: 1.2rem;
    color: var(--color-accent);
    margin-bottom: 25px;
    cursor: pointer;
    transition: 0.3s;
    user-select: all;
    display: inline-block;
}

    .link-display-box:hover {
        background: rgba(0, 0, 0, 0.5);
        border-color: var(--color-accent);
        box-shadow: 0 0 15px rgba(200, 24, 128, 0.2);
    }

.btn-copy-success {
    background: var(--color-success) !important;
    border-color: var(--color-success) !important;
    color: #fff !important;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4) !important;
}

/* #endregion */

/* #region Account / Edit */

.app-edit-section {
    padding-top: 160px;
    padding-bottom: 100px;
}

@media (max-width: 768px) {
    .app-edit-section {
        padding-top: 80px;
    }
}

.edit-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.glass-form {
    padding: 50px;
}

.form-group {
    margin-bottom: 24px;
}

.uploads-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 10px;
    margin-bottom: 30px;
    align-items: stretch;
}

.upload-col {
    display: flex;
    flex-direction: column;
}

.upload-label {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin-bottom: 12px;
    display: block;
}

.avatar-upload-wrapper {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.02);
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    padding: 20px;
}

.avatar-upload {
    position: relative;
    width: 100px;
    height: 100px;
}

.hidden-input {
    display: none;
}

.file-dropzone.compact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 140px;
    border: 2px dashed var(--glass-border);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    background: rgba(255,255,255,0.02);
    margin: 0;
}

    .file-dropzone.compact:hover {
        border-color: var(--color-accent);
        background: rgba(200, 24, 128, 0.05);
    }

.file-icon {
    font-size: 2rem;
    margin-bottom: 8px;
    display: block;
}

.file-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-primary);
    line-height: 1.3;
}

.file-subtext {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 4px;
}

.color-row {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--glass-border);
}

.color-picker-label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin-bottom: 15px;
}

.color-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.color-option {
    position: relative;
    cursor: pointer;
}

    .color-option input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

.color-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: block;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid transparent;
}

.c-black {
    background: #1e293b;
    border-color: #475569;
}

.c-blue {
    background: #3b82f6;
}

.c-green {
    background: #10b981;
}

.c-red {
    background: #ef4444;
}

.c-pink {
    background: #ec4899;
}

.c-orange {
    background: #f97316;
}

.color-option:hover .color-circle {
    transform: scale(1.1);
}

.color-option input:checked ~ .color-circle {
    transform: scale(1.2);
    box-shadow: 0 0 0 3px var(--color-bg-main), 0 0 0 5px var(--color-text-primary);
    z-index: 1;
}

.auto-textarea {
    min-height: 100px;
    overflow-y: hidden;
    resize: none;
}

@media (max-width: 600px) {
    .glass-form {
        padding: 24px;
    }

    .uploads-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .avatar-upload-wrapper {
        padding: 30px;
    }

    .file-dropzone.compact {
        min-height: 120px;
    }
}

/* #endregion */

/* #region Account / Notifications */

.toggles-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.toggle-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid var(--glass-border);
}

    .toggle-row:last-child {
        border-bottom: none;
    }

.toggle-info {
    padding-right: 20px;
    max-width: 80%;
}

.toggle-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 6px;
    display: block;
}

.toggle-desc {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

.switch {
    position: relative;
    display: inline-block;
    width: 56px;
    height: 30px;
    flex-shrink: 0;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.1);
    border: 1px solid var(--glass-border);
    transition: .4s;
    border-radius: 34px;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 22px;
        width: 22px;
        left: 3px;
        bottom: 3px;
        background-color: white;
        transition: .4s;
        border-radius: 50%;
        box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    }

input:checked + .slider {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
}

    input:checked + .slider:before {
        transform: translateX(26px);
    }

input:focus + .slider {
    box-shadow: 0 0 1px var(--color-accent);
}

@media (max-width: 600px) {
    .toggle-row {
        align-items: flex-start;
    }

    .switch {
        margin-top: 5px;
    }
}

/* #endregion */

/* #region Account / Domain */

.domain-status-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--glass-border);
}

.status-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.status-text-group h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.status-text-group p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.status-inactive .status-icon-box {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.1);
}

.status-active .status-icon-box {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.1);
}

.dns-config-box {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.dns-row {
    display: grid;
    grid-template-columns: 1fr 2fr 2fr 1fr;
    gap: 15px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

    .dns-row:last-child {
        border-bottom: none;
    }

.dns-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--color-text-muted);
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
    display: block;
}

.dns-value {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    color: var(--color-text-primary);
    background: rgba(255,255,255,0.05);
    padding: 6px 10px;
    border-radius: 6px;
    display: inline-block;
}

.copy-btn {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--color-text-secondary);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

    .copy-btn:hover {
        background: var(--color-accent);
        color: white;
        border-color: var(--color-accent);
    }

.dns-notes {
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    background: rgba(255,255,255,0.02);
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid var(--color-text-secondary);
}

    .dns-notes li {
        margin-bottom: 6px;
    }

        .dns-notes li:last-child {
            margin-bottom: 0;
        }

@media (max-width: 700px) {
    .dns-row {
        grid-template-columns: 1fr;
        gap: 10px;
        border-bottom: 1px solid var(--glass-border);
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .dns-value {
        width: 100%;
        word-break: break-all;
    }

    .copy-btn {
        width: 100%;
        gap: 10px;
    }

        .copy-btn::after {
            content: "Kopiuj wartość";
            font-size: 0.9rem;
        }
}

/* #endregion */

/* #region Account / Analytics */

.analytics-section {
    padding-top: 160px;
    padding-bottom: 100px;
}

@media (max-width: 768px) {
    .analytics-section {
        padding-top: 120px;
        padding-left: 15px;
        padding-right: 15px;
    }
}

.analytics-numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.number-card {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 120px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

    .number-card.active {
        opacity: 1;
        transform: translateY(0);
    }

.analytics-numbers-grid .number-card:nth-child(1) {
    transition-delay: 0.1s;
}

.analytics-numbers-grid .number-card:nth-child(2) {
    transition-delay: 0.2s;
}

.analytics-numbers-grid .number-card:nth-child(3) {
    transition-delay: 0.3s;
}

.analytics-numbers-grid .number-card:nth-child(4) {
    transition-delay: 0.4s;
}

.number-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: var(--glow-accent) !important;
    border-color: var(--color-accent) !important;
    transition-delay: 0s !important;
    transition-duration: 0.2s !important;
}

.number-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
    pointer-events: none;
}

.number-val {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: 5px;
    line-height: 1;
}

.number-label {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.num-fans {
    color: var(--color-accent);
}

.num-msgs {
    color: #3b82f6;
}

.num-clicks {
    color: #10b981;
}

.num-ctr {
    color: #f59e0b;
}

.charts-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.chart-card {
    padding: 30px;
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
}

.chart-header {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.chart-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text-primary);
}

.chart-subtitle {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    display: block;
}

.chart-body {
    flex-grow: 1;
    width: 100%;
    min-height: 300px;
    min-width: 0;
}

@media (max-width: 900px) {
    .analytics-numbers-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .analytics-numbers-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .number-card {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        min-height: auto;
        padding: 20px;
    }

    .number-val {
        font-size: 1.5rem;
        order: 2;
        margin: 0;
    }

    .number-label {
        order: 1;
        font-size: 0.85rem;
    }

    .chart-card {
        padding: 20px 10px;
    }

    .chart-header {
        padding: 0 5px;
        margin-bottom: 10px;
    }

    .chart-body {
        min-height: 250px;
    }
}

/* #endregion */

/* #region Signal / Send */

.signal-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
    margin-top: 20px;
}

.char-counter {
    display: block;
    text-align: right;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 8px;
    font-weight: 600;
}

    .char-counter.limit-near {
        color: #f59e0b;
    }

    .char-counter.limit-hit {
        color: #ef4444;
    }

.signal-warnings {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
}

.warning-item {
    display: flex;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin-bottom: 10px;
    line-height: 1.5;
}

.warning-icon {
    color: var(--color-accent);
    font-size: 1.1rem;
}

.phone-preview-wrapper {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.preview-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    font-weight: 700;
}

.mock-phone {
    width: 300px;
    height: 600px;
    background: #000000;
    border-radius: 40px;
    border: 8px solid #1e293b;
    position: relative;
    box-shadow: 0 20px 50px -10px rgba(0,0,0,0.5);
    overflow: hidden;
    z-index: 1;
}

.mock-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #1e293b;
    border-radius: 0 0 15px 15px;
    z-index: 3;
}

.mock-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    position: relative;
    padding: 60px 15px 20px;
}

.push-notification {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    margin-bottom: 10px;
    backdrop-filter: blur(10px);
    animation: slideInDown 0.5s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.push-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.push-app-info {
    display: flex;
    align-items: center;
    gap: 6px;
}

.push-icon {
    width: 20px;
    height: 20px;
    background: var(--color-accent);
    border-radius: 4px;
}

.push-app-name {
    font-size: 0.75rem;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
}

.push-time {
    font-size: 0.7rem;
    color: #666;
}

.push-content {
    font-size: 0.85rem;
    color: #111;
    line-height: 1.3;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 900px) {
    .phone-preview-wrapper {
        display: none !important;
    }

    .signal-split {
        display: block;
        margin-top: 0;
        gap: 0;
    }

    .edit-form-wrapper {
        width: 100%;
        max-width: 100%;
    }
}

/* #endregion */

/* #region Modals */

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 7, 18, 0.85);
    backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

    .modal-backdrop.active {
        opacity: 1;
        pointer-events: all;
    }

.modal-card {
    background: rgba(20, 20, 30, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 50px 40px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.modal-backdrop.active .modal-card {
    transform: scale(1) translateY(0);
}

.modal-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(200, 24, 128, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--color-accent);
    font-size: 2.5rem;
    position: relative;
    border: 1px solid rgba(200, 24, 128, 0.3);
}

    .modal-icon-wrapper::after {
        content: '';
        position: absolute;
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
        border-radius: 50%;
        border: 1px solid var(--color-accent);
        opacity: 0;
        animation: radarPulse 2s infinite;
    }

    .modal-icon-wrapper::before {
        content: '';
        position: absolute;
        top: -25px;
        left: -25px;
        right: -25px;
        bottom: -25px;
        border-radius: 50%;
        border: 1px solid var(--color-accent);
        opacity: 0;
        animation: radarPulse 2s infinite 0.4s;
    }

@keyframes radarPulse {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--color-text-primary);
}

.modal-text {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: 10px;
    line-height: 1.6;
}

.modal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-modal-confirm {
    background: var(--color-accent);
    color: white;
    flex: 1;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(200, 24, 128, 0.4);
}

.btn-modal-cancel {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--color-text-primary);
    flex: 1;
    justify-content: center;
}

    .btn-modal-cancel:hover {
        background: rgba(255,255,255,0.05);
        border-color: var(--color-text-secondary);
    }

@media (max-width: 500px) {
    .modal-actions {
        flex-direction: column-reverse;
    }

    .modal-card {
        padding: 40px 24px;
    }
}

/* #endregion */

/* #region Auxiliary */

.hide {
    display: none;
}

/* #endregion */

/* #region ReCaptcha */

.grecaptcha-badge {
    visibility: hidden;
}

.grecaptcha-information {
    margin-top: 40px;
    color: var(--color-text-secondary);
    font-size: 0.6rem;
}

    .grecaptcha-information a {
        color: var(--color-text-secondary);
        border-color: var(--color-text-secondary);
    }

/* #endregion */

/* #region Managing photo and cover while editing the profile */

div.photo-deletable {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 200px;
    margin-top: 5px;
}

    div.photo-deletable img.icon-delete {
        position: absolute;
        background: var(--colorWhite);
        right: 10px;
        bottom: 10px;
        width: 40px;
        height: 40px;
        border: 2px solid var(--colorGray);
        border-radius: 50%;
        padding: 10px;
    }

img.photo-placeholder {
    border: 2px solid var(--colorGray);
    border-radius: 50%;
    width: 100%;
    max-width: 200px;
    cursor: pointer;
}

/* #endregion */

@keyframes fadein {
    0% {
        transform: translateY(-40px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* #region Dialog overlay */

div.dialog-overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background-color: #00000078;
    display: none;
    place-items: center;
    text-align: center;
}

    div.dialog-overlay img.illustration {
        max-width: 80px;
        filter: brightness(100%) invert();
    }

/* #endregion */

/* #region Success and failure messages */

#message-success,
#message-failure {
    background-color: #028459;
    color: var(--color-text-primary);
    margin: 0;
    margin-top: 80px;
    margin-bottom: -40px;
    padding: 10px 0;
    font-weight: 800;
    text-align: center;
}

#message-failure {
    background-color: #801414;
}

/* #endregion */

/* #region Content Visibility Optimization */

.blog-section-spacing,
.article-view-section,
.analytics-section,
.media-page-section,
.contact-page-section {
    content-visibility: auto;
    contain-intrinsic-size: 1px 800px;
}

#pricing,
.pricing-page-section {
    content-visibility: visible;
}

@media (max-width: 900px) {
    .bg-aurora {
        filter: blur(60px);
    }

    header.scrolled {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(3, 7, 18, 0.65);
    }

    .glass-card,
    .modal-backdrop,
    .push-notification {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .mobile-nav-overlay::before,
    .final-cta-glow {
        filter: none;
    }

    .b-icon-wrapper .b-icon {
        animation: none;
    }
}

/* Low-power GPU devices: old iPads, low-end tablets */
@media (hover: none) and (pointer: coarse) {
    .bg-aurora {
        filter: blur(40px);
    }

    .aurora-orb {
        animation: none !important;
        opacity: 0.15;
    }

    .orb-1 {
        width: 40vw;
        height: 40vw;
    }

    .orb-2 {
        width: 50vw;
        height: 50vw;
    }

    header.scrolled {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(3, 7, 18, 0.85);
    }

    .glass-card,
    .comp-new,
    .modal-backdrop,
    .push-notification {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .glass-card {
        background: rgba(15, 23, 42, 0.9);
    }

    .mobile-nav-overlay::before,
    .final-cta-glow {
        filter: none;
    }

    .bg-noise {
        display: none;
    }

    .marquee-wrapper {
        animation-duration: 60s;
    }

    .b-icon-wrapper .b-icon {
        animation: none;
    }

    .glass-card:hover,
    .blog-card:hover,
    .number-card:hover,
    .creator-circle:hover,
    .btn:hover {
        box-shadow: none;
    }

    .price-card.pro {
        box-shadow: var(--shadow-card);
    }

    .price-card.pro:hover {
        box-shadow: var(--shadow-card);
    }

    .steps-line::after {
        animation: none;
        width: 100%;
        left: 0;
        opacity: 0.5;
    }
}

/* #endregion */

/* #region Reduced Motion Preference */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .aurora-orb,
    .marquee-wrapper,
    .steps-line::after,
    .zero-icon,
    .modal-icon-wrapper::before,
    .modal-icon-wrapper::after,
    .push-notification,
    .b-icon-wrapper .b-icon {
        animation: none !important;
    }

    .reveal,
    .reveal-immediate,
    .blog-card,
    .number-card {
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}

/* #endregion */

/* #region Crop Modal */

#cropModal h3 {
    margin-bottom: 40px;
}

#cropModal button {
    margin-top: 40px;
}

/* #endregion */
