@charset "UTF-8";
/* CSS Document */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #1d1d1f;
            overflow-x: hidden;
            background: #fff;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

		.img_container img { height: 100%; width: 100%; }
		.img_container img { object-fit: contain; /* or object-fit: cover; */ }
		.img_container { padding: 20px 0 20px 0; }

		.spacer { padding: 20px 0 20px 0; }

.overlay {
  width: 100%;
  display: block;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-color: rgba(0,0,0,0.75); /* Black background with opacity */
}

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            z-index: 1000;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 0;
        }

        .logonav {
            font-size: 22px;
            font-weight: 700;
            color: #1d1d1f;
            letter-spacing: -0.02em;
			max-width: 280px;
			width: 160px;
			margin-top: 20px;
			margin-bottom: 20px;
        }

        .logo {
            font-size: 22px;
            font-weight: 700;
            color: #1d1d1f;
            letter-spacing: -0.02em;
			max-height: 80px;
			height: 80px;
			width: 100px
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 32px;
        }

        .nav-links a {
            text-decoration: none;
            color: #1d1d1f;
            font-weight: 400;
            font-size: 17px;
            transition: color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            opacity: 0.8;
        }

        .nav-links a:hover {
            opacity: 1;
            color: #007aff;
        }

        /* Summary Section */
        .summary {
            padding: 100px 0 100px;
            text-align: center;
            background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
			background-image: url("assets/icons/footer_bg.png");
			background-blend-mode: lighten;
			background-size: cover;
        }

        .summary-content {
            max-width: 980px;
            margin: 0 auto;
        }

        .summary-content-wide {
            max-width: 1280px;
            margin: 0 auto;
        }

        /* Hero Section */
		
		#video_hero {
 			position: fixed;
 			right: 0;
 			bottom: 0;
			top: 0;
    		width: 100%;
			z-index: -1;
		}

        .hero {
            padding: 140px 0 120px;
            text-align: center;
			background: transparent;
        /*    background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
			background-image: url("assets/hero02.jpg");*/
			background-blend-mode: lighten;
			background-size: cover;
        }

        .hero-content {
            max-width: 980px;
            margin: 0 auto;
			padding: 40px 0 20px 0;
        }

        .hero-eyebrow {
            font-size: 19px;
            color: #007aff;
            font-weight: 600;
            margin-bottom: 8px;
            letter-spacing: -0.01em;
        }

        .hero h1 {
            font-size: clamp(48px, 8vw, 96px);
            font-weight: 700;
            color: #1d1d1f;
            margin-bottom: 24px;
            letter-spacing: -0.03em;
            line-height: 1.05;
        }

        .hero-subtitle {
            font-size: 28px;
            color: #86868b;
            font-weight: 400;
            margin-bottom: 48px;
            max-width: 720px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.3;
            letter-spacing: -0.01em;
        }

        .hero-subtitle-wide {
            font-size: 28px;
            color: #86868b;
            font-weight: 400;
            margin-bottom: 48px;
            max-width: 980px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.3;
            letter-spacing: -0.01em;
        }

        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-button {
            padding: 16px 32px;
            text-decoration: none;
            border-radius: 32px;
            font-weight: 500;
            font-size: 17px;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: none;
            cursor: pointer;
        }

        .cta-primary {
            background: #007aff;
            color: white;
        }

        .cta-primary:hover {
            background: #0056cc;
            transform: translateY(-1px);
        }

        .cta-secondary {
            background: rgb(255 255 255 / 65%);
            color: #007aff;
            border: 1px solid #d1d1d6;
        }

        .cta-secondary:hover {
            background: #f5f5f7;
            border-color: #007aff;
        }

        /* Section Styling */
        .section {
            padding: 80px 0;
        }

        .section-eyebrow {
            font-size: 17px;
            color: #007aff;
            font-weight: 600;
            text-align: center;
            margin-bottom: 16px;
            letter-spacing: 0.01em;
            text-transform: uppercase;
        }

        .section-title {
            font-size: clamp(32px, 5vw, 56px);
            font-weight: 700;
            text-align: center;
            color: #1d1d1f;
            margin-bottom: 24px;
            letter-spacing: -0.02em;
            line-height: 1.1;
        }

        .section-subtitle-wide {
            font-size: 21px;
            color: #86868b;
            text-align: center;
            max-width: 940px;
            margin: 0 auto 64px;
            line-height: 1.4;
            font-weight: 400;
        }

        .section-subtitle {
            font-size: 21px;
            color: #86868b;
            text-align: center;
            max-width: 640px;
            margin: 0 auto 64px;
            line-height: 1.4;
            font-weight: 400;
        }

        /* Vision Section */
        .vision-card {
            background: black;
            padding: 48px 32px;
            border-radius: 24px;
            text-align: center;
            transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: 1px solid rgba(0, 0, 0, 0.04);
        }

        /* Features Section */
        .features {
            background: #f5f5f7;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
        }

        .feature-card {
            background: white;
            padding: 48px 32px;
            border-radius: 24px;
            text-align: center;
            transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: 1px solid rgba(0, 0, 0, 0.04);
        }

        .feature-card:hover {
            transform: translateY(-8px);
        }

        .feature-icon {
            width: 64px;
            height: 64px;
            background: #007aff;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            font-size: 28px;
            color: white;
			border-radius: 15px;
        }

        .icon {
			max-width: 50px;
			width: 50px;
			margin-top: 10px;
			margin-bottom: 10px;
		}
			
        .feature-card h3 {
            font-size: 24px;
            font-weight: 600;
            color: #1d1d1f;
            margin-bottom: 16px;
            letter-spacing: -0.01em;
        }

        .feature-card p {
            font-size: 17px;
            color: #86868b;
            line-height: 1.5;
        }

        /* AI Tools Section */
        .ai-tools {
            background: white;
        }

        .tools-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
        }

        .tool-card {
            background: #f5f5f7;
            padding: 32px;
            border-radius: 16px;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .tool-card:hover {
            background: #ebebf0;
        }

        .tool-card h3 {
            font-size: 19px;
            font-weight: 600;
            color: #1d1d1f;
            margin-bottom: 12px;
        }

        .tool-card p {
            font-size: 15px;
            color: #86868b;
            line-height: 1.5;
        }

        .tool-card em {
            color: #007aff;
            font-style: normal;
            font-weight: 500;
        }

        /* Token Section */
        .token-section {
            background: #000;
            color: white;
        }

        .token-section .section-eyebrow {
            color: #007aff;
        }

        .token-section .section-title {
            color: white;
        }

        .token-section .section-subtitle {
            color: #a1a1a6;
        }

        .token-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .token-info h2 {
            font-size: 40px;
            font-weight: 700;
            margin-bottom: 24px;
            color: white;
            letter-spacing: -0.02em;
        }

        .token-highlight {
            background: linear-gradient(90deg, #007aff 0%, #5856d6 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .token-info p {
            font-size: 19px;
            color: #a1a1a6;
            margin-bottom: 32px;
            line-height: 1.4;
        }

        .token-features {
            list-style: none;
        }

        .token-features li {
            padding: 16px 0;
            font-size: 17px;
            color: #f5f5f7;
            border-bottom: 1px solid #2d2d2d;
        }

        .token-features li:last-child {
            border-bottom: none;
        }

        .token-features li::before {
            content: '✓';
            color: #007aff;
            font-weight: bold;
            margin-right: 16px;
            font-size: 16px;
        }

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

        .token-display {
            width: 280px;
            height: 280px;
            margin: 0 auto;
            background: linear-gradient(135deg, #007aff 0%, #5856d6 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            font-weight: 700;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .token-display::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        /* How It Works */
        .how-it-works {
            background: #f5f5f7;
        }

        .steps-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 40px;
        }

        .step {
            text-align: left;
            position: relative;
        }

        .step-number {
            width: 48px;
            height: 48px;
            background: #007aff;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 19px;
            font-weight: 600;
            margin-bottom: 24px;
        }

        .step h3 {
            font-size: 21px;
            font-weight: 600;
            color: #1d1d1f;
            margin-bottom: 16px;
            letter-spacing: -0.01em;
        }

        .step p {
            font-size: 17px;
            color: #86868b;
            line-height: 1.5;
        }

        /* Footer */
        footer {
            background: #1d1d1f;
            color: #f5f5f7;
            padding: 64px 0 32px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 48px;
        }

        .footer-section h3 {
            font-size: 17px;
            font-weight: 600;
            margin-bottom: 16px;
            color: white;
        }

        .footer-section p {
            font-size: 15px;
            color: #a1a1a6;
            line-height: 1.5;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 8px;
        }

        .footer-section ul li a {
            color: #a1a1a6;
            text-decoration: none;
            font-size: 15px;
            transition: color 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: #007aff;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 32px;
            border-top: 1px solid #2d2d2d;
            color: #86868b;
            font-size: 15px;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .container {
                padding: 0 20px;
            }

            .nav-links {
                display: none;
            }

            .hero {
                padding: 120px 0 80px;
            }

            .hero-subtitle {
                font-size: 21px;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .cta-button {
                width: 100%;
                max-width: 280px;
            }

            .token-content {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .token-display {
                width: 200px;
                height: 200px;
                font-size: 28px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .section {
                padding: 60px 0;
            }
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Scroll animations */
        .fade-in {
            opacity: 0;
            transform: translateY(24px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Enhanced interactions */
        .interactive {
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .interactive:hover {
            transform: translateY(-2px);
        }