* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  overflow-x: hidden;
  background: #f8f4ed;
  color: #2a1f1a;
}
.serif {
  font-family: "Playfair Display", "New York", serif;
}
a {
  text-decoration: none;
  color: inherit;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition:
    background 0.5s,
    backdrop-filter 0.4s;
}
.nav.on-dark {
  background: transparent;
}
.nav.on-light {
  background: rgba(248, 244, 237, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 0.5px solid rgba(103, 60, 52, 0.06);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-right {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 12px;
}
.nl {
  transition: color 0.4s;
}
.ncta {
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition:
    transform 0.2s,
    background 0.4s,
    color 0.4s;
}
.ncta:hover {
  transform: scale(1.04);
}
.nav.on-dark .nl {
  color: #fff;
}
.nav.on-dark .nl:hover {
  color: #f0d9a8;
}
.nav.on-dark .ncta {
  background: #f0d9a8;
  color: #2a1f1a;
}
.nav.on-dark {
  background: rgba(248, 244, 237, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 8px;
  padding: 0 40px;
}
.nav.on-dark .nav-logo img {
  filter: none;
}
.nav.on-light .nl {
  color: rgba(42, 31, 26, 0.5);
}
.nav.on-light .nl:hover {
  color: #2a1f1a;
}
.nav.on-light .ncta {
  background: #cf5527;
  color: #f8f4ed;
}
.nav.on-light .nav-logo img {
  filter: none;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: #1f1612;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}
.glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero .g1 {
  top: -12%;
  right: -8%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, #cf5527 0%, transparent 50%);
  opacity: 0.2;
  animation: d1 16s ease-in-out infinite alternate;
}
.hero .g2 {
  bottom: 5%;
  left: -10%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, #998731 0%, transparent 55%);
  opacity: 0.14;
  animation: d2 18s ease-in-out infinite alternate;
}
@keyframes d1 {
  to {
    transform: translate(-40px, 25px) scale(1.06);
  }
}
@keyframes d2 {
  to {
    transform: translate(25px, -20px) scale(0.94);
  }
}
.hero-center {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}
.hero-tagline {
  font-size: clamp(48px, 10vw, 110px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.96;
  color: #f8f4ed;
  opacity: 0;
  transform: translateY(44px) scale(0.97);
  animation: hu 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}
.hero-tagline em {
  font-style: italic;
  color: #f0d9a8;
}
.hero-subtitle {
  font-size: 22px;
  color: rgba(248, 244, 237, 0.6);
  margin-top: 32px;
  text-align: center;
  letter-spacing: -0.01em;
  text-shadow:
    0 1px 20px rgba(0, 0, 0, 0.7),
    0 0 40px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(16px);
  animation: hu 1s ease 0.6s forwards;
}
.hero-waitlist {
  margin-top: 44px;
  opacity: 0;
  transform: translateY(16px);
  animation: hu 1s ease 0.95s forwards;
}
.hero-form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  align-items: center;
  max-width: 460px;
  margin: 0 auto;
}
.hero-input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 100px;
  border: 1px solid rgba(248, 244, 237, 0.18);
  background: rgba(248, 244, 237, 0.07);
  color: #f8f4ed;
  font-size: 14px;
  outline: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.3s;
}
.hero-input::placeholder {
  color: rgba(248, 244, 237, 0.35);
}
.hero-input:focus {
  border-color: rgba(240, 217, 168, 0.5);
}
.hero-submit {
  padding: 14px 26px;
  border-radius: 100px;
  background: #f0d9a8;
  color: #2a1f1a;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition:
    transform 0.2s,
    box-shadow 0.3s;
}
.hero-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(240, 217, 168, 0.28);
}
.hero-submit:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  box-shadow: none;
}
.hero-submit:disabled:hover {
  transform: none;
  box-shadow: none;
}
.waitlist-feedback {
  flex: 1 1 100%;
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
  min-height: 1.45em;
}
.waitlist-feedback[data-state='success'] {
  color: rgba(240, 217, 168, 0.95);
}
.waitlist-feedback[data-state='error'] {
  color: #f0a8a8;
}
.hero-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 460px;
  margin: 14px auto 0;
  text-align: left;
}
.hero-consent input[type="checkbox"] {
  width: 14px;
  height: 14px;
  margin-top: 2px;
  accent-color: #f0d9a8;
  flex-shrink: 0;
  cursor: pointer;
}
.hero-consent label {
  font-size: 11px;
  color: rgba(248, 244, 237, 0.38);
  line-height: 1.55;
  cursor: pointer;
}
.hero-consent label a {
  color: rgba(248, 244, 237, 0.55);
  text-decoration: underline;
  text-underline-offset: 2px;
}
@keyframes hu {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* PRODUCT — centered showcase */
.product {
  background: #f8f4ed;
  position: relative;
  overflow: hidden;
}
.product-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 120px 48px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.product-text {
  width: 100%;
}
.product-text h2 {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.04;
  margin-bottom: 18px;
}
.product-text h2 em {
  font-style: italic;
  color: #7d2027;
}
.product-text p {
  font-size: 16px;
  color: #8e8175;
  line-height: 1.75;
  max-width: 480px;
  margin: 0 auto;
}
.product-card {
  width: 100%;
  max-width: 520px;
  margin-top: 56px;
}
.vc {
  background: url("assets/berlin.jpg") center center/cover no-repeat;
  border-radius: 28px;
  padding: 40px 36px;
  color: #f8f4ed;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 60px 100px rgba(0, 0, 0, 0.22),
    0 24px 40px rgba(0, 0, 0, 0.14);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.vc:hover {
  transform: translateY(-4px);
}
.vc::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(20, 14, 10, 0.72) 0%,
    rgba(30, 20, 14, 0.55) 60%,
    rgba(20, 10, 6, 0.45) 100%
  );
  z-index: 0;
}
.vc > * {
  position: relative;
  z-index: 1;
}
.vc-glow {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, #a89438 0%, transparent 55%);
  opacity: 0.3;
  animation: vcg 12s ease-in-out infinite alternate;
}
@keyframes vcg {
  to {
    transform: translate(-12px, 10px);
  }
}
.vc-top {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}
.vc-name {
  font-size: 10px;
  color: rgba(248, 244, 237, 0.6);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.vc-streak {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: #f0d9a8;
  font-weight: 500;
}
.vc-amount {
  font-size: clamp(48px, 8vw, 72px);
  font-weight: 300;
  letter-spacing: -3px;
  position: relative;
}
.vc-amount span {
  color: rgba(248, 244, 237, 0.4);
}
.vc-sub {
  font-size: 12px;
  color: rgba(248, 244, 237, 0.55);
  margin-top: 8px;
  position: relative;
}
.vc-sub em {
  color: #f0d9a8;
  font-style: normal;
  font-weight: 500;
}
.vc-avatars {
  display: flex;
  margin-top: 24px;
  position: relative;
}
.vc-av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
  border: 2.5px solid #46401c;
}

/* FULL-SCREEN CARD STACK — dvh tracks mobile browser chrome; JS uses sticky.offsetHeight to match */
.fullcard-section {
  height: calc(100vh + 7800px);
  height: calc(100dvh + 7800px);
}
.fullcard-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}
.fcard {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.fc1 {
  background-image: url("assets/card-street.jpg");
  z-index: 1;
}
.fc2 {
  background-image: url("assets/card-bedroom.jpg");
  z-index: 2;
  transform: translateY(100%);
}
.fc3 {
  background-image: url("assets/card-bikes.jpg");
  z-index: 3;
  transform: translateY(100%);
}
.fc4 {
  background-image: url("assets/card-keys.jpg");
  z-index: 4;
  transform: translateY(100%);
}
.fcard-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12, 8, 5, 0.9) 0%,
    rgba(12, 8, 5, 0.48) 50%,
    rgba(12, 8, 5, 0.12) 100%
  );
}
.fcard-content {
  position: absolute;
  bottom: 10%;
  left: 8%;
  right: 8%;
  z-index: 2;
  color: #f8f4ed;
}
.fcard-title {
  font-size: clamp(40px, 7vw, 96px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.97;
  margin-bottom: 28px;
}
.fcard-title em {
  font-style: italic;
  color: #f0d9a8;
}
.fcard-sub {
  font-size: clamp(14px, 1.3vw, 18px);
  color: rgba(248, 244, 237, 0.68);
  max-width: 540px;
  line-height: 1.7;
}

/* CLOSE */
.close {
  background: #3d4a2e;
  position: relative;
  overflow: hidden;
}
.close .g1 {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 45vw;
  height: 45vw;
  border-radius: 50%;
  background: radial-gradient(circle, #8aad5a 0%, transparent 55%);
  opacity: 0.1;
  animation: d1 14s ease-in-out infinite alternate;
}
.close .g2 {
  position: absolute;
  bottom: -40px;
  left: -60px;
  width: 35vw;
  height: 35vw;
  border-radius: 50%;
  background: radial-gradient(circle, #556b2f 0%, transparent 60%);
  opacity: 0.12;
  animation: d2 16s ease-in-out infinite alternate;
}
.close-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 140px 48px 56px;
  position: relative;
  z-index: 2;
}
.close-lines {
  font-size: clamp(26px, 4.5vw, 50px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #f8f4ed;
}
.close-line {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.close-line.visible {
  opacity: 1;
  transform: translateY(0);
}
.close-waitlist {
  margin-top: 44px;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.close-waitlist.visible {
  opacity: 1;
  transform: translateY(0);
}
.close-cta {
  margin-top: 32px;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.close-cta.visible {
  opacity: 1;
  transform: translateY(0);
}
.close-btn {
  background: #f0d9a8;
  color: #2a1f1a;
  padding: 16px 48px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.close-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(240, 217, 168, 0.2);
}

.footer {
  padding: 70px 48px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
  border-top: 0.5px solid rgba(248, 244, 237, 0.06);
}
.footer-left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links {
  display: flex;
  gap: 20px;
  font-size: 11px;
}
.footer-links a {
  color: rgba(248, 244, 237, 0.3);
  transition: color 0.3s;
}
.footer-links a:hover {
  color: rgba(248, 244, 237, 0.6);
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.rd1 {
  transition-delay: 0s;
}
.rd2 {
  transition-delay: 0.12s;
}
.rd3 {
  transition-delay: 0.24s;
}
.rd4 {
  transition-delay: 0.36s;
}

/* HOW IT WORKS */
.hiw-section {
  background: #f8f4ed;
  padding: 140px 0 100px;
}
.hiw-header {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px 72px;
  border-bottom: 0.5px solid rgba(42, 31, 26, 0.1);
}
.hiw-title {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.06;
  color: #2a1f1a;
  margin-bottom: 14px;
}
.hiw-subtitle {
  font-size: 16px;
  color: #8e8175;
  line-height: 1.65;
  max-width: 480px;
}
.hiw-step {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 48px;
  display: flex;
  gap: 64px;
  align-items: flex-start;
  border-bottom: 0.5px solid rgba(42, 31, 26, 0.08);
}
.hiw-num {
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 1;
  color: rgba(42, 31, 26, 0.07);
  flex: 0 0 110px;
  text-align: right;
  padding-top: 6px;
}
.hiw-body {
  flex: 1;
}
.hiw-icon-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.hiw-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: #2a1f1a;
  border-radius: 14px;
  padding: 13px;
  color: #f8f4ed;
  box-sizing: border-box;
}
.hiw-step-title {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #2a1f1a;
}
.hiw-text {
  font-size: 15px;
  color: #8e8175;
  line-height: 1.85;
  max-width: 580px;
  margin-top: 14px;
}

@media (max-width: 768px) {
  .nav {
    padding: 14px 20px;
  }
  .nav.on-dark {
    padding: 0 20px;
  }
  .hero-center {
    padding: 0 20px;
  }
  .product-inner {
    padding: 80px 24px 60px;
  }
  .product-card {
    max-width: 100%;
  }
  /* Same scroll track as desktop — a short track makes one mobile fling traverse all cards */
  .fullcard-section {
    height: calc(100vh + 7800px);
    height: calc(100dvh + 7800px);
  }
  .fcard-content {
    bottom: max(8%, env(safe-area-inset-bottom));
    left: max(6%, env(safe-area-inset-left));
    right: max(6%, env(safe-area-inset-right));
  }
  .fcard-sub {
    max-width: 100%;
  }
  .close-inner {
    padding: 100px 24px 40px;
  }
  .footer {
    flex-direction: column;
    gap: 14px;
    padding: 56px 24px 28px;
  }
  .hiw-section {
    padding: 80px 0 60px;
  }
  .hiw-header {
    padding: 0 24px 48px;
  }
  .hiw-step {
    flex-direction: column;
    gap: 12px;
    padding: 40px 24px;
  }
  .hiw-num {
    font-size: 72px;
    flex: unset;
    width: auto;
    text-align: left;
  }
  .hiw-icon-row {
    margin-bottom: 12px;
  }
  .hiw-text {
    max-width: 100%;
  }
  .hero-form {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-input {
    width: 100%;
    flex: 0 0 auto;
    min-width: 0;
  }
  .hero-submit {
    width: 100%;
    text-align: center;
    align-self: stretch;
    box-sizing: border-box;
  }
  .hero-consent {
    margin-top: 12px;
  }
  .fcard-title {
    font-size: clamp(28px, 8vw, 52px);
  }
  .product-inner {
    padding: 60px 24px 40px;
  }
  .close-inner {
    padding: 80px 24px 40px;
  }
}

/* PRIVACY PAGE */
/* Avoid overflow-x on body clipping fixed/sticky nav on iOS Safari (back link off-screen). */
body.privacy-page {
  overflow-x: visible;
}

.privacy-page {
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "SF Pro Text",
    sans-serif;
  background: #3d4a2e;
  color: rgba(248, 244, 237, 0.92);
  min-height: 100vh;
  position: relative;
}

.privacy-page .privacy-nav {
  position: sticky;
  top: 0;
  width: 100%;
  box-sizing: border-box;
  align-items: center;
  gap: 10px;
  z-index: 200;
}

.privacy-page .privacy-nav .nav-logo {
  min-width: 0;
  flex: 0 1 auto;
}

.privacy-page .privacy-nav .nav-right {
  flex-shrink: 0;
  margin-left: auto;
}

.privacy-page .privacy-nav.on-dark {
  padding: 4px 28px;
  padding-left: max(28px, env(safe-area-inset-left));
  padding-right: max(28px, env(safe-area-inset-right));
  padding-top: max(4px, env(safe-area-inset-top));
  border-radius: 0;
  background: rgba(61, 74, 46, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 0.5px solid rgba(248, 244, 237, 0.08);
}

.privacy-page .privacy-nav .nav-logo img {
  height: 50px;
  width: auto;
  max-width: min(200px, 52vw);
  display: block;
  object-fit: contain;
  object-position: left center;
}

.privacy-back {
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  color: #f8f4ed;
  padding: 8px 4px;
  margin: -8px -4px;
  position: relative;
  z-index: 1;
  -webkit-tap-highlight-color: transparent;
}

.privacy-page .privacy-nav .privacy-back:hover,
.privacy-page .privacy-nav .privacy-back:focus-visible {
  color: #f0d9a8;
}

.privacy-back-short {
  display: none;
}

.privacy-main {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 40px 100px;
  overflow-x: hidden;
}

.privacy-main .g-p1,
.privacy-main .g-p2 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.privacy-main .g-p1 {
  top: -12%;
  right: -20%;
  width: 55vw;
  max-width: 480px;
  height: 55vw;
  max-height: 480px;
  background: radial-gradient(circle, #8aad5a 0%, transparent 55%);
  opacity: 0.12;
}
.privacy-main .g-p2 {
  bottom: 10%;
  left: -25%;
  width: 50vw;
  max-width: 420px;
  height: 50vw;
  max-height: 420px;
  background: radial-gradient(circle, #556b2f 0%, transparent 60%);
  opacity: 0.1;
}

.privacy-header {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
  padding-bottom: 28px;
  border-bottom: 0.5px solid rgba(248, 244, 237, 0.1);
}

.privacy-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  letter-spacing: -0.04em;
  color: #f8f4ed;
  line-height: 1.15;
  margin-bottom: 12px;
}

.privacy-effective {
  font-size: 13px;
  color: rgba(240, 217, 168, 0.85);
  margin-bottom: 16px;
}

.privacy-intro {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(248, 244, 237, 0.55);
  max-width: 560px;
}

.privacy-section {
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}

.privacy-section-title {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #f8f4ed;
  margin-bottom: 16px;
}

.privacy-body {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(248, 244, 237, 0.72);
}

.privacy-body p + p {
  margin-top: 14px;
}

.privacy-subhead {
  margin-top: 20px;
  margin-bottom: 12px;
  color: rgba(248, 244, 237, 0.88);
}

.privacy-list {
  margin: 12px 0 16px;
  padding-left: 1.15em;
}

.privacy-list li {
  margin-bottom: 12px;
  padding-left: 0.25em;
}

.privacy-list-bullet li::marker {
  color: rgba(240, 217, 168, 0.5);
}

.privacy-page .privacy-main a:not(.privacy-back) {
  color: #f0d9a8;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition:
    color 0.25s ease,
    opacity 0.25s ease;
}

.privacy-page .privacy-main a:not(.privacy-back):hover {
  color: #f8f4ed;
}

@media (max-width: 768px) {
  .privacy-page .privacy-nav.on-dark {
    padding: 3px 14px;
    padding-left: max(14px, env(safe-area-inset-left));
    padding-right: max(14px, env(safe-area-inset-right));
    padding-top: max(3px, env(safe-area-inset-top));
    gap: 8px;
  }

  .privacy-page .privacy-nav .nav-logo img {
    height: 50px;
    max-width: min(140px, 42vw);
  }

  .privacy-back {
    font-size: 13px;
    padding: 10px 6px;
    margin: -10px -6px;
  }

  .privacy-back-full {
    display: none;
  }

  .privacy-back-short {
    display: inline;
  }

  .privacy-main {
    padding: 20px 24px 72px;
  }
}
