 {} *{} #IE-warning { display: none; position: fixed; width: 100%; height: 100%; z-index: 9999; background: white; } .IE-warning-message { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); text-align: center; } * { margin: 0; padding: 0; box-sizing: border-box; } :root { --bg-primary: #232323; --bg-secondary: #2a2a2a; --gold-primary: #dac674; --gold-highlight: #b19c57; --text-primary: #dac674; --text-secondary: #a8a8a8; --text-white: #ffffff; --navy-dark: #0A1A40; } body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; background-color: var(--bg-primary); color: var(--text-primary); line-height: 1.7; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; } .section { padding: 100px 0; position: relative; } .section-divider { height: 1px; background: linear-gradient(90deg, transparent, var(--gold-highlight), transparent); margin: 0 auto; max-width: 800px; } /* HERO SECTION */ .hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; background: linear-gradient(180deg, #232323 0%, #1a1a1a 100%); position: relative; overflow: hidden; } .hero::before { content: ''; position: absolute; top: -50%; right: -50%; width: 100%; height: 100%; background: radial-gradient(circle, rgba(218, 198, 116, 0.03) 0%, transparent 70%); animation: pulse 8s ease-in-out infinite; } @keyframes pulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 0.6; } } .hero-content { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; } .hero h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 600; line-height: 1.1; margin-bottom: 24px; color: var(--text-white); letter-spacing: -0.02em; } .hero h1 .highlight { color: var(--gold-primary); position: relative; } .hero h2 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); font-weight: 400; color: var(--gold-primary); margin-bottom: 28px; letter-spacing: -0.01em; } .hero-description { font-size: 1.125rem; line-height: 1.8; color: var(--text-secondary); margin-bottom: 48px; max-width: 700px; margin-left: auto; margin-right: auto; } .cta-primary { display: inline-block; background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-highlight) 100%); color: var(--bg-primary); padding: 20px 48px; font-size: 1.125rem; font-weight: 600; text-decoration: none; border-radius: 8px; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 4px 24px rgba(218, 198, 116, 0.2); border: none; cursor: pointer; } .cta-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(218, 198, 116, 0.35); } .cta-micro-text { display: block; margin-top: 16px; font-size: 0.875rem; color: var(--text-secondary); font-weight: 400; } /* PROBLEM SECTION */ .problem-section { background-color: var(--bg-secondary); } .section-header { text-align: center; margin-bottom: 64px; } .section-header h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; margin-bottom: 20px; color: var(--text-white); letter-spacing: -0.02em; } .section-header p { font-size: 1.125rem; color: var(--text-secondary); max-width: 700px; margin: 0 auto; } .problem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; max-width: 1000px; margin: 0 auto; } .problem-card { background: var(--bg-primary); padding: 40px 32px; border-radius: 12px; border: 1px solid rgba(218, 198, 116, 0.1); transition: all 0.3s ease; } .problem-card:hover { border-color: var(--gold-highlight); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3); } .problem-icon { width: 48px; height: 48px; margin-bottom: 24px; color: var(--gold-primary); font-size: 2rem; } .problem-card h3 { font-size: 1.375rem; margin-bottom: 16px; color: var(--text-white); font-weight: 600; } .problem-card p { color: var(--text-secondary); line-height: 1.7; } /* SOLUTION SECTION */ .solution-content { max-width: 900px; margin: 0 auto; text-align: center; } .solution-intro { font-size: 1.25rem; color: var(--text-secondary); margin-bottom: 56px; line-height: 1.8; } .solution-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 40px; margin-top: 56px; } .solution-feature { text-align: center; } .solution-feature-icon { width: 64px; height: 64px; margin: 0 auto 24px; border: 2px solid var(--gold-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.75rem; color: var(--gold-primary); } .solution-feature h3 { font-size: 1.25rem; margin-bottom: 12px; color: var(--text-white); } .solution-feature p { color: var(--text-secondary); font-size: 0.9375rem; } /* HOW IT WORKS */ .how-it-works { background-color: var(--bg-secondary); } .steps-container { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 48px; } .step { text-align: center; position: relative; } .step-number { width: 80px; height: 80px; margin: 0 auto 28px; background: linear-gradient(135deg, var(--gold-primary), var(--gold-highlight)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 700; color: var(--bg-primary); box-shadow: 0 8px 24px rgba(218, 198, 116, 0.2); } .step h3 { font-size: 1.375rem; margin-bottom: 16px; color: var(--text-white); font-weight: 600; } .step p { color: var(--text-secondary); line-height: 1.7; } /* WHY ARKCAPITAL */ .why-arkcapital-content { max-width: 900px; margin: 0 auto; } .arie-intro { text-align: center; font-size: 1.25rem; color: var(--text-secondary); margin-bottom: 64px; line-height: 1.8; } .arie-pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; } .pillar { background: var(--bg-secondary); padding: 40px 28px; border-radius: 12px; text-align: center; border: 1px solid rgba(218, 198, 116, 0.1); transition: all 0.3s ease; } .pillar:hover { border-color: var(--gold-highlight); transform: translateY(-4px); } .pillar-letter { font-size: 3rem; font-weight: 700; color: var(--gold-primary); margin-bottom: 16px; display: block; } .pillar h3 { font-size: 1.25rem; margin-bottom: 12px; color: var(--text-white); font-weight: 600; } .pillar p { color: var(--text-secondary); font-size: 0.9375rem; } /* WHO THIS IS FOR */ .audience-section { background-color: var(--bg-secondary); } .audience-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 48px; max-width: 1000px; margin: 0 auto; } .audience-column { background: var(--bg-primary); padding: 48px 40px; border-radius: 12px; } .audience-column.for-you { border: 2px solid var(--gold-primary); } .audience-column.not-for { border: 2px solid rgba(218, 198, 116, 0.2); } .audience-column h3 { font-size: 1.75rem; margin-bottom: 32px; color: var(--gold-primary); font-weight: 600; } .audience-list { list-style: none; } .audience-list li { padding: 16px 0; border-bottom: 1px solid rgba(218, 198, 116, 0.1); color: var(--text-secondary); line-height: 1.6; } .audience-list li:last-child { border-bottom: none; } .audience-list li::before { content: '→'; color: var(--gold-primary); margin-right: 12px; font-weight: 600; } .audience-column.not-for .audience-list li::before { content: '×'; } /* AUTHORITY SECTION */ .authority-content { max-width: 800px; margin: 0 auto; text-align: center; } .authority-statement { font-size: 1.375rem; line-height: 1.8; color: var(--text-white); margin-bottom: 48px; font-weight: 400; } .trust-indicators { display: flex; justify-content: center; gap: 64px; flex-wrap: wrap; margin-top: 56px; } .trust-item { text-align: center; } .trust-icon { width: 64px; height: 64px; margin: 0 auto 16px; border: 2px solid var(--gold-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--gold-primary); } .trust-label { font-size: 0.875rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.1em; } /* FINAL CTA */ .final-cta { background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%); text-align: center; } .final-cta-content { max-width: 800px; margin: 0 auto; } .final-cta h2 { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 28px; color: var(--text-white); font-weight: 600; letter-spacing: -0.02em; } .final-cta-description { font-size: 1.25rem; color: var(--text-secondary); margin-bottom: 48px; line-height: 1.8; } /* FOOTER */ footer { background-color: var(--bg-primary); padding: 48px 0; border-top: 1px solid rgba(218, 198, 116, 0.1); } .footer-content { text-align: center; color: var(--text-secondary); } .footer-logo { font-size: 1.5rem; font-weight: 700; color: var(--gold-primary); margin-bottom: 16px; } .footer-disclaimer { font-size: 0.875rem; line-height: 1.6; max-width: 800px; margin: 24px auto 0; color: #666; } /* RESPONSIVE */ @media (max-width: 768px) { .section { padding: 60px 0; } .hero { min-height: 90vh; padding: 40px 0; } .hero h1 { font-size: 2.25rem; } .hero h2 { font-size: 1.125rem; } .cta-primary { padding: 18px 36px; font-size: 1rem; } .problem-grid, .solution-features, .steps-container, .arie-pillars { gap: 24px; } .audience-grid { gap: 32px; } } /* SMOOTH ANIMATIONS */ @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } } .animate-on-scroll { animation: fadeInUp 0.8s ease-out; } #dify-chatbot-bubble-button { background-color: #dac674 !important; } #dify-chatbot-bubble-window { width: 24rem !important; height: 40rem !important; } #dify-chatbot-bubble-button { background-color: #dac674 !important; } #dify-chatbot-bubble-window { width: 24rem !important; height: 40rem !important; } #dify-chatbot-bubble-button { background-color: #dac674 !important; box-shadow: 0 4px 24px rgba(218, 198, 116, 0.3) !important; } #dify-chatbot-bubble-button:hover { background-color: #b19c57 !important; } #dify-chatbot-bubble-window { width: 24rem !important; height: 40rem !important; border-radius: 12px !important; }
