@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  touch-action: manipulation;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--page-bg);
  color: #232326;
  font-family: Inter, system-ui, sans-serif;
}
.promo-bar {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.topbar {
  background: #fff;
  border-bottom: 1px solid #ececef;
  position: sticky;
  top: 0;
  z-index: 30;
}
.topbar-inner {
  max-width: 920px;
  margin: auto;
  height: 62px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 900;
}
.brand-logo {
  display: block;
  width: auto;
  max-width: 170px;
  height: auto;
  max-height: 42px;
  object-fit: contain;
  object-position: left center;
}
.secure-pill {
  font-size: 12px;
  color: #6b6b72;
}
.page-shell {
  max-width: 820px;
  margin: 24px auto;
  padding: 0 16px;
}
.profile-card {
  background: #fff;
  border: 1px solid #e9e9ed;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(20, 20, 30, 0.06);
}
.cover {
  height: 300px;
  background-position: center;
  background-size: cover;
  position: relative;
}
.cover-placeholder {
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(255, 255, 255, 0.28),
      transparent 25%
    ),
    linear-gradient(135deg, var(--primary), #391426 72%);
}
.cover-stats {
  position: absolute;
  right: 16px;
  bottom: 14px;
  display: flex;
  gap: 8px;
}
.cover-stats span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(10, 10, 14, 0.65);
  color: #fff;
  font-size: 12px;
  backdrop-filter: blur(8px);
}
.profile-head {
  display: flex;
  align-items: end;
  gap: 16px;
  padding: 0 28px;
  margin-top: -46px;
  position: relative;
}
.avatar {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  border: 5px solid #fff;
  overflow: hidden;
  background: #f0f0f2;
  display: grid;
  place-items: center;
  color: #aaa;
  font-size: 34px;
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profile-head h1 {
  font-size: 24px;
  margin: 0 0 5px;
}
.handle {
  margin: 0;
  color: #777;
}
.verified {
  display: inline-grid;
  place-items: center;
  background: var(--primary);
  color: #fff;
  min-width: 26px;
  height: 20px;
  padding: 0 4px;
  border-radius: 999px;
  font-size: 9px;
  vertical-align: 3px;
}
.bio {
  padding: 22px 28px 8px;
}
.bio p {
  line-height: 1.65;
  margin: 0;
  max-height: 76px;
  overflow: hidden;
}
.bio p.expanded {
  max-height: none;
}
.text-button {
  border: 0;
  background: none;
  color: var(--primary);
  font-weight: 700;
  padding: 8px 0;
  cursor: pointer;
}
.plans {
  margin: 18px 28px 28px;
  padding: 24px;
  border: 1px solid #ececf0;
  border-radius: 18px;
  background: #fcfcfd;
}
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}
.section-heading h2,
.faq-section h2 {
  margin: 4px 0 0;
  font-size: 24px;
}
.eyebrow {
  font-size: 11px;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.1em;
}
.hot-badge {
  font-size: 11px;
  background: #eaf9ef;
  color: #19713b;
  padding: 7px 10px;
  border-radius: 999px;
  font-weight: 700;
}
.plan-list {
  display: grid;
  gap: 10px;
}
.plan {
  width: 100%;
  min-height: 68px;
  border: 1.5px solid #dddde3;
  border-radius: 14px;
  background: #fff;
  padding: 13px 15px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 10px;
  text-align: left;
  cursor: pointer;
  transition: 0.2s;
}
.plan:hover {
  transform: translateY(-1px);
  border-color: var(--primary);
  box-shadow: 0 8px 20px rgba(20, 20, 30, 0.08);
}
.plan.featured {
  border-color: var(--primary);
  background: linear-gradient(90deg, #fff, rgba(255, 90, 60, 0.06));
}
.plan strong {
  display: block;
}
.plan small {
  display: block;
  margin-top: 4px;
  color: #777;
}
.plan em {
  font-size: 10px;
  font-style: normal;
  color: #fff;
  background: var(--primary);
  padding: 5px 7px;
  border-radius: 999px;
}
.plan b {
  font-size: 17px;
  white-space: nowrap;
}
.plan:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.trust-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  color: #666;
  font-size: 11px;
  margin-top: 16px;
}
.public-warning {
  background: #fff4d8;
  color: #7a5100;
  border: 1px solid #f2d587;
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 12px;
  font-size: 13px;
}
.content-tabs {
  border-top: 1px solid #ededf0;
  border-bottom: 1px solid #ededf0;
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 0 20px;
}
.content-tabs button {
  border: 0;
  border-bottom: 3px solid transparent;
  background: none;
  padding: 16px 4px;
  color: #777;
  cursor: pointer;
}
.content-tabs button.active {
  color: var(--primary);
  border-color: var(--primary);
}
.media-grid {
  padding: 22px 28px 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.media-card {
  border: 1px solid #ececf0;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}
.media-top {
  height: 46px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 600;
}
.media-top img,
.mini-avatar {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(135deg, var(--primary), #2e1322);
}
.locked-preview {
  height: 280px;
  background: linear-gradient(135deg, #24161d, #6e3341);
  position: relative;
  display: grid;
  place-items: center;
  color: #fff;
}
.locked-preview > img,
.locked-preview > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-shade {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(7px);
}
.lock {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(15, 15, 18, 0.72);
  font-size: 20px;
}
.placeholder-card .locked-preview > span:last-child {
  margin-top: 90px;
  font-size: 11px;
  color: #ddd;
}
.media-stats {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
}
.faq-section {
  background: #fff;
  border: 1px solid #e9e9ed;
  border-radius: 22px;
  margin-top: 18px;
  padding: 28px;
}
.faq-list {
  margin-top: 18px;
}
.faq-list details {
  border-top: 1px solid #ececf0;
  padding: 16px 0;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}
.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--primary);
  font-size: 20px;
}
.faq-list details[open] summary::after {
  content: "−";
}
.faq-list p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}
footer {
  text-align: center;
  color: #777;
  font-size: 12px;
  max-width: 720px;
  margin: 28px auto;
  padding: 0 18px 40px;
}
footer a {
  color: var(--primary);
}
.processor-notice {
  font-size: 10px;
  line-height: 1.5;
  color: #999;
}
.modal[hidden],
.age-gate[hidden] {
  display: none;
}
.modal,
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(10, 10, 14, 0.78);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}
.age-gate {
  background: rgba(10, 10, 14, 0.78);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}
.checkout-card,
.age-card {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 20px;
  width: min(440px, calc(100vw - 48px));
  max-height: calc(100dvh - 48px);
  overflow-y: auto;
  margin: auto;
  padding: 26px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}
.modal-close {
  position: absolute;
  right: 14px;
  top: 10px;
  border: 0;
  background: none;
  font-size: 28px;
  color: #888;
  cursor: pointer;
}
.selected-plan {
  padding: 12px;
  background: #f6f6f8;
  border-radius: 10px;
  font-weight: 700;
}
.checkout-card form {
  display: grid;
  gap: 13px;
}
.checkout-card label {
  font-size: 12px;
  font-weight: 700;
}
.checkout-card input[type="text"],
.checkout-card input[type="email"] {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 13px;
  border: 1.5px solid #dddde3;
  border-radius: 10px;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.2;
}
.legal-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-weight: 400 !important;
  line-height: 1.4;
}
.btn {
  border: 0;
  border-radius: 11px;
  padding: 13px 16px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}
.btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
}
.btn.ghost {
  background: #efeff2;
  color: #555;
}
.full {
  width: 100%;
}
.checkout-notice {
  font-size: 10px;
  color: #999;
  line-height: 1.45;
}
.pix-area {
  text-align: center;
}
.pix-area img {
  width: 190px;
  height: 190px;
  margin: 10px auto;
  display: block;
}
.pix-area textarea {
  width: 100%;
  height: 70px;
  resize: none;
  border: 1px solid #ddd;
  border-radius: 9px;
  padding: 8px;
  font-size: 10px;
}
.waiting {
  font-size: 13px;
  color: #777;
}
.age-card {
  text-align: center;
}
.age-mark {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  margin: auto;
  background: #17171b;
  color: #fff;
  font-weight: 900;
  font-size: 24px;
}
.age-actions {
  display: grid;
  gap: 9px;
  margin-top: 18px;
}
@media (min-width: 641px) {
  .checkout-card {
    width: min(460px, calc(100vw - 64px));
  }
  .pix-area img {
    width: 200px;
    height: 200px;
    max-width: 100%;
    object-fit: contain;
  }
  .pix-area textarea {
    min-height: 82px;
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 640px) {
  .modal {
    padding: 12px;
    align-items: center;
  }
  .checkout-card {
    width: min(440px, calc(100vw - 24px));
    max-height: calc(100dvh - 24px);
    padding: 20px;
    border-radius: 16px;
  }
  .pix-area img {
    width: min(190px, 55vw);
    height: auto;
    aspect-ratio: 1 / 1;
  }
  .page-shell {
    padding: 0;
    margin: 0;
  }
  .profile-card {
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }
  .cover {
    height: 220px;
  }
  .profile-head {
    padding: 0 18px;
    margin-top: -38px;
  }
  .avatar {
    width: 88px;
    height: 88px;
  }
  .profile-head h1 {
    font-size: 20px;
  }
  .bio {
    padding: 18px;
  }
  .plans {
    margin: 12px 14px 20px;
    padding: 17px;
  }
  .section-heading {
    align-items: flex-start;
  }
  .plan {
    grid-template-columns: 1fr auto;
  }
  .plan em {
    display: none;
  }
  .trust-row {
    gap: 8px;
  }
  .content-tabs {
    gap: 12px;
  }
  .media-grid {
    padding: 14px;
    gap: 8px;
  }
  .locked-preview {
    height: 220px;
  }
  .faq-section {
    border-radius: 0;
    margin-top: 10px;
    padding: 22px 18px;
  }
  .secure-pill {
    display: none;
  }
}
