:root {
  --bg: #f5f6f8;
  --bg-alt: #ffffff;
  --text: #10192b;
  --text-dim: #5b6472;
  --navy: #132a4c;
  --navy-deep: #0a1930;
  --line: #e2e5ea;
  --accent: #3d6ea5;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Header */
.site-header {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: var(--navy);
  white-space: nowrap;
}
.brand .llc {
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--text-dim);
}
nav { display: flex; gap: 28px; }
nav a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
}
nav a:hover { color: var(--navy); text-decoration: none; }

@media (max-width: 480px) {
  .site-header .wrap { height: auto; flex-wrap: wrap; padding: 14px 20px; gap: 10px; }
  .brand { font-size: 0.95rem; }
  nav { gap: 16px; }
  nav a { font-size: 0.85rem; }
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy-deep), var(--navy) 70%);
  color: #fff;
  overflow: hidden;
  padding: 96px 0 88px;
}
.hero-wave {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-wave .ocean-wave {
  fill: none;
  stroke: rgba(255,255,255,0.08);
  stroke-width: 1.5;
}

.hero-map-panel {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 420px;
  height: 252px;
  opacity: 0.9;
}
.hero-map-panel svg { display: block; width: 100%; height: 100%; }
.hero-map-panel .landmass {
  fill: rgba(255,255,255,0.08);
}
.hero-map-panel .landmass-dot {
  fill: rgba(255,255,255,0.08);
}
.hero-map-panel .route {
  fill: none;
  stroke: #9fc1e6;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 5 8;
  opacity: 0.65;
  animation: route-move 3s linear infinite;
}
@keyframes route-move {
  to { stroke-dashoffset: -13; }
}
.hero-map-panel .node {
  fill: #ffffff;
}
.hero-map-panel .node-label {
  fill: #9fc1e6;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-family: "Inter", sans-serif;
}
.hero-map-panel .cargo rect {
  fill: #ffffff;
}
.hero-map-panel .cargo line {
  stroke: var(--navy);
  stroke-width: 0.8;
}

@media (max-width: 860px) {
  .hero-map-panel { width: 280px; height: 168px; right: 12px; bottom: 12px; opacity: 0.75; }
}
@media (max-width: 600px) {
  .hero-map-panel { display: none; }
}
.hero-inner { position: relative; z-index: 1; max-width: 640px; }
.hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: #9fc1e6;
  font-weight: 600;
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 700;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}
.hero p {
  font-size: 1.1rem;
  color: #d7e2ee;
  margin: 0 0 32px;
  max-width: 540px;
}
.hero-media-note {
  font-size: 0.75rem;
  color: #6f8bab;
  margin-top: 40px;
}
.button {
  display: inline-block;
  background: #fff;
  color: var(--navy);
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 4px;
  font-size: 0.95rem;
}
.button:hover { text-decoration: none; background: #e9eef5; }
.button.outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.5);
}
.button.outline:hover { background: rgba(255,255,255,0.08); }

/* Sections */
.section { padding: 72px 0; }
.section-alt { background: var(--bg-alt); }
.section h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.section .lede {
  color: var(--text-dim);
  max-width: 620px;
  margin: 0 0 44px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 800px) {
  .grid-3 { grid-template-columns: 1fr; }
}

.card {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-left: 3px solid var(--navy);
  border-radius: 6px;
  padding: 28px;
}
.card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--navy);
}
.card p {
  font-size: 0.92rem;
  color: var(--text-dim);
  margin: 0;
}
.card a { font-weight: 500; }

/* Prose pages (About / Contact) */
.prose { max-width: 680px; }
.prose h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
}
.prose .meta { color: var(--text-dim); font-size: 0.9rem; margin: 0 0 32px; }
.prose p { margin: 0 0 20px; }
.prose strong { color: var(--navy); }

.contact-card {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 32px;
  margin-top: 8px;
}
.contact-card .label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 6px;
}
.contact-card .value {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 24px;
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: #9fb3cc;
  padding: 32px 0;
  font-size: 0.82rem;
}
.site-footer a { color: #cfe0f0; }
.site-footer .disclosure {
  margin-top: 10px;
  color: #6f8bab;
  max-width: 720px;
  line-height: 1.6;
}
