/* ============================================================
   FIASCO INDUSTRIES — STYLES
   Black primary, white/gray accents, glass effects, parallax
   ============================================================ */

/* ─── RESET & BASE ─── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --black-light: #0a0a0a;
    --black-card: #111111;
    --gray-900: #171717;
    --gray-800: #1f1f1f;
    --gray-700: #2a2a2a;
    --gray-600: #3a3a3a;
    --gray-500: #555555;
    --gray-400: #777777;
    --gray-300: #999999;
    --gray-200: #bbbbbb;
    --gray-100: #dddddd;
    --white: #ffffff;
    --white-05: rgba(255,255,255,0.05);
    --white-08: rgba(255,255,255,0.08);
    --white-10: rgba(255,255,255,0.10);
    --white-15: rgba(255,255,255,0.15);
    --white-20: rgba(255,255,255,0.20);
    --white-40: rgba(255,255,255,0.40);
    --white-60: rgba(255,255,255,0.60);
    --white-80: rgba(255,255,255,0.80);
    --green: #22c55e;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    background: var(--black);
    color: var(--gray-200);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

::selection {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

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

/* ─── CURSOR GLOW ─── */
.cursor-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    will-change: transform;
}

/* ─── PARTICLE CANVAS ─── */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ─── CONTAINER ─── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* ─── GLASS EFFECTS ─── */
.glass-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.glass-card:hover {
    border-color: var(--white-20);
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(255,255,255,0.03);
}

.glass-card-large {
    background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--white-08);
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

.glass-card-large:hover {
    border-color: var(--white-15);
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

/* ─── PARALLAX BACKGROUNDS ─── */
.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

/* ─── SECTION COMMON ─── */
section {
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid var(--white-15);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-300);
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
    background: var(--white-05);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 16px auto 0;
}

/* ─── NAVBAR ─── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--white-05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon svg {
    display: block;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.05em;
}

.logo-accent {
    color: var(--gray-400);
}

.nav-logo-img {
    height: 90px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: var(--transition);
    filter: brightness(1);
}

.nav-logo:hover .nav-logo-img {
    opacity: 0.85;
    transform: scale(1.03);
}

.footer-logo-img {
    height: 200px;
    width: auto;
    display: block;
    object-fit: contain;
    margin-bottom: 16px;
    filter: brightness(1);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-400);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--white);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    position: relative;
}

.hero-bg-layers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.08), transparent);
    top: -10%;
    right: -5%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(150,150,150,0.06), transparent);
    bottom: 10%;
    left: -10%;
    animation-delay: -7s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(200,200,200,0.05), transparent);
    top: 40%;
    right: 20%;
    animation-delay: -14s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -40px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(40px, 30px) scale(1.02); }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-200);
    margin-bottom: 32px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #888888 50%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 8s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--gray-400);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--white);
    color: var(--black);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(255,255,255,0.15);
}

.btn-glass {
    background: var(--white-05);
    color: var(--white);
    border: 1px solid var(--white-15);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: var(--white-10);
    border-color: var(--white-20);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ─── SCROLL INDICATOR ─── */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--white-40), transparent);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
    100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

.hero-scroll-indicator span {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ─── STATS ─── */
.stats-section {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

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

.stat-card {
    padding: 40px 32px;
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 12px;
}

.highlight-zero {
    background: linear-gradient(135deg, #ffffff, #666666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--gray-400);
    line-height: 1.5;
}

.stat-label strong {
    color: var(--white);
}

.stat-bar {
    margin-top: 20px;
    height: 3px;
    background: var(--white-05);
    border-radius: 10px;
    overflow: hidden;
}

.stat-bar-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--white-40), var(--white-10));
    border-radius: 10px;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card.animated .stat-bar-fill {
    width: var(--fill);
}

/* ─── MISSION ─── */
.mission-section {
    padding: 120px 0;
    position: relative;
}

.mission-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255,255,255,0.02) 0%, transparent 50%);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.mission-lead {
    font-size: 1.3rem;
    color: var(--white);
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 20px;
}

.mission-text p {
    margin-bottom: 16px;
    color: var(--gray-300);
}

.mission-highlight {
    font-size: 1.2rem;
    color: var(--white) !important;
    font-weight: 600;
    padding: 16px 0;
    border-left: 3px solid var(--white-20);
    padding-left: 20px;
}

.mission-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mission-card {
    padding: 28px;
}

.mission-card-icon {
    margin-bottom: 16px;
}

.mission-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 8px;
}

.mission-card p {
    font-size: 0.9rem;
    color: var(--gray-400);
}

/* ─── ABOUT ─── */
.about-section {
    padding: 120px 0;
    position: relative;
}

.about-story {
    padding: 48px;
    margin-bottom: 64px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-story h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 24px;
}

.about-story-content p {
    margin-bottom: 16px;
    color: var(--gray-300);
    line-height: 1.8;
}

.about-question {
    font-size: 1.1rem;
    color: var(--gray-200) !important;
    padding: 20px 24px;
    background: var(--white-05);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--white-20);
}

.about-answer {
    font-size: 1.15rem;
    color: var(--white) !important;
}

.about-story-visual {
    position: relative;
    height: 300px;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: var(--radius-lg);
    border: 1px solid var(--white-10);
    backdrop-filter: blur(10px);
    animation: shapeFloat 15s ease-in-out infinite;
}

.shape-1 {
    width: 120px;
    height: 120px;
    background: var(--white-05);
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.shape-2 {
    width: 80px;
    height: 80px;
    background: var(--white-08);
    top: 40%;
    right: 10%;
    animation-delay: -5s;
    border-radius: 50%;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: var(--white-05);
    bottom: 10%;
    left: 30%;
    animation-delay: -10s;
    border-radius: 50% 20% 50% 20%;
}

@keyframes shapeFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(10px) rotate(-5deg); }
    75% { transform: translateY(-15px) rotate(3deg); }
}

/* Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 100px;
}

.value-card {
    padding: 32px 24px;
    text-align: center;
}

.value-icon {
    margin-bottom: 16px;
    color: var(--gray-300);
}

.value-card h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.6;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.team-card {
    padding: 32px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.team-card.featured {
    border-color: var(--white-20);
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
}

.team-card.featured::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--white-40), transparent);
}

.team-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.team-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gray-700), var(--gray-900));
    border: 2px solid var(--white-15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    flex-shrink: 0;
    overflow: hidden;
}

.team-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
    display: block;
}

.team-info h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--white);
    line-height: 1.3;
}

.team-role {
    font-size: 0.85rem;
    color: var(--gray-400);
}

.team-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--gray-300);
    background: var(--white-05);
    border: 1px solid var(--white-08);
    border-radius: 100px;
}

.team-card p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.team-linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white-05);
    border: 1px solid var(--white-10);
    color: var(--gray-400);
    transition: var(--transition);
}

.team-linkedin:hover {
    background: var(--white-15);
    color: var(--white);
    transform: translateY(-2px);
}

.team-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--white-08);
    flex-wrap: nowrap;
}

.team-view-profile {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--black) !important;
    background: var(--white);
    border: 1px solid var(--white);
    border-radius: 100px;
    text-decoration: none !important;
    transition: var(--transition);
    position: relative;
    z-index: 10;
    pointer-events: all;
    cursor: pointer;
}

.team-view-profile:hover {
    background: transparent;
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255,255,255,0.12);
}

/* ─── PRODUCT ─── */
.product-section {
    padding: 120px 0;
    position: relative;
}

.product-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 50% 30%, rgba(255,255,255,0.04) 0%, transparent 60%);
}

.product-showcase {
    margin-bottom: 60px;
}

.product-mockup {
    overflow: hidden;
    padding: 0;
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    border-bottom: 1px solid var(--white-08);
    background: var(--white-05);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--white-15);
}

.mockup-dots span:first-child { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #ffbd2e; }
.mockup-dots span:last-child { background: #28c840; }

.mockup-title {
    font-size: 0.8rem;
    color: var(--gray-400);
    font-weight: 500;
}

.mockup-body {
    padding: 32px;
    max-height: 500px;
    overflow-y: auto;
}

.chat-demo {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.chat-message {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    animation: chatSlide 0.5s ease-out forwards;
    opacity: 0;
}

.chat-message:nth-child(1) { animation-delay: 0.3s; }
.chat-message:nth-child(2) { animation-delay: 0.8s; }
.chat-message:nth-child(3) { animation-delay: 1.3s; }

@keyframes chatSlide {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.chat-message.user {
    flex-direction: row-reverse;
}

.chat-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gray-700), var(--gray-600));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.chat-bubble {
    max-width: 80%;
    padding: 16px 20px;
}

.chat-message.user .chat-bubble {
    background: var(--white);
    color: var(--black);
    border-radius: var(--radius-lg) var(--radius-lg) 4px var(--radius-lg);
    border: none;
}

.chat-message.bot .chat-bubble {
    border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) 4px;
}

.chat-bubble p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

.chat-bubble p:last-child {
    margin-bottom: 0;
}

.product-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 32px 24px;
    position: relative;
}

.feature-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white-10);
    line-height: 1;
    margin-bottom: 16px;
}

.feature-card h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--gray-400);
    line-height: 1.5;
}

/* ─── IMPACT ─── */
.impact-section {
    padding: 120px 0;
    position: relative;
}

.impact-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.impact-stat {
    padding: 40px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.impact-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--white-20), transparent);
}

.impact-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 12px;
}

.impact-stat p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.5;
}

.impact-opportunity {
    padding: 48px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 80px;
}

.opportunity-content h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 20px;
}

.opportunity-content p {
    color: var(--gray-300);
    margin-bottom: 16px;
    line-height: 1.7;
}

.opportunity-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ring-chart {
    position: relative;
    width: 200px;
    height: 200px;
}

.ring-chart svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.ring-progress {
    transition: stroke-dashoffset 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.ring-chart.animated .ring-progress {
    stroke-dashoffset: 496;
}

.ring-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.ring-label small {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--gray-400);
}

/* Testimonials */
.testimonials {
    padding-top: 40px;
}

.testimonials-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    text-align: center;
    margin-bottom: 40px;
}

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

.testimonial-card {
    padding: 32px;
    position: relative;
}

.quote-icon {
    font-family: Georgia, serif;
    font-size: 4rem;
    line-height: 1;
    color: var(--white-10);
    position: absolute;
    top: 16px;
    left: 24px;
}

.testimonial-card p {
    font-size: 1rem;
    color: var(--gray-200);
    line-height: 1.7;
    margin-bottom: 20px;
    padding-top: 24px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: var(--white);
    font-size: 0.9rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* ─── ROADMAP ─── */
.roadmap-section {
    padding: 120px 0;
    position: relative;
}

.roadmap-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.03) 0%, transparent 50%);
}

.roadmap-current {
    padding: 40px;
    margin-bottom: 80px;
    position: relative;
}

.roadmap-current:last-child {
    margin-bottom: 0px;
}

.roadmap-current-badge {
    display: inline-block;
    padding: 4px 14px;
    background: var(--green);
    color: var(--black);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 100px;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.roadmap-current h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 24px;
}

.roadmap-current-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
}

.rcf-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-300);
    padding: 8px 0;
}

/* Timeline */
.roadmap-timeline {
    position: relative;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--white-20), var(--white-05));
}

.timeline-item {
    position: relative;
    width: 50%;
    padding-right: 60px;
    padding-bottom: 60px;
    margin-left: 0;
}

.timeline-item.right {
    margin-left: 50%;
    padding-right: 0;
    padding-left: 60px;
}

.timeline-dot {
    position: absolute;
    top: 0;
    right: -8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--black);
    z-index: 2;
}

.timeline-item.right .timeline-dot {
    right: auto;
    left: -8px;
}

.timeline-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--white-20);
    animation: timelinePulse 3s ease-in-out infinite;
}

@keyframes timelinePulse {
    0%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.5); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.timeline-content {
    padding: 32px;
}

.timeline-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--white-10);
    border: 1px solid var(--white-15);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-200);
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.timeline-content h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.6;
}

/* ─── RECOGNITION ─── */
.recognition-section {
    padding: 120px 0;
    position: relative;
}

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

.recognition-card {
    padding: 40px 32px;
    text-align: center;
    position: relative;
}

.recognition-icon {
    margin-bottom: 20px;
    color: var(--gray-300);
}

.recognition-card h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 8px;
}

.recognition-card p {
    font-size: 0.9rem;
    color: var(--gray-400);
}

.recognition-year {
    display: inline-block;
    margin-top: 16px;
    padding: 4px 12px;
    background: var(--white-05);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-400);
}

/* ─── CONTACT ─── */
.contact-section {
    padding: 120px 0;
    position: relative;
}

.contact-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.02) 0%, transparent 50%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: start;
}

.contact-card {
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white-05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    flex-shrink: 0;
}

.contact-card h4 {
    font-size: 0.8rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.contact-card a, .contact-card p {
    font-size: 0.95rem;
    color: var(--white);
}

.contact-card a:hover {
    color: var(--gray-300);
}

.founders-contact {
    margin-top: 32px;
}

.founders-contact h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 16px;
}

.founder-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--white-05);
}

.founder-link span:first-child {
    font-size: 0.95rem;
    color: var(--gray-200);
}

.founder-role {
    font-size: 0.8rem;
    color: var(--gray-500) !important;
}

/* Contact Form */
.contact-form-wrapper {
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--white);
    background: var(--white-05);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-md);
    outline: none;
    transition: var(--transition);
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-600);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--white-40);
    background: var(--white-08);
    box-shadow: 0 0 0 4px rgba(255,255,255,0.05);
}

.input-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--white-40), transparent);
    transition: width 0.4s;
    border-radius: 10px;
}

.form-group input:focus ~ .input-glow,
.form-group textarea:focus ~ .input-glow {
    width: 100%;
}

.form-success {
    text-align: center;
    padding: 40px;
}

.form-success h3 {
    font-family: var(--font-display);
    color: var(--white);
    margin: 16px 0 8px;
}

.form-success p {
    color: var(--gray-400);
}

/* ─── FOOTER ─── */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--white-05);
    position: relative;
    z-index: 2;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand .logo-text {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--gray-500);
    max-width: 300px;
    line-height: 1.6;
}

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

.footer-col h5 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-500);
    padding: 6px 0;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid var(--white-05);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--gray-600);
}

.footer-tagline {
    font-style: italic;
}

/* ─── BACK TO TOP ─── */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white-10);
    backdrop-filter: blur(10px);
    border: 1px solid var(--white-15);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    pointer-events: none;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top:hover {
    background: var(--white-20);
    transform: translateY(-4px);
}

/* ─── AOS ANIMATIONS ─── */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
    transition-duration: 0.8s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(40px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-down"] {
    transform: translateY(-40px);
}

[data-aos="fade-down"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-40px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(40px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* ─── LOADING SCREEN ─── */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 24px;
    transition: opacity 0.5s, visibility 0.5s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo-img {
    height: 180px;
    width: auto;
    object-fit: contain;
    animation: loaderLogoPulse 1.5s ease-in-out infinite;
}

@keyframes loaderLogoPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.7; transform: scale(0.97); }
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: var(--white-10);
    border-radius: 10px;
    overflow: hidden;
}

.loader-bar-fill {
    width: 0;
    height: 100%;
    background: var(--white);
    border-radius: 10px;
    animation: loaderFill 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes loaderFill {
    to { width: 100%; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .mission-content {
        grid-template-columns: 1fr;
    }

    .about-story {
        grid-template-columns: 1fr;
    }

    .about-story-visual {
        display: none;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .product-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .impact-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .impact-opportunity {
        grid-template-columns: 1fr;
    }

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

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

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

    .footer-top {
        grid-template-columns: 1fr;
    }

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

    /* Timeline mobile */
    .timeline-line {
        left: 20px;
    }

    .timeline-item,
    .timeline-item.right {
        width: 100%;
        margin-left: 0;
        padding-left: 56px;
        padding-right: 0;
    }

    .timeline-dot,
    .timeline-item.right .timeline-dot {
        left: 12px;
        right: auto;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(0,0,0,0.95);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        padding: 100px 32px 40px;
        gap: 4px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid var(--white-10);
    }

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

    .nav-link {
        font-size: 1.1rem;
        padding: 12px 16px;
        width: 100%;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }

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

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

    .product-features {
        grid-template-columns: 1fr;
    }

    .impact-stats-grid {
        grid-template-columns: 1fr;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .about-story {
        padding: 24px;
    }

    .impact-opportunity {
        padding: 24px;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

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

/* ─── SMOOTH SCROLLBAR (custom) ─── */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-700);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-600);
}

/* ─── SECTION DIVIDERS ─── */
.stats-section::before,
.mission-section::before,
.about-section::before,
.product-section::before,
.impact-section::before,
.roadmap-section::before,
.recognition-section::before,
.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--white-08), transparent);
}

/* ─── MAGNETIC HOVER EFFECT ON CARDS ─── */
.glass-card,
.glass-card-large {
    will-change: transform;
}

/* ─── NOISE TEXTURE OVERLAY ─── */

/* ─── SERVICE CARD VIEW WORK BUTTON ─── */
.value-card {
    display: flex;
    flex-direction: column;
}

.btn-service-view {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: auto;
    padding: 10px 20px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
    background: transparent;
    border: 1px solid var(--white-20);
    border-radius: 100px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-primary);
}

.btn-service-view:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255,255,255,0.12);
}

/* ─── SERVICE POPUP OVERLAY ─── */
.service-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    opacity: 0;
    transition: opacity 0.35s ease;
    padding: 24px;
}

.service-popup-overlay.active {
    display: flex;
    opacity: 1;
}

/* ─── SERVICE POPUP CARD ─── */
.service-popup {
    position: relative;
    width: 100%;
    max-width: 960px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 48px;
    border-radius: var(--radius-xl);
    animation: popupSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes popupSlideIn {
    from { opacity: 0; transform: translateY(30px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.service-popup::-webkit-scrollbar {
    width: 4px;
}
.service-popup::-webkit-scrollbar-track {
    background: transparent;
}
.service-popup::-webkit-scrollbar-thumb {
    background: var(--white-15);
    border-radius: 4px;
}

.service-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--white-05);
    border: 1px solid var(--white-10);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.service-popup-close:hover {
    background: var(--white-15);
    color: var(--white);
    transform: rotate(90deg);
}

.service-popup-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 8px;
    padding-right: 48px;
}

.service-popup-desc {
    font-size: 0.95rem;
    color: var(--gray-400);
    margin-bottom: 32px;
    line-height: 1.6;
}

/* ─── SERVICE POPUP GRID ─── */
.service-popup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-popup-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--white-08);
    background: var(--white-05);
    transition: var(--transition);
}

.service-popup-item:hover {
    border-color: var(--white-20);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}

.service-popup-item a {
    display: block;
    width: 100%;
    height: 100%;
}

.service-popup-item img {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-popup-item:hover img {
    transform: scale(1.04);
}

.service-popup-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray-500);
    font-size: 0.95rem;
    grid-column: 1 / -1;
}

/* ─── SERVICE POPUP RESPONSIVE ─── */
@media (max-width: 1024px) {
    .service-popup-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-popup {
        padding: 32px;
    }
}

@media (max-width: 600px) {
    .service-popup-grid {
        grid-template-columns: 1fr;
    }
    .service-popup {
        padding: 24px;
        max-height: 90vh;
    }
    .service-popup-title {
        font-size: 1.3rem;
    }
}

body.popup-open {
    overflow: hidden;
}

/* ─── NOISE TEXTURE OVERLAY (original) ─── */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.015;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
