*{
margin:0;
padding:0;
box-sizing:border-box;
}
html{
scroll-behavior:smooth;
}
body{
font-family:Arial, Helvetica, sans-serif;
background:#020817;
color:#f8fafc;
line-height:1.6;
overflow-x:hidden;
}
.parsed-container{
width:100%;
overflow:hidden;
}
.parsed-inner{
width:90%;
max-width:1280px;
margin:auto;
}
/* HEADER */
.parsed-header{
position:sticky;
top:0;
z-index:999;
background:rgba(2,8,23,0.94);
backdrop-filter:blur(10px);
border-bottom:1px solid rgba(255,255,255,0.06);
}
.parsed-nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 0;
}
.logo-wrap{
display:flex;
align-items:center;
gap:16px;
}
.logo-image{
width:56px;
height:56px;
border-radius:50%;
background:linear-gradient(145deg,#2563eb,#0f172a);
position:relative;
overflow:hidden;
}
.logo-image:before{
content:””;
position:absolute;
width:100%;
height:11px;
background:#ff6b00;
top:22px;
left:0;
}
.logo-image:after{
content:””;
position:absolute;
width:100%;
height:100%;
background:
repeating-linear-gradient(
to bottom,
transparent,
transparent 8px,
rgba(255,255,255,0.18) 8px,
rgba(255,255,255,0.18) 11px
);
}
.logo-text h1{
font-size:32px;
color:white;
font-weight:700;
}
.logo-text span{
color:#3b82f6;
}
.logo-text p{
font-size:11px;
letter-spacing:2px;
color:#cbd5e1;
margin-top:2px;
}
.nav-links{
display:flex;
gap:30px;
align-items:center;
}
.nav-links a{
text-decoration:none;
color:#e2e8f0;
font-size:14px;
font-weight:600;
}
.demo-btn{
background:#2563eb;
padding:13px 22px;
border-radius:14px;
}
/* HERO */
.hero{
padding:120px 0;
background:
linear-gradient(rgba(2,8,23,0.90),rgba(2,8,23,0.94)),
url(‘
https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?q=80&w=1800’);
background-size:cover;
background-position:center;
}
.hero-grid{
display:grid;
grid-template-columns:1.1fr 0.9fr;
gap:70px;
align-items:center;
}
.hero-tag{
display:inline-block;
padding:11px 18px;
border-radius:999px;
background:rgba(59,130,246,0.12);
border:1px solid rgba(59,130,246,0.28);
font-size:13px;
font-weight:bold;
margin-bottom:26px;
}
.hero h1{
font-size:72px;
line-height:1.02;
margin-bottom:28px;
}
.hero h1 span{
color:#3b82f6;
}
.hero p{
font-size:22px;
color:#cbd5e1;
margin-bottom:38px;
}
.hero-buttons{
display:flex;
gap:18px;
flex-wrap:wrap;
}
.primary-btn{
background:#2563eb;
padding:17px 30px;
border-radius:16px;
text-decoration:none;
font-weight:bold;
color:white;
}
.secondary-btn{
border:1px solid rgba(255,255,255,0.18);
padding:17px 30px;
border-radius:16px;
text-decoration:none;
font-weight:bold;
color:white;
}
.hero-stats{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:18px;
margin-top:50px;
}
.stat-box{
background:rgba(255,255,255,0.05);
padding:22px;
border-radius:22px;
text-align:center;
border:1px solid rgba(255,255,255,0.06);
}
.stat-box h3{
font-size:28px;
}
.stat-box p{
font-size:13px;
color:#cbd5e1;
}
/* HERO LOGO */
.hero-logo{
display:flex;
justify-content:center;
align-items:center;
}
.hero-globe{
width:380px;
height:380px;
border-radius:50%;
background:linear-gradient(145deg,#2563eb,#0f172a);
position:relative;
overflow:hidden;
}
.hero-globe:before{
content:””;
position:absolute;
width:100%;
height:22px;
background:#ff6b00;
top:175px;
left:0;
}
.hero-globe:after{
content:””;
position:absolute;
width:100%;
height:100%;
background:
repeating-linear-gradient(
to bottom,
transparent,
transparent 24px,
rgba(255,255,255,0.20) 24px,
rgba(255,255,255,0.20) 36px
);
}
/* SECTION */
.section{
padding:100px 0;
}
.section-title{
text-align:center;
margin-bottom:65px;
}
.section-title h2{
font-size:52px;
margin-bottom:18px;
}
.section-title p{
font-size:20px;
color:#94a3b8;
max-width:860px;
margin:auto;
}
/* INDUSTRIES */
.industries{
background:#071224;
}
.feature-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:24px;
}
.feature-box{
background:linear-gradient(145deg,#0f172a,#131f36);
padding:30px;
border-radius:24px;
border:1px solid rgba(255,255,255,0.05);
text-align:center;
}
.feature-icon{
width:54px;
height:54px;
margin:auto;
margin-bottom:18px;
border-radius:16px;
background:linear-gradient(145deg,#2563eb,#1d4ed8);
}
.feature-box h4{
font-size:20px;
}
/* PRICING */
.pricing{
background:#071224;
}
.pricing-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}
.price-card{
background:linear-gradient(145deg,#0f172a,#111c33);
padding:44px;
border-radius:32px;
border:1px solid rgba(255,255,255,0.08);
color:white;
}
.price-card.featured{
background:linear-gradient(145deg,#1d4ed8,#2563eb);
transform:scale(1.05);
}
.price-card h3{
font-size:30px;
margin-bottom:10px;
}
.price{
font-size:62px;
font-weight:bold;
margin:18px 0;
}
.price-list{
margin:30px 0;
padding:0;
}
.price-list li{
list-style:none;
margin-bottom:14px;
color:#e2e8f0;
}
.price-btn{
display:block;
text-align:center;
padding:17px;
border-radius:16px;
background:white;
color:#0f172a;
font-weight:bold;
text-decoration:none;
}
/* FOOTER */
.footer{
background:#01040c;
padding:70px 0;
color:#94a3b8;
}
/* MOBILE */
@media(max-width:1000px){
.hero-grid,
.feature-grid,
.pricing-grid{
grid-template-columns:1fr;
}
.hero h1{
font-size:48px;
}
.hero-stats{
grid-template-columns:repeat(2,1fr);
}
.nav-links{
display:none;
}
.hero-globe{
width:260px;
height:260px;
}
}
GLOBAL EXECUTIVE OPERATIONAL BRIEFINGS
Operational Intelligence for
Time-Critical Networks
Parsed One™ delivers executive operational briefings focused on aviation disruption, customs activity, severe weather, geopolitical events, logistics volatility, and operational risk impacting global transportation networks.
Enterprise
Operational Focus
Built for Critical Operations
Designed for organizations operating within time-sensitive, aviation-dependent, and operationally complex environments.
Global Operations Centers
Operational Risk Monitoring
Enterprise Subscription Plans
Operational intelligence subscriptions designed for logistics teams, operations leadership, and global network monitoring environments.
Essential
$750
Foundational operational intelligence for smaller logistics and operations teams.
- ✓ Up to 5 Users
- ✓ Daily Executive Briefings
- ✓ Global Monitoring Coverage
- ✓ Email Distribution
- ✓ Standard Intelligence Feeds
Request Demo
Professional
$3,250
Expanded operational intelligence for enterprise logistics and transportation teams.
- ✓ Up to 25 Users
- ✓ 2 Daily Executive Briefings
- ✓ Real-Time Operational Alerts
- ✓ Regional Intelligence Views
- ✓ Custom Watchlists
- ✓ Priority Intelligence Monitoring
Start Pilot Program
Enterprise
Custom
Dedicated operational intelligence integration for large-scale global organizations.
- ✓ Unlimited Users
- ✓ Dedicated Monitoring Environment
- ✓ Executive Escalation Tracking
- ✓ Customized Reporting & Distribution
- ✓ Multi-Region Operational Views
- ✓ Teams / Slack Integration
Schedule Consultation