@font-face {
  font-family: "Marcellus";
  src: url("/assets/fonts/Marcellus-Regular.woff2") format("woff2"),
       url("/assets/fonts/Marcellus-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MarcellusSC";
  src: url("/assets/fonts/MarcellusSC-Regular.woff2") format("woff2"),
       url("/assets/fonts/MarcellusSC-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #062746;
  --deep: #002242;
  --mid: #1d4468;
  --gold: #bf975d;
  --gold-soft: #d7b173;
  --gold-text: #79551f;
  --cream: #fefdfb;
  --mist: #f3f0e9;
  --ink: #0b1f2e;
  --muted: #5f7180;
  --line: rgba(6, 39, 70, 0.12);
  --line-gold: rgba(191, 151, 93, 0.36);
  --success: #4a7a63;
  --ocean: #062746;
  --shadow-soft: 0 24px 80px rgba(6, 39, 70, 0.10);
  --shadow-deep: 0 36px 90px rgba(0, 34, 66, 0.28);
  --serif: "Marcellus", Georgia, serif;
  --serif-sc: "MarcellusSC", "Marcellus", Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 86% 5%, rgba(191, 151, 93, 0.10), transparent 28rem),
    linear-gradient(180deg, #fffdf8 0%, var(--cream) 38%, #f8f4ed 100%);
  color: var(--navy);
  font-family: var(--sans);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(6, 39, 70, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 39, 70, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 65%);
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--cream);
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

button {
  font: inherit;
}

.section-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  width: min(1240px, calc(100% - 48px));
  min-height: 86px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(254, 253, 251, 0.86);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(191, 151, 93, 0.42);
  box-shadow: 0 8px 28px rgba(6, 39, 70, 0.10);
}

.brand-wordmark {
  line-height: 1.1;
}

.brand-wordmark strong {
  display: block;
  font-family: var(--serif-sc);
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--navy);
}

.brand-wordmark small {
  display: block;
  margin-top: 4px;
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  color: rgba(6, 39, 70, 0.72);
}

.desktop-nav a:not(.nav-pill):hover,
.site-footer a:hover {
  color: var(--gold-text);
}

.nav-pill {
  padding: 10px 17px;
  border: 1px solid var(--navy);
  border-radius: 999px;
  color: var(--cream);
  background: var(--navy);
  font-weight: 650;
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  list-style: none;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 15px;
  font-weight: 650;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: 230px;
  padding: 10px;
  border: 1px solid var(--line-gold);
  border-radius: 20px;
  background: rgba(254, 253, 251, 0.98);
  box-shadow: var(--shadow-soft);
}

.mobile-menu-panel a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--navy);
}

.mobile-menu-panel a:hover {
  background: var(--mist);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-text);
  font-family: var(--serif-sc);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero {
  min-height: 790px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  align-items: center;
  gap: 72px;
  padding-block: 82px 112px;
}

.hero h1,
.intro h2,
.section-heading h2,
.tipping h2,
.trust h2,
.plus h2,
.cta-section h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(54px, 6.2vw, 88px);
}

.hero-lead {
  max-width: 660px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border: 1px solid var(--navy);
  border-radius: 999px;
  background: var(--navy);
  color: var(--cream);
  font-weight: 700;
  box-shadow: 0 16px 32px rgba(6, 39, 70, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--deep);
  box-shadow: 0 22px 42px rgba(6, 39, 70, 0.22);
}

.button-gold {
  border-color: var(--gold);
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  color: var(--deep);
  box-shadow: 0 18px 36px rgba(191, 151, 93, 0.24);
}

.button-gold:hover {
  background: linear-gradient(180deg, #e0ba7a, var(--gold));
}

.text-link {
  font-weight: 700;
  color: var(--navy);
}

.text-link span {
  color: var(--gold-text);
  margin-left: 8px;
}

.hero-note {
  margin-top: 24px;
  color: rgba(6, 39, 70, 0.52);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-height: 640px;
  display: grid;
  place-items: center;
}

.halo {
  position: absolute;
  border-radius: 999px;
}

.halo-one {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(191, 151, 93, 0.14), rgba(191, 151, 93, 0.03) 62%, transparent 64%);
}

.halo-two {
  width: 370px;
  height: 370px;
  border: 1px solid rgba(191, 151, 93, 0.34);
}

.phone {
  width: 322px;
  position: relative;
  z-index: 2;
  padding: 19px 17px 13px;
  border: 9px solid var(--navy);
  border-radius: 45px;
  background: #ffffff;
  box-shadow: var(--shadow-deep);
}

.phone-status,
.app-topline,
.signal-row,
.app-tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-status {
  padding: 0 5px 18px;
  font-size: 10px;
}

.app-topline {
  font-size: 12px;
}

.avatar {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--cream);
  font-size: 10px;
  font-weight: 800;
}

.port-card {
  padding: 22px 3px 13px;
}

.port-card small,
.return-card small,
.plan-card small,
.floating-note small,
.mini-screen small,
.confidence-panel > small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.port-card h2 {
  margin: 3px 0;
  font: 400 27px/1.1 var(--serif);
  letter-spacing: -0.03em;
}

.port-card p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.return-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  border-radius: 18px;
  background: var(--navy);
  color: var(--cream);
}

.return-card small {
  display: block;
  color: rgba(254, 253, 251, 0.65);
}

.return-card strong {
  font: 400 34px var(--serif);
}

.return-card > span {
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(74, 122, 99, 0.24);
  color: #d9efe4;
  font-size: 9px;
  font-weight: 800;
}

.signal-row {
  padding: 14px 3px;
  color: var(--muted);
  font-size: 9px;
}

.plan-card {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.plan-card h3 {
  margin: 4px 0;
  font: 400 21px var(--serif);
}

.plan-card p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.route-line,
.mini-route {
  display: grid;
  grid-template-columns: 8px 1fr;
  gap: 6px;
  margin: 12px 0;
  font-size: 9px;
}

.route-line i,
.mini-route i {
  width: 6px;
  height: 6px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.plan-card button {
  width: 100%;
  margin-top: 3px;
  padding: 9px;
  border: 0;
  border-radius: 999px;
  background: var(--navy);
  color: var(--cream);
  font-size: 10px;
  font-weight: 700;
}

.app-tabs {
  padding: 16px 4px 0;
  color: var(--muted);
  font-size: 8px;
}

.app-tabs b {
  color: var(--navy);
}

.floating-note {
  position: absolute;
  right: 0;
  bottom: 118px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 17px;
  border: 1px solid rgba(191, 151, 93, 0.18);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(6, 39, 70, 0.16);
}

.floating-note > span {
  color: var(--gold);
  font-size: 24px;
}

.floating-note b {
  display: block;
  color: var(--navy);
  font-size: 11px;
}

.intro {
  padding-block: 112px;
  border-top: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 90px;
  align-items: start;
}

.intro h2,
.section-heading h2,
.tipping h2,
.trust h2,
.plus h2,
.cta-section h2 {
  font-size: clamp(40px, 5vw, 64px);
}

.intro-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
}

.feature-section {
  padding-block: 120px;
  background:
    radial-gradient(circle at 18% 4%, rgba(191, 151, 93, 0.18), transparent 28rem),
    linear-gradient(180deg, var(--deep), var(--navy));
  color: var(--cream);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 44px;
  margin-bottom: 70px;
}

.section-heading .eyebrow {
  min-width: 230px;
}

.section-heading.light h2 {
  color: var(--cream);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.12fr 1fr 1fr;
  gap: 1px;
  border: 1px solid rgba(254, 253, 251, 0.13);
  background: rgba(254, 253, 251, 0.13);
}

.feature-grid article {
  min-height: 254px;
  padding: 36px;
  background: rgba(0, 34, 66, 0.92);
}

.feature-grid .feature-main {
  grid-row: span 2;
  padding: 28px;
}

.feature-grid h3 {
  margin: 25px 0 8px;
  font: 400 27px var(--serif);
}

.feature-grid p {
  margin: 0;
  color: rgba(254, 253, 251, 0.68);
  font-size: 14px;
}

.line-icon {
  color: var(--gold-text);
  font-family: var(--serif-sc);
  font-size: 13px;
  letter-spacing: 0.18em;
}

.mini-screen {
  margin-bottom: 32px;
  padding: 22px;
  border-radius: 20px;
  background: var(--cream);
  color: var(--navy);
}

.mini-screen b {
  display: block;
  margin: 5px 0 18px;
  font: 400 22px var(--serif);
}

.tipping {
  padding-block: 116px;
}

.tipping-panel {
  position: relative;
  overflow: hidden;
  padding: 58px 42px 48px;
  border: 1px solid var(--line-gold);
  border-radius: 34px;
  background:
    radial-gradient(900px 260px at 50% 0%, rgba(191, 151, 93, 0.22), transparent 62%),
    linear-gradient(145deg, var(--deep), var(--navy) 58%, var(--mid));
  color: var(--cream);
  text-align: center;
  box-shadow: var(--shadow-deep);
}

.tipping-panel h2 {
  color: var(--cream);
}

.tipping-panel > p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px auto 28px;
  color: rgba(254, 253, 251, 0.78);
  font-size: 18px;
}

.country-links {
  max-width: 720px;
  margin: 0 auto 28px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.country-links a {
  padding: 8px 15px;
  border: 1px solid rgba(254, 253, 251, 0.26);
  border-radius: 999px;
  color: var(--cream);
  background: rgba(254, 253, 251, 0.04);
  font-size: 14px;
}

.country-links a:hover {
  border-color: rgba(191, 151, 93, 0.78);
  background: rgba(191, 151, 93, 0.14);
}

.trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  padding-block: 120px;
  border-top: 1px solid var(--line);
}

.trust-copy > p:not(.eyebrow),
.plus > div > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.confidence-panel {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.confidence-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.confidence-top h3 {
  margin: 18px 0;
  font: 400 29px var(--serif);
}

.confidence-top span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(74, 122, 99, 0.12);
  color: var(--success);
  font-size: 12px;
  font-weight: 800;
}

.meter {
  height: 5px;
  border-radius: 999px;
  background: rgba(6, 39, 70, 0.08);
}

.meter i {
  display: block;
  width: 82%;
  height: 100%;
  border-radius: inherit;
  background: var(--success);
}

.confidence-panel dl {
  margin: 28px 0 0;
}

.confidence-panel dl > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.confidence-panel dt {
  color: var(--muted);
}

.confidence-panel dd {
  margin: 0;
  font-weight: 750;
}

.plus {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  padding-block: 116px;
  border-top: 1px solid var(--line);
}

.plus-list p {
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.plus-list span {
  margin-right: 24px;
  color: var(--gold);
  font-family: var(--serif-sc);
  font-size: 12px;
}

.plus-list small {
  display: block;
  margin-top: 18px;
  color: var(--muted);
}

.cta-section {
  padding: 112px 0;
  background:
    radial-gradient(circle at 50% -10%, rgba(191, 151, 93, 0.22), transparent 30rem),
    var(--navy);
  color: var(--cream);
  text-align: center;
}

.cta-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 116px;
  height: 116px;
  margin: 0 auto 34px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 48%, rgba(215, 177, 115, 0.18), transparent 34%),
    radial-gradient(circle, rgba(254, 253, 251, 0.08), transparent 63%);
  border: 1px solid rgba(215, 177, 115, 0.42);
  box-shadow:
    0 0 0 1px rgba(254, 253, 251, 0.05) inset,
    0 24px 70px rgba(0, 20, 40, 0.36);
}

.cta-mark::before,
.cta-mark::after {
  content: "";
  position: absolute;
  inset: 50% 14px auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(215, 177, 115, 0.72), transparent);
  transform: translateY(-50%);
}

.cta-mark::after {
  transform: translateY(-50%) rotate(90deg);
}

.cta-mark__ring {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(215, 177, 115, 0.52);
  border-radius: 50%;
}

.cta-mark__ring::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(254, 253, 251, 0.08);
  border-radius: 50%;
}

.cta-mark__star {
  position: relative;
  width: 54px;
  height: 54px;
  z-index: 1;
  background:
    linear-gradient(45deg, transparent 43%, rgba(254, 253, 251, 0.82) 46%, var(--gold-soft) 52%, transparent 56%),
    linear-gradient(-45deg, transparent 43%, rgba(254, 253, 251, 0.78) 46%, var(--gold) 52%, transparent 56%);
  clip-path: polygon(50% 0, 59% 40%, 100% 50%, 59% 60%, 50% 100%, 41% 60%, 0 50%, 41% 40%);
  filter: drop-shadow(0 8px 18px rgba(0, 20, 40, 0.34));
}

.cta-mark__horizon {
  position: absolute;
  bottom: 23px;
  width: 78px;
  height: 20px;
  border-bottom: 1px solid rgba(215, 177, 115, 0.72);
  border-radius: 50%;
}

.cta-mark__horizon::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: -9px;
  height: 16px;
  border-bottom: 1px solid rgba(215, 177, 115, 0.42);
  border-radius: 50%;
}

.cta-section h2 {
  max-width: 880px;
  margin-inline: auto;
}

.cta-section p:not(.eyebrow) {
  color: rgba(254, 253, 251, 0.72);
  font-size: 18px;
}

.cta-section small {
  display: block;
  margin-top: 17px;
  color: rgba(254, 253, 251, 0.56);
}

.beta-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 52px;
  align-items: center;
  padding-top: 96px;
  padding-bottom: 72px;
}

.beta-hero h1 {
  max-width: 900px;
  margin: 12px 0 24px;
  font-family: var(--serif);
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.94;
  letter-spacing: -0.055em;
  font-weight: 400;
}

.beta-hero p {
  max-width: 780px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}

.beta-card {
  padding: 30px;
  border: 1px solid rgba(191, 151, 93, 0.34);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(243, 240, 233, 0.72)),
    radial-gradient(circle at 20% 0%, rgba(191, 151, 93, 0.16), transparent 48%);
  box-shadow: 0 28px 64px rgba(6, 39, 70, 0.12);
}

.beta-card small {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-text);
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 800;
}

.beta-card ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding-left: 20px;
  color: var(--navy);
  line-height: 1.5;
}

.beta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 24px;
  padding-bottom: 72px;
}

.beta-grid article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.58);
}

.beta-grid h2,
.beta-process h2 {
  margin: 14px 0 12px;
  font-family: var(--serif);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.beta-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.beta-process {
  padding-top: 72px;
  padding-bottom: 84px;
}

.process-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.process-list p {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--muted);
  line-height: 1.55;
}

.process-list a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.process-list span {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--cream);
  font-family: var(--serif);
}

.beta-note {
  margin-top: 18px;
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  border-radius: 18px;
  background: rgba(191, 151, 93, 0.10);
  color: var(--muted);
  line-height: 1.55;
}

.site-footer {
  padding-block: 55px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 25px;
  align-items: center;
}

.site-footer > p {
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
}

.site-footer > small {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   Holding page: one public tool while the Portolana app is in development
   -------------------------------------------------------------------------- */

.holding-page {
  min-height: 100vh;
}

.holding-header {
  position: relative;
}

.holding-hero {
  min-height: calc(100vh - 240px);
  padding-block: clamp(72px, 10vw, 142px);
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(48px, 8vw, 112px);
}

.holding-copy {
  max-width: 710px;
}

.status-badge {
  width: fit-content;
  margin: 0 0 38px;
  padding: 9px 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line-gold);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: rgba(6, 39, 70, 0.7);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.status-badge span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(191, 151, 93, 0.13);
}

.holding-copy h1 {
  max-width: 680px;
  margin: 14px 0 24px;
  color: var(--navy);
  font: 400 clamp(52px, 6.5vw, 88px)/0.98 var(--serif);
  letter-spacing: -0.055em;
}

.holding-lead {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
}

.holding-copy .hero-actions {
  margin-top: 36px;
}

.holding-note {
  margin: 20px 0 0;
  color: rgba(6, 39, 70, 0.5);
  font-size: 13px;
}

.holding-tool {
  position: relative;
  overflow: hidden;
  padding: clamp(32px, 5vw, 54px);
  border: 1px solid var(--line-gold);
  border-radius: 36px;
  background:
    radial-gradient(circle at 82% 4%, rgba(215, 177, 115, 0.22), transparent 15rem),
    linear-gradient(145deg, var(--deep), var(--navy) 60%, var(--mid));
  color: var(--cream);
  box-shadow: var(--shadow-deep);
}

.holding-tool::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -94px;
  bottom: -112px;
  border: 1px solid rgba(215, 177, 115, 0.27);
  border-radius: 50%;
}

.tool-kicker {
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.tool-symbol {
  width: 64px;
  height: 64px;
  margin: 36px 0 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(215, 177, 115, 0.58);
  border-radius: 50%;
  color: var(--gold-soft);
  font: 400 28px var(--serif);
}

.holding-tool h2 {
  margin: 0;
  color: var(--cream);
  font: 400 clamp(32px, 3.5vw, 46px)/1.08 var(--serif);
}

.holding-tool > p {
  margin: 17px 0 30px;
  color: rgba(254, 253, 251, 0.7);
}

.tool-stats {
  margin-bottom: 34px;
  padding-block: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid rgba(254, 253, 251, 0.13);
}

.tool-stats div {
  display: grid;
  gap: 3px;
}

.tool-stats strong {
  color: var(--cream);
  font: 400 27px var(--serif);
}

.tool-stats span {
  color: rgba(254, 253, 251, 0.52);
  font-size: 11px;
}

.holding-tool .text-link {
  color: var(--gold-soft);
  font-weight: 750;
}

.holding-disclaimer {
  padding: 24px 0 46px;
  border-bottom: 1px solid var(--line);
}

.holding-disclaimer p {
  max-width: 820px;
  margin: 0;
  color: rgba(6, 39, 70, 0.52);
  font-size: 13px;
}

@media (max-width: 960px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero,
  .intro-grid,
  .trust,
  .plus,
  .holding-hero {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .holding-hero {
    min-height: auto;
  }

  .hero {
    min-height: 0;
    padding-top: 64px;
  }

  .section-heading {
    display: block;
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-grid .feature-main {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

/* --------------------------------------------------------------------------
   Premium-Unterseiten: Legacy-Navigation, Legal-Seiten und Trinkgeld-Guide
   --------------------------------------------------------------------------
   Viele SEO- und Rechtstexte werden generiert und nutzen ältere Klassen wie
   .site-nav, .seo und .legal. Diese Schicht hebt alle Unterseiten auf den
   neuen Navy/Champagne/Cream-Look der Startseite, ohne die Inhalte neu zu
   strukturieren.
*/

.site-nav {
  width: min(1240px, calc(100% - 48px));
  min-height: 86px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(254, 253, 251, 0.88);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
}

.site-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.site-nav__mark {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(191, 151, 93, 0.42);
  box-shadow: 0 8px 28px rgba(6, 39, 70, 0.10);
}

.site-nav__name {
  font-family: var(--serif-sc);
  color: var(--navy);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav__actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.site-nav__menu {
  position: relative;
}

.site-nav__menu > summary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  list-style: none;
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(254, 253, 251, 0.72);
  color: rgba(6, 39, 70, 0.76);
  font-size: 14px;
  font-weight: 700;
}

.site-nav__menu > summary::-webkit-details-marker,
.site-nav__menu > summary::marker {
  display: none;
  content: "";
}

.site-nav__menu[open] > summary,
.site-nav__menu > summary:hover {
  border-color: rgba(191, 151, 93, 0.58);
  color: var(--navy);
}

.site-nav__menu-icon {
  width: 14px;
  height: 14px;
}

.site-nav__menu-list {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 245px;
  margin: 0;
  padding: 9px;
  list-style: none;
  border: 1px solid var(--line-gold);
  border-radius: 22px;
  background: rgba(254, 253, 251, 0.98);
  box-shadow: var(--shadow-soft);
}

.site-nav__menu-list a {
  display: block;
  padding: 11px 14px;
  border-radius: 14px;
  color: var(--navy);
  font-size: 14px;
}

.site-nav__menu-list a:hover,
.site-nav__menu-list a[aria-current="page"] {
  background: var(--mist);
  color: var(--gold);
}

.site-nav__menu-list hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 6px 8px;
}

.site-nav__menu-label {
  padding: 9px 14px 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav__lang {
  display: inline-flex;
  gap: 3px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(254, 253, 251, 0.68);
}

.site-nav__lang-btn {
  padding: 7px 12px;
  border-radius: 999px;
  color: rgba(6, 39, 70, 0.66);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.site-nav__lang-btn:hover {
  color: var(--navy);
}

.site-nav__lang-btn[aria-current="page"] {
  background: var(--navy);
  color: var(--cream);
}

.seo,
.legal {
  width: min(980px, calc(100% - 48px));
  margin: 74px auto 104px;
  padding: clamp(34px, 5vw, 66px);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(191, 151, 93, 0.24);
  border-radius: 34px;
  background:
    radial-gradient(900px 260px at 50% 0%, rgba(191, 151, 93, 0.14), transparent 62%),
    rgba(254, 253, 251, 0.84);
  box-shadow: var(--shadow-soft);
}

.seo::before,
.legal::before {
  content: "";
  position: absolute;
  top: 32px;
  left: clamp(34px, 5vw, 66px);
  width: 58px;
  height: 1px;
  background: var(--gold);
}

.seo h1,
.legal h1 {
  max-width: 830px;
  margin: 26px 0 18px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.seo h2,
.legal h2 {
  margin: 46px 0 14px;
  color: var(--navy);
  text-align: left;
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.seo h3,
.legal h3 {
  margin: 28px 0 10px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.seo p,
.seo li,
.seo td,
.legal p,
.legal li {
  color: var(--muted);
}

.seo > p:first-of-type,
.legal > p:first-of-type {
  max-width: 760px;
  color: rgba(6, 39, 70, 0.72);
  font-size: 18px;
}

.seo a,
.legal a {
  color: var(--navy);
  text-decoration-color: rgba(191, 151, 93, 0.42);
  text-underline-offset: 4px;
}

.seo a:hover,
.legal a:hover {
  color: var(--gold);
}

.back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(254, 253, 251, 0.72);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.back:hover {
  border-color: var(--line-gold);
}

.seo table {
  width: 100%;
  margin: 18px 0 26px;
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 48px rgba(6, 39, 70, 0.06);
}

.seo th,
.seo td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.seo th {
  color: var(--navy);
  background: rgba(243, 240, 233, 0.82);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.seo tr:last-child td {
  border-bottom: 0;
}

.seo strong,
.legal strong {
  color: var(--navy);
}

.seo ul:not(.related-list):not(.ports-list),
.legal ul {
  padding-left: 20px;
  margin-top: 18px;
}

.seo ul:not(.related-list):not(.ports-list) {
  columns: 2;
  column-gap: 42px;
}

.seo ul:not(.related-list):not(.ports-list) li,
.legal ul li {
  margin: 0 0 8px;
  break-inside: avoid;
}

.related-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.related-list li {
  display: inline;
}

.related-list a,
.country-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  color: var(--navy);
  font-size: 14px;
  text-decoration: none;
}

.related-list a:hover,
.country-links a:hover {
  border-color: var(--line-gold);
  background: var(--mist);
}

.ports-map {
  margin: 18px 0 28px;
}

.ports-map img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(191, 151, 93, 0.22);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
}

.ports-map-credit {
  margin-top: 8px;
  color: var(--muted);
  text-align: right;
  font-size: 12px;
}

.ports-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.port-item {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
}

.port-name {
  margin-bottom: 6px;
}

.port-name strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

.port-terminal,
.port-links {
  color: var(--muted);
  font-size: 14px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 18px;
  padding: 13px 22px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  color: var(--deep);
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 18px 36px rgba(191, 151, 93, 0.20);
}

.seo .cta {
  background: var(--ocean);
  color: #fff !important;
}

.seo .cta:visited {
  color: #fff !important;
}

.seo .copyright,
.legal .copyright,
.seo p[style*="margin-top:40px"],
.legal p[style*="margin-top:40px"],
.legal p[style*="margin-top:48px"] {
  color: rgba(6, 39, 70, 0.48);
  font-size: 13px !important;
}

@media (max-width: 720px) {
  .site-nav {
    width: min(100% - 30px, 1180px);
    min-height: 74px;
  }

  .site-nav__name {
    font-size: 12px;
  }

  .site-nav__mark {
    width: 40px;
    height: 40px;
  }

  .site-nav__actions {
    gap: 8px;
  }

  .site-nav__lang-btn {
    padding: 7px 9px;
  }

  .seo,
  .legal {
    width: min(100% - 30px, 980px);
    margin-block: 42px 76px;
    border-radius: 28px;
  }

  .seo ul:not(.related-list):not(.ports-list) {
    columns: 1;
  }

  .seo table {
    display: block;
    overflow-x: auto;
  }
}

@media (max-width: 620px) {
  .section-shell,
  .site-header {
    width: min(100% - 30px, 1180px);
  }

  .site-header {
    min-height: 74px;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .brand-wordmark strong {
    font-size: 12px;
  }

  .brand-wordmark small {
    font-size: 8px;
  }

  .hero {
    padding-block: 50px 82px;
  }

  .holding-hero {
    padding-block: 58px 72px;
  }

  .holding-copy h1 {
    font-size: clamp(46px, 12vw, 62px);
  }

  .status-badge {
    margin-bottom: 30px;
  }

  .tool-stats {
    gap: 14px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(40px, 10.8vw, 47px);
    letter-spacing: -0.055em;
    overflow-wrap: normal;
    hyphens: auto;
  }

  .hero-lead,
  .intro-copy p,
  .tipping-panel > p:not(.eyebrow),
  .trust-copy > p:not(.eyebrow),
  .plus > div > p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual {
    min-height: 540px;
    margin-inline: -18px;
    transform: scale(0.9);
  }

  .floating-note {
    right: -8px;
  }

  .intro,
  .feature-section,
  .tipping,
  .trust,
  .plus {
    padding-block: 82px;
  }

  .beta-hero,
  .beta-grid {
    grid-template-columns: 1fr;
  }

  .beta-hero {
    padding-top: 70px;
    gap: 28px;
  }

  .beta-grid {
    padding-bottom: 56px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid .feature-main {
    grid-column: auto;
  }

  .feature-grid article,
  .tipping-panel,
  .confidence-panel {
    padding: 28px;
  }

  .cta-section {
    padding: 88px 0;
  }
}
