:root {
  /* Brand palette — maritime navy */
  --navy: #0b2545;
  --navy-700: #13315c;
  --sea: #1b6ca8;
  --sea-light: #4a90c4;
  --teal: #2ec4b6;
  --teal-dark: #1fa295;

  --ink: #0b2545;
  --muted: #5b6b7f;
  --line: #e2e8f0;
  --bg: #ffffff;
  --bg-soft: #f4f7fb;
  --white: #ffffff;

  --radius: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 3px rgba(11, 37, 69, 0.08);
  --shadow-md: 0 8px 24px rgba(11, 37, 69, 0.1);
  --shadow-lg: 0 24px 60px rgba(11, 37, 69, 0.18);

  --maxw: 1140px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { line-height: 1.15; letter-spacing: -0.02em; margin: 0; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ol, ul { margin: 0; padding: 0; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}

.section { padding-block: 80px; }
.soft { background: var(--bg-soft); }

.center {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 44px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sea);
}

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: inherit;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--teal); color: var(--navy); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--teal-dark); color: var(--white); }
.btn-secondary { background: var(--white); color: var(--navy); border-color: var(--line); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.35); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); }
.btn-lg { padding: 15px 30px; font-size: 1.02rem; }
.btn-sm { padding: 8px 16px; font-size: 0.88rem; }

/* ── Header ──────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 24px; height: 68px; }
.brand { display: flex; align-items: center; gap: 8px; font-size: 1.2rem; font-weight: 600; color: var(--navy); }
.brand-mark { font-size: 1.3rem; }
.brand-name strong { color: var(--sea); }
.nav {
  display: flex; gap: 26px; margin-left: auto;
  font-weight: 500; font-size: 0.95rem; color: var(--muted);
}
.nav a:hover { color: var(--navy); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.lang-btn {
  font-weight: 600; font-size: 0.85rem; color: var(--muted);
  background: transparent; border: 1px solid var(--line); border-radius: 999px;
  padding: 6px 12px; cursor: pointer; font-family: inherit;
}
.lang-btn:hover { color: var(--navy); border-color: var(--sea); }

/* ── Hero ────────────────────────────────────────────── */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-700) 55%, var(--sea) 130%);
  color: #fff;
  padding-block: 72px 120px;
  overflow: hidden;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.hero-badge {
  display: inline-block; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--teal);
  background: rgba(46, 196, 182, 0.12); border: 1px solid rgba(46, 196, 182, 0.3);
  padding: 6px 14px; border-radius: 999px;
}
.hero-copy h1 { font-size: clamp(2rem, 4vw, 3.1rem); margin-top: 20px; font-weight: 800; }
.hero-sub { margin-top: 18px; font-size: 1.1rem; color: rgba(255, 255, 255, 0.82); max-width: 36ch; }
.hero-cards { display: grid; gap: 18px; }
.path-card {
  background: rgba(255, 255, 255, 0.97); color: var(--ink);
  border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-lg);
}
.path-card.crew { border-top: 4px solid var(--teal); }
.path-card.company { border-top: 4px solid var(--sea); }
.path-tag { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); }
.path-card h3 { font-size: 1.4rem; margin-top: 8px; }
.path-card p { margin-top: 10px; color: var(--muted); font-size: 0.97rem; }
.path-card .btn { margin-top: 18px; }
.hero-wave {
  position: absolute; left: 0; right: 0; bottom: -1px; height: 70px; background: var(--bg);
  clip-path: polygon(0 60%, 12% 52%, 28% 64%, 45% 50%, 62% 62%, 80% 48%, 100% 60%, 100% 100%, 0 100%);
}

/* ── Features ────────────────────────────────────────── */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.feature {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm);
}
.feature-dot {
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(135deg, var(--teal), var(--sea)); margin-bottom: 16px;
}
.feature h3 { font-size: 1.1rem; }
.feature p { margin-top: 8px; color: var(--muted); font-size: 0.93rem; }

/* ── How it works ────────────────────────────────────── */
.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.how-col { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; }
.how-col ol { margin: 20px 0 24px; list-style: none; counter-reset: step; }
.how-col li {
  counter-increment: step; position: relative;
  padding: 12px 0 12px 48px; border-bottom: 1px solid var(--line); font-weight: 500;
}
.how-col li:last-child { border-bottom: none; }
.how-col li::before {
  content: counter(step); position: absolute; left: 0; top: 10px;
  width: 30px; height: 30px; display: grid; place-items: center;
  background: var(--navy); color: #fff; border-radius: 50%; font-size: 0.85rem; font-weight: 700;
}

/* ── CTA band ────────────────────────────────────────── */
.cta-band { background: linear-gradient(120deg, var(--sea), var(--navy)); color: #fff; padding-block: 72px; text-align: center; }
.cta-band h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.cta-band p { margin-top: 12px; color: rgba(255, 255, 255, 0.85); }
.cta-buttons { display: flex; gap: 14px; justify-content: center; margin-top: 28px; flex-wrap: wrap; }

/* ── Footer ──────────────────────────────────────────── */
.site-footer { background: var(--navy); color: rgba(255, 255, 255, 0.78); padding-block: 56px 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.footer-brand .brand-name { font-size: 1.25rem; font-weight: 600; color: #fff; }
.footer-brand .brand-name strong { color: var(--teal); }
.footer-brand p { margin-top: 12px; max-width: 320px; font-size: 0.92rem; }
.footer-col h4 { color: #fff; font-size: 0.95rem; margin-bottom: 14px; }
.footer-col a { display: block; padding: 5px 0; font-size: 0.92rem; }
.footer-col a:hover { color: var(--teal); }
.footer-bottom {
  display: flex; justify-content: space-between; margin-top: 40px; padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12); font-size: 0.85rem; color: rgba(255, 255, 255, 0.55);
}

/* ── Inner page hero ─────────────────────────────────── */
.page-hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-700) 70%, var(--sea) 140%);
  color: #fff;
  padding-block: 72px 84px;
  text-align: center;
}
.page-hero .eyebrow { color: var(--teal); }
.page-hero h1 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); font-weight: 800; margin-top: 14px; }
.page-hero .lead {
  margin: 18px auto 0;
  max-width: 60ch;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.84);
}
.page-hero .cta-buttons { margin-top: 28px; }

/* ── Split (text + panel) ────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.split + .split { margin-top: 64px; }
.split h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.split p.section-lead { margin-top: 14px; color: var(--muted); font-size: 1.02rem; }

/* Checklist */
.check-list { margin-top: 20px; display: grid; gap: 12px; }
.check-list li { list-style: none; position: relative; padding-left: 34px; font-weight: 500; }
.check-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  width: 22px; height: 22px; display: grid; place-items: center;
  background: var(--teal); color: var(--navy); border-radius: 50%;
  font-size: 0.8rem; font-weight: 800;
}

/* Side panel card */
.panel {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.panel h3 { font-size: 1.1rem; margin-bottom: 14px; }
.panel .tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-block;
  background: var(--white); border: 1px solid var(--line);
  border-radius: 999px; padding: 7px 14px;
  font-size: 0.85rem; font-weight: 500; color: var(--navy);
}
.panel .note { margin-top: 16px; font-size: 0.86rem; color: var(--muted); }

/* Status pills (availability) */
.status-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.status-pill {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 14px; font-size: 0.88rem; font-weight: 600; background: var(--white);
}
.status-pill::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--teal); }
.status-pill.soon::before { background: #f4a261; }
.status-pill.onboard::before { background: var(--sea); }
.status-pill.date::before { background: var(--muted); }

/* ── Contact ─────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-info { display: grid; gap: 20px; }
.contact-item h4 { font-size: 0.95rem; color: var(--sea); }
.contact-item p, .contact-item a { margin-top: 4px; color: var(--ink); }
.contact-item a:hover { color: var(--sea); }
.form { display: grid; gap: 16px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; }
.form label { font-size: 0.88rem; font-weight: 600; display: block; margin-bottom: 6px; }
.form input, .form textarea, .form select {
  width: 100%; font-family: inherit; font-size: 0.95rem; color: var(--ink);
  border: 1px solid var(--line); border-radius: 10px; padding: 11px 13px; background: var(--white);
}
.form input:focus, .form textarea:focus, .form select:focus { outline: none; border-color: var(--sea); box-shadow: 0 0 0 3px rgba(27, 108, 168, 0.12); }
.form textarea { min-height: 120px; resize: vertical; }

/* ── Pricing ─────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.price-card.popular {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  position: relative;
}
.price-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: var(--navy);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 999px;
}
.price-plan { font-size: 1.15rem; font-weight: 700; }
.price-tagline { margin-top: 6px; color: var(--muted); font-size: 0.9rem; min-height: 38px; }
.price {
  margin-top: 16px; font-size: 2.2rem; font-weight: 800; color: var(--navy); line-height: 1;
}
.price-period { font-size: 0.9rem; font-weight: 500; color: var(--muted); }
.price-card .plan-list { margin-top: 20px; display: grid; gap: 11px; flex: 1; }
.plan-list li {
  list-style: none; position: relative; padding-left: 28px;
  font-size: 0.92rem; color: var(--ink);
}
.plan-list li::before {
  content: "✓"; position: absolute; left: 0; top: 1px;
  width: 18px; height: 18px; display: grid; place-items: center;
  background: rgba(46, 196, 182, 0.18); color: var(--teal-dark);
  border-radius: 50%; font-size: 0.7rem; font-weight: 800;
}
.price-card .btn { margin-top: 24px; }
.pricing-note { text-align: center; color: var(--muted); font-size: 0.9rem; margin-top: 28px; }

/* ── Legal / prose pages ─────────────────────────────── */
.legal { max-width: 820px; }
.legal h2 { font-size: 1.25rem; margin-top: 34px; }
.legal h2:first-child { margin-top: 0; }
.legal p { margin-top: 12px; color: #34465c; }
.legal ul { margin-top: 12px; padding-left: 22px; color: #34465c; }
.legal li { margin-top: 6px; }
.legal .updated { color: var(--muted); font-size: 0.88rem; margin-bottom: 8px; }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1040px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .split, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .pricing-grid { grid-template-columns: 1fr; }
}
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-sub { max-width: none; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav { display: none; }
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
@media (max-width: 620px) {
  .feature-grid, .how-grid { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .header-actions .btn-secondary { display: none; }
}
