

/*
Harmonee Payment Network - Copyright 2026 
*/


:root {
  --background: #f7f7f7;
  --black: #020107;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
}

body {
  background: var(--background);
  color: var(--black);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.placeholder {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  padding: 2rem;
  text-align: center;
}

.brand {
  display: block;
  width: 141px;
  height: 200px;
  background: url("logo.png") center / contain no-repeat;
  -webkit-touch-callout: none;
  -webkit-user-drag: none;
  user-select: none;
}

.intro {
  max-width: 680px;
}

.intro h1 {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  letter-spacing: -0.03em;
}

.intro p {
  margin: 0.75rem 0 0;
  font-size: 1rem;
  line-height: 1.6;
}

.intro .status {
  color: #55525a;
  font-size: 0.875rem;
}

.site-footer {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
  text-align: center;
}

.site-footer a {
  color: var(--black);
  font-size: 0.6875rem;
  opacity: 0.22;
  text-decoration: none;
  transition: opacity 160ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--black);
  opacity: 0.75;
  text-decoration: underline;
}

.privacy-page {
  width: min(100% - 2rem, 720px);
  margin: 0 auto;
  padding: 4rem 0;
  line-height: 1.65;
}

.privacy-page h1 {
  margin-top: 0;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
}

.privacy-page h2 {
  margin-top: 2rem;
  font-size: 1.125rem;
}

.privacy-page .back-link {
  display: inline-block;
  margin-bottom: 2rem;
  color: #55525a;
}
