@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,600;0,700;0,800;0,900;1,700;1,800&family=Barlow:wght@400;500;600;700&display=swap');

:root {
  --ink: #071522;
  --navy: #061827;
  --navy-2: #09263a;
  --navy-3: #0d3349;
  --ocean: #087b8c;
  --cyan: #23c5cf;
  --cyan-soft: #a8f0ef;
  --orange: #ff5a36;
  --orange-dark: #dc3d1e;
  --foam: #f4f7f4;
  --sand: #e8e5db;
  --paper: #ffffff;
  --steel: #8ea3ad;
  --muted: #607581;
  --line: #cfdadd;
  --line-dark: rgba(194, 223, 229, .18);
  --shadow: 0 24px 65px rgba(1, 17, 29, .2);
  --shadow-hard: 10px 10px 0 rgba(4, 29, 45, .12);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--foam);
  font-family: 'Barlow', sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body::selection { background: var(--cyan); color: var(--navy); }
h1, h2, h3, h4 {
  margin: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  line-height: .96;
  letter-spacing: -.025em;
  text-transform: uppercase;
}
h1 { font-size: clamp(4rem, 8.6vw, 8.6rem); }
h2 { font-size: clamp(2.75rem, 5.6vw, 5.5rem); }
h3 { font-size: 1.75rem; }
p { margin: 0 0 1rem; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
img { max-width: 100%; }
picture { display: block; }
.wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.skip {
  position: fixed;
  left: 14px;
  top: -90px;
  z-index: 100;
  padding: 11px 16px;
  background: var(--orange);
  color: var(--navy);
  font-weight: 800;
}
.skip:focus { top: 14px; }

/* Shared brand and navigation */
.announcement {
  min-height: 35px;
  padding: 8px 18px;
  background: var(--orange);
  color: #20130f;
  text-align: center;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.announcement a { margin-left: 12px; text-decoration-thickness: 2px; }
.site-head {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(6, 24, 39, .96);
  border-bottom: 1px solid rgba(120, 213, 219, .18);
  backdrop-filter: blur(14px);
}
.head-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  width: 240px;
  height: 66px;
  flex: none;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 4px;
  background-color: #fff;
  background-image: url('/assets/img/charterosprey-brand.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  box-shadow: 0 7px 20px rgba(0, 0, 0, .2);
  color: transparent;
  font-size: 0;
}
.brand-mark { display: none; }
.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 23px;
  color: #d8e5e8;
}
.nav a {
  position: relative;
  text-decoration: none;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .075em;
  text-transform: uppercase;
}
.nav a:not(.button)::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--cyan);
  transition: right .2s ease;
}
.nav a:not(.button):hover::after,
.nav a[aria-current='page']::after { right: 0; }
.nav-toggle {
  display: none;
  margin-left: auto;
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 3px;
  background: transparent;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
}

/* Buttons */
.button {
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 21px;
  border: 2px solid transparent;
  border-radius: 3px;
  color: var(--navy);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .98rem;
  font-weight: 900;
  letter-spacing: .055em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translate(-2px, -2px); }
.button-primary {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 5px 5px 0 rgba(142, 31, 10, .38);
}
.button-primary:hover { background: #ff7658; }
.button-dark { background: var(--navy); color: #fff; border-color: var(--navy); }
.button-light { background: #fff; color: var(--navy); border-color: #fff; }
.button-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.hero .button-outline, .section-dark .button-outline, .page-hero .button-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, .55);
}
.button-lg { min-height: 54px; padding: 15px 27px; font-size: 1.08rem; }

/* Shared type treatments */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 17px;
  color: var(--ocean);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: '';
  width: 32px;
  height: 4px;
  background: var(--orange);
  clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%);
}
.hero .eyebrow, .page-hero .eyebrow, .section-dark .eyebrow, .signup-aside .eyebrow { color: var(--cyan-soft); }
.accent { color: var(--cyan); }
.orange { color: var(--orange); }
.lede { font-size: 1.15rem; color: var(--muted); }

/* Home hero */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  display: grid;
  align-items: center;
  padding: 88px 0 96px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(34, 197, 207, .07) 1px, transparent 1px) 0 0 / 52px 52px,
    linear-gradient(rgba(34, 197, 207, .07) 1px, transparent 1px) 0 0 / 52px 52px,
    radial-gradient(circle at 83% 28%, rgba(34, 197, 207, .18), transparent 24%),
    linear-gradient(118deg, #04121f 0%, #071f31 58%, #0a3447 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(150deg, transparent 0 68%, rgba(255, 90, 54, .08) 68% 70%, transparent 70%);
}
.hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 12px;
  background: linear-gradient(90deg, var(--orange) 0 30%, var(--cyan) 30% 68%, #fff 68%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 58px;
  align-items: center;
}
.hero h1 { max-width: 730px; }
.hero-copy > p {
  max-width: 660px;
  margin: 25px 0 31px;
  color: #c1d2d8;
  font-size: clamp(1.06rem, 2vw, 1.25rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.micro-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 23px;
  margin-top: 29px;
  color: #aac0c7;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .055em;
  text-transform: uppercase;
}
.micro-proof span::before { content: '✓'; margin-right: 7px; color: var(--cyan); }
.hero-rig { position: relative; }
.hero-photo-card {
  position: relative;
  z-index: 2;
  height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: var(--radius);
  background: #0a3140;
  box-shadow: 14px 14px 0 rgba(0, 0, 0, .22), var(--shadow);
  transform: rotate(-.65deg);
}
.hero-photo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 17, 27, .03) 35%, rgba(3, 17, 27, .72) 100%);
  pointer-events: none;
}
.hero-photo-card > picture,
.hero-photo-card > picture img {
  width: 100%;
  height: 100%;
}
.hero-photo-card > picture img { display: block; object-fit: cover; object-position: 53% center; }
.transom-card {
  position: absolute;
  z-index: 3;
  top: 17px;
  left: 17px;
  width: 65%;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 4px;
  background: #fff;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, .25);
  transform: rotate(-1deg);
}
.hero-brand-art { width: 100%; display: block; }
.photo-badge {
  position: absolute;
  z-index: 3;
  right: 17px;
  bottom: 18px;
  padding: 9px 13px;
  background: var(--orange);
  color: var(--navy);
  font: 900 .8rem 'Barlow Condensed';
  letter-spacing: .06em;
  text-transform: uppercase;
  transform: rotate(1deg);
}
.console {
  position: relative;
  z-index: 3;
  width: 94%;
  margin: -67px 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(120, 214, 220, .28);
  border-radius: var(--radius);
  background: #061522;
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}
.console-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 12px 15px;
  border-bottom: 1px solid var(--line-dark);
  color: #d6e7ea;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.live-dot { color: var(--cyan); }
.live-dot::before {
  content: '';
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(35, 197, 207, .12);
}
.console-body { padding: 17px; }
.console-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.console-stat { padding: 12px; border: 1px solid var(--line-dark); background: #0a2434; }
.console-stat span { display: block; color: var(--steel); font-size: .62rem; font-weight: 700; text-transform: uppercase; }
.console-stat strong { display: block; margin-top: 5px; color: #fff; font: 800 1.45rem 'Barlow Condensed'; }
.trip-board { margin-top: 12px; border: 1px solid var(--line-dark); }
.trip-row {
  display: grid;
  grid-template-columns: .75fr 1.25fr auto;
  gap: 10px;
  padding: 10px 12px;
  color: #d6e1e5;
  font-size: .75rem;
}
.trip-row + .trip-row { border-top: 1px solid var(--line-dark); }
.trip-row b { color: #fff; }
.trip-row .ready { color: var(--cyan); font-weight: 800; }
.rig-tag {
  position: absolute;
  z-index: 5;
  right: -13px;
  bottom: 30px;
  padding: 10px 15px;
  background: var(--orange);
  color: var(--navy);
  font: 900 .9rem 'Barlow Condensed';
  letter-spacing: .05em;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

.proof-strip { background: #02111d; color: #fff; border-bottom: 1px solid rgba(255, 255, 255, .08); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-item { padding: 25px 22px; border-right: 1px solid rgba(255, 255, 255, .11); }
.proof-item:last-child { border-right: 0; }
.proof-item strong { display: block; font: 800 1.65rem 'Barlow Condensed'; text-transform: uppercase; }
.proof-item span { color: var(--steel); font-size: .78rem; }

/* Sections and content cards */
.section { padding: 104px 0; }
.section-soft { background: var(--sand); }
.section-dark {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(35, 197, 207, .06) 25%, transparent 25%) 0 0 / 44px 44px,
    var(--navy);
}
.section-head { max-width: 810px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head p { max-width: 730px; margin-top: 19px; color: var(--muted); font-size: 1.06rem; }
.section-head.center p { margin-left: auto; margin-right: auto; }
.section-dark .section-head p { color: #aebfc6; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }
.feature {
  position: relative;
  min-height: 245px;
  padding: 27px;
  overflow: hidden;
  border: 1px solid #c7d3d7;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-hard);
}
.feature::after {
  content: '';
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 80px;
  height: 80px;
  border: 15px solid rgba(8, 123, 140, .08);
  border-radius: 50%;
}
.feature-kicker {
  display: inline-flex;
  min-width: 44px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 42px;
  padding: 0 10px;
  background: var(--navy);
  color: var(--cyan);
  font: 900 1rem 'Barlow Condensed';
  clip-path: polygon(0 0, 100% 0, 87% 100%, 0 100%);
}
.feature h3 { margin-bottom: 10px; }
.feature p { color: var(--muted); font-size: .94rem; }
.feature a { color: var(--ocean); font-weight: 800; }
.photo-deck {
  display: grid;
  grid-template-columns: 1.55fr .85fr;
  grid-template-rows: repeat(2, 215px);
  gap: 16px;
  margin-top: 58px;
}
.photo-card {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid #aebec3;
  background: var(--navy);
  box-shadow: var(--shadow-hard);
}
.photo-card-wide { grid-row: 1 / -1; }
.photo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 36%, rgba(2, 15, 25, .9) 100%);
  pointer-events: none;
}
.photo-card picture,
.photo-card img { width: 100%; height: 100%; }
.photo-card img { display: block; object-fit: cover; transition: transform .5s ease; }
.photo-card:hover img { transform: scale(1.025); }
.photo-card:nth-child(2) img { object-position: center 40%; }
.photo-card:nth-child(3) img { object-position: center 45%; }
.photo-card figcaption {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 20px;
  color: #fff;
}
.photo-card figcaption span,
.about-water-photo figcaption span {
  display: block;
  margin-bottom: 5px;
  color: var(--cyan-soft);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.photo-card figcaption strong,
.about-water-photo figcaption strong {
  display: block;
  font: 800 clamp(1.35rem, 2.8vw, 2.4rem)/1 'Barlow Condensed';
  text-transform: uppercase;
}
.feature-deck { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.deck-card {
  position: relative;
  min-height: 330px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid #c7d3d7;
  background: #fff;
  box-shadow: var(--shadow-hard);
}
.deck-card:nth-child(3n + 1) { background: var(--navy); color: #fff; border-color: var(--navy); }
.deck-number {
  position: absolute;
  top: 14px;
  right: 22px;
  color: rgba(6, 24, 39, .07);
  font: 900 8rem/.8 'Barlow Condensed';
}
.deck-card:nth-child(3n + 1) .deck-number { color: rgba(255, 255, 255, .07); }
.deck-card h2 { max-width: 470px; font-size: clamp(2.35rem, 4vw, 4rem); }
.deck-card p { max-width: 550px; margin-top: 17px; color: var(--muted); }
.deck-card:nth-child(3n + 1) p { color: #b2c4ca; }
.tag-list { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 25px; }
.tag {
  padding: 7px 10px;
  border: 1px solid #b8c7cb;
  border-radius: 2px;
  background: #eef5f4;
  color: #155c64;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.deck-card:nth-child(3n + 1) .tag { border-color: rgba(255, 255, 255, .2); background: rgba(35, 197, 207, .1); color: var(--cyan-soft); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.checklist { list-style: none; margin: 27px 0; padding: 0; }
.checklist li { position: relative; padding: 11px 0 11px 30px; border-bottom: 1px solid var(--line); }
.checklist li::before { content: '✓'; position: absolute; left: 0; color: var(--orange); font-weight: 900; }
.section-dark .checklist li, .signup-aside .checklist li { border-bottom-color: rgba(255, 255, 255, .14); }
.flow-card { overflow: hidden; border: 1px solid #bbc9cd; background: #fff; color: var(--ink); box-shadow: var(--shadow-hard); }
.flow-step { display: grid; grid-template-columns: 62px 1fr; gap: 16px; padding: 18px 20px; }
.flow-step + .flow-step { border-top: 1px solid var(--line); }
.flow-step > b {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--cyan);
  font: 900 1.35rem 'Barlow Condensed';
  transform: skew(-7deg);
}
.flow-step p { margin: 4px 0 0; color: var(--muted); font-size: .9rem; }

.captain-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  border: 1px solid rgba(255, 255, 255, .15);
  background: #03121e;
  box-shadow: var(--shadow);
}
.captain-copy { padding: 42px; }
.captain-copy p { color: #adc0c6; }
.captain-ops { min-width: 0; border-left: 1px solid rgba(255, 255, 255, .12); background: #081f2e; }
.captain-photo {
  position: relative;
  height: 285px;
  margin: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.captain-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(3, 18, 30, .88) 100%);
}
.captain-photo picture,
.captain-photo img { width: 100%; height: 100%; }
.captain-photo img { display: block; object-fit: cover; object-position: center 48%; }
.captain-photo figcaption {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 19px;
  color: #fff;
  font: 800 1.35rem 'Barlow Condensed';
  text-transform: uppercase;
}
.captain-readout { padding: 27px; background: #081f2e; }
.readout-line { display: grid; grid-template-columns: 92px 1fr auto; gap: 12px; padding: 13px 0; border-bottom: 1px solid rgba(255, 255, 255, .1); color: #c7d5da; font-size: .83rem; }
.readout-line b { color: #fff; }
.readout-line span:last-child { color: var(--cyan); font-weight: 800; }

.quote-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 17px; }
.quote { padding: 35px; background: #fff; color: var(--ink); box-shadow: 9px 9px 0 rgba(35, 197, 207, .22); }
.quote blockquote { margin: 0 0 26px; font: 800 clamp(1.55rem, 3vw, 2.3rem)/1.12 'Barlow Condensed'; text-transform: uppercase; }
.quote cite { color: var(--muted); font-style: normal; font-size: .82rem; }
.quote-small { background: var(--orange); box-shadow: 9px 9px 0 rgba(0, 0, 0, .25); }
.quote-small .metric { display: block; font: 900 5rem/.8 'Barlow Condensed'; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; align-items: stretch; }
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 31px;
  border: 1px solid #c6d2d5;
  background: #fff;
  box-shadow: var(--shadow-hard);
}
.price-card.featured { color: #fff; border-color: var(--navy); background: var(--navy); transform: translateY(-12px); }
.popular {
  position: absolute;
  right: 16px;
  top: -14px;
  padding: 7px 12px;
  background: var(--orange);
  color: var(--navy);
  font: 900 .75rem 'Barlow Condensed';
  letter-spacing: .06em;
  text-transform: uppercase;
}
.price { margin: 22px 0 7px; color: var(--navy); font: 900 4rem/.9 'Barlow Condensed'; }
.featured .price { color: #fff; }
.price small { color: var(--muted); font: 600 .85rem 'Barlow'; }
.featured .price small, .featured p { color: #aebfc5; }
.price-card > p { color: var(--muted); }
.price-card ul { flex: 1; list-style: none; padding: 17px 0 20px; }
.price-card li { padding: 8px 0; border-bottom: 1px solid #e1e8ea; font-size: .9rem; }
.featured li { border-bottom-color: rgba(255, 255, 255, .12); }
.price-card li::before { content: '✓'; margin-right: 8px; color: var(--ocean); font-weight: 900; }
.featured li::before { color: var(--cyan); }
.featured .button-primary { box-shadow: 5px 5px 0 rgba(255, 255, 255, .14); }

/* FAQ, page heroes, legal */
.faq { max-width: 860px; margin: 0 auto; }
.faq details { border-bottom: 1px solid #aebec3; padding: 21px 0; }
.faq summary { display: flex; justify-content: space-between; gap: 25px; cursor: pointer; list-style: none; font: 800 1.32rem 'Barlow Condensed'; text-transform: uppercase; }
.faq summary::after { content: '+'; color: var(--orange); font-size: 1.5rem; }
.faq details[open] summary::after { content: '−'; }
.faq details p { max-width: 760px; padding: 13px 35px 0 0; color: var(--muted); }
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 79px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(35, 197, 207, .08) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(rgba(35, 197, 207, .08) 1px, transparent 1px) 0 0 / 48px 48px,
    var(--navy);
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -100px;
  bottom: -180px;
  width: 430px;
  height: 430px;
  border: 70px solid rgba(35, 197, 207, .09);
  border-radius: 50%;
}
.page-hero h1 { max-width: 980px; font-size: clamp(4rem, 8vw, 7.8rem); }
.page-hero p { max-width: 760px; margin-top: 22px; color: #bbccd2; font-size: 1.1rem; }
.page-hero > .wrap { position: relative; z-index: 2; }
.page-hero-photo { min-height: 500px; display: grid; align-items: center; }
.page-hero-photo::before {
  content: '';
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 17, 28, .96) 0%, rgba(3, 17, 28, .85) 47%, rgba(3, 17, 28, .28) 100%);
}
.page-hero-media {
  position: absolute;
  inset: 0;
}
.page-hero-media,
.page-hero-media img { width: 100%; height: 100%; }
.page-hero-media img { display: block; object-fit: cover; object-position: center 58%; }
.page-hero-photo::after { z-index: 1; border-color: rgba(255, 255, 255, .1); }
.field-proof { display: grid; grid-template-columns: .82fr 1.18fr; gap: 76px; align-items: center; }
.field-proof-media {
  position: relative;
  height: 590px;
  margin: 0;
  border: 1px solid #a6b7bc;
  background: var(--navy);
  box-shadow: 12px 12px 0 rgba(6, 24, 39, .15);
}
.field-proof-media picture,
.field-proof-media img { width: 100%; height: 100%; }
.field-proof-media img { display: block; object-fit: cover; }
.field-proof-media figcaption {
  position: absolute;
  right: -18px;
  bottom: 24px;
  max-width: 280px;
  padding: 12px 16px;
  background: var(--orange);
  color: var(--navy);
  font: 900 1rem 'Barlow Condensed';
  letter-spacing: .035em;
  text-transform: uppercase;
}
.field-proof-copy .lede { margin-top: 22px; }
.about-water-photo {
  position: relative;
  height: 510px;
  margin: 62px 0 0;
  overflow: hidden;
  border: 1px solid #a6b7bc;
  background: var(--navy);
  box-shadow: var(--shadow-hard);
}
.about-water-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(2, 15, 25, .9) 100%);
}
.about-water-photo picture,
.about-water-photo img { width: 100%; height: 100%; }
.about-water-photo img { display: block; object-fit: cover; object-position: center 45%; }
.about-water-photo figcaption {
  position: absolute;
  z-index: 2;
  left: 34px;
  right: 34px;
  bottom: 29px;
  max-width: 700px;
  color: #fff;
}
.legal { max-width: 900px; padding: 42px; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-hard); }
.legal h2 { margin: 38px 0 13px; font-size: 2rem; }
.legal h3 { margin: 26px 0 8px; font-size: 1.35rem; }
.legal p, .legal li { color: #455e69; }
.legal .updated { padding: 13px 15px; border-left: 5px solid var(--orange); background: #eff4f3; }

/* Signup */
.signup-shell { min-height: calc(100vh - 84px); display: grid; grid-template-columns: .88fr 1.12fr; }
.signup-aside {
  position: relative;
  overflow: hidden;
  padding: 68px max(38px, calc((100vw - 1180px) / 2));
  padding-right: 54px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(35, 197, 207, .06) 1px, transparent 1px) 0 0 / 45px 45px,
    linear-gradient(rgba(35, 197, 207, .06) 1px, transparent 1px) 0 0 / 45px 45px,
    var(--navy);
}
.signup-aside::after {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  left: -150px;
  bottom: -170px;
  border: 65px solid rgba(255, 90, 54, .11);
  border-radius: 50%;
}
.signup-aside h2 { font-size: clamp(3.2rem, 6vw, 5.5rem); }
.signup-aside p { margin-top: 21px; color: #b6c8cd; }
.signup-aside .brand-plate { margin: 0 0 50px; }
.signup-main { padding: 62px max(38px, calc((100vw - 1180px) / 2)); padding-left: 62px; background: #fff; }
.signup-main h1 { font-size: clamp(3rem, 5vw, 5rem); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 29px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.wide { grid-column: 1 / -1; }
.field label { color: var(--navy); font-size: .78rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #9fb2b9;
  border-radius: 2px;
  background: #f8faf9;
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid rgba(35, 197, 207, .2); border-color: var(--ocean); }
.slug-field { display: flex; align-items: center; overflow: hidden; border: 1px solid #9fb2b9; background: #f8faf9; }
.slug-field span { padding-left: 12px; color: var(--muted); font-size: .82rem; }
.slug-field input { flex: 1; border: 0; }
.hint { color: var(--muted); font-size: .74rem; }
.slug-state.ok { color: var(--ocean); }
.slug-state.bad, .form-error { color: #a32915; }
.terms-row { display: flex; align-items: flex-start; gap: 9px; margin: 18px 0; color: var(--muted); font-size: .8rem; }
.terms-row input { margin-top: 4px; }
.form-error, .form-success { margin-top: 15px; padding: 11px 13px; border-left: 5px solid currentColor; background: #f7efec; }
.form-success { color: #08635d; background: #e7f5f2; }
.brand-plate { max-width: 440px; padding: 10px; border: 1px solid #d5dddf; background: #fff; box-shadow: 8px 8px 0 rgba(0, 0, 0, .2); }
.brand-plate img { display: block; }

/* CTAs and footer */
.cta-band { position: relative; overflow: hidden; padding: 72px 0; background: var(--orange); color: #1b1512; }
.cta-band::after {
  content: '';
  position: absolute;
  right: -70px;
  top: -120px;
  width: 300px;
  height: 300px;
  border: 60px solid rgba(5, 26, 40, .1);
  border-radius: 50%;
}
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.cta-inner h2 { max-width: 820px; }
.site-foot { padding: 61px 0 24px; color: #fff; background: #020f19; }
.foot-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 42px; }
.foot-brand .brand { width: 280px; height: 86px; }
.foot-brand p { max-width: 340px; margin-top: 17px; color: #8fa6ae; }
.foot-col h4 { margin-bottom: 15px; color: var(--cyan); font-size: .9rem; letter-spacing: .08em; }
.foot-col a { display: block; padding: 4px 0; color: #bdccd1; text-decoration: none; font-size: .86rem; }
.foot-col a:hover { color: #fff; }
.foot-bottom { display: flex; justify-content: space-between; gap: 22px; margin-top: 42px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .11); color: #758e97; font-size: .74rem; }
.foot-bottom a { color: #b7c8ce; }

.reveal { opacity: 0; transform: translateY(17px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .button:hover { transform: none; }
}

@media (max-width: 980px) {
  .brand { width: 205px; height: 58px; }
  .nav { gap: 15px; }
  .hero-grid, .split, .captain-panel, .signup-shell, .field-proof { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 72px; }
  .hero-rig { max-width: 720px; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-item:nth-child(-n + 2) { border-bottom: 1px solid rgba(255, 255, 255, .11); }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .captain-ops { border-left: 0; border-top: 1px solid rgba(255, 255, 255, .12); }
  .field-proof-media { width: min(620px, 100%); height: 620px; }
  .signup-main { padding: 55px 34px; }
  .signup-aside { padding: 55px 34px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .head-inner { min-height: 74px; }
  .brand { width: 190px; height: 55px; }
  .nav-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 74px;
    padding: 20px;
    align-items: stretch;
    flex-direction: column;
    background: #041522;
    border-bottom: 1px solid var(--line-dark);
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav a { padding: 6px 0; }
  .nav .button { width: 100%; }
  .photo-deck { grid-template-columns: 1fr; grid-template-rows: 400px 280px 280px; }
  .photo-card-wide { grid-row: auto; }
  .feature-deck { grid-template-columns: 1fr; }
  .quote-grid, .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
  .wrap { width: min(100% - 28px, 1180px); }
  .announcement { font-size: .67rem; }
  h1 { font-size: clamp(3.7rem, 18vw, 5.2rem); }
  h2 { font-size: clamp(2.7rem, 13vw, 4rem); }
  .hero { padding: 58px 0 77px; }
  .hero-grid { gap: 45px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-photo-card { height: 350px; }
  .transom-card { width: 72%; padding: 6px; }
  .console { width: 100%; margin-top: -35px; }
  .console-stats { grid-template-columns: 1fr; }
  .trip-row { grid-template-columns: .7fr 1.3fr; }
  .trip-row span:last-child { grid-column: 2; }
  .rig-tag { position: static; display: inline-block; margin-top: 12px; }
  .proof-grid, .feature-grid, .form-grid, .foot-grid { grid-template-columns: 1fr; }
  .proof-item { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .11); }
  .proof-item:last-child { border-bottom: 0; }
  .section { padding: 76px 0; }
  .section-head { margin-bottom: 35px; }
  .feature { min-height: auto; }
  .photo-deck { grid-template-rows: 310px 245px 245px; margin-top: 42px; }
  .photo-card figcaption { left: 17px; right: 17px; bottom: 16px; }
  .deck-card { min-height: 300px; padding: 27px; }
  .captain-copy, .captain-readout { padding: 27px; }
  .captain-photo { height: 250px; }
  .readout-line { grid-template-columns: 72px 1fr; }
  .readout-line span:last-child { grid-column: 2; }
  .flow-step { grid-template-columns: 48px 1fr; padding: 16px; }
  .flow-step > b { width: 40px; height: 40px; }
  .page-hero { padding: 70px 0 62px; }
  .page-hero-photo { min-height: 450px; }
  .page-hero-photo::before { background: linear-gradient(90deg, rgba(3, 17, 28, .93), rgba(3, 17, 28, .67)); }
  .page-hero h1 { font-size: clamp(3.6rem, 17vw, 5rem); }
  .field-proof { gap: 48px; }
  .field-proof-media { height: 510px; }
  .field-proof-media figcaption { right: -7px; bottom: 16px; }
  .about-water-photo { height: 390px; margin-top: 45px; }
  .about-water-photo figcaption { left: 20px; right: 20px; bottom: 20px; }
  .legal { padding: 24px; box-shadow: none; }
  .field.wide { grid-column: auto; }
  .slug-field { align-items: stretch; flex-direction: column; }
  .slug-field span { padding: 9px 12px 0; }
  .foot-bottom { display: block; }
  .foot-bottom span { display: block; margin-top: 8px; }
}
