Skip to main content

Autoflo Technology

:root { --accent: #800059; --accent-dk: #5A003E; --accent-tint: #FAEEF5; --cta-bg: #FEBE4F; --cta-text: #331A00; --dark-bg: #2A001D; --dark-border: rgba(255,255,255,0.12); --dark-muted: rgba(255,255,255,0.7); --bg-primary: #FFFFFF; --bg-section: #F8F9FA; --bg-alt: #F3F4F6; --bg-card: #FFFFFF; --text-primary:#111827; --text-muted: #4B5563; --text-subtle: #9CA3AF; --border: #E5E7EB; --container: 1240px; --transition: 0.3s cubic-bezier(0.22, 1, 0.36, 1); } *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } html { scroll-behavior: smooth; overflow-x: clip; width: 100%; margin: 0; padding: 0; } body { font-family: 'Inter', system-ui, sans-serif; background: var(--bg-primary); color: var(--text-primary); font-size: 16px; line-height: 1.7; -webkit-font-smoothing: antialiased; overflow-x: clip; } a { color: inherit; text-decoration: none; } img { display: block; max-width: 100%; } ul { list-style: none; } button { font-family: inherit; cursor: pointer; border: none; background: none; } .container { max-width: var(--container); margin: 0 auto; padding: 0 40px; position: relative; z-index: 2; } section { padding: 100px 0; position: relative; } .label { font-size: 14px; font-weight: 600; letter-spacing: 0.05em; color: var(--accent); text-transform: uppercase; display: inline-block; margin-bottom: 8px; } .section-heading { font-family: 'Outfit', system-ui, sans-serif; font-size: clamp(32px, 4vw, 40px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.15; color: var(--text-primary); margin-top: 4px; } .section-sub { font-size: 17px; color: var(--text-muted); max-width: 680px; margin-top: 18px; line-height: 1.6; } .section-head-wrap { margin-bottom: 56px; } /* ── BUTTONS ── */ .btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-size: 14px; font-weight: 600; border-radius: 4px; padding: 14px 32px; transition: var(--transition); white-space: nowrap; position: relative; overflow: hidden; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); } .btn::after { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%); transform: skewX(-25deg); transition: left 0.6s cubic-bezier(0.22, 1, 0.36, 1); pointer-events: none; } .btn:hover::after { left: 150%; } .btn-accent { background: linear-gradient(135deg, #ffd080 0%, #FEBE4F 100%); color: var(--cta-text); box-shadow: 0 4px 12px rgba(254,190,79,0.2); border: 1px solid rgba(255,255,255,0.3); } .btn-accent:hover { background: linear-gradient(135deg, #ffe9a8 0%, #ffd080 100%); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(254,190,79,0.3); } .btn-dark { background: linear-gradient(135deg, #9b006c 0%, #800059 100%); color: #fff; box-shadow: 0 4px 12px rgba(128,0,89,0.2); border: 1px solid rgba(255,255,255,0.1); } .btn-dark:hover { background: linear-gradient(135deg, #b3007c 0%, #9b006c 100%); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(128,0,89,0.3); } .btn-ghost { background: transparent; color: var(--accent); border: 1px solid rgba(128,0,89,0.25); padding: 10px 20px; font-size: 13px; font-weight: 600; border-radius: 4px; display: inline-flex; align-items: center; gap: 6px; transition: all 0.2s; } .btn-ghost:hover { background: var(--accent-tint); border-color: var(--accent); } /* ── NAV ── */ .nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: 76px; background: transparent; border-bottom: 1px solid transparent; transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; } .nav.scrolled { background: rgba(77,0,54,0.95); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid rgba(255,255,255,0.08); box-shadow: 0 10px 30px rgba(0,0,0,0.2); } .nav-inner { max-width: var(--container); margin: 0 auto; padding: 0 40px; height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; } .nav-logo img { height: 42px; width: auto; } .nav-menu { display: flex; align-items: center; gap: 32px; } .nav-item { position: relative; height: 76px; display: flex; align-items: center; } .nav-link { font-size: 14px; font-weight: 500; color: rgba(255, 255, 255, 0.9); display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); text-shadow: 0 1px 4px rgba(0,0,0,0.3); } .nav-link:hover { color: var(--cta-bg); } .nav-item:hover .nav-link svg { transform: rotate(180deg); transition: transform 0.3s ease; } .dropdown { position: absolute; top: 76px; left: -16px; min-width: 320px; background: var(--bg-card); border: 1px solid var(--border); box-shadow: 0 12px 40px rgba(0,0,0,0.08); border-radius: 6px; padding: 12px; opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.3s; max-height: 70vh; overflow-y: auto; } .nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); } .dropdown a { display: block; font-size: 14px; font-weight: 500; color: var(--text-muted); padding: 10px 16px; border-radius: 4px; transition: var(--transition); } .dropdown a:hover { color: var(--accent); background: var(--accent-tint); padding-left: 20px; text-shadow: none; } .nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; z-index: 2001; } .nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; transition: var(--transition); } .mobile-menu { position: fixed; top: 0; left: 0; right: 0; bottom: 0; width: 100%; height: 100%; z-index: 2000; background: var(--dark-bg); padding: 80px 32px 40px; transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1); overflow-y: auto; display: flex; flex-direction: column; } .mobile-menu.is-open { transform: translateX(0); } .mobile-close { position: absolute; top: 24px; right: 28px; font-size: 32px; color: #fff; padding: 8px; line-height: 1; border: none; background: transparent; cursor: pointer; } .mobile-group { margin-bottom: 24px; } .mobile-group span { display: block; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--cta-bg); margin-bottom: 12px; } .mobile-group a { display: block; font-size: 16px; color: #fff; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.1); text-decoration: none; } .mobile-group a:last-child { border-bottom: none; } .mobile-menu .btn { width: 100%; margin-top: 16px; } /* ── HERO — matches T1/Market T1 standard ── */ .page-hero { background: linear-gradient(135deg, rgba(42,0,29,1) 0%, rgba(128,0,89,0.85) 100%); padding: 130px 0 0; position: relative; overflow: hidden; min-height: 550px; } .page-hero::before { content: ''; position: absolute; inset: 0; z-index: 2; background: linear-gradient(135deg, rgba(42,0,29,0.95) 0%, rgba(128,0,89,0.75) 100%); } .page-hero-inner { position: relative; z-index: 2; padding-bottom: 0; } .breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; font-size: 13px; color: rgba(255,255,255,0.45); flex-wrap: wrap; } .breadcrumb a { color: rgba(255,255,255,0.45); transition: color 0.2s; } .breadcrumb a:hover { color: var(--cta-bg); } .breadcrumb-sep { color: rgba(255,255,255,0.25); } .page-hero-label { display: block; color: var(--cta-bg); font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px; } .page-hero h1 { font-family: 'Outfit', sans-serif; font-size: 56px; font-weight: 700; color: #fff; letter-spacing: -0.02em; line-height: 1.08; margin-bottom: 20px; } .page-hero-bg { position: absolute; inset: 0; z-index: 1; overflow: hidden; } .page-hero-inner { position: relative; z-index: 3; padding-bottom: 0; } .page-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; } .page-hero-desc { font-size: 17px; color: rgba(255,255,255,0.7); line-height: 1.65; max-width: 580px; margin-bottom: 40px; } /* ── USE CASE BANNERS — magazine-style, full-width image overlays ── */ .usecase-list-section { background: var(--bg-section); } .usecase-banners { display: flex; flex-direction: column; gap: 24px; margin-top: 48px; } .usecase-banner { position: relative; display: flex; align-items: flex-end; justify-content: flex-start; border-radius: 16px; overflow: hidden; text-decoration: none; min-height: 340px; transition: transform 0.4s ease, box-shadow 0.4s ease; } .usecase-banner:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.18); } .usecase-banner-img { position: absolute; inset: 0; z-index: 0; } .usecase-banner-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; } .usecase-banner:hover .usecase-banner-img img { transform: scale(1.04); } .usecase-banner-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(10,5,8,0.92) 0%, rgba(10,5,8,0.55) 45%, rgba(10,5,8,0.05) 100%); } .usecase-banner.alt .usecase-banner-overlay { background: linear-gradient(90deg, rgba(42,0,29,0.92) 0%, rgba(128,0,89,0.55) 45%, rgba(128,0,89,0.05) 100%); } .usecase-banner-products { position: absolute; top: 20px; right: 20px; z-index: 2; display: flex; flex-wrap: wrap; gap: 6px; justify-content: flex-end; max-width: 50%; } .product-pill { font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.9); background: var(--dark-bg); border: none; padding: 4px 10px; border-radius: 3px; transition: all 0.2s; } .usecase-banner:hover .product-pill { background: var(--accent); color: #fff; } .usecase-banner-content { position: relative; z-index: 2; padding: 40px 48px; max-width: 560px; } .usecase-banner-num { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cta-bg); margin-bottom: 10px; } .usecase-banner-content h3 { font-family: 'Outfit', system-ui, sans-serif; font-size: clamp(24px, 2.8vw, 32px); font-weight: 700; color: #fff; letter-spacing: -0.01em; line-height: 1.2; margin-bottom: 12px; } .usecase-banner-content p { font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 20px; } .usecase-banner-link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: #fff; transition: gap 0.2s, color 0.2s; } .usecase-banner-link svg { width: 16px; height: 16px; } .usecase-banner:hover .usecase-banner-link { gap: 10px; color: var(--cta-bg); } /* ── FOOTER (matches T1-T5 standard) ── */ .footer { background: var(--dark-bg); padding-top: 80px; } .footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 2.2fr; gap: 40px; } .footer-logo { height: 40px; width: auto; margin-bottom: 24px; filter: brightness(0) invert(1); } .footer-brand .tagline { font-size: 15px; color: var(--dark-muted); margin-bottom: 16px; max-width: 280px; line-height: 1.4; } .footer-contact li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 6px; font-size: 14px; color: var(--dark-muted); } .footer-contact .ci { width: 18px; height: 18px; color: var(--cta-bg); flex-shrink: 0; margin-top: 2px; } .footer-col h4 { font-size: 14px; color: #fff; margin-bottom: 16px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; } .footer-col ul li { margin-bottom: 6px; } .footer-col a { font-size: 15px; color: var(--dark-muted); transition: var(--transition); } .footer-col a:hover { color: var(--cta-bg); } .footer-col.products-col ul { column-count: 2; column-gap: 32px; } .footer-col.products-col ul li { break-inside: avoid; page-break-inside: avoid; } .footer-socials { display: flex; gap: 12px; margin-top: 24px; } .footer-socials a { width: 36px; height: 36px; border: 1px solid var(--dark-border); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: var(--dark-muted); background: rgba(255,255,255,0.03); transition: var(--transition); } .footer-socials a:hover { color: var(--dark-bg); background: var(--cta-bg); border-color: var(--cta-bg); transform: translateY(-2px); } .footer-socials svg { width: 18px; height: 18px; } .footer-bottom { border-top: 1px solid var(--dark-border); margin-top: 64px; padding: 24px 0; display: flex; flex-direction: column; align-items: center; gap: 16px; font-size: 13px; color: var(--dark-muted); } .footer-legal { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; list-style: none; padding: 0; margin: 0; } .footer-legal a { color: var(--dark-muted); transition: var(--transition); } .footer-legal a:hover { color: var(--cta-bg); } @media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } } /* ── REVEAL ── */ .reveal { opacity: 1; transform: translateY(0); } .stagger-children > * { opacity: 1; transform: translateY(0); } .stagger-children.is-visible > * { opacity: 1; transform: translateY(0); } .stagger-children.is-visible > *:nth-child(1) { transition-delay: 0.06s; } .stagger-children.is-visible > *:nth-child(2) { transition-delay: 0.12s; } .stagger-children.is-visible > *:nth-child(3) { transition-delay: 0.18s; } .stagger-children.is-visible > *:nth-child(4) { transition-delay: 0.24s; } .stagger-children.is-visible > *:nth-child(5) { transition-delay: 0.30s; } /* ── RESPONSIVE ── */ @media (max-width: 1024px) { .container { padding: 0 24px; } .usecase-banner { min-height: 300px; } .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; } .footer-col.products-col { grid-column: span 2; } } @media (max-width: 767px) { .nav-menu, .nav-cta { display: none; } .nav-toggle { display: flex; } .page-hero h1 { font-size: 40px; } .usecase-banner { min-height: 380px; } .usecase-banner-content { padding: 28px; max-width: 100%; } .usecase-banner-products { position: static; margin: 0 0 16px; max-width: 100%; padding: 0 28px; justify-content: flex-start; } .usecase-banner { flex-direction: column; } .usecase-banner-overlay { background: linear-gradient(to top, rgba(10,5,8,0.95) 0%, rgba(10,5,8,0.4) 60%, transparent 100%) !important; } .footer-grid { grid-template-columns: 1fr; gap: 40px; } .footer-col.products-col { grid-column: span 1; } .footer-col.products-col ul { column-count: 1; } .footer-bottom { flex-direction: column; align-items: flex-start; } }
Applications

Agriculture

Automated fertigation, hydroponic nutrient dosing, and climate control systems engineered to maximize yield, reduce chemical waste, and protect long-term soil health.

:root { --accent: #800059; --accent-dk: #5A003E; --accent-tint: #FAEEF5; --cta-bg: #FEBE4F; --cta-text: #331A00; --dark-bg: #2A001D; --dark-border: rgba(255,255,255,0.12); --dark-muted: rgba(255,255,255,0.7); --bg-primary: #FFFFFF; --bg-section: #F8F9FA; --bg-alt: #F3F4F6; --bg-card: #FFFFFF; --text-primary:#111827; --text-muted: #4B5563; --text-subtle: #9CA3AF; --border: #E5E7EB; --container: 1240px; --transition: 0.3s cubic-bezier(0.22, 1, 0.36, 1); } *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } html { scroll-behavior: smooth; overflow-x: clip; width: 100%; margin: 0; padding: 0; } body { font-family: 'Inter', system-ui, sans-serif; background: var(--bg-primary); color: var(--text-primary); font-size: 16px; line-height: 1.7; -webkit-font-smoothing: antialiased; overflow-x: clip; } a { color: inherit; text-decoration: none; } img { display: block; max-width: 100%; } ul { list-style: none; } button { font-family: inherit; cursor: pointer; border: none; background: none; } .container { max-width: var(--container); margin: 0 auto; padding: 0 40px; position: relative; z-index: 2; } section { padding: 100px 0; position: relative; } .label { font-size: 14px; font-weight: 600; letter-spacing: 0.05em; color: var(--accent); text-transform: uppercase; display: inline-block; margin-bottom: 8px; } .section-heading { font-family: 'Outfit', system-ui, sans-serif; font-size: clamp(32px, 4vw, 40px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.15; color: var(--text-primary); margin-top: 4px; } .section-sub { font-size: 17px; color: var(--text-muted); max-width: 680px; margin-top: 18px; line-height: 1.6; } .section-head-wrap { margin-bottom: 56px; } /* ── BUTTONS ── */ .btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-size: 14px; font-weight: 600; border-radius: 4px; padding: 14px 32px; transition: var(--transition); white-space: nowrap; position: relative; overflow: hidden; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); } .btn::after { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%); transform: skewX(-25deg); transition: left 0.6s cubic-bezier(0.22, 1, 0.36, 1); pointer-events: none; } .btn:hover::after { left: 150%; } .btn-accent { background: linear-gradient(135deg, #ffd080 0%, #FEBE4F 100%); color: var(--cta-text); box-shadow: 0 4px 12px rgba(254,190,79,0.2); border: 1px solid rgba(255,255,255,0.3); } .btn-accent:hover { background: linear-gradient(135deg, #ffe9a8 0%, #ffd080 100%); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(254,190,79,0.3); } .btn-dark { background: linear-gradient(135deg, #9b006c 0%, #800059 100%); color: #fff; box-shadow: 0 4px 12px rgba(128,0,89,0.2); border: 1px solid rgba(255,255,255,0.1); } .btn-dark:hover { background: linear-gradient(135deg, #b3007c 0%, #9b006c 100%); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(128,0,89,0.3); } .btn-ghost { background: transparent; color: var(--accent); border: 1px solid rgba(128,0,89,0.25); padding: 10px 20px; font-size: 13px; font-weight: 600; border-radius: 4px; display: inline-flex; align-items: center; gap: 6px; transition: all 0.2s; } .btn-ghost:hover { background: var(--accent-tint); border-color: var(--accent); } /* ── NAV ── */ .nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: 76px; background: transparent; border-bottom: 1px solid transparent; transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; } .nav.scrolled { background: rgba(77,0,54,0.95); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid rgba(255,255,255,0.08); box-shadow: 0 10px 30px rgba(0,0,0,0.2); } .nav-inner { max-width: var(--container); margin: 0 auto; padding: 0 40px; height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; } .nav-logo img { height: 42px; width: auto; } .nav-menu { display: flex; align-items: center; gap: 32px; } .nav-item { position: relative; height: 76px; display: flex; align-items: center; } .nav-link { font-size: 14px; font-weight: 500; color: rgba(255, 255, 255, 0.9); display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); text-shadow: 0 1px 4px rgba(0,0,0,0.3); } .nav-link:hover { color: var(--cta-bg); } .nav-item:hover .nav-link svg { transform: rotate(180deg); transition: transform 0.3s ease; } .dropdown { position: absolute; top: 76px; left: -16px; min-width: 320px; background: var(--bg-card); border: 1px solid var(--border); box-shadow: 0 12px 40px rgba(0,0,0,0.08); border-radius: 6px; padding: 12px; opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.3s; max-height: 70vh; overflow-y: auto; } .nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); } .dropdown a { display: block; font-size: 14px; font-weight: 500; color: var(--text-muted); padding: 10px 16px; border-radius: 4px; transition: var(--transition); } .dropdown a:hover { color: var(--accent); background: var(--accent-tint); padding-left: 20px; text-shadow: none; } .nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; z-index: 2001; } .nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; transition: var(--transition); } .mobile-menu { position: fixed; top: 0; left: 0; right: 0; bottom: 0; width: 100%; height: 100%; z-index: 2000; background: var(--dark-bg); padding: 80px 32px 40px; transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1); overflow-y: auto; display: flex; flex-direction: column; } .mobile-menu.is-open { transform: translateX(0); } .mobile-close { position: absolute; top: 24px; right: 28px; font-size: 32px; color: #fff; padding: 8px; line-height: 1; border: none; background: transparent; cursor: pointer; } .mobile-group { margin-bottom: 24px; } .mobile-group span { display: block; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--cta-bg); margin-bottom: 12px; } .mobile-group a { display: block; font-size: 16px; color: #fff; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.1); text-decoration: none; } .mobile-group a:last-child { border-bottom: none; } .mobile-menu .btn { width: 100%; margin-top: 16px; } /* ── HERO — matches T1/Market T1 standard ── */ .page-hero { background: linear-gradient(135deg, rgba(42,0,29,1) 0%, rgba(128,0,89,0.85) 100%); padding: 130px 0 0; position: relative; overflow: hidden; min-height: 550px; } .page-hero::before { content: ''; position: absolute; inset: 0; z-index: 2; background: linear-gradient(135deg, rgba(42,0,29,0.95) 0%, rgba(128,0,89,0.75) 100%); } .page-hero-inner { position: relative; z-index: 2; padding-bottom: 0; } .breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; font-size: 13px; color: rgba(255,255,255,0.45); flex-wrap: wrap; } .breadcrumb a { color: rgba(255,255,255,0.45); transition: color 0.2s; } .breadcrumb a:hover { color: var(--cta-bg); } .breadcrumb-sep { color: rgba(255,255,255,0.25); } .page-hero-label { display: block; color: var(--cta-bg); font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px; } .page-hero h1 { font-family: 'Outfit', sans-serif; font-size: 56px; font-weight: 700; color: #fff; letter-spacing: -0.02em; line-height: 1.08; margin-bottom: 20px; } .page-hero-bg { position: absolute; inset: 0; z-index: 1; overflow: hidden; } .page-hero-inner { position: relative; z-index: 3; padding-bottom: 0; } .page-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; } .page-hero-desc { font-size: 17px; color: rgba(255,255,255,0.7); line-height: 1.65; max-width: 580px; margin-bottom: 40px; } /* ── USE CASE BANNERS — magazine-style, full-width image overlays ── */ .usecase-list-section { background: var(--bg-section); } .usecase-banners { display: flex; flex-direction: column; gap: 24px; margin-top: 48px; } .usecase-banner { position: relative; display: flex; align-items: flex-end; justify-content: flex-start; border-radius: 16px; overflow: hidden; text-decoration: none; min-height: 340px; transition: transform 0.4s ease, box-shadow 0.4s ease; } .usecase-banner:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.18); } .usecase-banner-img { position: absolute; inset: 0; z-index: 0; } .usecase-banner-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; } .usecase-banner:hover .usecase-banner-img img { transform: scale(1.04); } .usecase-banner-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(10,5,8,0.92) 0%, rgba(10,5,8,0.55) 45%, rgba(10,5,8,0.05) 100%); } .usecase-banner.alt .usecase-banner-overlay { background: linear-gradient(90deg, rgba(42,0,29,0.92) 0%, rgba(128,0,89,0.55) 45%, rgba(128,0,89,0.05) 100%); } .usecase-banner-products { position: absolute; top: 20px; right: 20px; z-index: 2; display: flex; flex-wrap: wrap; gap: 6px; justify-content: flex-end; max-width: 50%; } .product-pill { font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.9); background: var(--dark-bg); border: none; padding: 4px 10px; border-radius: 3px; transition: all 0.2s; } .usecase-banner:hover .product-pill { background: var(--accent); color: #fff; } .usecase-banner-content { position: relative; z-index: 2; padding: 40px 48px; max-width: 560px; } .usecase-banner-num { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cta-bg); margin-bottom: 10px; } .usecase-banner-content h3 { font-family: 'Outfit', system-ui, sans-serif; font-size: clamp(24px, 2.8vw, 32px); font-weight: 700; color: #fff; letter-spacing: -0.01em; line-height: 1.2; margin-bottom: 12px; } .usecase-banner-content p { font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 20px; } .usecase-banner-link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: #fff; transition: gap 0.2s, color 0.2s; } .usecase-banner-link svg { width: 16px; height: 16px; } .usecase-banner:hover .usecase-banner-link { gap: 10px; color: var(--cta-bg); } /* ── FOOTER (matches T1-T5 standard) ── */ .footer { background: var(--dark-bg); padding-top: 80px; } .footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 2.2fr; gap: 40px; } .footer-logo { height: 40px; width: auto; margin-bottom: 24px; filter: brightness(0) invert(1); } .footer-brand .tagline { font-size: 15px; color: var(--dark-muted); margin-bottom: 16px; max-width: 280px; line-height: 1.4; } .footer-contact li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 6px; font-size: 14px; color: var(--dark-muted); } .footer-contact .ci { width: 18px; height: 18px; color: var(--cta-bg); flex-shrink: 0; margin-top: 2px; } .footer-col h4 { font-size: 14px; color: #fff; margin-bottom: 16px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; } .footer-col ul li { margin-bottom: 6px; } .footer-col a { font-size: 15px; color: var(--dark-muted); transition: var(--transition); } .footer-col a:hover { color: var(--cta-bg); } .footer-col.products-col ul { column-count: 2; column-gap: 32px; } .footer-col.products-col ul li { break-inside: avoid; page-break-inside: avoid; } .footer-socials { display: flex; gap: 12px; margin-top: 24px; } .footer-socials a { width: 36px; height: 36px; border: 1px solid var(--dark-border); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: var(--dark-muted); background: rgba(255,255,255,0.03); transition: var(--transition); } .footer-socials a:hover { color: var(--dark-bg); background: var(--cta-bg); border-color: var(--cta-bg); transform: translateY(-2px); } .footer-socials svg { width: 18px; height: 18px; } .footer-bottom { border-top: 1px solid var(--dark-border); margin-top: 64px; padding: 24px 0; display: flex; flex-direction: column; align-items: center; gap: 16px; font-size: 13px; color: var(--dark-muted); } .footer-legal { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; list-style: none; padding: 0; margin: 0; } .footer-legal a { color: var(--dark-muted); transition: var(--transition); } .footer-legal a:hover { color: var(--cta-bg); } @media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } } /* ── REVEAL ── */ .reveal { opacity: 1; transform: translateY(0); } .stagger-children > * { opacity: 1; transform: translateY(0); } .stagger-children.is-visible > * { opacity: 1; transform: translateY(0); } .stagger-children.is-visible > *:nth-child(1) { transition-delay: 0.06s; } .stagger-children.is-visible > *:nth-child(2) { transition-delay: 0.12s; } .stagger-children.is-visible > *:nth-child(3) { transition-delay: 0.18s; } .stagger-children.is-visible > *:nth-child(4) { transition-delay: 0.24s; } .stagger-children.is-visible > *:nth-child(5) { transition-delay: 0.30s; } /* ── RESPONSIVE ── */ @media (max-width: 1024px) { .container { padding: 0 24px; } .usecase-banner { min-height: 300px; } .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; } .footer-col.products-col { grid-column: span 2; } } @media (max-width: 767px) { .nav-menu, .nav-cta { display: none; } .nav-toggle { display: flex; } .page-hero h1 { font-size: 40px; } .usecase-banner { min-height: 380px; } .usecase-banner-content { padding: 28px; max-width: 100%; } .usecase-banner-products { position: static; margin: 0 0 16px; max-width: 100%; padding: 0 28px; justify-content: flex-start; } .usecase-banner { flex-direction: column; } .usecase-banner-overlay { background: linear-gradient(to top, rgba(10,5,8,0.95) 0%, rgba(10,5,8,0.4) 60%, transparent 100%) !important; } .footer-grid { grid-template-columns: 1fr; gap: 40px; } .footer-col.products-col { grid-column: span 1; } .footer-col.products-col ul { column-count: 1; } .footer-bottom { flex-direction: column; align-items: flex-start; } }
(function () { const nav = document.getElementById('mainNav'); const navToggle = document.getElementById('navToggle'); const mobileMenu = document.getElementById('mobileMenu'); const mobileClose = document.getElementById('mobileClose'); if (navToggle && mobileMenu && mobileClose) { navToggle.addEventListener('click', () => mobileMenu.classList.add('is-open')); mobileClose.addEventListener('click', () => mobileMenu.classList.remove('is-open')); } const revealObs = new IntersectionObserver((entries) => { entries.forEach(entry => { if (entry.isIntersecting) { entry.target.classList.add('is-visible'); revealObs.unobserve(entry.target); } }); }, { threshold: 0.1 }); document.querySelectorAll('.reveal, .stagger-children').forEach(el => revealObs.observe(el)); window.addEventListener('scroll', () => { nav.classList.toggle('scrolled', window.scrollY > 20); }, { passive: true }); })();