:root {
  --navy: #063b6d;
  --navy-2: #072f55;
  --navy-3: #041d35;
  --teal: #00a6a6;
  --teal-2: #008c96;
  --aqua: #5eead4;
  --sand: #f5e7d0;
  --coral: #ef7b6a;
  --sky: #e9f7fb;
  --mist: #f6f8fa;
  --line: #d7e7ef;
  --text: #102033;
  --muted: #566879;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(6, 59, 109, .11);
  --shadow-strong: 0 28px 70px rgba(4, 29, 53, .25);
  --radius: 8px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(233, 247, 251, .86), rgba(255, 255, 255, 0) 520px),
    linear-gradient(90deg, rgba(245, 231, 208, .34), rgba(255, 255, 255, 0) 58%);
}
a { color: var(--navy); }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(215, 231, 239, .92);
  backdrop-filter: blur(14px);
}
.site-nav {
  width: min(var(--container), calc(100% - 32px));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 23px;
  font-weight: 900;
  text-decoration: none;
}
.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy), var(--teal));
  box-shadow: 0 9px 20px rgba(6, 59, 109, .22);
  position: relative;
}
.brand-mark::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 10px;
  height: 5px;
  border-radius: 999px;
  background: var(--aqua);
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.nav-links a {
  color: #20364a;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
.button {
  min-height: 46px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 166, 166, .23);
}
.button:hover { background: var(--teal-2); }
.button-secondary {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .45);
  color: var(--white);
  box-shadow: none;
}
.button-secondary:hover { background: rgba(255, 255, 255, .20); }

.site-hero {
  min-height: 820px;
  display: grid;
  align-items: end;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(3, 24, 45, .92) 0%, rgba(5, 44, 76, .73) 42%, rgba(6, 59, 109, .12) 100%),
    var(--hero-image) var(--hero-position) / cover no-repeat;
}
.site-hero-inner {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0 40px;
}
.site-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) 430px;
  gap: 48px;
  align-items: end;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid rgba(94, 234, 212, .45);
  border-radius: var(--radius);
  background: rgba(94, 234, 212, .14);
  color: #e8fffb;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}
.site-hero h1 {
  max-width: 850px;
  margin: 20px 0 18px;
  font-size: 64px;
  line-height: 1.02;
  letter-spacing: 0;
}
.hero-copy {
  max-width: 760px;
  margin: 0 0 28px;
  color: #eafaff;
  font-size: 20px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 32px;
}
.hero-note {
  max-width: 570px;
  color: #d9f5f8;
  font-size: 14px;
  font-weight: 700;
}
.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .88);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(233, 247, 251, .94));
  color: var(--text);
  box-shadow: var(--shadow-strong);
}
.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 8px;
  background: linear-gradient(90deg, var(--teal), var(--aqua), var(--coral));
}
.panel-kicker {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.hero-panel strong {
  display: block;
  margin-top: 4px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.15;
}
.mini-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.mini-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
}
.mini-list span {
  width: 28px;
  height: 28px;
  border-radius: var(--radius);
  display: inline-grid;
  place-items: center;
  background: var(--sky);
  color: var(--navy);
  font-weight: 900;
}
.hero-strip {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.strip-item {
  min-height: 104px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .13);
  backdrop-filter: blur(10px);
}
.strip-item b {
  display: block;
  font-size: 22px;
  line-height: 1.2;
}
.strip-item span {
  display: block;
  margin-top: 4px;
  color: #d8eef4;
  font-size: 14px;
}
.hero-path-card {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, .18), rgba(3, 24, 45, .28));
  box-shadow: 0 22px 60px rgba(3, 24, 45, .18);
  backdrop-filter: blur(12px);
}
.hero-path-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}
.hero-path-head strong {
  max-width: 580px;
  color: var(--white);
  font-size: 22px;
  line-height: 1.18;
}
.hero-path-steps {
  counter-reset: path-step;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.hero-path-steps li {
  position: relative;
  min-height: 178px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .94);
  color: var(--text);
  box-shadow: 0 14px 34px rgba(3, 24, 45, .16);
}
.hero-path-steps li::before {
  counter-increment: path-step;
  content: "0" counter(path-step);
  position: absolute;
  top: 12px;
  right: 14px;
  color: rgba(6, 59, 109, .18);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}
.path-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  display: inline-grid;
  place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy), var(--teal));
  box-shadow: 0 12px 26px rgba(0, 166, 166, .22);
}
.path-icon::before {
  content: "";
  width: 24px;
  height: 24px;
  background: var(--white);
  mask: var(--icon-info) center / contain no-repeat;
}
.path-icon-cruise::before { mask-image: var(--icon-ship); }
.path-icon-match::before { mask-image: var(--icon-link); }
.path-icon-split::before { mask-image: var(--icon-cost); }
.path-icon-social::before { mask-image: var(--icon-check); }
.hero-path-steps b {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.2;
}
.hero-path-steps span:not(.path-icon) {
  display: block;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.42;
}

.section {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}
.section-compact { padding-top: 46px; }
.section-kicker {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
h2 {
  margin: 0;
  color: var(--navy-2);
  font-size: 42px;
  line-height: 1.12;
  letter-spacing: 0;
}
h3 {
  margin: 0;
  color: var(--navy-2);
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: 0;
}
.lead {
  max-width: 700px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 18px;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}
.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 28px;
  align-items: stretch;
}
.story-copy {
  display: grid;
  gap: 22px;
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.story-copy p,
.card-body p,
.benefit-card p,
.faq-card p { color: var(--muted); }
.photo-tile {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--sky);
  box-shadow: var(--shadow);
}
.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.15) contrast(1.04);
}
.photo-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .95);
  color: var(--navy);
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .18);
}

.carousel-shell {
  margin-left: calc((100vw - min(var(--container), calc(100vw - 32px))) / -2);
  margin-right: calc((100vw - min(var(--container), calc(100vw - 32px))) / -2);
  padding-left: calc((100vw - min(var(--container), calc(100vw - 32px))) / 2);
  padding-right: calc((100vw - min(var(--container), calc(100vw - 32px))) / 2);
  overflow: hidden;
}
.carousel-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin: -8px 0 14px;
}
.carousel-controls[hidden] { display: none; }
.carousel-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  font-size: 22px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(6, 59, 109, .10);
}
.carousel-arrow:hover {
  background: var(--navy);
  color: var(--white);
}
.carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 382px;
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  padding: 4px 0 22px;
  scrollbar-color: var(--teal) var(--sky);
}
.card {
  min-height: 370px;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .97);
  box-shadow: var(--shadow);
}
.card-media {
  position: relative;
  height: 194px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy), var(--teal));
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.18) contrast(1.05);
}
.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(6, 59, 109, .42), rgba(0, 166, 166, .10));
}
.tag {
  position: absolute;
  z-index: 1;
  top: 14px;
  left: 14px;
  padding: 6px 9px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .94);
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.card-body { padding: 18px; }
.title-link {
  display: inline-block;
  color: var(--navy-2);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.16;
  text-decoration: none;
}
.text-link {
  color: var(--teal);
  font-weight: 900;
  text-decoration: none;
}

.split-band {
  background: linear-gradient(135deg, var(--navy-3), #0c6c77);
  color: var(--white);
}
.split-band .section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: center;
}
.split-band h2 { color: var(--white); }
.split-band .lead { color: #d9f4f7; }
.truth-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.truth-item {
  min-height: 118px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .1);
}
.truth-item b { display: block; margin-bottom: 6px; }
.truth-item span { color: #d9f4f7; }

.benefit-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.benefit-card,
.faq-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .97);
  box-shadow: var(--shadow);
}
.benefit-card {
  min-height: 204px;
  padding: 22px;
}
.faq-card { padding: 20px; }
.benefit-card .icon {
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: var(--radius);
  display: inline-grid;
  place-items: center;
  background: var(--sky);
  color: var(--navy);
  font-weight: 900;
}

.waitlist-band {
  background:
    linear-gradient(90deg, rgba(245, 231, 208, .94), rgba(233, 247, 251, .94)),
    url('/assets/generated/unique/waitlist-terminal.webp') center / cover no-repeat;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.waitlist-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .75fr);
  gap: 34px;
  align-items: start;
}
.waitlist-copy ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.waitlist-copy li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #263b4d;
  font-weight: 800;
}
.waitlist-copy li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--teal);
  flex: 0 0 auto;
}


/* Unified meaning icons for text-led blocks. */
:root {
  --icon-info: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23063B6D' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 11v5'/%3E%3Cpath d='M12 8h.01'/%3E%3C/svg%3E");
  --icon-cost: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23063B6D' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='6' width='18' height='12' rx='3'/%3E%3Cpath d='M7 12h5'/%3E%3Cpath d='M16 10v4'/%3E%3C/svg%3E");
  --icon-ship: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23063B6D' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 15l2-7h12l2 7'/%3E%3Cpath d='M8 8V5h8v3'/%3E%3Cpath d='M3 18c2 1.4 4 1.4 6 0 2 1.4 4 1.4 6 0 2 1.4 4 1.4 6 0'/%3E%3C/svg%3E");
  --icon-save: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23063B6D' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3v11'/%3E%3Cpath d='M8 10l4 4 4-4'/%3E%3Cpath d='M5 19h14'/%3E%3C/svg%3E");
  --icon-card: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23063B6D' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='6' width='18' height='12' rx='2'/%3E%3Cpath d='M3 10h18'/%3E%3Cpath d='M7 15h4'/%3E%3C/svg%3E");
  --icon-pin: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23063B6D' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s7-5.2 7-11a7 7 0 0 0-14 0c0 5.8 7 11 7 11z'/%3E%3Ccircle cx='12' cy='10' r='2.3'/%3E%3C/svg%3E");
  --icon-bell: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23063B6D' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 9a6 6 0 0 0-12 0c0 7-3 7-3 9h18c0-2-3-2-3-9'/%3E%3Cpath d='M10 21h4'/%3E%3C/svg%3E");
  --icon-check: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23063B6D' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M8 12l3 3 5-6'/%3E%3C/svg%3E");
  --icon-clock: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23063B6D' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l4 2'/%3E%3C/svg%3E");
  --icon-book: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23063B6D' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 5h7a3 3 0 0 1 3 3v11a3 3 0 0 0-3-3H4z'/%3E%3Cpath d='M20 5h-7a3 3 0 0 0-3 3'/%3E%3C/svg%3E");
  --icon-question: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23063B6D' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M9.5 9a2.8 2.8 0 1 1 4.8 2c-1.2 1-2.3 1.6-2.3 3'/%3E%3Cpath d='M12 17h.01'/%3E%3C/svg%3E");
  --icon-link: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23063B6D' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 13a5 5 0 0 0 7 0l2-2a5 5 0 0 0-7-7l-1 1'/%3E%3Cpath d='M14 11a5 5 0 0 0-7 0l-2 2a5 5 0 0 0 7 7l1-1'/%3E%3C/svg%3E");
  --icon-users: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23063B6D' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='8' cy='8' r='3'/%3E%3Ccircle cx='17' cy='9' r='2.6'/%3E%3Cpath d='M3.5 20a5 5 0 0 1 9 0'/%3E%3Cpath d='M13.5 19a4.2 4.2 0 0 1 7 0'/%3E%3C/svg%3E");
  --icon-compass: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23063B6D' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M15.5 8.5l-2 5-5 2 2-5z'/%3E%3C/svg%3E");
  --icon-tool: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23063B6D' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.7 6.3a4 4 0 0 0 3 5l-8.4 8.4a2 2 0 0 1-2.8-2.8l8.4-8.4a4 4 0 0 0-5-3'/%3E%3C/svg%3E");
  --icon-mail: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23063B6D' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='M4 7l8 6 8-6'/%3E%3C/svg%3E");
  --icon-map: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23063B6D' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18l-6 3V6l6-3 6 3 6-3v15l-6 3z'/%3E%3Cpath d='M9 3v15'/%3E%3Cpath d='M15 6v15'/%3E%3C/svg%3E");
  --icon-arrow: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23063B6D' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='M13 6l6 6-6 6'/%3E%3C/svg%3E");
}
.strip-item,
.story-copy article,
.truth-item,
.faq-card,
.content-card > section,
.faq-block details,
.waitlist-panel > div,
.visual-card {
  position: relative;
}
.strip-item,
.story-copy article,
.truth-item,
.faq-card,
.content-card > section,
.faq-block details,
.waitlist-panel > div {
  --block-icon-url: var(--icon-info);
}
.strip-item::before,
.story-copy article::before,
.truth-item::before,
.faq-card::before,
.content-card > section::before,
.faq-block details::before,
.waitlist-panel > div::before,
.visual-card::before {
  content: "";
  width: 38px;
  height: 38px;
  border: 1px solid rgba(94, 234, 212, .55);
  border-radius: var(--radius);
  display: inline-grid;
  place-items: center;
  margin-bottom: 12px;
  background:
    var(--block-icon-url, var(--icon-info)) center / 20px 20px no-repeat,
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(233, 247, 251, .88));
  box-shadow: 0 12px 26px rgba(6, 59, 109, .12);
}
.visual-card::before { --block-icon-url: var(--icon-ship); }
.story-copy article:nth-child(1) { --block-icon-url: var(--icon-cost); }
.story-copy article:nth-child(2) { --block-icon-url: var(--icon-ship); }
.story-copy article:nth-child(3) { --block-icon-url: var(--icon-save); }
.strip-item:nth-child(1) { --block-icon-url: var(--icon-card); }
.strip-item:nth-child(2) { --block-icon-url: var(--icon-ship); }
.strip-item:nth-child(3) { --block-icon-url: var(--icon-bell); }
.truth-item:nth-child(1) { --block-icon-url: var(--icon-users); }
.truth-item:nth-child(2) { --block-icon-url: var(--icon-ship); }
.truth-item:nth-child(3) { --block-icon-url: var(--icon-card); }
.truth-item:nth-child(4) { --block-icon-url: var(--icon-compass); }

/* Visitor value pictograms use the same SVG set, but render as stronger travel cards on the dark band. */
.truth-item {
  padding: 22px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .08));
  box-shadow: 0 18px 42px rgba(3, 24, 45, .18);
}
.truth-item::before {
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-color: rgba(94, 234, 212, .62);
  background: linear-gradient(135deg, var(--teal), var(--navy));
  box-shadow: 0 16px 34px rgba(0, 166, 166, .26);
}
.truth-item::after {
  content: "";
  position: absolute;
  left: 36px;
  top: 36px;
  width: 24px;
  height: 24px;
  background: var(--white);
  mask: var(--block-icon-url, var(--icon-info)) center / contain no-repeat;
}
.truth-item b {
  color: var(--white);
  font-size: 20px;
  line-height: 1.2;
}
.truth-item span {
  color: #d9f4f7;
  font-weight: 700;
}

.faq-card:nth-child(odd),
.faq-block details:nth-of-type(odd) { --block-icon-url: var(--icon-question); }
.faq-card:nth-child(even),
.faq-block details:nth-of-type(even) { --block-icon-url: var(--icon-check); }
.content-card > section:nth-of-type(1) { --block-icon-url: var(--icon-info); }
.content-card > section:nth-of-type(2) { --block-icon-url: var(--icon-clock); }
.content-card > section:nth-of-type(3) { --block-icon-url: var(--icon-check); }
.content-card > section:nth-of-type(4) { --block-icon-url: var(--icon-tool); }
.content-card > section:nth-of-type(5) { --block-icon-url: var(--icon-link); }
.content-card > section:nth-of-type(6) { --block-icon-url: var(--icon-arrow); }
.content-card > section + section {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.waitlist-panel > div { --block-icon-url: var(--icon-bell); }
.waitlist-copy li::before {
  content: "";
  width: 24px;
  height: 24px;
  border-radius: var(--radius);
  display: inline-grid;
  place-items: center;
  background:
    var(--waitlist-icon-url, var(--icon-check)) center / 15px 15px no-repeat,
    linear-gradient(135deg, var(--teal), var(--aqua));
  box-shadow: 0 8px 18px rgba(0, 166, 166, .20);
}
.waitlist-copy li:nth-child(1)::before { --waitlist-icon-url: var(--icon-mail); }
.waitlist-copy li:nth-child(2)::before { --waitlist-icon-url: var(--icon-map); }
.waitlist-copy li:nth-child(3)::before { --waitlist-icon-url: var(--icon-check); }
.split-band .truth-item::before,
.site-hero .strip-item::before {
  background:
    var(--block-icon-url, var(--icon-info)) center / 20px 20px no-repeat,
    rgba(255, 255, 255, .95);
  border-color: rgba(255, 255, 255, .60);
}
.waitlist-form {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow);
}
.waitlist-form label {
  display: grid;
  gap: 6px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}
.waitlist-form input,
.waitlist-form select {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  border: 1px solid #bcd1dc;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  font: inherit;
}
.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.site-footer {
  background: #062f57;
  color: var(--white);
}
.footer-inner {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 38px 0;
  display: grid;
  gap: 18px;
}
.site-footer .brand { color: var(--white); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}
.footer-links a {
  color: #eafaff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 960px) {
  .nav-links { display: none; }
  .site-hero { min-height: auto; }
  .site-hero-inner { padding: 76px 0 34px; }
  .site-hero-grid,
  .story-grid,
  .split-band .section,
  .waitlist-grid { grid-template-columns: 1fr; }
  .site-hero h1 { font-size: 46px; }
  h2 { font-size: 34px; }
  .hero-panel { max-width: 520px; }
  .hero-strip,
  .benefit-grid,
  .faq-grid { grid-template-columns: 1fr; }
  .hero-path-head { display: block; }
  .hero-path-head strong { display: block; margin-top: 6px; }
  .hero-path-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .photo-tile { min-height: 340px; }
  .section-head { display: block; }
  .carousel {
    grid-auto-columns: 318px;
    margin-left: 58px;
    margin-right: 58px;
    scroll-padding-inline: 0;
  }
}
@media (max-width: 560px) {
  .site-nav { min-height: 62px; }
  .site-nav .button { display: none; }
  .site-hero h1 { font-size: 40px; }
  h2 { font-size: 30px; }
  .hero-copy,
  .lead { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-path-card { padding: 14px; }
  .hero-path-steps { grid-template-columns: 1fr; }
  .hero-path-steps li { min-height: 0; }
  .button { width: 100%; }
  .carousel {
    grid-auto-columns: calc(100vw - 144px);
    margin-left: 56px;
    margin-right: 56px;
    scroll-padding-inline: 0;
  }
  .card-media { height: 172px; }
  .carousel-controls { justify-content: space-between; }
  .truth-grid { grid-template-columns: 1fr; }
  .waitlist-form { padding: 16px; }
}

/* Shared legacy component aliases for SEO pages generated before the design-system split. */
body:not([data-canonical-group="home"]) main {
  width: min(960px, calc(100% - 32px));
  margin: 32px auto;
}
.site-main {
  width: 100%;
  margin: 0;
  overflow: hidden;
}
body[data-canonical-group="home"] .site-main > .story-grid {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}
body[data-canonical-group="home"] .site-main > section:not(.split-band):not(.waitlist-band):not(.section) {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(215, 231, 239, .92);
  backdrop-filter: blur(14px);
}
.nav {
  width: min(var(--container), calc(100% - 32px));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.links a {
  color: #20364a;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
.hero {
  min-height: 620px;
  display: grid;
  align-items: end;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(3, 24, 45, .92) 0%, rgba(5, 44, 76, .73) 42%, rgba(6, 59, 109, .12) 100%),
    var(--hero-image) var(--hero-position) / cover no-repeat;
}
.hero-inner {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 82px 0 46px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) 430px;
  gap: 48px;
  align-items: end;
}
.hero h1 {
  max-width: 850px;
  margin: 20px 0 18px;
  font-size: 60px;
  line-height: 1.02;
  letter-spacing: 0;
}
.hero p {
  max-width: 760px;
  color: #eafaff;
  font-size: 20px;
}
.hero-visual {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  display: grid;
  align-content: end;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .88);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 18%, rgba(94, 234, 212, .36), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, .18), rgba(4, 29, 53, .30));
  box-shadow: var(--shadow-strong);
}
.visual-card {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .94);
  color: var(--text);
}
.visual-card strong {
  display: block;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.16;
}
.visual-card p { color: var(--muted); }
.cta {
  min-height: 46px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 166, 166, .23);
}
.content-card,
.waitlist-panel {
  margin: 22px 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .97);
  box-shadow: var(--shadow);
}
.content-card h2,
.waitlist-panel h2 {
  margin: 0 0 12px;
  color: var(--navy-2);
  font-size: 36px;
  line-height: 1.15;
}
.content-card h3 {
  margin: 22px 0 8px;
  font-size: 22px;
}
.content-card p,
.content-card li { color: var(--muted); }
.content-card table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius);
}
.content-card th,
.content-card td {
  border: 1px solid var(--line);
  padding: 12px;
  text-align: left;
  vertical-align: top;
}
.content-card th {
  background: var(--mist);
  color: var(--navy);
}
.waitlist-panel {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(280px, 1fr);
  gap: 22px;
  align-items: start;
  background: linear-gradient(135deg, var(--white), var(--sand));
}
.faq-block details {
  border-top: 1px solid var(--line);
  padding: 14px 0;
}
.faq-block summary {
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
}
footer:not(.site-footer) {
  margin-top: 42px;
  background: #062f57;
  color: var(--white);
}
footer:not(.site-footer) .footer-inner {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0;
  display: grid;
  gap: 18px;
}
footer:not(.site-footer) .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
footer:not(.site-footer) .footer-links a {
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
@media (max-width: 960px) {
  .hero-inner,
  .waitlist-panel { grid-template-columns: 1fr; }
  .hero h1 { font-size: 44px; }
  .hero-visual { min-height: 260px; }
  .links { display: none; }
}

.brand::before {
  content: "";
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: var(--radius);
  background:
    url('/assets/brand/ico64-display.svg?v=20260428-display1') center / contain no-repeat;
  box-shadow: 0 9px 20px rgba(6, 59, 109, .16);
}
.brand .brand-mark { display: none; }


/* Hero imagery and interaction system: all pages share component rules, each intent group gets a fitting asset. */
body {
  --hero-image: url('/assets/generated/hero-cruise-liner.webp');
  --hero-position: center 55%;
}
body[data-canonical-group="find-cabin-mate"],
body[data-canonical-group="cruise-roommate-finder"],
body[data-canonical-group="blog-how-to-find-a-cruise-cabin-mate"],
body[data-canonical-group="blog-cruise-roommate-vs-cabin-mate"],
body[data-canonical-group="ru-blog-kak-naiti-poputchika-v-kruiz"] { --hero-image: url('/assets/generated/heroes/roommate.webp'); --hero-position: center 54%; }
body[data-canonical-group="share-cabin"],
body[data-canonical-group="avoid-full-cabin"],
body[data-canonical-group="ru-blog-kak-razdelit-kayutu-v-kruize"],
body[data-canonical-group="blog-solo-cruise-vs-shared-cabin"] { --hero-image: url('/assets/generated/heroes/share-cabin.webp'); --hero-position: center 56%; }
body[data-canonical-group="avoid-supplement"],
body[data-canonical-group="no-supplement"],
body[data-canonical-group="ru-blog-chto-takoe-doplata-za-odnomestnoe-razmeshchenie-v-kruize"],
body[data-canonical-group="ru-blog-pochemu-kruiz-odnomu-dorozhe"],
body[data-canonical-group="ru-blog-kak-ne-platit-za-vsyu-kayutu-v-kruize"],
body[data-canonical-group="blog-how-to-avoid-single-supplement-on-cruises"],
body[data-canonical-group="blog-what-is-single-supplement-on-a-cruise"] { --hero-image: url('/assets/generated/heroes/avoid-supplement.webp'); --hero-position: center 55%; }
body[data-canonical-group="solo-female"],
body[data-canonical-group="woman-solo"] { --hero-image: url('/assets/generated/heroes/solo-female.webp'); --hero-position: center 56%; }
body[data-canonical-group="best-solo"],
body[data-canonical-group="solo-cabins"],
body[data-canonical-group="blog-best-cruises-for-solo-travelers"] { --hero-image: url('/assets/generated/heroes/solo-cabins.webp'); --hero-position: center 55%; }
body[data-canonical-group^="blog-index"] { --hero-image: url('/assets/generated/heroes/blog-guides.webp'); --hero-position: center 52%; }
body[data-canonical-group="about"],
body[data-canonical-group="contact"],
body[data-canonical-group="privacy"],
body[data-canonical-group="terms"] { --hero-image: url('/assets/generated/heroes/utility.webp'); --hero-position: center 55%; }

.site-hero,
.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(3, 24, 45, .94) 0%, rgba(5, 44, 76, .76) 42%, rgba(6, 59, 109, .10) 100%),
    var(--hero-image) var(--hero-position) / cover no-repeat;
}
.site-hero::before,
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 42%, rgba(94, 234, 212, .12) 50%, transparent 58%);
  transform: translateX(-18%);
  animation: heroSweep 9s ease-in-out infinite;
}
.site-hero > *,
.hero > * { position: relative; z-index: 1; }
@keyframes heroSweep {
  0%, 55%, 100% { transform: translateX(-28%); opacity: .15; }
  72% { transform: translateX(28%); opacity: .42; }
}
@media (prefers-reduced-motion: reduce) {
  .site-hero::before,
  .hero::before { animation: none; }
}

.nav-links a,
.links a,
.button,
.cta,
.text-link,
.title-link,
.card,
.benefit-card,
.faq-card,
.truth-item,
.hero-panel,
.visual-card,
.waitlist-form input,
.waitlist-form select,
.carousel-arrow {
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease, filter .22s ease;
}
.nav-links a:hover,
.links a:hover,
.text-link:hover,
.title-link:hover { color: var(--teal); }
.button:hover,
.cta:hover,
.carousel-arrow:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(0, 166, 166, .24); }
.card:hover,
.benefit-card:hover,
.faq-card:hover,
.truth-item:hover,
.hero-panel:hover,
.visual-card:hover { transform: translateY(-4px); box-shadow: 0 24px 54px rgba(6, 59, 109, .15); }
.card:hover .card-media img,
.photo-tile:hover img { filter: saturate(1.28) contrast(1.08); transform: scale(1.035); }
.card-media img,
.photo-tile img { transition: transform .35s ease, filter .35s ease; }
.waitlist-form input:focus,
.waitlist-form select:focus { outline: 0; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(0, 166, 166, .14); }

.carousel-shell { position: relative; }
.carousel-controls {
  position: absolute;
  z-index: 5;
  left: max(12px, calc((100vw - min(var(--container), calc(100vw - 32px))) / 2 - 58px));
  right: max(12px, calc((100vw - min(var(--container), calc(100vw - 32px))) / 2 - 58px));
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  margin: 0;
}
.carousel-controls[hidden] { display: none; }
.carousel-arrow {
  pointer-events: auto;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
}
.carousel { scroll-padding-inline: 72px; }
@media (max-width: 560px) {
  .carousel-controls { left: 8px; right: 8px; }
  .carousel-arrow { width: 40px; height: 40px; }
}


/* Structured footer. */
.site-footer,
footer:not(.site-footer) {
  margin-top: 0;
  background:
    radial-gradient(circle at 15% 0%, rgba(94, 234, 212, .18), transparent 30%),
    linear-gradient(135deg, #041d35, #063b6d 58%, #0a6a75);
  color: var(--white);
}
.footer-inner,
footer:not(.site-footer) .footer-inner {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 46px 0 24px;
  display: grid;
  gap: 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: minmax(260px, .85fr) minmax(0, 1.65fr);
  gap: 44px;
  align-items: start;
}
.footer-brand-block {
  display: grid;
  gap: 16px;
  max-width: 390px;
}
.site-footer .brand,
footer:not(.site-footer) .brand {
  color: var(--white);
}
.footer-brand-block p {
  margin: 0;
  color: #d9f4f7;
  font-size: 15px;
}
.footer-cta {
  width: max-content;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(94, 234, 212, .45);
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, .10);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}
.footer-cta:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .18);
  border-color: rgba(255, 255, 255, .62);
}
.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.footer-group {
  display: grid;
  align-content: start;
  gap: 10px;
}
.footer-group h3 {
  margin: 0 0 4px;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.2;
  text-transform: uppercase;
}
.footer-group a,
.footer-links a,
footer:not(.site-footer) .footer-links a {
  color: #d9f4f7;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.32;
  text-decoration: none;
}
.footer-group a:hover,
.footer-links a:hover,
footer:not(.site-footer) .footer-links a:hover {
  color: var(--aqua);
}
.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: #bfe8ee;
  font-size: 13px;
  font-weight: 800;
}
.footer-links { display: contents; }
@media (max-width: 960px) {
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .footer-inner,
  footer:not(.site-footer) .footer-inner { padding: 34px 0 22px; }
  .footer-columns { grid-template-columns: 1fr; gap: 20px; }
  .footer-brand-block { max-width: none; }
  .footer-cta { width: 100%; justify-content: center; }
  .footer-bottom { display: grid; }
}


/* Shared FAQ accordion system. */
.faq-grid {
  max-width: 920px;
  grid-template-columns: 1fr;
  gap: 12px;
}
.faq-card,
.faq-block details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .97);
  box-shadow: var(--shadow);
}
details.faq-card,
.faq-block details {
  padding: 0;
}
details.faq-card::before,
.faq-block details::before {
  content: none;
  display: none;
}
.faq-card summary,
.faq-block summary {
  min-height: 78px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 42px;
  gap: 14px;
  align-items: center;
  padding: 18px 18px 18px 20px;
  color: var(--navy-2);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
  cursor: pointer;
  list-style: none;
}
.faq-card summary::-webkit-details-marker,
.faq-block summary::-webkit-details-marker { display: none; }
.faq-card summary::before,
.faq-block summary::before {
  content: "";
  width: 38px;
  height: 38px;
  border: 1px solid rgba(94, 234, 212, .55);
  border-radius: var(--radius);
  background:
    var(--icon-question) center / 20px 20px no-repeat,
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(233, 247, 251, .88));
  box-shadow: 0 12px 26px rgba(6, 59, 109, .12);
}
.faq-card summary::after,
.faq-block summary::after {
  content: "+";
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  display: inline-grid;
  place-items: center;
  justify-self: end;
  background: linear-gradient(135deg, var(--teal), #078faa);
  color: var(--white);
  font-size: 26px;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(0, 166, 166, .20);
  transition: transform .24s ease, background .24s ease, box-shadow .24s ease;
}
.faq-card[open] summary::after,
.faq-block details[open] summary::after {
  content: "-";
  transform: rotate(180deg);
  background: linear-gradient(135deg, var(--navy), var(--teal));
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows .34s ease, opacity .24s ease;
}
.faq-answer-inner {
  overflow: hidden;
  padding: 0 20px;
}
.faq-answer-inner > :first-child { margin-top: 0; }
.faq-card[open] .faq-answer,
.faq-block details[open] .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}
.faq-card[open] .faq-answer-inner,
.faq-block details[open] .faq-answer-inner {
  padding-bottom: 20px;
}
.faq-card:hover,
.faq-block details:hover {
  border-color: rgba(0, 166, 166, .38);
  box-shadow: 0 24px 54px rgba(6, 59, 109, .15);
}
.faq-card summary:focus-visible,
.faq-block summary:focus-visible {
  outline: 0;
  box-shadow: inset 0 0 0 4px rgba(94, 234, 212, .32);
}
@media (max-width: 560px) {
  .faq-card summary,
  .faq-block summary {
    min-height: 68px;
    grid-template-columns: 34px minmax(0, 1fr) 38px;
    gap: 10px;
    padding: 14px;
    font-size: 18px;
  }
  .faq-card summary::before,
  .faq-block summary::before {
    width: 34px;
    height: 34px;
    background-size: 18px 18px;
  }
  .faq-card summary::after,
  .faq-block summary::after {
    width: 38px;
    height: 38px;
  }
}


/* Unified button system. Every clickable button/CTA uses the same SoloCruz treatment. */
:root {
  --button-bg: linear-gradient(135deg, var(--teal), #078faa);
  --button-bg-hover: linear-gradient(135deg, #079696, var(--navy));
  --button-color: var(--white);
  --button-border: rgba(255, 255, 255, .16);
  --button-shadow: 0 14px 32px rgba(0, 166, 166, .24);
  --button-shadow-hover: 0 18px 38px rgba(6, 59, 109, .26);
}
.button,
.button-secondary,
.cta,
.waitlist-form button,
.carousel-arrow,
button[type="submit"] {
  min-height: 46px;
  border: 1px solid var(--button-border);
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--button-bg);
  color: var(--button-color);
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--button-shadow);
  transform: translateY(0);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
}
.button,
.button-secondary,
.cta,
.waitlist-form button,
button[type="submit"] {
  padding: 13px 18px;
}
.carousel-arrow {
  width: 46px;
  height: 46px;
  padding: 0;
  font-size: 22px;
  line-height: 1;
  pointer-events: auto;
  backdrop-filter: blur(10px);
}
.button:hover,
.button-secondary:hover,
.cta:hover,
.waitlist-form button:hover,
.carousel-arrow:hover,
button[type="submit"]:hover {
  background: var(--button-bg-hover);
  color: var(--button-color);
  border-color: rgba(255, 255, 255, .28);
  box-shadow: var(--button-shadow-hover);
  transform: translateY(-2px);
}
.button:focus-visible,
.button-secondary:focus-visible,
.cta:focus-visible,
.waitlist-form button:focus-visible,
.carousel-arrow:focus-visible,
button[type="submit"]:focus-visible {
  outline: 0;
  box-shadow: var(--button-shadow-hover), 0 0 0 4px rgba(94, 234, 212, .32);
}
.button[disabled],
.cta[disabled],
.waitlist-form button[disabled],
.carousel-arrow[disabled],
button[type="submit"][disabled] {
  opacity: .58;
  cursor: not-allowed;
  transform: none;
}


/* 2026-04-27 presentation refinement: shared hero media, hubs, value cards, centered FAQ. */
.booking-plan-section {
  padding-top: 28px;
  padding-bottom: 54px;
}
.booking-plan-section .hero-path-card {
  margin-top: 0;
  padding: 24px;
  border-color: var(--line);
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(233,247,251,.94));
  color: var(--text);
  box-shadow: var(--shadow);
}
.booking-plan-section .hero-path-head strong { color: var(--navy-2); }
.booking-plan-section .hero-path-steps li { border-color: var(--line); background: var(--white); }

.split-band .section > div:first-child { align-self: start; }
.truth-grid { align-items: stretch; }
.truth-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 16px;
  align-content: start;
}
.truth-item::before {
  grid-row: 1 / span 2;
  width: 58px;
  height: 58px;
  margin: 0;
  border: 1px solid rgba(94,234,212,.62);
  background:
    var(--block-icon-url, var(--icon-info)) center / 27px 27px no-repeat,
    linear-gradient(135deg, #ffffff, #dff9f6);
  box-shadow: 0 16px 34px rgba(0,166,166,.22);
}
.truth-item::after { content: none; }
.truth-item b { align-self: end; margin: 0 0 5px; }
.truth-item span { grid-column: 2; }
.section[aria-labelledby="faq-title"] { text-align: center; }
.section[aria-labelledby="faq-title"] .faq-grid { margin: 24px auto 0; text-align: left; }

.hero-media {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: var(--radius);
  background: rgba(255,255,255,.12);
  box-shadow: var(--shadow-strong);
}
.hero-media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.18) contrast(1.05);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,59,109,.06), rgba(4,29,53,.62));
}
.hero-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  width: auto;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.74);
  border-radius: var(--radius);
  background: rgba(255,255,255,.94);
  color: var(--text);
  box-shadow: 0 18px 42px rgba(0,0,0,.20);
}
.hero-overlay strong { display: block; color: var(--navy-2); font-size: 20px; line-height: 1.18; }
.hero-overlay p { margin: 6px 0 0; color: var(--muted); font-size: 14px; line-height: 1.42; }

.content-card img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hub-section {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.hub-feature {
  margin-top: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #ffffff, #eefafa);
  box-shadow: var(--shadow);
}
.hub-kicker {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}
.hub-grid.compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.hub-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.hub-card:hover { transform: translateY(-4px); border-color: rgba(0,166,166,.42); box-shadow: 0 24px 54px rgba(6,59,109,.15); }
.hub-card img {
  width: 100%;
  height: 176px;
  margin: 0;
  border-radius: 0;
  object-fit: cover;
  box-shadow: none;
}
.hub-card span {
  display: block;
  padding: 16px 16px 4px;
  color: var(--navy-2);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.18;
}
.hub-card p {
  margin: 0;
  padding: 0 16px 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}
footer:not(.site-footer) .footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .8fr 1fr;
  gap: 26px;
}
footer:not(.site-footer) .footer-col a { border-bottom: 1px solid rgba(255,255,255,.08); }
@media (max-width: 960px) {
  .hub-grid, .hub-grid.compact, footer:not(.site-footer) .footer-grid { grid-template-columns: 1fr; }
  .hero-media { min-height: 320px; }
  .booking-plan-section .hero-path-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .truth-item { grid-template-columns: 1fr; }
  .truth-item::before { grid-row: auto; margin-bottom: 14px; }
  .truth-item span { grid-column: auto; }
  .hero-media { min-height: 260px; }
  .booking-plan-section .hero-path-steps { grid-template-columns: 1fr; }
}

.content-card > .hub-section::before,
.content-card > .hub-feature::before {
  content: none;
  display: none;
}

.lang-switch summary::marker { content: ""; }
.lang-switch summary { list-style: none; }


/* SEO page hero uses the image card as the visual, avoiding duplicate background/card photos. */
body:not([data-canonical-group="home"]) .hero {
  background:
    linear-gradient(135deg, rgba(3,24,45,.98) 0%, rgba(6,59,109,.92) 46%, rgba(0,166,166,.72) 100%);
}
body:not([data-canonical-group="home"]) .hero::before {
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(94,234,212,.14) 50%, transparent 58%);
}
.decision-faq { margin-top: 22px; }
.decision-faq > p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 17px;
}


/* 2026-04-27 decision panel distinct from FAQ */
.decision-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(6, 59, 109, .16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(6, 59, 109, .96), rgba(8, 112, 130, .90)),
    var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-strong);
}
.decision-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--aqua), var(--teal), var(--sand));
}
.decision-panel h2 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.1;
}
.decision-panel > p {
  max-width: 760px;
  margin: 0 0 20px;
  color: rgba(232, 251, 255, .86);
  font-size: 17px;
}
.decision-panel details {
  overflow: hidden;
  margin-top: 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .10);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .12);
}
.decision-panel summary {
  min-height: 70px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 38px;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.22;
  cursor: pointer;
  list-style: none;
}
.decision-panel summary::-webkit-details-marker { display: none; }
.decision-panel summary::before {
  content: "";
  width: 38px;
  height: 38px;
  border: 1px solid rgba(94, 234, 212, .62);
  border-radius: var(--radius);
  background:
    var(--block-icon-url, var(--icon-compass)) center / 20px 20px no-repeat,
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(223,249,246,.96));
  box-shadow: 0 12px 24px rgba(0, 0, 0, .18);
}
.decision-panel details:nth-of-type(1) { --block-icon-url: var(--icon-cost); }
.decision-panel details:nth-of-type(2) { --block-icon-url: var(--icon-clock); }
.decision-panel details:nth-of-type(3) { --block-icon-url: var(--icon-check); }
.decision-panel details:nth-of-type(4) { --block-icon-url: var(--icon-link); }
.decision-panel details:nth-of-type(5) { --block-icon-url: var(--icon-ship); }
.decision-panel summary::after {
  content: "";
  width: 38px;
  height: 38px;
  justify-self: end;
  border-radius: 999px;
  background:
    var(--icon-arrow) center / 18px 18px no-repeat,
    rgba(255,255,255,.92);
  transition: transform .24s ease, background .24s ease;
}
.decision-panel details[open] summary::after {
  transform: rotate(90deg);
  background-color: #dff9f6;
}
.decision-panel details > p,
.decision-panel details > ul,
.decision-panel details > ol,
.decision-panel details > table {
  margin: 0;
  padding: 0 18px 18px 70px;
  color: rgba(232, 251, 255, .86);
}
.decision-panel details a { color: var(--aqua); font-weight: 900; }
.decision-panel details:hover {
  border-color: rgba(94, 234, 212, .48);
  background: rgba(255, 255, 255, .14);
}
@media (max-width: 560px) {
  .decision-panel summary {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: 10px;
    padding: 14px;
    font-size: 17px;
  }
  .decision-panel summary::before,
  .decision-panel summary::after { width: 34px; height: 34px; }
  .decision-panel details > p,
  .decision-panel details > ul,
  .decision-panel details > ol,
  .decision-panel details > table { padding: 0 14px 16px 58px; }
}

/* Unified premium header: homepage look applied to every SoloCruz page. */
.topbar.site-header,
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(215,231,239,.92);
  backdrop-filter: blur(14px);
}
.topbar.site-header .site-nav,
.site-header .site-nav,
.topbar.site-header .nav {
  width: min(var(--container), calc(100% - 32px));
  min-height: 68px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.topbar.site-header .brand,
.site-header .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 23px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}
.topbar.site-header .nav-actions,
.site-header .nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}
.topbar.site-header .nav-links,
.topbar.site-header .links,
.site-header .nav-links,
.site-header .links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.topbar.site-header .nav-links a,
.topbar.site-header .links a,
.site-header .nav-links a,
.site-header .links a {
  color: #20364a;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
.topbar.site-header .lang-switch summary,
.site-header .lang-switch summary {
  min-height: 42px;
  border-radius: var(--radius);
  border-color: var(--line);
  padding: 10px 12px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(6,59,109,.08);
}
.topbar.site-header .header-cta,
.site-header .header-cta {
  min-height: 46px;
  padding: 13px 18px;
  white-space: nowrap;
}
@media (max-width: 960px) {
  .topbar.site-header .nav-links,
  .topbar.site-header .links,
  .site-header .nav-links,
  .site-header .links { display: none; }
}
@media (max-width: 560px) {
  .topbar.site-header .site-nav,
  .site-header .site-nav,
  .topbar.site-header .nav { min-height: 62px; }
  .topbar.site-header .header-cta,
  .site-header .header-cta { display: none; }
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer-logo::before {
  content: "";
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: var(--radius);
  background: url('/assets/brand/ico64-display.svg?v=20260428-display1') center / contain no-repeat;
  box-shadow: 0 9px 20px rgba(6, 59, 109, .18);
}

/* 2026-04-27 header hover and language menu hardening */
.topbar.site-header .nav-links a,
.topbar.site-header .links a,
.site-header .nav-links a,
.site-header .links a {
  position: relative;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius);
  padding: 0 2px;
  transition: color .22s ease, transform .22s ease;
}
.topbar.site-header .nav-links a::after,
.topbar.site-header .links a::after,
.site-header .nav-links a::after,
.site-header .links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--aqua));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .22s ease;
}
.topbar.site-header .nav-links a:hover,
.topbar.site-header .links a:hover,
.site-header .nav-links a:hover,
.site-header .links a:hover,
.topbar.site-header .nav-links a:focus-visible,
.topbar.site-header .links a:focus-visible,
.site-header .nav-links a:focus-visible,
.site-header .links a:focus-visible {
  color: var(--teal);
  transform: translateY(-1px);
}
.topbar.site-header .nav-links a:hover::after,
.topbar.site-header .links a:hover::after,
.site-header .nav-links a:hover::after,
.site-header .links a:hover::after,
.topbar.site-header .nav-links a:focus-visible::after,
.topbar.site-header .links a:focus-visible::after,
.site-header .nav-links a:focus-visible::after,
.site-header .links a:focus-visible::after {
  transform: scaleX(1);
}
.topbar.site-header .lang-switch,
.site-header .lang-switch {
  position: relative;
  flex: 0 0 auto;
  z-index: 80;
}
.topbar.site-header .lang-switch summary,
.site-header .lang-switch summary {
  min-width: 116px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  color: var(--navy-2);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  transition: border-color .22s ease, box-shadow .22s ease, color .22s ease, background .22s ease;
}
.topbar.site-header .lang-switch summary::-webkit-details-marker,
.site-header .lang-switch summary::-webkit-details-marker { display: none; }
.topbar.site-header .lang-switch summary::marker,
.site-header .lang-switch summary::marker { content: ""; }
.topbar.site-header .lang-switch summary::after,
.site-header .lang-switch summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .22s ease;
}
.topbar.site-header .lang-switch[open] summary,
.site-header .lang-switch[open] summary,
.topbar.site-header .lang-switch summary:hover,
.site-header .lang-switch summary:hover,
.topbar.site-header .lang-switch summary:focus-visible,
.site-header .lang-switch summary:focus-visible {
  border-color: rgba(0, 166, 166, .46);
  color: var(--teal);
  background: linear-gradient(180deg, #ffffff, #eefafa);
  box-shadow: 0 16px 34px rgba(6, 59, 109, .14);
}
.topbar.site-header .lang-switch[open] summary::after,
.site-header .lang-switch[open] summary::after {
  transform: translateY(2px) rotate(225deg);
}
.topbar.site-header .lang-menu,
.site-header .lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: max-content;
  min-width: 190px;
  max-width: min(280px, calc(100vw - 32px));
  display: grid;
  gap: 4px;
  padding: 8px;
  border: 1px solid rgba(215, 231, 239, .98);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 24px 60px rgba(4, 29, 53, .20);
  z-index: 90;
}
.topbar.site-header .lang-menu a,
.site-header .lang-menu a {
  min-height: 38px;
  display: flex;
  align-items: center;
  border-radius: var(--radius);
  padding: 9px 10px;
  color: var(--text);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.topbar.site-header .lang-menu a:hover,
.site-header .lang-menu a:hover,
.topbar.site-header .lang-menu a:focus-visible,
.site-header .lang-menu a:focus-visible,
.topbar.site-header .lang-menu a.active,
.site-header .lang-menu a.active {
  background: #eefafa;
  color: var(--teal);
  transform: translateX(2px);
}
@media (max-width: 560px) {
  .topbar.site-header .lang-switch summary,
  .site-header .lang-switch summary {
    min-width: 96px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .topbar.site-header .lang-menu,
  .site-header .lang-menu {
    right: -4px;
    min-width: 174px;
  }
}

/* 2026-04-27 recommendation cards refinement */
.recommendations {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(0, 166, 166, .22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(233,247,251,.96) 58%, rgba(245,231,208,.72)),
    var(--white);
  box-shadow: var(--shadow);
}
.recommendations::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--teal), var(--aqua), var(--sand));
}
.recommendations h2 {
  margin: 0 0 18px;
  color: var(--navy-2);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.12;
}
.recommend-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.recommend-card {
  position: relative;
  min-height: 104px;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) 36px;
  align-items: center;
  gap: 14px;
  padding: 17px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.96);
  color: var(--text);
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(6, 59, 109, .08);
  transform: translateY(0);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}
.recommend-card::before,
.recommend-icon {
  content: "";
  width: 50px;
  height: 50px;
  border: 1px solid rgba(0, 166, 166, .28);
  border-radius: var(--radius);
  background:
    var(--recommend-icon-url, var(--icon-compass)) center / 25px 25px no-repeat,
    linear-gradient(135deg, #ffffff, #dff9f6);
  box-shadow: 0 14px 28px rgba(0, 166, 166, .16);
}
.recommend-card:nth-child(1) { --recommend-icon-url: var(--icon-users); }
.recommend-card:nth-child(2) { --recommend-icon-url: var(--icon-ship); }
.recommend-card:nth-child(3) { --recommend-icon-url: var(--icon-cost); }
.recommend-card:nth-child(4) { --recommend-icon-url: var(--icon-book); }
.recommend-card:has(.recommend-icon)::before,
.recommend-card:has(.recommend-arrow)::after {
  content: none;
  display: none;
}
.recommend-card::after,
.recommend-arrow {
  content: "";
  width: 36px;
  height: 36px;
  border: 1px solid rgba(6, 59, 109, .1);
  border-radius: 999px;
  background:
    var(--icon-arrow) center / 18px 18px no-repeat,
    var(--sky);
  transition: transform .22s ease, background .22s ease;
}
.recommend-card > span:not(.recommend-icon):not(.recommend-arrow),
.recommend-copy strong {
  min-width: 0;
  display: block;
  color: var(--navy-2);
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 900;
  line-height: 1.18;
}
.recommend-copy {
  min-width: 0;
  display: grid;
  gap: 5px;
}
.recommend-copy em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 750;
  line-height: 1.35;
}
.recommend-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 166, 166, .52);
  background: var(--white);
  box-shadow: 0 22px 46px rgba(6, 59, 109, .14);
}
.recommend-card:hover::after,
.recommend-card:hover .recommend-arrow {
  transform: translateX(3px);
  background-color: #dff9f6;
}
@media (max-width: 760px) {
  .recommend-grid { grid-template-columns: 1fr; }
  .recommend-card {
    min-height: 92px;
    grid-template-columns: 46px minmax(0, 1fr) 34px;
    padding: 15px;
  }
  .recommend-card::before,
  .recommend-icon { width: 46px; height: 46px; background-size: 23px 23px, auto; }
}

/* 2026-04-27 final unified footer system */
.site-footer,
body > footer {
  margin-top: 54px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(4, 29, 53, .98), rgba(6, 59, 109, .96) 54%, rgba(0, 111, 120, .94)),
    #063b6d;
}
.site-footer .footer-inner,
body > footer > .footer-inner {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 52px 0 28px;
  display: grid;
  gap: 30px;
}
.site-footer .footer-top,
body > footer > .footer-inner {
  grid-template-columns: minmax(270px, .72fr) minmax(0, 1.28fr);
  align-items: start;
  column-gap: clamp(34px, 5vw, 72px);
}
.site-footer .footer-top { display: grid; }
.site-footer .footer-brand-block,
body > footer .footer-brand-block {
  display: grid;
  align-content: start;
  gap: 16px;
  max-width: 390px;
}
.site-footer .brand,
body > footer .footer-logo {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  text-decoration: none;
  font-size: 26px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
}
.site-footer .brand::before,
body > footer .footer-logo::before {
  content: "";
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 0;
  background: url('/assets/brand/ico64-display.svg?v=20260428-display1') center / contain no-repeat;
  box-shadow: none;
}
.site-footer .brand .brand-mark,
body > footer .footer-logo .brand-mark { display: none !important; }
.site-footer .footer-brand-block p,
body > footer .footer-brand-block p {
  max-width: 360px;
  margin: 0;
  color: rgba(224, 248, 250, .9);
  font-size: 15px;
  line-height: 1.58;
}
.site-footer .footer-cta,
body > footer .footer-cta {
  width: max-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: var(--radius);
  padding: 11px 16px;
  background: var(--teal);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.site-footer .footer-cta:hover,
body > footer .footer-cta:hover {
  transform: translateY(-2px);
  background: #08b8b5;
  border-color: rgba(255,255,255,.58);
}
.site-footer .footer-columns,
body > footer .footer-grid {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  gap: clamp(18px, 2.6vw, 30px);
}
body > footer .footer-grid {
  grid-template-columns: minmax(190px, 1.35fr) minmax(130px, .72fr) minmax(170px, .92fr);
}
.site-footer .footer-group,
body > footer .footer-col {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 7px;
}
.site-footer .footer-group h3,
body > footer .footer-col h3 {
  margin: 0 0 7px;
  color: var(--aqua);
  font-size: 12px;
  font-weight: 950;
  line-height: 1.2;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.site-footer .footer-group a,
body > footer .footer-col a {
  display: block;
  width: fit-content;
  max-width: 100%;
  border: 0;
  padding: 5px 0;
  color: rgba(244, 253, 255, .9);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.32;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: color .18s ease, transform .18s ease;
}
.site-footer .footer-group a:hover,
body > footer .footer-col a:hover {
  color: #fff;
  transform: translateX(3px);
}
.site-footer .footer-bottom,
body > footer > .footer-bottom,
.site-footer .footer-inner > .footer-bottom {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.18);
  padding: 18px 0 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: rgba(213, 238, 244, .82);
  font-size: 13px;
  line-height: 1.45;
}
.site-footer .footer-inner > .footer-bottom { width: 100%; padding-bottom: 0; }
@media (max-width: 980px) {
  .site-footer .footer-top,
  body > footer > .footer-inner { grid-template-columns: 1fr; row-gap: 32px; }
  .site-footer .footer-columns,
  body > footer .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .site-footer .footer-inner,
  body > footer > .footer-inner { padding: 38px 0 22px; }
  .site-footer .footer-columns,
  body > footer .footer-grid { grid-template-columns: 1fr; gap: 22px; }
  .site-footer .footer-brand-block,
  body > footer .footer-brand-block { max-width: none; }
  .site-footer .footer-cta,
  body > footer .footer-cta { width: 100%; }
  .site-footer .footer-bottom,
  body > footer > .footer-bottom,
  .site-footer .footer-inner > .footer-bottom { display: grid; }
}

/* 2026-04-27 exact SVG logo in header and footer */
.topbar.site-header .brand::before,
.site-header .brand::before,
.site-footer .brand::before,
body > footer .footer-logo::before,
.footer-logo::before {
  content: "";
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 0;
  background: url('/assets/brand/ico64-display.svg?v=20260428-display1') center / contain no-repeat;
  box-shadow: none;
}
.topbar.site-header .brand .brand-mark,
.site-header .brand .brand-mark,
.site-footer .brand .brand-mark,
body > footer .footer-logo .brand-mark {
  display: none !important;
}
@media (max-width: 560px) {
  .topbar.site-header .brand::before,
  .site-header .brand::before,
  .site-footer .brand::before,
  body > footer .footer-logo::before,
  .footer-logo::before {
    width: 32px;
    height: 32px;
  }
}

/* 2026-04-28 SoloCruz transparent display logo */
.topbar.site-header .brand::before,
.site-header .brand::before,
.site-footer .brand::before,
body > footer .footer-logo::before,
.footer-logo::before {
  background: url('/assets/brand/ico64-display.svg?v=20260428-display1') center / contain no-repeat;
  filter:
    drop-shadow(0 1px 0 rgba(255,255,255,.95))
    drop-shadow(1px 0 0 rgba(255,255,255,.95))
    drop-shadow(0 -1px 0 rgba(255,255,255,.95))
    drop-shadow(-1px 0 0 rgba(255,255,255,.95));
}

/* 2026-04-28 footer logo size */
.site-footer .brand::before,
body > footer .footer-logo::before,
.footer-logo::before {
  width: 50px;
  height: 50px;
}

/* 2026-04-28 footer language switcher */
.site-footer .footer-brand-block > .lang-switch,
body > footer .footer-brand-block > .lang-switch {
  display: block;
  width: 190px;
  max-width: 100%;
  margin: 2px 0 0;
  position: relative;
  z-index: 60;
}
.site-footer .footer-brand-block > .lang-switch summary,
body > footer .footer-brand-block > .lang-switch summary {
  box-sizing: border-box;
  width: 100%;
  min-height: 44px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  list-style: none;
  cursor: pointer;
  border: 1px solid rgba(94,234,212,.42);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,255,255,.14), rgba(255,255,255,.07));
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 12px 28px rgba(0,0,0,.14);
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}
.site-footer .footer-brand-block > .lang-switch summary::-webkit-details-marker,
body > footer .footer-brand-block > .lang-switch summary::-webkit-details-marker {
  display: none;
}
.site-footer .footer-brand-block > .lang-switch summary::after,
body > footer .footer-brand-block > .lang-switch summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  flex: 0 0 auto;
}
.site-footer .footer-brand-block > .lang-switch[open] summary,
body > footer .footer-brand-block > .lang-switch[open] summary,
.site-footer .footer-brand-block > .lang-switch summary:hover,
body > footer .footer-brand-block > .lang-switch summary:hover {
  border-color: rgba(94,234,212,.9);
  background: linear-gradient(135deg, rgba(0,166,166,.42), rgba(255,255,255,.10));
  transform: translateY(-1px);
}
.site-footer .footer-brand-block > .lang-switch[open] summary::after,
body > footer .footer-brand-block > .lang-switch[open] summary::after {
  transform: rotate(225deg) translate(-2px,-1px);
}
.site-footer .footer-brand-block > .lang-switch .lang-menu,
body > footer .footer-brand-block > .lang-switch .lang-menu {
  position: absolute;
  left: 0;
  right: auto;
  top: auto;
  bottom: calc(100% + 10px);
  width: 220px;
  min-width: 100%;
  padding: 8px;
  border: 1px solid rgba(10,43,72,.12);
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  box-shadow: 0 22px 52px rgba(0,0,0,.22);
  z-index: 70;
}
.site-footer .footer-brand-block > .lang-switch .lang-menu a,
body > footer .footer-brand-block > .lang-switch .lang-menu a {
  display: block;
  width: 100%;
  padding: 10px 11px;
  border: 0;
  border-radius: 10px;
  color: var(--text);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
  transform: none;
}
.site-footer .footer-brand-block > .lang-switch .lang-menu a:hover,
body > footer .footer-brand-block > .lang-switch .lang-menu a:hover,
.site-footer .footer-brand-block > .lang-switch .lang-menu a.active,
body > footer .footer-brand-block > .lang-switch .lang-menu a.active {
  background: #eef9f9;
  color: var(--navy);
  transform: none;
}
@media (max-width: 560px) {
  .site-footer .footer-brand-block > .lang-switch,
  body > footer .footer-brand-block > .lang-switch,
  .site-footer .footer-brand-block > .lang-switch .lang-menu,
  body > footer .footer-brand-block > .lang-switch .lang-menu {
    width: 100%;
  }
}

/* 2026-04-28 footer layout repair */
.site-footer .footer-inner {
  display: block;
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 24px;
}
.site-footer .footer-top {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.7fr);
  gap: clamp(36px, 6vw, 78px);
  align-items: start;
}
.site-footer .footer-brand-block {
  display: grid;
  gap: 16px;
  align-content: start;
  max-width: 360px;
}
.site-footer .footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}
.site-footer .footer-group {
  min-width: 0;
}
.site-footer .footer-group h3 {
  min-height: 32px;
  margin-bottom: 12px;
}
.site-footer .footer-group a {
  width: auto;
  max-width: 220px;
  padding: 7px 0;
  overflow-wrap: normal;
}
.site-footer .footer-bottom,
.site-footer .footer-inner > .footer-bottom {
  width: 100%;
  margin: 30px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255,255,255,.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(213,238,244,.82);
  font-size: 13px;
  line-height: 1.45;
}
.site-footer .footer-brand-block > .lang-switch {
  margin-top: 2px;
}
@media (max-width: 980px) {
  .site-footer .footer-top {
    grid-template-columns: 1fr;
  }
  .site-footer .footer-columns {
    grid-template-columns: repeat(2, minmax(160px, 1fr));
  }
}
@media (max-width: 560px) {
  .site-footer .footer-inner {
    padding: 38px 0 24px;
  }
  .site-footer .footer-columns {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .site-footer .footer-group h3 {
    min-height: 0;
  }
  .site-footer .footer-group a {
    max-width: none;
  }
  .site-footer .footer-bottom,
  .site-footer .footer-inner > .footer-bottom {
    display: grid;
  }
}

.post-intro { margin-top: 16px; }
.sources { margin-top: 36px; }
.sources h2 { margin: 0 0 10px; }
.sources ul { margin: 0; padding-left: 18px; }
.cta-box-button { padding: 16px 40px; font-size: 18px; }
.blog-card .img img { width: 100%; height: 100%; object-fit: cover; }
