:root {
  --ink: #102f43;
  --ink-2: #1f4b61;
  --sea: #2f94b4;
  --aqua: #72ced1;
  --aqua-soft: #e8f8f8;
  --sky: #eaf6fb;
  --paper: #ffffff;
  --mist: #f5fafb;
  --line: #d9e8ed;
  --muted: #607887;
  --warm: #f4c98b;
  --danger: #a33d39;
  --shadow: 0 24px 70px rgba(16, 47, 67, .12);
  --shadow-sm: 0 12px 34px rgba(16, 47, 67, .09);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 17px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--warm); outline-offset: 4px; }

.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 999;
  padding: 10px 14px; background: var(--ink); color: white; border-radius: 10px;
  transform: translateY(-160%); transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }
.container { width: var(--container); margin-inline: auto; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.9);
  border-bottom: 1px solid rgba(217,232,237,.82);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand img { width: 48px; height: 48px; object-fit: contain; }
.brand-copy { line-height: 1.05; }
.brand-copy strong { display: block; font: 700 1.12rem/1.1 Georgia, serif; letter-spacing: -.025em; }
.brand-copy small { display: block; margin-top: 5px; color: var(--muted); font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: 5px; }
.nav a { padding: 10px 13px; border-radius: 999px; color: var(--ink-2); font-size: .92rem; font-weight: 700; }
.nav a:hover, .nav a[aria-current="page"] { background: var(--sky); color: var(--ink); }
.nav .nav-cta { margin-left: 7px; padding-inline: 18px; background: var(--ink); color: white; }
.nav .nav-cta:hover { background: var(--sea); color: white; }
.menu-button { display: none; border: 0; background: var(--sky); color: var(--ink); width: 46px; height: 46px; border-radius: 50%; cursor: pointer; }
.menu-button span, .menu-button::before, .menu-button::after { display: block; content: ""; width: 20px; height: 2px; background: currentColor; margin: 4px auto; transition: .2s; }
.menu-button[aria-expanded="true"] span { opacity: 0; }
.menu-button[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.menu-button[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }

.eyebrow { margin: 0 0 15px; color: var(--sea); font-size: .76rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; line-height: 1.08; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; letter-spacing: -.045em; }
h1 { font-size: clamp(3.1rem, 6.6vw, 6.4rem); }
h2 { font-size: clamp(2.15rem, 4.1vw, 4rem); }
h3 { font-size: 1.23rem; letter-spacing: -.02em; }
.lead { max-width: 700px; color: var(--ink-2); font-size: clamp(1.05rem, 1.7vw, 1.3rem); line-height: 1.6; }
.muted { color: var(--muted); }
.accent { color: var(--sea); font-style: italic; }
.section { padding: 104px 0; }
.section-soft { background: var(--mist); }
.section-dark { color: white; background: var(--ink); }
.section-dark .eyebrow { color: var(--aqua); }
.section-dark .lead, .section-dark .muted { color: #c7d8df; }
.section-head { display: grid; grid-template-columns: 1fr minmax(280px, .7fr); align-items: end; gap: 60px; margin-bottom: 48px; }
.section-head .lead { margin: 0; }

.button-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 21px; border: 1px solid transparent; border-radius: 999px;
  background: var(--ink); color: white; font-weight: 800; cursor: pointer;
  transition: transform .2s, background .2s, box-shadow .2s;
}
.button::after { content: "↗"; font-size: 1.05rem; }
.button-icon { width: 20px; height: 20px; flex: 0 0 20px; object-fit: contain; }
.button:hover { transform: translateY(-2px); background: var(--sea); box-shadow: var(--shadow-sm); }
.button-secondary { color: var(--ink); background: white; border-color: var(--line); }
.button-secondary:hover { color: white; border-color: var(--sea); }
.button-light { color: var(--ink); background: white; }
.button-aqua { color: var(--ink); background: var(--aqua); }

.hero { overflow: hidden; padding: 54px 0 42px; background: linear-gradient(135deg, var(--mist) 0%, var(--sky) 60%, #dff4f3 100%); }
.hero-grid { min-height: 650px; display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 48px; }
.hero-copy { position: relative; z-index: 2; }
.hero-copy .lead { margin: 26px 0 30px; }
.hero-note { margin-top: 20px; display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: .9rem; }
.hero-note::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--aqua); box-shadow: 0 0 0 5px rgba(114,206,209,.18); }
.hero-media { position: relative; align-self: stretch; min-height: 610px; }
.hero-media::before {
  content: ""; position: absolute; inset: 40px -80px -40px 10%; border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(114,206,209,.5), transparent 64%);
}
.hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 58% 30%; border-radius: var(--radius-xl); box-shadow: var(--shadow); }
.portrait-label {
  position: absolute; left: -26px; bottom: 34px; z-index: 2; max-width: 260px; padding: 18px 20px;
  color: white; background: rgba(16,47,67,.92); border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-md); backdrop-filter: blur(12px);
}
.portrait-label strong { display: block; font-size: 1rem; }
.portrait-label span { display: block; margin-top: 4px; color: #c9e1e8; font-size: .84rem; line-height: 1.4; }

.choice-band { position: relative; z-index: 5; margin-top: -1px; padding-bottom: 48px; background: linear-gradient(to bottom, var(--sky), white 72%); }
.choice-intro { display: flex; justify-content: space-between; gap: 30px; align-items: center; padding: 24px 0 20px; }
.choice-intro strong { font: 700 1.05rem/1.2 Georgia, serif; }
.choice-intro span { color: var(--muted); font-size: .9rem; }
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.choice-card {
  position: relative; min-height: 310px; overflow: hidden; padding: 34px;
  display: flex; flex-direction: column; justify-content: space-between;
  border-radius: var(--radius-lg); border: 1px solid var(--line); background: white;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.choice-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.choice-card::after { content: "↗"; position: absolute; right: 28px; top: 26px; font-size: 1.4rem; }
.choice-card.nautical { color: white; background: linear-gradient(145deg, #0f4359, #176a82); border-color: transparent; }
.choice-card .number { color: var(--sea); font-size: .8rem; font-weight: 900; letter-spacing: .18em; }
.choice-card.nautical .number { color: var(--aqua); }
.choice-card h2 { max-width: 520px; font-size: clamp(2rem, 3.4vw, 3.2rem); }
.choice-card p { max-width: 580px; margin: 18px 0 0; color: var(--muted); }
.choice-card.nautical p { color: #d4e7ec; }
.choice-pill { display: inline-flex; align-self: flex-start; margin-top: 26px; padding: 7px 11px; border-radius: 999px; background: var(--aqua-soft); font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.choice-card.nautical .choice-pill { color: var(--ink); background: var(--aqua); }

.trust-strip { border-block: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 28px 22px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; font-size: .96rem; }
.trust-item span { display: block; margin-top: 4px; color: var(--muted); font-size: .84rem; }

.about-grid { display: grid; grid-template-columns: .82fr 1.18fr; align-items: start; gap: 86px; }
.credential-card { padding: 30px; border-radius: var(--radius-lg); background: var(--sky); }
.credential-logo { width: min(230px, 100%); aspect-ratio: 16 / 9; object-fit: contain; padding: 12px; border-radius: 18px; background: white; box-shadow: var(--shadow-sm); }
.credential-card strong { display: block; margin-top: 24px; font-size: 1.25rem; }
.credential-list { display: grid; gap: 0; margin: 28px 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(16,47,67,.13); }
.credential-list li { padding: 15px 0; border-bottom: 1px solid rgba(16,47,67,.13); font-weight: 700; }
.about-copy p { color: var(--ink-2); font-size: 1.08rem; }
.about-copy .button-row { margin-top: 30px; }

.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: white; }
.card-icon { width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 34px; border-radius: 16px; background: var(--aqua-soft); color: var(--sea); font-size: 1.35rem; font-weight: 900; }
.card p { margin: 12px 0 0; color: var(--muted); }
.card ul { margin: 20px 0 0; padding: 18px 0 0; list-style: none; border-top: 1px solid var(--line); }
.card li { position: relative; margin: 9px 0; padding-left: 18px; color: var(--ink-2); font-size: .92rem; }
.card li::before { content: ""; position: absolute; left: 0; top: .72em; width: 6px; height: 6px; border-radius: 50%; background: var(--aqua); }

.page-hero { padding: 58px 0 74px; background: var(--mist); }
.page-hero-grid { min-height: 580px; display: grid; grid-template-columns: .94fr 1.06fr; gap: 56px; align-items: center; }
.page-hero h1 { font-size: clamp(3.2rem, 6vw, 5.8rem); }
.page-hero .lead { margin: 24px 0 30px; }
.page-hero-media { position: relative; min-height: 550px; }
.page-hero-media img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow); }
.page-hero.home .page-hero-media img { object-position: 62% center; }
.page-hero.nautical { color: white; background: var(--ink); }
.page-hero.nautical .lead { color: #d4e2e7; }
.page-hero.nautical .page-hero-media img { object-position: center 32%; }
.page-hero.nautical .page-hero-media::after { content: ""; position: absolute; inset: 0; border-radius: var(--radius-xl); box-shadow: inset 0 0 0 1px rgba(255,255,255,.2); pointer-events: none; }
.route-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 0; }
.route-chips span { padding: 7px 11px; border-radius: 999px; color: var(--ink-2); background: white; border: 1px solid var(--line); font-size: .78rem; font-weight: 800; }
.page-hero.nautical .route-chips span { color: white; background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.15); }

.subnav { position: sticky; top: 78px; z-index: 30; background: rgba(255,255,255,.94); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.subnav-inner { display: flex; gap: 4px; overflow-x: auto; scrollbar-width: none; padding: 10px 0; }
.subnav-inner::-webkit-scrollbar { display: none; }
.subnav a { white-space: nowrap; padding: 8px 12px; color: var(--muted); border-radius: 999px; font-size: .84rem; font-weight: 750; }
.subnav a:hover { color: var(--ink); background: var(--sky); }

.flow { display: grid; grid-template-columns: repeat(3, 1fr); }
.flow-step { padding: 30px; border-left: 1px solid var(--line); }
.flow-step:first-child { border-left: 0; }
.flow-step .step-number { display: block; margin-bottom: 34px; color: var(--sea); font-weight: 900; letter-spacing: .12em; }
.flow-step p { margin: 12px 0 0; color: var(--muted); }

.agent-panel { display: grid; grid-template-columns: .95fr 1.05fr; overflow: hidden; border-radius: var(--radius-xl); background: var(--ink); color: white; }
.agent-copy { padding: clamp(34px, 5vw, 64px); }
.agent-copy p { color: #c8dbe1; }
.agent-steps { padding: clamp(34px, 5vw, 64px); background: #153f53; }
.agent-step { display: grid; grid-template-columns: 42px 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.agent-step:last-child { border-bottom: 0; }
.agent-step span { color: var(--aqua); font-weight: 900; }
.agent-step p { margin: 4px 0 0; color: #c8dbe1; font-size: .9rem; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.price-card { position: relative; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: white; }
.price-card.featured { border-color: var(--sea); box-shadow: var(--shadow-sm); }
.price-label { color: var(--sea); font-size: .73rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.price { display: block; margin: 22px 0 4px; font: 700 3.5rem/1 Georgia, serif; letter-spacing: -.06em; }
.price-note { color: var(--muted); font-size: .86rem; }
.price-card ul { margin: 24px 0 0; padding: 22px 0 0; list-style: none; border-top: 1px solid var(--line); }
.price-card li { margin: 10px 0; color: var(--ink-2); font-size: .9rem; }
.program-bar { margin-top: 18px; padding: 22px 26px; border-radius: var(--radius-md); background: var(--sky); color: var(--ink-2); }

.faq { display: grid; gap: 10px; max-width: 880px; margin-inline: auto; }
.faq details { border: 1px solid var(--line); border-radius: var(--radius-md); background: white; }
.faq summary { position: relative; padding: 21px 58px 21px 22px; cursor: pointer; font-weight: 800; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 22px; top: 17px; color: var(--sea); font-size: 1.35rem; }
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 0; padding: 0 22px 22px; color: var(--muted); }

.case-study { display: grid; grid-template-columns: .8fr 1.2fr; overflow: hidden; border-radius: var(--radius-xl); background: var(--sky); }
.case-mark { min-height: 380px; padding: 38px; color: white; background: linear-gradient(145deg, var(--ink), #176b83); display: flex; flex-direction: column; justify-content: space-between; }
.case-mark .case-number { font: 700 6rem/1 Georgia, serif; color: var(--aqua); }
.case-copy { padding: clamp(34px, 5vw, 64px); }
.case-copy p { color: var(--ink-2); }
.fact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 30px; }
.fact { padding: 16px; border-radius: 14px; background: white; }
.fact span { display: block; color: var(--muted); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.fact strong { display: block; margin-top: 4px; }

.cta-panel { display: grid; grid-template-columns: 1.25fr .75fr; align-items: center; gap: 38px; padding: clamp(36px, 6vw, 70px); border-radius: var(--radius-xl); color: white; background: linear-gradient(135deg, var(--ink), #17677d); }
.cta-panel h2 { max-width: 720px; }
.cta-panel p { color: #c9dce3; }
.cta-actions { display: flex; flex-direction: column; gap: 10px; }
.emergency { margin-top: 18px; padding: 15px 18px; border-left: 4px solid var(--warm); background: #fff8ec; color: #603f1e; border-radius: 0 12px 12px 0; font-size: .88rem; }

.site-footer { padding: 58px 0 28px; background: #0b2839; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .7fr; gap: 48px; }
.footer-grid .brand-copy small { color: #aac3ce; }
.footer-title { margin-bottom: 14px; color: var(--aqua); font-size: .72rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.footer-links { display: grid; gap: 8px; color: #d2e1e6; }
.footer-contact-link { display: inline-flex; align-items: center; gap: 9px; width: fit-content; }
.footer-contact-link img { width: 18px; height: 18px; flex: 0 0 18px; object-fit: contain; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 42px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: #9fb9c4; font-size: .8rem; }
.legal-links { display: flex; flex-wrap: wrap; gap: 18px; }
.legal-links a { display: inline-flex; align-items: center; min-height: 44px; color: #d9e8ed; text-decoration: underline; text-underline-offset: 3px; }
.site-footer { padding-bottom: 100px; }

.mobile-contact { display: none; }
body.agent-open { overflow: hidden; }
.agent-shell[hidden] { display: none !important; }
.agent-close {
  position: fixed; top: max(16px, env(safe-area-inset-top)); right: max(16px, env(safe-area-inset-right)); z-index: 2147483647;
  display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 0 15px;
  color: white; background: var(--ink); border: 1px solid rgba(255,255,255,.3); border-radius: 999px;
  box-shadow: var(--shadow); font-weight: 800; cursor: pointer;
}
.agent-close:hover { background: var(--sea); }
.agent-close-mark { font-size: 1.35rem; font-weight: 400; line-height: 1; }
.agent-launcher {
  position: fixed; right: 18px; bottom: 18px; z-index: 45;
  display: inline-flex; align-items: center; gap: 10px; min-height: 54px; padding: 0 18px;
  color: white; background: var(--ink); border: 1px solid rgba(255,255,255,.2); border-radius: 999px; box-shadow: var(--shadow); font-weight: 800; cursor: pointer;
  transition: opacity .2s, background .2s;
}
body.agent-open .agent-launcher { opacity: 0; visibility: hidden; pointer-events: none; }
.agent-launcher .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--aqua); box-shadow: 0 0 0 5px rgba(114,206,209,.16); }
elevenlabs-convai[hidden] { display: none !important; }

[data-reveal] { opacity: 1; transform: none; }
[data-reveal].revealed { opacity: 1; transform: none; }

@media (max-width: 980px) {
  :root { --container: min(100% - 32px, 760px); }
  .menu-button { display: block; }
  .nav {
    position: fixed; inset: 79px 0 auto; display: grid; align-content: start; gap: 4px; padding: 20px 16px 30px;
    background: white; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-sm);
    transform: translateY(-130%); opacity: 0; visibility: hidden; transition: .25s;
  }
  .nav.open { transform: none; opacity: 1; visibility: visible; }
  .nav a { padding: 14px 18px; }
  .nav .nav-cta { margin: 6px 0 0; text-align: center; }
  .hero-grid, .page-hero-grid { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; }
  .hero-media { min-height: 520px; }
  .page-hero-media { min-height: 540px; }
  .choice-grid, .pricing-grid, .cards-3 { grid-template-columns: 1fr; }
  .choice-card { min-height: 260px; }
  .section-head, .about-grid, .agent-panel, .case-study, .cta-panel { grid-template-columns: 1fr; gap: 34px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .flow { grid-template-columns: 1fr; }
  .flow-step { border-left: 0; border-top: 1px solid var(--line); }
  .flow-step:first-child { border-top: 0; }
  .cta-actions { flex-direction: row; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  :root { --container: calc(100% - 28px); --radius-xl: 24px; --radius-lg: 20px; }
  .header-inner { min-height: 70px; }
  .brand img { width: 42px; height: 42px; }
  .brand-copy small { display: none; }
  .nav { inset-block-start: 71px; }
  .section { padding: 72px 0; }
  .hero { padding-top: 26px; }
  .hero-grid { gap: 30px; }
  h1 { font-size: clamp(3rem, 15vw, 4.3rem); }
  .hero-media { min-height: 440px; }
  .portrait-label { left: 12px; right: 12px; bottom: 14px; max-width: none; }
  .choice-intro { display: block; }
  .choice-intro span { display: block; margin-top: 5px; }
  .choice-card { padding: 26px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .page-hero { padding: 34px 0 50px; }
  .page-hero-grid { gap: 34px; min-height: auto; }
  .page-hero h1 { font-size: clamp(3rem, 14vw, 4.2rem); }
  .page-hero-media { min-height: 420px; }
  .subnav { top: 70px; }
  .section-head { margin-bottom: 34px; }
  .cards-3 { gap: 12px; }
  .card { padding: 24px; }
  .pricing-grid { gap: 12px; }
  .fact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child { grid-column: auto; }
  .footer-bottom { display: grid; }
  .agent-launcher { left: 14px; right: 14px; bottom: 14px; justify-content: center; }
  .agent-close { top: max(10px, env(safe-area-inset-top)); right: max(10px, env(safe-area-inset-right)); }
  .mobile-contact { display: block; height: 78px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

.reading-content { max-width: 850px; }
.reading-content { width: min(850px, calc(100% - 40px)); }
h1, h2, h3 { overflow-wrap: anywhere; }
@media (max-width: 600px) { .hero .reading-content h1 { font-size: clamp(2.25rem, 9vw, 3.2rem); } }
.reading-content h2 { margin-top: 1.5em; }
.agent-notice { position: fixed; top: 72px; right: 16px; z-index: 2147483647; max-width: min(380px, calc(100vw - 32px)); padding: 12px; background: white; color: #092f4a; border: 1px solid #c7d9dd; border-radius: 12px; font-size: .8rem; }
.agent-notice a { text-decoration: underline; }
