@import url('https://fonts.googleapis.com/css2?family=Silkscreen:wght@400;700&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&family=DM+Mono:wght@400;500&display=swap');

:root {
  --green: #056146;
  --green-light: #0a8a64;
  --orange: #FF6D27;
  --dark: #141210;
  --dark-2: #19170f;
  --dark-3: #1e1c16;
  --white: #e8e6e3;
  --gray: #666;
  --gray-light: #999;
  --pink: #F2C9E8;
  --apricot-bg: #1e1520;
  --font-pixel: 'Silkscreen', cursive;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'DM Mono', monospace;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--dark); color: var(--white); font-family: var(--font-body); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.particles-canvas { position: fixed; inset: 0; z-index: 0; pointer-events: none; }

.co-glow-orbs { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.co-glow-orb { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.12; animation: orbFloat 20s ease-in-out infinite alternate; }
.co-glow-orb:nth-child(1) { width: 600px; height: 600px; background: radial-gradient(circle, rgba(255,109,39,0.4), transparent 70%); top: -10%; left: -5%; animation-duration: 25s; }
.co-glow-orb:nth-child(2) { width: 500px; height: 500px; background: radial-gradient(circle, rgba(5,97,70,0.4), transparent 70%); top: 30%; right: -10%; animation-duration: 30s; animation-delay: -5s; }
.co-glow-orb:nth-child(3) { width: 400px; height: 400px; background: radial-gradient(circle, rgba(100,80,160,0.3), transparent 70%); bottom: 10%; left: 30%; animation-duration: 22s; animation-delay: -10s; }
@keyframes orbFloat { 0% { transform: translate(0,0) scale(1); } 33% { transform: translate(40px,-30px) scale(1.1); } 66% { transform: translate(-20px,20px) scale(0.95); } 100% { transform: translate(30px,-10px) scale(1.05); } }

.co-glow-line { height: 1px; background: linear-gradient(to right, transparent, rgba(255,109,39,0.3), transparent); border: none; margin: 0; position: relative; z-index: 1; }

/* NAV */
.co-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; display: flex; align-items: center; justify-content: space-between; padding: 0 48px; height: 60px; background: rgba(20,18,16,0.85); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border-bottom: 1px solid rgba(255,255,255,0.04); }
.co-nav-logo { font-family: var(--font-pixel); font-size: 16px; font-weight: 700; color: var(--white); letter-spacing: 1px; text-decoration: none; }
.co-nav-logo span { color: var(--orange); }
.co-nav-center { display: flex; gap: 32px; }
.co-nav-center a { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); transition: color 0.3s; text-decoration: none; }
.co-nav-center a:hover { color: var(--white); }
.co-nav-right a { font-family: var(--font-pixel); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dark); background: var(--orange); padding: 10px 22px; border-radius: 100px; transition: all 0.3s; text-decoration: none; }
.co-nav-right a:hover { background: #ff8a50; }

/* HERO */
.co-hero { position: relative; z-index: 1; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 80px 24px 80px; overflow: hidden; }
.co-hero-bg { position: absolute; inset: 0; z-index: 0; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.co-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.25; filter: brightness(0.5) saturate(0.7); }
.co-hero-bg::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 40%, transparent 20%, rgba(20,18,16,0.7) 55%, rgba(20,18,16,1) 80%), linear-gradient(to bottom, rgba(20,18,16,0.2) 0%, transparent 30%, transparent 60%, rgba(20,18,16,1) 100%); }

.co-hero-thumbs-left, .co-hero-thumbs-right { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; display: flex; flex-direction: column; gap: 20px; }
.co-hero-thumbs-left { left: 28px; }
.co-hero-thumbs-right { right: 28px; }
.co-thumb { width: 130px; cursor: pointer; transition: all 0.4s cubic-bezier(0.16,1,0.3,1); opacity: 0.5; }
.co-thumb:hover { opacity: 1; transform: scale(1.05); }
.co-thumb:hover img { box-shadow: 0 0 30px rgba(255,109,39,0.2); }
.co-thumb img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 10px; border: 1px solid rgba(255,255,255,0.06); }
.co-thumb p { font-family: var(--font-pixel); font-size: 8px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray); margin-top: 8px; text-align: center; }

.co-hero-bigtext { position: relative; z-index: 10; max-width: 900px; text-align: center; margin-bottom: 40px; }
.co-hero-bigtext h1 { font-family: var(--font-pixel); font-size: clamp(24px, 4.5vw, 48px); font-weight: 700; line-height: 1.4; letter-spacing: 1px; color: var(--white); }
.co-hero-bigtext h1 em { font-style: normal; color: var(--orange); }
.co-hero-bigtext p { font-family: var(--font-body); font-size: 17px; color: var(--gray-light); margin-top: 24px; font-weight: 300; line-height: 1.8; }

.co-hero-card { position: relative; z-index: 10; background: rgba(20,18,16,0.6); backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 32px 36px; max-width: 480px; width: 100%; }
.co-hero-card > h1 { display: none; }
.co-hero-specs { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.co-hero-spec { display: flex; align-items: center; gap: 14px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-light); }
.co-hero-spec i { width: 18px; height: 18px; stroke-width: 1.5; color: var(--orange); }
.co-hero-products { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 16px; }
.co-hero-product-btn { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; padding: 12px 10px; text-align: center; cursor: pointer; transition: all 0.3s; font-family: var(--font-pixel); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); }
.co-hero-product-btn:hover, .co-hero-product-btn.active { background: rgba(255,109,39,0.1); border-color: var(--orange); color: var(--orange); }
.co-hero-cta { display: block; width: 100%; background: var(--orange); color: var(--dark); padding: 14px; border-radius: 12px; font-family: var(--font-pixel); font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; text-align: center; transition: all 0.3s; text-decoration: none; }
.co-hero-cta:hover { background: #ff8a50; }

.co-scroll-indicator { position: relative; z-index: 10; margin-top: 40px; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.co-scroll-indicator span { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray); }
.co-scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--orange), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; transform: scaleY(0.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* SECTION COMMON */
.co-section { position: relative; z-index: 1; padding: 140px 48px; }
.co-label { font-family: var(--font-pixel); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); margin-bottom: 20px; }
.co-title { font-family: var(--font-pixel); font-size: clamp(20px, 3vw, 32px); font-weight: 700; line-height: 1.4; letter-spacing: 0.5px; max-width: 700px; color: var(--white); }
.co-desc { font-size: 16px; color: var(--gray); max-width: 520px; margin-top: 20px; line-height: 1.8; font-weight: 300; }

/* FEATURES STRIP */
.co-features-strip { position: relative; z-index: 1; background: var(--apricot-bg); padding: 100px 48px; }
.co-strip-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 48px; max-width: 1200px; margin: 0 auto; }
.co-strip-item { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.16,1,0.3,1); }
.co-strip-item.visible { opacity: 1; transform: translateY(0); }
.co-strip-item h3 { font-family: var(--font-pixel); font-size: 13px; font-weight: 700; color: var(--pink); margin-bottom: 14px; letter-spacing: 0.5px; line-height: 1.5; }
.co-strip-item p { font-size: 14px; color: rgba(242,201,232,0.5); line-height: 1.8; font-weight: 300; }
.co-strip-item strong { color: rgba(242,201,232,0.75); }

/* TWO-COL HIGHLIGHT */
.co-highlight { position: relative; z-index: 1; padding: 140px 48px; overflow: hidden; opacity: 0; transform: translateY(50px); transition: all 0.9s cubic-bezier(0.16,1,0.3,1); }
.co-highlight.visible { opacity: 1; transform: translateY(0); }
.co-hl-wrap { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.co-hl-wrap.reverse .co-hl-visual { order: 2; }
.co-hl-wrap.reverse .co-hl-content { order: 1; }
.co-hl-visual { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 4/3; background: var(--dark-3); }
.co-hl-visual img { width: 100%; height: 120%; object-fit: cover; position: absolute; top: -10%; left: 0; }
.co-hl-visual .co-badge { position: absolute; bottom: 12px; left: 12px; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); background: rgba(0,0,0,0.5); padding: 5px 12px; border-radius: 100px; backdrop-filter: blur(10px); }
.co-cta-link { display: inline-flex; align-items: center; gap: 10px; color: var(--orange); font-family: var(--font-pixel); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 36px; transition: gap 0.3s; text-decoration: none; }
.co-cta-link:hover { gap: 16px; }

/* SERVICES GRID */
.co-services { background: var(--dark-2); }
.co-svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; max-width: 1200px; margin: 60px auto 0; }
.co-svc-card { background: var(--dark-3); border: 1px solid rgba(255,255,255,0.04); border-radius: 18px; padding: 40px 28px 36px; position: relative; overflow: hidden; transition: all 0.5s cubic-bezier(0.16,1,0.3,1); cursor: pointer; opacity: 0; transform: translateY(40px); display: block; text-decoration: none; color: var(--white); }
.co-svc-card.visible { opacity: 1; transform: translateY(0); }
.co-svc-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform 0.5s cubic-bezier(0.16,1,0.3,1); }
.co-svc-card:hover { border-color: rgba(255,109,39,0.15); transform: translateY(-5px); }
.co-svc-card:hover::before { transform: scaleX(1); }
.co-card-icon { width: 44px; height: 44px; margin-bottom: 24px; display: flex; align-items: center; justify-content: center; background: rgba(255,109,39,0.08); border-radius: 12px; }
.co-card-icon i { width: 22px; height: 22px; stroke-width: 1.5; color: var(--orange); }
.co-svc-card h3 { font-family: var(--font-pixel); font-size: 13px; font-weight: 700; margin-bottom: 12px; letter-spacing: 0.3px; line-height: 1.4; color: var(--white); }
.co-svc-card p { font-size: 14px; color: var(--gray); line-height: 1.8; font-weight: 300; }
.co-card-arrow { position: absolute; top: 38px; right: 28px; color: var(--gray); transition: all 0.3s; }
.co-card-arrow i { width: 18px; height: 18px; stroke-width: 1.5; }
.co-svc-card:hover .co-card-arrow { color: var(--orange); transform: translateX(4px); }

/* OWL GRID */
.co-owl-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; max-width: 1200px; margin: 60px auto 0; }
.co-owl-card { background: var(--dark-3); border: 1px solid rgba(255,255,255,0.04); border-radius: 18px; overflow: hidden; cursor: pointer; transition: all 0.5s cubic-bezier(0.16,1,0.3,1); opacity: 0; transform: translateY(40px); }
.co-owl-card.visible { opacity: 1; transform: translateY(0); }
.co-owl-card:hover { border-color: rgba(255,255,255,0.08); transform: translateY(-4px); }
.co-card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform 0.6s cubic-bezier(0.16,1,0.3,1); }
.co-owl-card:hover .co-card-img { transform: scale(1.04); }
.co-card-body { padding: 24px; }
.co-owl-card h3 { font-family: var(--font-pixel); font-size: 13px; font-weight: 700; margin-bottom: 10px; line-height: 1.4; display: flex; align-items: center; gap: 10px; color: var(--white); }
.co-owl-card h3 i { width: 18px; height: 18px; stroke-width: 1.5; color: var(--orange); }
.co-owl-card p { font-size: 13px; color: var(--gray); line-height: 1.8; font-weight: 300; }

/* TRUSTED */
.co-trusted { position: relative; z-index: 1; text-align: center; background: var(--dark-2); padding: 80px 48px; }
.co-trusted h3 { font-family: var(--font-pixel); font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gray); margin-bottom: 40px; }
.co-trusted-logos { display: flex; align-items: center; justify-content: center; gap: 56px; flex-wrap: wrap; opacity: 0.3; filter: grayscale(1) brightness(1.8); }
.co-trusted-logos img { height: 32px; }

/* SUPPORT GRID */
.co-support-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; max-width: 1200px; margin: 60px auto 0; }
.co-support-card { background: var(--dark-3); border: 1px solid rgba(255,255,255,0.04); border-radius: 18px; overflow: hidden; transition: all 0.5s cubic-bezier(0.16,1,0.3,1); opacity: 0; transform: translateY(40px); }
.co-support-card.visible { opacity: 1; transform: translateY(0); }
.co-support-card:hover { border-color: rgba(255,255,255,0.08); transform: translateY(-3px); }
.co-support-card .co-card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.co-support-card .co-card-body { padding: 24px; }
.co-support-card h3 { font-family: var(--font-pixel); font-size: 12px; font-weight: 700; margin-bottom: 10px; line-height: 1.4; color: var(--white); }
.co-support-card p { font-size: 13px; color: var(--gray); line-height: 1.8; font-weight: 300; }

/* CTA FINAL */
.co-cta-final { position: relative; z-index: 1; background: var(--green); text-align: center; padding: 140px 48px; overflow: hidden; }
.co-cta-final::before { content: ''; position: absolute; top: -150px; right: -150px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(255,109,39,0.15) 0%, transparent 70%); pointer-events: none; }
.co-cta-final .co-title { margin: 0 auto; color: var(--white); }
.co-cta-final .co-desc { margin: 16px auto 0; color: rgba(255,255,255,0.6); }
.co-cta-btn { display: inline-block; margin-top: 44px; background: var(--white); color: var(--green); padding: 16px 40px; border-radius: 100px; font-family: var(--font-pixel); font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; transition: all 0.3s; text-decoration: none; }
.co-cta-btn:hover { background: #fff; transform: translateY(-2px); }

/* HEADLINER */
.co-headliner { position: relative; z-index: 1; text-align: center; padding: 160px 48px; opacity: 0; transform: translateY(50px); transition: all 0.9s cubic-bezier(0.16,1,0.3,1); }
.co-headliner.visible { opacity: 1; transform: translateY(0); }
.co-headliner .co-title { margin: 0 auto; max-width: 800px; }
.co-headliner .co-desc { margin: 24px auto 0; max-width: 560px; }

/* FOOTER */
.co-footer { position: relative; z-index: 1; background: var(--dark); padding: 80px 48px 40px; border-top: 1px solid rgba(255,255,255,0.04); }
.co-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; max-width: 1200px; margin: 0 auto; }
.co-footer-brand .co-f-logo { font-family: var(--font-pixel); font-size: 16px; font-weight: 700; color: var(--white); }
.co-footer-brand .co-f-logo span { color: var(--orange); }
.co-footer-brand p { margin-top: 16px; font-size: 12px; color: var(--gray); line-height: 1.9; max-width: 280px; }
.co-footer-col h4 { font-family: var(--font-pixel); font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.co-footer-col a { display: block; font-size: 13px; color: var(--gray); margin-bottom: 12px; transition: color 0.2s; text-decoration: none; }
.co-footer-col a:hover { color: var(--white); }
.co-footer-bottom { max-width: 1200px; margin: 60px auto 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.04); display: flex; justify-content: space-between; align-items: center; }
.co-footer-bottom p { font-family: var(--font-pixel); font-size: 8px; color: var(--gray); letter-spacing: 0.08em; }
.co-footer-social { display: flex; gap: 24px; }
.co-footer-social a { font-family: var(--font-pixel); font-size: 8px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); transition: color 0.2s; text-decoration: none; }
.co-footer-social a:hover { color: var(--white); }

/* RESPONSIVE */
@media (max-width: 1024px) { .co-hero-thumbs-left, .co-hero-thumbs-right { display: none; } .co-nav-center { display: none; } }
@media (max-width: 768px) {
  .co-nav { padding: 0 20px; }
  .co-section, .co-highlight, .co-features-strip { padding: 80px 20px; }
  .co-hl-wrap { grid-template-columns: 1fr; gap: 40px; }
  .co-hl-wrap.reverse .co-hl-visual, .co-hl-wrap.reverse .co-hl-content { order: unset; }
  .co-strip-grid, .co-svc-grid, .co-owl-grid, .co-support-grid { grid-template-columns: 1fr; }
  .co-hero-card { padding: 24px 20px; }
  .co-hero-products { grid-template-columns: 1fr; }
  .co-footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .co-footer-bottom { flex-direction: column; gap: 16px; }
  .co-headliner, .co-cta-final { padding: 80px 20px; }
  .co-glow-orb { filter: blur(60px); }
}

/* ══════════════════════════════════════
   LIGHT THEME — CREAM / OFF-WHITE
   ══════════════════════════════════════ */
:root {
  --dark: #faf8f4 !important;
  --dark-2: #f3f0ea !important;
  --dark-3: #ffffff !important;
  --white: #1a1714 !important;
  --gray: #8a8580 !important;
  --gray-light: #6b6560 !important;
  --apricot-bg: #f0e8f4 !important;
  --pink: #6b2d7b !important;
}

body { background: #faf8f4 !important; color: #1a1714 !important; }

/* NAV */
.co-nav { background: rgba(250,248,244,0.9) !important; border-bottom: 1px solid rgba(0,0,0,0.06) !important; }
.co-nav-logo { color: #1a1714 !important; }
.co-nav-center a { color: #8a8580 !important; }
.co-nav-center a:hover { color: #1a1714 !important; }

/* HERO BG */
.co-hero-bg img { opacity: 0.5 !important; filter: brightness(1) saturate(0.9) !important; }
.co-hero-bg::after { background: radial-gradient(ellipse at 50% 40%, transparent 20%, rgba(250,248,244,0.6) 55%, rgba(250,248,244,1) 80%), linear-gradient(to bottom, rgba(250,248,244,0.1) 0%, transparent 30%, transparent 60%, rgba(250,248,244,1) 100%) !important; }

/* HERO TEXT */
.co-hero-bigtext h1 { color: #1a1714 !important; }
.co-hero-bigtext p { color: #6b6560 !important; }

/* HERO CARD */
.co-hero-card { background: rgba(255,255,255,0.75) !important; border: 1px solid rgba(0,0,0,0.08) !important; backdrop-filter: blur(30px) !important; }
.co-hero-spec { color: #6b6560 !important; }
.co-hero-product-btn { background: rgba(0,0,0,0.03) !important; border: 1px solid rgba(0,0,0,0.08) !important; color: #8a8580 !important; }
.co-hero-product-btn:hover, .co-hero-product-btn.active { background: rgba(255,109,39,0.08) !important; border-color: var(--orange) !important; color: var(--orange) !important; }

/* SCROLL INDICATOR */
.co-scroll-indicator span { color: #8a8580 !important; }

/* THUMBS */
.co-thumb { opacity: 0.7 !important; }
.co-thumb:hover { opacity: 1 !important; }
.co-thumb p { color: #8a8580 !important; }
.co-thumb img { border: 1px solid rgba(0,0,0,0.08) !important; }

/* GLOW ORBS — softer for light */
.co-glow-orb:nth-child(1) { background: radial-gradient(circle, rgba(255,109,39,0.12), transparent 70%) !important; opacity: 0.3 !important; }
.co-glow-orb:nth-child(2) { background: radial-gradient(circle, rgba(5,97,70,0.12), transparent 70%) !important; opacity: 0.3 !important; }
.co-glow-orb:nth-child(3) { background: radial-gradient(circle, rgba(100,80,160,0.1), transparent 70%) !important; opacity: 0.3 !important; }

/* GLOW LINE */
.co-glow-line { background: linear-gradient(to right, transparent, rgba(0,0,0,0.08), transparent) !important; }

/* FEATURES STRIP */
.co-features-strip { background: #f0e8f4 !important; }
.co-strip-item h3 { color: #4a1a5e !important; }
.co-strip-item p { color: rgba(74,26,94,0.55) !important; }
.co-strip-item strong { color: rgba(74,26,94,0.8) !important; }

/* SECTION TITLES */
.co-title { color: #1a1714 !important; }
.co-desc { color: #8a8580 !important; }
.co-label { color: var(--orange) !important; }

/* HIGHLIGHT SECTIONS */
.co-highlight { background: transparent; }
.co-hl-visual { background: #f3f0ea !important; }
.co-hl-visual .co-badge { color: rgba(0,0,0,0.4) !important; background: rgba(255,255,255,0.7) !important; }

/* MIS SECTION (purple tint) */
.co-highlight[style*="apricot"] .co-title { color: #4a1a5e !important; }
.co-highlight[style*="apricot"] .co-label { color: #6b2d7b !important; }
.co-highlight[style*="apricot"] .co-desc { color: rgba(74,26,94,0.5) !important; }
.co-highlight[style*="apricot"] .co-cta-link { color: #6b2d7b !important; }

/* SERVICES CARDS */
.co-services { background: #f3f0ea !important; }
.co-svc-card { background: #ffffff !important; border: 1px solid rgba(0,0,0,0.06) !important; color: #1a1714 !important; }
.co-svc-card:hover { border-color: rgba(255,109,39,0.3) !important; box-shadow: 0 8px 32px rgba(0,0,0,0.06) !important; }
.co-svc-card h3 { color: #1a1714 !important; }
.co-svc-card p { color: #8a8580 !important; }
.co-card-arrow { color: #ccc !important; }
.co-svc-card:hover .co-card-arrow { color: var(--orange) !important; }

/* OWL CARDS */
.co-owl-card { background: #ffffff !important; border: 1px solid rgba(0,0,0,0.06) !important; }
.co-owl-card:hover { border-color: rgba(0,0,0,0.12) !important; box-shadow: 0 8px 32px rgba(0,0,0,0.06) !important; }
.co-owl-card h3 { color: #1a1714 !important; }
.co-owl-card p { color: #8a8580 !important; }

/* TRUSTED */
.co-trusted { background: #f3f0ea !important; }
.co-trusted h3 { color: #8a8580 !important; }
.co-trusted-logos { opacity: 0.5 !important; filter: grayscale(1) brightness(0.5) !important; }

/* SUPPORT CARDS */
.co-support-card { background: #ffffff !important; border: 1px solid rgba(0,0,0,0.06) !important; }
.co-support-card:hover { border-color: rgba(0,0,0,0.12) !important; box-shadow: 0 8px 32px rgba(0,0,0,0.06) !important; }
.co-support-card h3 { color: #1a1714 !important; }
.co-support-card p { color: #8a8580 !important; }

/* HEADLINER */
.co-headliner .co-title { color: #1a1714 !important; }
.co-headliner .co-desc { color: #8a8580 !important; }

/* CTA FINAL — keep green */
.co-cta-final { background: var(--green) !important; }
.co-cta-final .co-title { color: #fff !important; }
.co-cta-final .co-desc { color: rgba(255,255,255,0.6) !important; }
.co-cta-btn { background: #fff !important; color: var(--green) !important; }

/* FOOTER — dark footer for contrast */
.co-footer { background: #1a1714 !important; border-top: none !important; }
.co-footer-brand .co-f-logo { color: #e8e6e3 !important; }
.co-footer-brand p { color: #777 !important; }
.co-footer-col h4 { color: #e8e6e3 !important; }
.co-footer-col a { color: #777 !important; }
.co-footer-col a:hover { color: #e8e6e3 !important; }
.co-footer-bottom p { color: #555 !important; }
.co-footer-social a { color: #555 !important; }
.co-footer-social a:hover { color: #e8e6e3 !important; }
.co-footer-bottom { border-top: 1px solid rgba(255,255,255,0.06) !important; }

/* ══════════════════════════════════════
   OVERRIDE: DARK OLIVE/SAGE THEME (nothing.tech CMF style)
   ══════════════════════════════════════ */
:root {
  --dark: #242b27 !important;
  --dark-2: #2a322d !important;
  --dark-3: #313a34 !important;
  --white: #e8e6e1 !important;
  --gray: #7a8580 !important;
  --gray-light: #9aa59f !important;
  --apricot-bg: #2a2633 !important;
  --pink: #d4a6e0 !important;
}

body { background: #242b27 !important; color: #e8e6e1 !important; }

/* NAV */
.co-nav { background: rgba(36,43,39,0.9) !important; border-bottom: 1px solid rgba(255,255,255,0.05) !important; }
.co-nav-logo { color: #e8e6e1 !important; }
.co-nav-center a { color: #7a8580 !important; }
.co-nav-center a:hover { color: #e8e6e1 !important; }

/* HERO */
.co-hero-bg img { opacity: 0.35 !important; filter: brightness(0.6) saturate(0.8) !important; }
.co-hero-bg::after { background: radial-gradient(ellipse at 50% 40%, transparent 20%, rgba(36,43,39,0.65) 55%, rgba(36,43,39,1) 80%), linear-gradient(to bottom, rgba(36,43,39,0.2) 0%, transparent 30%, transparent 60%, rgba(36,43,39,1) 100%) !important; }
.co-hero-bigtext h1 { color: #e8e6e1 !important; }
.co-hero-bigtext p { color: #9aa59f !important; }
.co-hero-card { background: rgba(42,50,45,0.7) !important; border: 1px solid rgba(255,255,255,0.07) !important; }
.co-hero-spec { color: #9aa59f !important; }
.co-hero-product-btn { background: rgba(255,255,255,0.04) !important; border: 1px solid rgba(255,255,255,0.07) !important; color: #7a8580 !important; }
.co-hero-product-btn:hover, .co-hero-product-btn.active { background: rgba(255,109,39,0.1) !important; border-color: var(--orange) !important; color: var(--orange) !important; }
.co-scroll-indicator span { color: #7a8580 !important; }
.co-thumb { opacity: 0.6 !important; }
.co-thumb:hover { opacity: 1 !important; }
.co-thumb p { color: #7a8580 !important; }
.co-thumb img { border: 1px solid rgba(255,255,255,0.06) !important; }

/* GLOW ORBS */
.co-glow-orb:nth-child(1) { background: radial-gradient(circle, rgba(255,109,39,0.25), transparent 70%) !important; opacity: 0.15 !important; }
.co-glow-orb:nth-child(2) { background: radial-gradient(circle, rgba(5,97,70,0.3), transparent 70%) !important; opacity: 0.15 !important; }
.co-glow-orb:nth-child(3) { background: radial-gradient(circle, rgba(100,80,160,0.2), transparent 70%) !important; opacity: 0.15 !important; }

/* GLOW LINE */
.co-glow-line { background: linear-gradient(to right, transparent, rgba(255,255,255,0.06), transparent) !important; }

/* FEATURES STRIP */
.co-features-strip { background: #2a2633 !important; }
.co-strip-item h3 { color: #d4a6e0 !important; }
.co-strip-item p { color: rgba(212,166,224,0.45) !important; }
.co-strip-item strong { color: rgba(212,166,224,0.7) !important; }

/* SECTION */
.co-title { color: #e8e6e1 !important; }
.co-desc { color: #7a8580 !important; }

/* HIGHLIGHT */
.co-highlight { background: transparent !important; }
.co-hl-visual { background: #313a34 !important; }
.co-hl-visual .co-badge { color: rgba(255,255,255,0.3) !important; background: rgba(0,0,0,0.4) !important; }

/* MIS SECTION */
.co-highlight[style*="apricot"] { background: #2a2633 !important; }

/* SERVICES */
.co-services { background: #2a322d !important; }
.co-svc-card { background: #313a34 !important; border: 1px solid rgba(255,255,255,0.05) !important; }
.co-svc-card:hover { border-color: rgba(255,109,39,0.2) !important; box-shadow: 0 8px 32px rgba(0,0,0,0.15) !important; }
.co-svc-card h3 { color: #e8e6e1 !important; }
.co-svc-card p { color: #7a8580 !important; }
.co-card-arrow { color: #555 !important; }
.co-svc-card:hover .co-card-arrow { color: var(--orange) !important; }

/* OWL CARDS */
.co-owl-card { background: #313a34 !important; border: 1px solid rgba(255,255,255,0.05) !important; }
.co-owl-card:hover { border-color: rgba(255,255,255,0.1) !important; box-shadow: 0 8px 32px rgba(0,0,0,0.15) !important; }
.co-owl-card h3 { color: #e8e6e1 !important; }
.co-owl-card p { color: #7a8580 !important; }

/* TRUSTED */
.co-trusted { background: #2a322d !important; }
.co-trusted h3 { color: #7a8580 !important; }
.co-trusted-logos { opacity: 0.35 !important; filter: grayscale(1) brightness(1.5) !important; }

/* SUPPORT CARDS */
.co-support-card { background: #313a34 !important; border: 1px solid rgba(255,255,255,0.05) !important; }
.co-support-card:hover { border-color: rgba(255,255,255,0.1) !important; box-shadow: 0 8px 32px rgba(0,0,0,0.15) !important; }
.co-support-card h3 { color: #e8e6e1 !important; }
.co-support-card p { color: #7a8580 !important; }

/* HEADLINER */
.co-headliner .co-title { color: #e8e6e1 !important; }
.co-headliner .co-desc { color: #7a8580 !important; }

/* CTA */
.co-cta-final { background: var(--green) !important; }
.co-cta-final .co-title { color: #fff !important; }
.co-cta-final .co-desc { color: rgba(255,255,255,0.6) !important; }
.co-cta-btn { background: #fff !important; color: var(--green) !important; }

/* FOOTER */
.co-footer { background: #1a201c !important; border-top: 1px solid rgba(255,255,255,0.04) !important; }
.co-footer-brand .co-f-logo { color: #e8e6e1 !important; }
.co-footer-brand p { color: #6a6a6a !important; }
.co-footer-col h4 { color: #e8e6e1 !important; }
.co-footer-col a { color: #6a6a6a !important; }
.co-footer-col a:hover { color: #e8e6e1 !important; }
.co-footer-bottom p { color: #555 !important; }
.co-footer-social a { color: #555 !important; }
.co-footer-social a:hover { color: #e8e6e1 !important; }
.co-footer-bottom { border-top: 1px solid rgba(255,255,255,0.04) !important; }

/* ── OVERRIDE PURPLE SECTIONS → GREEN-TEAL ── */
.co-features-strip { background: #1e2e28 !important; }
.co-strip-item h3 { color: #6dd4b1 !important; }
.co-strip-item p { color: rgba(109,212,177,0.45) !important; }
.co-strip-item strong { color: rgba(109,212,177,0.7) !important; }

.co-highlight[style*="apricot"] { background: #1e2e28 !important; }
.co-highlight[style*="apricot"] .co-title { color: #6dd4b1 !important; }
.co-highlight[style*="apricot"] .co-label { color: #6dd4b1 !important; }
.co-highlight[style*="apricot"] .co-desc { color: rgba(109,212,177,0.45) !important; }
.co-highlight[style*="apricot"] .co-cta-link { color: #6dd4b1 !important; }

/* ── HERO CARD SMALLER ── */
.co-hero-card {
  max-width: 400px !important;
  padding: 24px 28px !important;
  border-radius: 16px !important;
}
.co-hero-specs { gap: 8px !important; margin-bottom: 18px !important; }
.co-hero-spec { font-size: 10px !important; gap: 10px !important; }
.co-hero-spec i { width: 16px !important; height: 16px !important; }
.co-hero-products { gap: 6px !important; margin-bottom: 12px !important; }
.co-hero-product-btn { padding: 10px 8px !important; font-size: 8px !important; border-radius: 8px !important; }
.co-hero-cta { padding: 12px !important; font-size: 9px !important; border-radius: 10px !important; }

/* ── TIGHTER SPACING ── */
.co-section { padding: 80px 48px !important; }
.co-highlight { padding: 80px 48px !important; }
.co-features-strip { padding: 60px 48px !important; }
.co-headliner { padding: 80px 48px !important; }
.co-cta-final { padding: 80px 48px !important; }
.co-trusted { padding: 50px 48px !important; }

.co-hl-wrap { gap: 60px !important; }
.co-svc-grid { margin-top: 40px !important; }
.co-owl-grid { margin-top: 40px !important; }
.co-support-grid { margin-top: 40px !important; }

/* ── NAV LOGO IMAGE ── */
.co-nav-logo img { height: 32px; }
.co-f-logo img { height: 28px; }

@media (max-width: 768px) {
  .co-section, .co-highlight, .co-features-strip { padding: 50px 20px !important; }
  .co-headliner, .co-cta-final { padding: 50px 20px !important; }
}

/* ── LOGO TRANSPARENT BG ── */
.co-nav-logo img, .co-f-logo img {
  mix-blend-mode: screen;
}

/* ── LOGO BESIDE TEXT ── */
.co-nav-logo {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}
.co-nav-logo img {
  height: 36px !important;
  margin-right: 0 !important;
}
.co-f-logo {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}
.co-f-logo img {
  height: 32px !important;
  margin-right: 0 !important;
}

/* ── LOGO TEXT NO EXTRA SPACING ── */
.co-nav-logo {
  letter-spacing: 0px !important;
  font-size: 15px !important;
  word-spacing: -3px !important;
}
.co-f-logo {
  letter-spacing: 0px !important;
  font-size: 15px !important;
  word-spacing: -3px !important;
}

/* ── FORCE NO SPACE IN LOGO ── */
.co-nav-logo span, .co-f-logo span {
  margin-left: -6px !important;
}

/* ── TRUSTED BY SCROLLING CAROUSEL ── */
.co-trusted-logos {
  display: flex !important;
  gap: 60px !important;
  opacity: 1 !important;
  filter: none !important;
  overflow: hidden !important;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent) !important;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent) !important;
}
.co-trusted-track {
  display: flex;
  gap: 60px;
  align-items: center;
  animation: scrollLogos 25s linear infinite;
  min-width: max-content;
}
.co-trusted-track img {
  height: 60px !important;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
@keyframes scrollLogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── FIX SMOOTH SCROLL CAROUSEL ── */
.co-trusted-track {
  animation: scrollLogos 40s linear infinite !important;
  will-change: transform;
}
@keyframes scrollLogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── STRATEGIC PARTNERSHIP ── */
.co-partnership {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 60px 48px 20px;
  background: var(--dark-2);
}
.co-partnership h3 {
  font-family: var(--font-pixel);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 32px;
}
.co-partnership-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 16px;
}
.co-partnership-logos img {
  height: 80px;
  object-fit: contain;
}
.co-partnership p {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gray-light);
  letter-spacing: 0.05em;
}

/* ── FOOTER PARTNERS ── */
.co-footer-partners {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.co-footer-partner-group h5 {
  font-family: var(--font-pixel);
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 16px;
}
.co-footer-partner-logos {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.co-footer-partner-logos img {
  height: 22px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.5;
  transition: opacity 0.3s;
}
.co-footer-partner-logos img:hover {
  opacity: 0.9;
}

/* ── TRUSTED BY TITLE MATCH PARTNERSHIP ── */
.co-trusted h3 {
  font-size: 14px !important;
  color: var(--orange) !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em !important;
}

/* ── HERO VIDEO BACKGROUND ── */
.co-hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.co-hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: brightness(0.5) saturate(0.7);
}
.co-hero-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, transparent 20%, rgba(36,43,39,0.65) 55%, rgba(36,43,39,1) 80%),
    linear-gradient(to bottom, rgba(36,43,39,0.2) 0%, transparent 30%, transparent 60%, rgba(36,43,39,1) 100%);
}

/* ── HERO CARD SCROLL HIDE/SHOW ── */
.co-hero-card {
  transition: opacity 0.4s ease, transform 0.4s ease !important;
}
.co-hero-card.scrolled-away {
  opacity: 0 !important;
  transform: translateY(40px) !important;
  pointer-events: none;
}

/* ── FOOTER PARTNER LOGOS BIGGER ── */
.co-footer-partner-logos img {
  height: 30px !important;
}
.co-footer-partner-logos img[alt="NVIDIA"] {
  height: 36px !important;
}

/* ── UNICORN STUDIO EMBED ── */
.ai-hero-img [data-us-project] {
  width: 100% !important;
  height: 500px !important;
  border-radius: 20px;
  overflow: hidden;
}

/* ── HIDE UNICORN STUDIO BADGE ── */
[data-us-project] a[href*="unicorn"],
[data-us-project] [class*="badge"],
[data-us-project] > div:last-child a {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ── AI DEMO VIDEO SWITCHER ── */
.ai-demo-videos {
  max-width: 900px; margin: 0 auto;
  position: relative;
}
.ai-demo-video {
  display: none;
  border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}
.ai-demo-video.active { display: block; }
.ai-demo-video video { width: 100%; display: block; }
.ai-demo-btn { cursor: pointer !important; }
.ai-demo-btn span { display: none; }
