EBO SE Wireless Camera Robot
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap'); :root { --accent: #ff6846; --accent-soft: #fff2ed; --blue: #49a9e8; --blue- soft: #eef8ff; --cyan: #55c7d9; --green: #22b573; --text: #171717; --muted: #666666; --light: #999999; --white: #ffffff; --bg: #f7f8f9; --warm: #faf6f2; --cool: #f2f8fb; --border: #e5e5e5; --radius: 15px; --radius-lg: 24px; --radius-xl: 30px; --shadow-sm: 0 3px 12px rgba(0,0,0,.06); --shadow-md: 0 10px 35px rgba(0,0,0,.09); --shadow-lg: 0 22px 65px rgba(0,0,0,.13); --transition: all .3s ease; } * { box-sizing: border-box; } body { margin: 0; font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--text); line-height: 1.6; background: #fff; } img { display: block; max-width: 100%; } /* ========================================================= COMMON ========================================================= */ .se-section { position: relative; padding: 88px 0; } .se-section.alt { background: var(--bg); } .se-section.warm { background: var(--warm); } .se-container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 40px; } .se-header { max-width: 760px; margin: 0 auto 52px; text-align: center; } .se-label { display: inline-block; margin-bottom: 13px; color: var(--accent); font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; } .se-title { margin: 0 0 16px; font-size: clamp(29px,4vw,43px); font-weight: 800; line-height: 1.13; letter-spacing: -.03em; } .se-desc { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.75; } /* ========================================================= HERO ========================================================= */ .se-hero { position: relative; overflow: hidden; padding: 88px 0; background: radial-gradient( circle at 85% 18%, rgba(73,169,232,.18), transparent 31% ), radial-gradient( circle at 8% 88%, rgba(255,104,70,.10), transparent 28% ), linear-gradient( 135deg, #fbfbfb 0%, #f2f7fa 100% ); } .se-hero::before { content: ''; position: absolute; top: -220px; right: -190px; width: 530px; height: 530px; border: 1px solid rgba(73,169,232,.15); border-radius: 50%; } .se-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .9fr 1.1fr; gap: 65px; align-items: center; } .se-hero-copy h1 { margin: 0 0 22px; font-size: clamp(40px,5vw,60px); font-weight: 800; line-height: 1.05; letter-spacing: -.045em; } .se-gradient { background: linear-gradient( 135deg, #ff6846, #ff9d76 38%, #55aee7 78% ); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .se-hero-copy p { max-width: 580px; margin: 0 0 18px; color: var(--muted); font-size: 17px; line-height: 1.76; } .se-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 27px; } .se-tag { display: inline-flex; align-items: center; gap: 7px; padding: 9px 14px; background: rgba(255,255,255,.96); border: 1px solid var(--border); border-radius: 50px; box-shadow: var(--shadow-sm); font-size: 12px; font-weight: 700; } .se-tag svg { width: 15px; height: 15px; color: var(--accent); } .se-hero-visual { position: relative; } .se-hero-image { overflow: hidden; padding: 25px; border-radius: var(--radius-xl); background: #fff; box-shadow: var(--shadow-lg); } .se-hero-image img { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; } .se-floating { position: absolute; left: -24px; bottom: 26px; max-width: 280px; padding: 15px 18px; background: rgba(255,255,255,.96); backdrop-filter: blur(10px); border-radius: 15px; box-shadow: var(--shadow-md); } .se-floating strong { display: block; margin-bottom: 3px; font-size: 14px; } .se-floating span { color: var(--muted); font-size: 11px; } /* ========================================================= FEATURE CARDS ========================================================= */ .se-feature-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; } .se-feature { position: relative; overflow: hidden; padding: 31px 24px; background: #fff; border: 1px solid var(--border); border-radius: 21px; text-align: center; transition: var(--transition); } .se-feature::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient( 90deg, var(--accent), var(--blue) ); transform: scaleX(0); transition: var(--transition); } .se-feature:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); } .se-feature:hover::before { transform: scaleX(1); } .se-feature-icon { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; margin: 0 auto 17px; border-radius: 16px; background: linear-gradient( 135deg, rgba(255,104,70,.10), rgba(73,169,232,.09) ); color: var(--accent); } .se-feature-icon svg { width: 24px; height: 24px; } .se-feature h3 { margin: 0 0 8px; font-size: 16px; } .se-feature p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; } /* ========================================================= SPLIT FEATURE ========================================================= */ .se-split { display: grid; grid-template-columns: 1.08fr .92fr; overflow: hidden; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-xl); box-shadow: var(--shadow-md); } .se-split.reverse { grid-template-columns: .92fr 1.08fr; } .se-split.reverse .se-split-image { order: 2; } .se-split.reverse .se-split-copy { order: 1; } .se-split-image { position: relative; overflow: hidden; min-height: 500px; background: #eee; } .se-split-image img { width: 100%; height: 100%; min-height: 500px; object-fit: cover; transition: transform .5s ease; } .se-split:hover .se-split-image img { transform: scale(1.015); } .se-image-tag { position: absolute; top: 21px; left: 21px; z-index: 2; padding: 9px 14px; background: rgba(255,255,255,.95); backdrop-filter: blur(8px); border-radius: 50px; box-shadow: var(--shadow-sm); font-size: 11px; font-weight: 700; } .se-split-copy { padding: 50px; display: flex; flex-direction: column; justify-content: center; } .se-split-copy h2 { margin: 0 0 16px; font-size: clamp(28px,3.5vw,39px); font-weight: 800; line-height: 1.12; letter-spacing: -.03em; } .se-split-copy > p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.75; } .se-checks { list-style: none; margin: 23px 0 0; padding: 0; } .se-checks li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; color: var(--muted); font-size: 13px; } .se-check { color: var(--green); font-weight: 800; } /* ========================================================= MONITORING ========================================================= */ .se-monitor { display: grid; grid-template-columns: 1.12fr .88fr; gap: 28px; align-items: stretch; } .se-monitor-image { position: relative; overflow: hidden; min-height: 520px; border-radius: 28px; background: #eee; box-shadow: var(--shadow-md); } .se-monitor-image img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; } .se-monitor-panel { padding: 41px; display: flex; flex-direction: column; justify-content: center; border-radius: 28px; background: linear-gradient( 145deg, #f1f8fc, #fff ); } .se-monitor-panel h2 { margin: 0 0 15px; font-size: clamp(28px,3.5vw,39px); font-weight: 800; line-height: 1.12; } .se-monitor-panel > p { margin: 0 0 24px; color: var(--muted); font-size: 14px; line-height: 1.7; } .se-mini-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 11px; } .se-mini-card { padding: 15px; background: #fff; border: 1px solid var(--border); border-radius: 13px; } .se-mini-card strong { display: block; margin-bottom: 4px; font-size: 12px; } .se-mini-card span { display: block; color: var(--muted); font-size: 10px; line-height: 1.45; } /* ========================================================= COMMUNICATION ========================================================= */ .se-communication { display: grid; grid-template-columns: .88fr 1.12fr; gap: 28px; align-items: stretch; } .se-communication-copy { padding: 43px; display: flex; flex-direction: column; justify-content: center; border-radius: 28px; background: linear-gradient( 145deg, #fff5ef, #fff ); } .se-communication-copy h2 { margin: 0 0 16px; font-size: clamp(29px,3.6vw,40px); font-weight: 800; line-height: 1.12; } .se-communication-copy > p { margin: 0 0 24px; color: var(--muted); font-size: 15px; line-height: 1.75; } .se-communication-image { position: relative; overflow: hidden; min-height: 500px; border-radius: 28px; background: #eee; box-shadow: var(--shadow-md); } .se-communication-image img { width: 100%; height: 100%; min-height: 500px; object-fit: cover; } /* ========================================================= RECHARGE ========================================================= */ .se-charge { display: grid; grid-template-columns: 1.12fr .88fr; gap: 28px; align-items: stretch; } .se-charge-image { position: relative; overflow: hidden; min-height: 500px; border-radius: 28px; background: #eee; box-shadow: var(--shadow-md); } .se-charge-image img { width: 100%; height: 100%; min-height: 500px; object-fit: cover; } .se-charge-caption { position: absolute; left: 20px; bottom: 20px; max-width: 310px; padding: 14px 17px; background: rgba(255,255,255,.96); border-radius: 14px; box-shadow: var(--shadow-sm); } .se-charge-caption strong { display: block; margin-bottom: 3px; font-size: 13px; } .se-charge-caption span { color: var(--muted); font-size: 10px; line-height: 1.4; } .se-charge-panel { padding: 42px; display: flex; flex-direction: column; justify-content: center; border-radius: 28px; background: linear-gradient( 145deg, #f3f9fc, #ffffff ); } .se-charge-panel h2 { margin: 0 0 16px; font-size: clamp(28px,3.5vw,40px); font-weight: 800; line-height: 1.12; } .se-charge-panel > p { margin: 0 0 24px; color: var(--muted); font-size: 15px; line-height: 1.7; } .se-number-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 11px; } .se-number-card { padding: 17px; background: #fff; border: 1px solid var(--border); border-radius: 14px; } .se-number-card strong { display: block; margin-bottom: 4px; font-size: 17px; } .se-number-card span { display: block; color: var(--muted); font-size: 10px; line-height: 1.45; } /* ========================================================= USE CASES ========================================================= */ .se-use-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 21px; } .se-use-card { overflow: hidden; min-height: 280px; position: relative; border-radius: 22px; box-shadow: var(--shadow-sm); } .se-use-card img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; } .se-use-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 25px; background: linear-gradient( to top, rgba(0,0,0,.70), rgba(0,0,0,.05) 65% ); } .se-use-overlay h3 { margin: 0 0 5px; color: white; font-size: 19px; } .se-use-overlay p { margin: 0; color: rgba(255,255,255,.80); font-size: 11px; line-height: 1.5; } /* ========================================================= APP ========================================================= */ .se-app-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; } .se-app-card { padding: 29px 25px; background: #fff; border: 1px solid var(--border); border-radius: 20px; text-align: center; } .se-app-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; border-radius: 14px; background: var(--blue-soft); color: var(--blue); } .se-app-icon svg { width: 21px; height: 21px; } .se-app-card h3 { margin: 0 0 8px; font-size: 16px; } .se-app-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; } /* ========================================================= TECH SPECS ========================================================= */ .se-spec-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; overflow: hidden; background: var(--border); border: 1px solid var(--border); border-radius: 22px; } .se-spec { padding: 25px 15px; background: #fff; text-align: center; } .se-spec-label { margin-bottom: 6px; color: var(--light); font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; } .se-spec-value { font-size: 14px; font-weight: 700; } /* ========================================================= TABLE ========================================================= */ .se-table-wrap { overflow-x: auto; } .se-table { width: 100%; border-collapse: separate; border-spacing: 0; background: #fff; border: 1px solid var(--border); border-radius: 22px; } .se-table td { padding: 16px 22px; border-bottom: 1px solid var(--border); font-size: 13px; } .se-table tr:last-child td { border-bottom: 0; } .se-table tr:nth-child(even) { background: #fafafa; } .se-table td:first-child { width: 40%; font-weight: 700; } .se-table td:last-child { color: var(--muted); } /* ========================================================= PACKAGE ========================================================= */ .se-package { display: grid; grid-template-columns: 1.1fr .9fr; gap: 32px; align-items: center; } .se-package-image { overflow: hidden; border-radius: 28px; background: #fff; box-shadow: var(--shadow-md); } .se-package-image img { width: 100%; height: auto; } .se-package-list { display: grid; gap: 10px; } .se-package-item { display: flex; align-items: center; gap: 13px; padding: 14px 16px; background: #fff; border: 1px solid var(--border); border-radius: 13px; } .se-package-number { width: 33px; height: 33px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; border-radius: 9px; background: var(--blue-soft); color: var(--blue); font-size: 11px; font-weight: 800; } .se-package-item strong { font-size: 12px; } /* ========================================================= FINAL ========================================================= */ .se-final { padding: 78px 0; text-align: center; background: radial-gradient( circle at 18% 20%, rgba(73,169,232,.14), transparent 28% ), radial-gradient( circle at 82% 80%, rgba(255,104,70,.10), transparent 28% ), linear-gradient( 135deg, #151515, #292929 ); } .se-final h2 { margin: 0 0 14px; color: #fff; font-size: clamp(29px,4vw,42px); font-weight: 800; } .se-final p { max-width: 700px; margin: 0 auto; color: rgba(255,255,255,.67); font-size: 15px; line-height: 1.7; } /* ========================================================= RESPONSIVE ========================================================= */ @media (max-width:1024px) { .se-hero-grid, .se-split, .se-split.reverse, .se-monitor, .se-communication, .se-charge, .se-package { grid-template-columns: 1fr; } .se-split.reverse .se-split-image, .se-split.reverse .se-split-copy { order: initial; } .se-feature-grid, .se-use-grid, .se-app-grid { grid-template-columns: repeat(2,1fr); } .se-spec-grid { grid-template-columns: repeat(2,1fr); } .se-floating { left: 18px; } .se-split-image, .se-split-image img, .se-monitor-image, .se-monitor-image img, .se-communication-image, .se-communication-image img, .se-charge-image, .se-charge-image img { min-height: auto; } } @media (max-width:700px) { .se-section, .se-hero { padding: 58px 0; } .se-container { padding: 0 20px; } .se-feature-grid, .se-use-grid, .se-app-grid, .se-spec-grid, .se-mini-grid, .se-number-grid { grid-template-columns: 1fr; } .se-split-copy, .se-monitor-panel, .se-communication-copy, .se-charge-panel { padding: 29px 22px; } .se-floating { position: relative; left: auto; bottom: auto; margin-top: 13px; } .se-table td { padding: 12px; font-size: 11px; } .se-table td:first-child { width: 44%; } } Enabot EBO SE Your Home. Always Within Reach. EBO SE Wireless Camera Robot combines mobile 1080P monitoring, two-way voice communication and smart home security features in one compact companion robot. Remotely explore your home, check on pets or loved ones, monitor activity and communicate through the mobile app. EBO SE can also return to its charging dock when needed, helping it stay ready for everyday use. 1080P Camera Two-Way Audio 24H Recording Auto Recharge Mobile Home Monitoring Move · Watch · Talk · Protect Smart Home Companion Security and Connection in One Compact Robot EBO SE combines mobile home monitoring, night vision, remote communication and intelligent security functions. 1080P HD Camera Live home monitoring with clear Full HD photo and video capture. Night Vision Continue monitoring in low-light conditions after the lights go out. Two-Way Voice Talk to family members or pets remotely through the mobile app. Auto Recharge Infrared docking helps EBO SE return to its charging station. Real-Time Home View Intelligent Home Monitoring Check Your Home from Wherever You Are Unlike a traditional fixed camera, EBO SE can be remotely controlled to move around compatible indoor spaces, giving you more viewing angles around the home. Remote Control Move EBO SE around your home through the app. Live Monitoring Watch the camera feed in real time. Photo Capture Take photos remotely from your smartphone. Video Recording Record useful or memorable moments. Day & Night Night Vision Stay Connected After the Lights Go Out EBO SE supports low-light monitoring so you can continue checking your home and pets at night without relying on bright room lighting. ✓ Day and night monitoring ✓ 1080P video resolution ✓ Wide-angle camera ✓ Remote photo and video capture 1080P Mobile Vision Clear Home Monitoring See More Than a Fixed Camera Can Show EBO SE combines 1080P imaging with a mobile chassis, allowing you to remotely change your viewpoint instead of being limited to one stationary camera angle. ✓ 1080P resolution ✓ 118° diagonal camera angle ✓ 98.5° horizontal viewing angle ✓ 62.5° vertical viewing angle Remote Companionship Stay Close to Family, Even from Far Away EBO SE supports two-way voice and one-way video, making it useful for remotely checking in on children, elderly loved ones and pets. Two-Way Voice Listen and speak in real time. One-Way Video See family members through EBO's camera. Mobile View Move closer instead of waiting for someone to enter frame. Multi-User Login Share access with approved family members. Home Security 24H Fixed-Point Security Keep Watch While You're Away EBO SE can be used for continuous fixed-point security recording while positioned at its charging station, with footage stored locally on supported memory. ✓ 24-hour fixed-point recording mode ✓ Motion-detection recording ✓ App notifications for detected activity ✓ Local expandable storage up to 256 GB Close-Range Auto Recharge Move EBO SE into a clear area in front of the dock before starting automatic return. Always Ready Returns to Its Charging Dock EBO SE uses infrared close-range docking to return to its charging station, reducing the need to manually place the robot onto the charger. 2500 mAh Built-in rechargeable battery 4–7 Hours Approximate battery life 2–3 Hours Approximate charging time Infrared Automatic docking system Free-Moving Camera Designed to Move Explore Different Areas of Your Home The compact tracked chassis allows EBO SE to move forward, backward and turn remotely, providing a mobile low-level view around compatible indoor spaces. ✓ Speed from 20 to 60 cm/s ✓ Obstacle crossing approximately 5–6 mm ✓ Uphill slope up to 4° on smooth tile ✓ Compact 89.2 mm body height Made for Everyday Home Life One Robot, Multiple Ways to Stay Connected Use EBO SE to monitor pets, communicate with children or remotely check in on elderly family members. Pet Monitoring Find your pet around the house and talk through the robot remotely. Family Connection Use mobile video monitoring and two-way voice to stay connected. Home Security Monitor activity during the day and in low-light conditions. Mobile App Control Your EBO SE, Controlled from Your Phone Remote controls and monitoring features are available through the compatible Enabot app on iOS and Android. Remote Control Move EBO SE through your home directly from your smartphone. Live Video Watch the live camera feed and capture photos or videos remotely. Multi-User Access The main account can manage access for additional approved family members. Technical Highlights Compact Design for Everyday Home Monitoring Small enough to move around the home, with dual-band Wi-Fi, local storage and automatic charging. Dimensions 95 × 95 × 89.2 mm Weight 280 ±20 g Resolution 1080P Camera Angle 118° Battery 2500 mAh Battery Life 4–7 Hours Charging 2–3 Hours Auto Recharge Infrared Wi-Fi 2.4 / 5 GHz Speed 20–60 cm/s Obstacle Height 5–6 mm Memory Up to 256 GB Full Specifications EBO SE at a Glance Model EBO SE Dimensions 95 × 95 × 89.2 mm Weight 280 ±20 g Material PC + ABS Camera Resolution 1080P Camera Angle — Diagonal 118° Camera Angle — Horizontal 98.5° Camera Angle — Vertical 62.5° Night Vision Supported Two-Way Voice Supported Video Communication One-Way Video Fixed-Point Security Recording Supported Motion Detection Supported App Notifications Supported Automatic Patrol Supported Battery Capacity 2500 mAh Charging Time Approximately 2–3 hours Battery Life Approximately 4–7 hours Automatic Recharge Infrared Wi-Fi 2.4 GHz / 5 GHz Speed 20–60 cm/s Default Speed 2nd Grade Obstacle Crossing Height Approximately 5–6 mm at normal speed Uphill Slope 4° on smooth tile flooring File Format AVI, JPG Maximum Memory Support Up to 256 GB Waterproof Not supported What's in the Box Everything You Need to Get Started 01 EBO SE Robot 02 Charging Dock 03 Charging Cable 04 Power Adapter 05 32 GB Memory Card 06 User Documentation Enabot EBO SE Stay Connected to Every Corner of Home EBO SE combines mobile 1080P monitoring, night vision, two-way voice, intelligent security features and automatic charging in one compact home companion robot. The product is covered by a 12-month warranty.
More you might like
Related
ENABOT EBO SE Wireless Camera Robot
Related
Enabot EBO SE Wireless Camera Robot
Related
Enabot EBO SE Wireless Pet Camera Robot
Related