:root {
    --bg-primary: #0A1224;
    --bg-surface: #111C35;
    --border-color: #203459;
    --accent-primary: #FF5A1F;
    --accent-primary-hover: #FF7846;
    --text-primary: #F1F5F9;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;
    --accent-success: #10B981;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'IBM Plex Sans', sans-serif; background-color: var(--bg-primary); color: var(--text-primary); line-height: 1.6; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4, h5, h6 { font-family: 'Cabinet Grotesk', sans-serif; line-height: 1.1; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
::selection { background-color: var(--accent-primary); color: white; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--border-color); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-primary); }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pulseGlow { 0%, 100% { box-shadow: 0 0 15px rgba(255, 90, 31, 0.3); } 50% { box-shadow: 0 0 30px rgba(255, 90, 31, 0.5); } }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.animate-fade-in { opacity: 0; animation: fadeInUp 0.6s ease-out forwards; }
.stagger-1 { animation-delay: 0.1s; } .stagger-2 { animation-delay: 0.2s; } .stagger-3 { animation-delay: 0.3s; } .stagger-4 { animation-delay: 0.4s; } .stagger-5 { animation-delay: 0.5s; }

.overline { font-size: 0.875rem; font-weight: 600; letter-spacing: 0.2em; color: var(--accent-primary); text-transform: uppercase; margin-bottom: 16px; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; margin-bottom: 16px; }
.section-subtitle { font-size: 1.125rem; color: var(--text-secondary); max-width: 700px; margin: 0 auto; }
.highlight { color: var(--accent-primary); font-weight: 600; }
.required { color: var(--accent-primary); }

.btn-primary { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: var(--accent-primary); color: white; font-weight: 700; font-size: 0.875rem; letter-spacing: 0.05em; text-transform: uppercase; padding: 16px 40px; border: none; border-radius: 2px; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 0 15px rgba(255, 90, 31, 0.3); position: relative; overflow: hidden; }
.btn-primary:hover { background: var(--accent-primary-hover); box-shadow: 0 0 25px rgba(255, 90, 31, 0.5); transform: translateY(-2px); }
.btn-primary::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); transition: left 0.5s ease; }
.btn-primary:hover::before { left: 100%; }
.btn-secondary { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: transparent; color: var(--accent-primary); font-weight: 700; font-size: 0.875rem; letter-spacing: 0.05em; text-transform: uppercase; padding: 16px 40px; border: 1px solid var(--accent-primary); border-radius: 2px; cursor: pointer; transition: all 0.3s ease; }
.btn-secondary:hover { background: rgba(255, 90, 31, 0.1); }
.btn-full { width: 100%; }
.btn-glow { animation: pulseGlow 2s ease-in-out infinite; }
.btn-primary i, .btn-secondary i { font-size: 1.25rem; }

/* Hero */
.hero-section { position: relative; min-height: 90vh; display: flex; align-items: center; justify-content: center; background-image: url('https://static.prod-images.emergentagent.com/jobs/dbe27260-13ce-4d69-85b3-09aa094ad986/images/16de84d73a1f7be91671da136cb3938754877024034ea2219d7204becf1daf8f.png'); background-size: cover; background-position: center; background-attachment: fixed; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10, 18, 36, 0.88) 0%, rgba(10, 18, 36, 0.95) 60%, rgba(10, 18, 36, 1) 100%); }
.hero-content { position: relative; z-index: 10; max-width: 1280px; padding: 96px 24px; text-align: center; }
.domain-name { font-size: clamp(3rem, 10vw, 7rem); font-weight: 900; text-transform: uppercase; letter-spacing: -0.03em; line-height: 0.9; margin-bottom: 24px; background: linear-gradient(135deg, #FF5A1F 0%, #FF7846 50%, #FFB800 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-size: clamp(1rem, 2.5vw, 1.375rem); color: var(--text-secondary); max-width: 800px; margin: 0 auto 40px; line-height: 1.7; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-bottom: 48px; }
.trust-badges { display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; }
.trust-badge { display: flex; align-items: center; gap: 8px; padding: 8px 16px; border: 1px solid var(--border-color); border-radius: 2px; font-size: 0.875rem; color: var(--text-secondary); transition: all 0.3s ease; }
.trust-badge:hover { border-color: var(--accent-primary); background: rgba(255, 90, 31, 0.05); }
.trust-badge i { font-size: 1.25rem; }
.scroll-indicator { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); animation: float 4s ease-in-out infinite; }
.scroll-mouse { width: 24px; height: 40px; border: 2px solid var(--text-muted); border-radius: 12px; display: flex; justify-content: center; padding-top: 8px; }
.scroll-dot { width: 6px; height: 12px; background: var(--accent-primary); border-radius: 3px; animation: bounce 1.5s ease-in-out infinite; }

/* Value */
.value-section { padding: 96px 0 128px; background: var(--bg-primary); }
.value-grid { display: grid; grid-template-columns: repeat(1, 1fr); gap: 24px; }
@media (min-width: 768px) { .value-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .value-grid { grid-template-columns: repeat(3, 1fr); } }
.value-card { background: var(--bg-surface); border: 1px solid var(--border-color); border-radius: 2px; padding: 32px; transition: all 0.3s ease; position: relative; overflow: hidden; }
.value-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--accent-primary), transparent); opacity: 0; transition: opacity 0.3s ease; }
.value-card:hover { border-color: rgba(255, 90, 31, 0.5); transform: translateY(-4px); }
.value-card:hover::before { opacity: 1; }
.value-card i { font-size: 2rem; color: var(--accent-primary); margin-bottom: 16px; display: block; }
.value-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; }
.value-card p { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.7; }

/* Industry */
.industry-section { padding: 96px 0 128px; background: var(--bg-surface); position: relative; overflow: hidden; background-image: url('https://static.prod-images.emergentagent.com/jobs/dbe27260-13ce-4d69-85b3-09aa094ad986/images/7cba6d3ab739e061c9729eeff885f86867caa20d049dfa524304920a5e1991a0.png'); background-size: cover; background-position: center; }
.industry-overlay { position: absolute; inset: 0; background: rgba(17, 28, 53, 0.95); }
.industry-section .container { position: relative; z-index: 10; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 64px; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item { text-align: center; padding: 24px; position: relative; }
.stat-item::after { content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%); height: 50%; width: 1px; background: linear-gradient(to bottom, transparent, var(--border-color), transparent); }
.stat-item:last-child::after { display: none; }
@media (max-width: 767px) { .stat-item:nth-child(2n)::after { display: none; } }
.stat-value { font-family: 'Cabinet Grotesk', sans-serif; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; color: var(--accent-primary); margin-bottom: 8px; }
.stat-label { color: var(--text-muted); font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.1em; }
.industry-content { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .industry-content { grid-template-columns: 1fr 1fr; } }
.use-cases h3 { font-size: 1.5rem; margin-bottom: 24px; }
.use-case-list { display: flex; flex-direction: column; gap: 16px; }
.use-case { display: flex; gap: 16px; padding: 16px; background: rgba(10, 18, 36, 0.6); border: 1px solid var(--border-color); border-radius: 2px; transition: all 0.3s ease; }
.use-case:hover { border-color: rgba(255, 90, 31, 0.3); }
.use-case i { font-size: 1.75rem; color: var(--accent-primary); flex-shrink: 0; }
.use-case h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.use-case p { color: var(--text-muted); font-size: 0.875rem; }
.industry-image { position: relative; border-radius: 2px; overflow: hidden; border: 1px solid var(--border-color); }
.industry-image::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255, 90, 31, 0.1) 0%, transparent 50%); pointer-events: none; z-index: 1; }
.industry-image img { width: 100%; height: 400px; object-fit: cover; }

/* Contact */
.contact-section { padding: 96px 0 128px; background: var(--bg-primary); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-info h3 { font-size: 1.5rem; margin-bottom: 24px; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.contact-card { display: flex; align-items: center; gap: 16px; padding: 16px; background: var(--bg-surface); border: 1px solid var(--border-color); border-radius: 2px; transition: all 0.3s ease; }
.contact-card:hover { border-color: rgba(255, 90, 31, 0.5); }
.contact-icon { width: 48px; height: 48px; background: rgba(255, 90, 31, 0.1); border-radius: 2px; display: flex; align-items: center; justify-content: center; transition: background 0.3s ease; }
.contact-card:hover .contact-icon { background: rgba(255, 90, 31, 0.2); }
.contact-icon i { font-size: 1.5rem; color: var(--accent-primary); }
.contact-label { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 2px; }
.contact-value { font-weight: 600; }
.trust-box { background: var(--bg-surface); border: 1px solid var(--border-color); border-radius: 2px; padding: 24px; }
.trust-box h4 { display: flex; align-items: center; gap: 8px; font-size: 1rem; margin-bottom: 16px; }
.trust-box ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.trust-box li { display: flex; align-items: flex-start; gap: 12px; color: var(--text-secondary); font-size: 0.9375rem; }
.trust-box li i { color: var(--accent-primary); font-size: 1.125rem; flex-shrink: 0; margin-top: 2px; }
.contact-form-wrapper { background: var(--bg-surface); border: 1px solid var(--border-color); border-radius: 2px; padding: 32px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.875rem; font-weight: 500; color: var(--text-secondary); }
.form-group input, .form-group textarea { background: var(--bg-primary); border: 1px solid var(--border-color); border-radius: 2px; padding: 12px 16px; color: var(--text-primary); font-family: inherit; font-size: 1rem; transition: all 0.3s ease; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--accent-primary); box-shadow: 0 0 0 2px rgba(255, 90, 31, 0.2); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group textarea { resize: none; }
.input-with-icon { position: relative; }
.input-with-icon i { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-size: 1.25rem; }
.input-with-icon input { padding-left: 48px; }

/* CTA */
.cta-section { padding: 80px 0; background: var(--bg-surface); position: relative; overflow: hidden; text-align: center; }
.cta-bg-effect { position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255, 90, 31, 0.08) 0%, transparent 50%); animation: rotate 30s linear infinite; }
.cta-section .container { position: relative; z-index: 10; max-width: 800px; }
.cta-badge { display: inline-block; margin-bottom: 24px; }
.cta-badge span { background: var(--accent-primary); color: white; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 6px 12px; border-radius: 2px; }
.cta-section h2 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; margin-bottom: 24px; }
.cta-section > .container > p { font-size: 1.125rem; color: var(--text-secondary); margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-section .cta-buttons { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-bottom: 32px; }
.cta-footer { font-size: 0.875rem; color: var(--text-muted); }

/* Footer */
.footer { padding: 32px 0; background: var(--bg-primary); border-top: 1px solid var(--border-color); text-align: center; }
.footer p { font-size: 0.875rem; color: var(--text-muted); }

/* Toast */
.toast { position: fixed; top: 24px; right: 24px; background: var(--bg-surface); border: 1px solid var(--border-color); border-radius: 4px; padding: 16px 24px; z-index: 9999; transform: translateX(150%); transition: transform 0.3s ease; }
.toast.show { transform: translateX(0); }
.toast.success { border-color: var(--accent-success); }
.toast.error { border-color: #EF4444; }
.toast-content { display: flex; align-items: center; gap: 12px; }
.toast-content i { font-size: 1.5rem; }
.toast.success .toast-content i { color: var(--accent-success); }
.toast.error .toast-content i { color: #EF4444; }

@media (max-width: 640px) {
    .cta-buttons { flex-direction: column; align-items: center; }
    .btn-primary, .btn-secondary { width: 100%; max-width: 320px; }
    .trust-badges { flex-direction: column; align-items: center; }
}
