@charset "utf-8";

:root { --primary: #38bdf8; --primary-glow: rgba(56, 189, 248, 0.35); --secondary: #2563eb; --secondary-glow: rgba(37, 99, 235, 0.4); --text-main: #ffffff; --text-muted: #94a3b8; --bg-dark: #070a11; --bg-surface: #0f172a; --bg-surface-elevated: #1e293b; --border-color: rgba(56, 189, 248, 0.18); --border-hover: rgba(56, 189, 248, 0.5); --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif; --font-mono: 'JetBrains Mono', monospace; --container-max: 1280px; --header-height: 80px; }

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

html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); background-color: var(--bg-dark); color: var(--text-main); font-family: var(--font-sans); line-height: 1.6; -webkit-font-smoothing: antialiased; }

body { padding-top: var(--header-height); background-color: var(--bg-dark); overflow-x: hidden; background-image: radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.12) 0%, transparent 70%), radial-gradient(circle at 80% 40%, rgba(56, 189, 248, 0.08) 0%, transparent 50%); background-attachment: fixed; }

.font-mono { font-family: var(--font-mono); }

h1, h2, h3, h4, h5, h6 { color: var(--text-main); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }

p { color: var(--text-muted); font-size: 1.05rem; }

a { color: inherit; text-decoration: none; transition: 0.25s; }

.grid-bg { background-image: linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px); background-size: 32px 32px; }

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

.header { position: fixed; top: 0px; left: 0px; width: 100%; height: var(--header-height); background: rgba(7, 10, 17, 0.85); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255, 255, 255, 0.08); z-index: 300; display: flex; align-items: center; }

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

.brand-logo { display: flex; align-items: center; gap: 0.75rem; }

.logo-img-wrapper { background: rgb(255, 255, 255); padding: 4px; border-radius: 6px; display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border: 1px solid var(--border-color); }

.logo-img { max-width: 100%; max-height: 100%; object-fit: contain; }

.brand-text { font-weight: 800; font-size: 1.15rem; letter-spacing: -0.01em; color: var(--text-main); text-transform: uppercase; }

.brand-text span { color: var(--primary); }

.nav-menu { display: flex; align-items: center; gap: 2rem; list-style: none; }

.nav-link { font-size: 0.88rem; font-weight: 500; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; position: relative; padding: 0.25rem 0px; }

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

.nav-link::after { content: ""; position: absolute; bottom: 0px; left: 0px; width: 0%; height: 2px; background: var(--primary); transition: width 0.25s; box-shadow: 0 0 8px var(--primary); }

.nav-link:hover::after { width: 100%; }

.btn-cta-placeholder { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.75rem 1.5rem; background: linear-gradient(135deg, var(--secondary) 0%, rgba(37, 99, 235, 0.8) 100%); color: rgb(255, 255, 255); font-family: var(--font-mono); font-size: 0.9rem; font-weight: 600; border-radius: 6px; border: 1px solid var(--primary); box-shadow: 0 0 15px var(--secondary-glow), inset 0 1px 0 rgba(255, 255, 255, 0.2); transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1); text-transform: uppercase; letter-spacing: 0.05em; cursor: pointer; }

.btn-cta-placeholder:hover { transform: translateY(-2px); box-shadow: 0 0 25px var(--primary-glow), inset 0 1px 0 rgba(255, 255, 255, 0.4); border-color: rgb(255, 255, 255); color: rgb(255, 255, 255); }

.tech-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.35rem 0.85rem; background: rgba(56, 189, 248, 0.08); border: 1px solid rgba(56, 189, 248, 0.3); border-radius: 100px; color: var(--primary); font-family: var(--font-mono); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1.25rem; }

.status-dot { width: 8px; height: 8px; background-color: var(--primary); border-radius: 50%; box-shadow: 0 0 10px var(--primary); animation: 2s ease 0s infinite normal none running pulse; }

@keyframes pulse { 
  0% { opacity: 0.4; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.15); }
  100% { opacity: 0.4; transform: scale(0.9); }
}

.hero { position: relative; padding: 5rem 0px 6rem; overflow: hidden; }

.hero-backdrop { position: absolute; top: 0px; left: 0px; width: 100%; height: 100%; opacity: 0.15; z-index: 0; pointer-events: none; mask-image: linear-gradient(rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%); }

.hero-content { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3.5rem; align-items: center; }

.hero-title { font-size: 3.25rem; font-weight: 800; line-height: 1.1; margin-bottom: 1.25rem; background: linear-gradient(rgb(255, 255, 255) 0%, rgb(203, 213, 225) 100%) text; -webkit-text-fill-color: transparent; }

.hero-title span { color: var(--primary); -webkit-text-fill-color: var(--primary); position: relative; display: inline-block; }

.hero-subtitle { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 2rem; max-width: 600px; font-weight: 400; }

.hero-cta-box { display: flex; align-items: center; gap: 1.5rem; margin-top: 2rem; }

.hero-metric-pill { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-mono); font-size: 0.85rem; color: var(--text-muted); padding: 0.5rem 1rem; background: rgba(15, 23, 42, 0.6); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 6px; }

.hero-visual-frame { position: relative; background: var(--bg-surface); border: 1px solid var(--border-color); border-radius: 12px; padding: 1.5rem; box-shadow: rgba(0, 0, 0, 0.5) 0px 20px 50px, rgba(56, 189, 248, 0.05) 0px 0px 30px; transition: border-color 0.3s; }

.hero-visual-frame:hover { border-color: var(--border-hover); }

.terminal-header { display: flex; align-items: center; justify-content: space-between; padding-bottom: 1rem; margin-bottom: 1rem; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }

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

.terminal-dot { width: 10px; height: 10px; border-radius: 50%; background-color: rgba(255, 255, 255, 0.2); }

.terminal-dot:nth-child(1) { background-color: rgb(239, 68, 68); }

.terminal-dot:nth-child(2) { background-color: rgb(245, 158, 11); }

.terminal-dot:nth-child(3) { background-color: rgb(16, 185, 129); }

.terminal-title { font-family: var(--font-mono); font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }

.telemetry-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 1rem; }

.telemetry-card { background: rgba(7, 10, 17, 0.6); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 8px; padding: 1rem; }

.telemetry-label { font-family: var(--font-mono); font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; margin-bottom: 0.25rem; }

.telemetry-value { font-family: var(--font-mono); font-size: 1.4rem; font-weight: 700; color: var(--primary); }

.telemetry-sub { font-size: 0.75rem; color: rgb(16, 185, 129); display: flex; align-items: center; gap: 0.25rem; margin-top: 0.25rem; }

.visual-banner { width: 100%; height: 180px; border-radius: 8px; position: relative; margin-top: 0.5rem; }

.visual-banner img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }

.trust-bar { background: var(--bg-surface); border-top: 1px solid rgba(255, 255, 255, 0.08); border-bottom: 1px solid rgba(255, 255, 255, 0.08); padding: 2.5rem 0px; position: relative; }

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

.value-item { display: flex; align-items: flex-start; gap: 1rem; }

.value-icon { width: 42px; height: 42px; background: rgba(56, 189, 248, 0.1); border: 1px solid rgba(56, 189, 248, 0.2); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.1rem; flex-shrink: 0; }

.value-title { font-size: 1rem; font-weight: 700; color: var(--text-main); margin-bottom: 0.25rem; text-transform: uppercase; letter-spacing: 0.02em; }

.value-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.4; }

.section-header { text-align: center; max-width: 700px; margin: 0px auto 4rem; }

.section-title { font-size: 2.5rem; font-weight: 800; margin-bottom: 1rem; }

.section-subtitle { font-size: 1.1rem; color: var(--text-muted); }

.solutions-section { padding: 7rem 0px; }

.solutions-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }

.product-card { background: var(--bg-surface); border: 1px solid var(--border-color); border-radius: 12px; padding: 2rem; display: flex; flex-direction: column; justify-content: space-between; position: relative; transition: 0.35s; box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 30px; }

.product-card:hover { transform: translateY(-4px); border-color: var(--border-hover); box-shadow: rgba(0, 0, 0, 0.4) 0px 15px 40px, rgba(56, 189, 248, 0.15) 0px 0px 20px; }

.product-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }

.product-code { font-family: var(--font-mono); font-size: 0.75rem; color: var(--primary); background: rgba(56, 189, 248, 0.1); padding: 0.25rem 0.6rem; border-radius: 4px; border: 1px solid rgba(56, 189, 248, 0.2); }

.product-icon-box { width: 48px; height: 48px; border-radius: 10px; background: rgba(37, 99, 235, 0.15); border: 1px solid rgba(37, 99, 235, 0.3); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.3rem; }

.product-name { font-size: 1.5rem; margin-bottom: 0.75rem; color: var(--text-main); }

.product-desc { font-size: 1rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.5rem; flex-grow: 1; }

.product-image-frame { width: 100%; height: 200px; border-radius: 8px; overflow: visible; position: relative; margin-top: 1rem; border: 1px solid rgba(255, 255, 255, 0.08); }

.product-image-frame img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }

.architecture-section { padding: 7rem 0px; background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-surface) 50%, var(--bg-dark) 100%); position: relative; }

.pipeline-container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; position: relative; }

.pipeline-card { background: rgba(7, 10, 17, 0.8); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 10px; padding: 1.75rem 1.25rem; position: relative; }

.pipeline-card::before { content: ""; position: absolute; top: 0px; left: 0px; width: 100%; height: 3px; background: linear-gradient(90deg, var(--secondary), var(--primary)); border-top-left-radius: 10px; border-top-right-radius: 10px; }

.step-num { font-family: var(--font-mono); font-size: 0.85rem; color: var(--primary); margin-bottom: 0.75rem; display: block; }

.step-title { font-size: 1.15rem; margin-bottom: 0.5rem; }

.step-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; }

.audit-spotlight { padding: 7rem 0px; }

.audit-wrapper { background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.8) 100%); border: 1px solid var(--border-color); border-radius: 16px; padding: 3.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; box-shadow: rgba(0, 0, 0, 0.4) 0px 25px 60px; position: relative; }

.audit-tag { font-family: var(--font-mono); font-size: 0.8rem; color: rgb(245, 158, 11); background: rgba(245, 158, 11, 0.1); border: 1px solid rgba(245, 158, 11, 0.25); padding: 0.3rem 0.75rem; border-radius: 4px; display: inline-block; margin-bottom: 1rem; text-transform: uppercase; }

.audit-list { list-style: none; margin: 1.5rem 0px; }

.audit-list li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.85rem; color: var(--text-main); font-size: 0.98rem; }

.audit-list i { color: var(--primary); margin-top: 0.2rem; }

.audit-visual { width: 100%; height: 320px; border-radius: 12px; overflow: visible; border: 1px solid rgba(56, 189, 248, 0.2); position: relative; }

.audit-visual img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }

.evidence-section { padding: 6rem 0px; background: var(--bg-surface); border-top: 1px solid rgba(255, 255, 255, 0.08); }

.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: center; }

.stat-card { background: rgba(7, 10, 17, 0.5); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 12px; padding: 2.5rem 1.5rem; }

.stat-number { font-family: var(--font-mono); font-size: 3rem; font-weight: 800; color: var(--primary); margin-bottom: 0.5rem; line-height: 1; }

.stat-label { font-size: 1rem; color: var(--text-main); font-weight: 600; margin-bottom: 0.25rem; }

.stat-sub { font-size: 0.85rem; color: var(--text-muted); }

.footer { background: rgb(4, 6, 10); border-top: 1px solid rgba(255, 255, 255, 0.08); padding: 4rem 0px 2rem; font-size: 0.9rem; }

.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }

.footer-brand { display: flex; flex-direction: column; gap: 1rem; }

.footer-desc { color: var(--text-muted); max-width: 380px; font-size: 0.9rem; }

.footer-title { font-size: 0.95rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-main); margin-bottom: 1.25rem; }

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }

.footer-links a { color: var(--text-muted); }

.footer-links a:hover { color: var(--primary); }

.footer-bottom { padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.05); display: flex; align-items: center; justify-content: space-between; color: var(--text-muted); font-size: 0.82rem; font-family: var(--font-mono); }

.url-badge { color: var(--primary); text-decoration: underline; }

@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .pipeline-container { grid-template-columns: repeat(2, 1fr); }
  .audit-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .hero-title { font-size: 2.25rem; }
  .solutions-grid { grid-template-columns: 1fr; }
  .pipeline-container { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}
/* ---- Lead capture block (Automate brochure, 2026-09-14) ---- */
.lead-capture { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; margin-top: 3rem; padding: 3rem; background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.8) 100%); border: 1px solid var(--border-color); border-radius: 16px; box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4); }
.lead-capture h3 { font-size: 1.5rem; line-height: 1.3; margin-bottom: 0.85rem; }
.lead-capture p { color: var(--text-muted); font-size: 0.98rem; }
.lead-guarantee { color: #4ade80; font-weight: 600; font-size: 0.95rem; margin-top: 1.25rem; }
.lead-form { display: flex; flex-direction: column; gap: 0.85rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.lead-form input { width: 100%; background: var(--bg-dark); border: 1px solid var(--border-color); border-radius: 6px; padding: 0.85rem 1rem; color: var(--text-main); font-family: var(--font-sans); font-size: 0.95rem; outline: none; transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1); }
.lead-form input::placeholder { color: var(--text-muted); }
.lead-form input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-glow); }
.lead-submit { width: 100%; margin-top: 0.35rem; }
.lead-status { display: none; font-family: var(--font-mono); font-size: 0.85rem; color: var(--primary); margin-top: 0.35rem; }
@media (max-width: 1024px) { .lead-capture { grid-template-columns: 1fr; padding: 2.25rem; } }
@media (max-width: 768px) { .lead-capture { padding: 1.75rem; } .field-row { grid-template-columns: 1fr; } .values-grid { grid-template-columns: 1fr; } }
