body.inner-page {
  background: var(--softwhite);
}

.simple-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 72px;
  background: rgba(251,251,250,.94);
  border-bottom: 1px solid rgba(20,20,20,.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.simple-nav .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.simple-nav-logo {
  width: 112px;
  height: 32px;
  background: var(--heartpulse);
  display: block;
  -webkit-mask: url('../assets/logos/svg/logo-lovday-3.svg') center / contain no-repeat;
  mask: url('../assets/logos/svg/logo-lovday-3.svg') center / contain no-repeat;
}

.simple-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 54px;
  background:
    radial-gradient(circle at 88% 8%, rgba(229,255,0,.42), transparent 26%),
    linear-gradient(135deg, rgba(252,34,77,.1), rgba(251,251,250,0) 52%),
    var(--softwhite);
}

.page-hero::after {
  content: '';
  position: absolute;
  width: min(58vw, 720px);
  aspect-ratio: 1;
  right: -18%;
  top: -38%;
  background: url('../assets/shapes/webp/shape.webp') center / contain no-repeat;
  opacity: .045;
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-kicker {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--sparkyellow);
  color: var(--deepblack);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.page-title {
  max-width: 760px;
  font-size: clamp(38px,6vw,72px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0;
  color: var(--deepblack);
}

.page-lead {
  max-width: 650px;
  margin-top: 22px;
  color: rgba(20,20,20,.62);
  font-size: 17px;
  line-height: 1.7;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.page-main {
  padding: 42px 0 88px;
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

@media(min-width:900px) {
  .page-grid.two-col {
    grid-template-columns: minmax(0, .95fr) minmax(320px, .55fr);
    align-items: start;
  }
}

.page-card {
  background: white;
  border: 1px solid rgba(20,20,20,.07);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
  padding: 28px;
}

.page-card.dark {
  background: var(--deepblack);
  color: white;
}

.page-card.accent {
  background: var(--heartpulse);
  color: white;
}

.page-card-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 14px;
}

.page-card-copy {
  color: rgba(20,20,20,.62);
  font-size: 14px;
  line-height: 1.75;
}

.page-card.dark .page-card-copy,
.page-card.accent .page-card-copy {
  color: rgba(255,255,255,.72);
}

.status-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.status-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-radius: 18px;
  background: #F5F5F2;
}

.status-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: var(--heartpulse-light);
  color: var(--heartpulse);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.status-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--deepblack);
  margin-bottom: 4px;
}

.status-copy {
  color: rgba(20,20,20,.58);
  font-size: 13px;
  line-height: 1.55;
}

.detail-table {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(20,20,20,.07);
  background: rgba(20,20,20,.07);
}

.detail-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  background: white;
  font-size: 14px;
}

.detail-row span:first-child {
  color: rgba(20,20,20,.52);
}

.detail-row strong {
  font-weight: 600;
  text-align: right;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}

@media(min-width:980px) {
  .legal-layout {
    grid-template-columns: 260px minmax(0, 1fr);
    align-items: start;
  }
}

.legal-index {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 10px;
}

.legal-index a {
  display: block;
  padding: 11px 14px;
  border-radius: 14px;
  background: white;
  border: 1px solid rgba(20,20,20,.07);
  color: rgba(20,20,20,.64);
  font-size: 13px;
  font-weight: 600;
  transition: color .2s, border-color .2s, background .2s;
}

.legal-index a:hover {
  color: var(--heartpulse);
  border-color: rgba(252,34,77,.28);
  background: var(--heartpulse-light);
}

.legal-content {
  background: white;
  border: 1px solid rgba(20,20,20,.07);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
  padding: clamp(24px,4vw,44px);
}

.legal-content section + section {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid rgba(20,20,20,.08);
}

.legal-content h2 {
  font-size: clamp(24px,3vw,34px);
  font-weight: 600;
  line-height: 1.14;
  margin-bottom: 12px;
}

.legal-content p,
.legal-content li {
  color: rgba(20,20,20,.64);
  font-size: 15px;
  line-height: 1.8;
}

.legal-content p + p {
  margin-top: 12px;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  padding-left: 18px;
  list-style: disc;
}

.legal-note {
  margin-top: 24px;
  padding: 18px;
  border-radius: 18px;
  background: #F5F5F2;
  color: rgba(20,20,20,.62);
  font-size: 13px;
  line-height: 1.7;
}

.page-footer {
  background: var(--deepblack);
  color: white;
  padding: 36px 0;
}

.page-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}

.page-footer-logo {
  height: 30px;
  filter: brightness(0) invert(1);
}

.page-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.page-footer-links a,
.page-footer-copy {
  color: rgba(255,255,255,.45);
  font-size: 12px;
}

.page-footer-links a:hover {
  color: var(--sparkyellow);
}

@media(max-width:640px) {
  .simple-nav {
    height: 66px;
  }

  .simple-nav-logo {
    width: 98px;
    height: 28px;
  }

  .simple-nav-actions .btn {
    width: auto;
    min-height: 40px;
    padding: 10px 16px;
    font-size: 13px;
  }

  .page-hero {
    padding: 56px 0 36px;
  }

  .page-lead {
    font-size: 15px;
  }

  .page-actions .btn {
    width: 100%;
  }

  .page-main {
    padding: 28px 0 64px;
  }

  .page-card {
    padding: 22px;
    border-radius: 20px;
  }

  .detail-row {
    flex-direction: column;
    gap: 4px;
  }

  .detail-row strong {
    text-align: left;
  }

  .legal-index {
    position: static;
  }

  .page-footer .container {
    align-items: flex-start;
    flex-direction: column;
  }
}
