:root {
  --bg: #0a0a0a;
  --card: rgba(17, 20, 20, 0.86);
  --card-strong: #111515;
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(255, 43, 31, 0.48);
  --text: #ffffff;
  --muted: #a9adb7;
  --soft: #747987;
  --purple: #ff2b1f;
  --purple-2: #ff5a4f;
  --purple-3: #d91812;
  --danger: #ff3838;
  --danger-bg: rgba(255, 56, 56, 0.12);
  --success: #00d084;
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.58);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

#matrix {
  position: fixed;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  background: #020706;
}

.screen-glow {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 43, 31, 0.18), transparent 34rem),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.55));
}

.app-shell {
  min-height: 100vh;
  position: relative;
}

.view {
  display: none;
  min-height: 100vh;
  padding: 28px 16px;
}

.view:not(.is-active) {
  display: none !important;
}

.view.is-active {
  display: grid;
  place-items: center;
}

.hero-card,
.profile-card,
.locked-section,
.steps-card,
.faq-card,
.guarantee-card {
  width: min(100%, 420px);
  border: 1px solid var(--line);
  background: var(--card);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.hero-card {
  border-radius: 28px;
  padding: 32px 22px;
  text-align: center;
}

.brand-lockup {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-lockup.small {
  margin-bottom: 12px;
  transform: scale(0.84);
}

.brand-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 9px;
  color: var(--purple-2);
  box-shadow: 0 0 0 4px rgba(255, 43, 31, 0.18), inset 0 0 18px rgba(255, 90, 79, 0.25);
}

.brand-logo {
  display: block;
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 13px;
  box-shadow: 0 0 0 4px rgba(255, 43, 31, 0.16), 0 16px 36px rgba(255, 43, 31, 0.24);
}

.brand-lockup.small .brand-logo {
  width: 44px;
  height: 44px;
}

.brand-icon svg {
  width: 20px;
  height: 20px;
}

.brand-text {
  font-size: 1rem;
  text-transform: none;
}

.brand-text span,
h1 span,
h2 span,
.daily-count strong {
  color: var(--purple-2);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
.input-card h2 {
  max-width: 720px;
  margin-inline: auto;
  font-size: clamp(2.05rem, 10vw, 3.38rem);
  line-height: 1.2;
  font-weight: 900;
}

h1::first-line,
.input-card h2::first-line {
  color: var(--text);
}

.hero-card h1,
.input-card h2 {
  text-wrap: balance;
}

.hero-card h1::after,
.input-card h2::after {
  content: "";
}

.lead {
  margin: 18px auto 30px;
  max-width: 360px;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.42;
}

.lead strong,
.lead em {
  color: var(--purple-2);
  font-style: normal;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 20px;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, filter 180ms ease;
}

.primary-btn {
  width: 100%;
  padding: 0 20px;
  background: linear-gradient(100deg, var(--purple-3), var(--purple-2));
  box-shadow: 0 16px 34px rgba(255, 43, 31, 0.28);
}

.primary-btn:hover,
.secondary-btn:hover,
.next-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.primary-btn:disabled {
  cursor: wait;
  opacity: 0.72;
}

.primary-btn svg {
  width: 19px;
  height: 19px;
}

.primary-btn.compact,
.secondary-btn {
  min-height: 48px;
  border-radius: 16px;
}

.primary-btn.slim {
  min-height: 40px;
  width: auto;
  padding: 0 18px;
  border-radius: 9px;
  font-size: 0.8rem;
}

.secondary-btn {
  width: 100%;
  border: 2px solid rgba(126, 144, 166, 0.55);
  background: transparent;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 22px;
  margin-top: 26px;
  color: #f4f1ff;
  font-size: 0.77rem;
  font-weight: 800;
}

.badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.badges svg {
  width: 13px;
  height: 13px;
  color: var(--purple-2);
}

.daily-count {
  width: min(100%, 420px);
  margin: 18px auto 0;
  color: #b7bbc6;
  text-align: center;
  font-size: 0.94rem;
  font-weight: 800;
}

.input-card {
  padding-bottom: 42px;
}

.input-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-height: 56px;
  margin-top: 26px;
  padding: 6px 8px 6px 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.at-sign {
  color: var(--purple-2);
  font-size: 1.3rem;
  font-weight: 900;
}

.input-wrap input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
}

.input-wrap input::placeholder {
  color: #fff;
  opacity: 0.9;
}

.next-btn {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  background: linear-gradient(135deg, var(--purple-3), var(--purple-2));
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease, filter 180ms ease;
}

.form-message {
  min-height: 22px;
  margin: 14px 0 0;
  color: #ffb4b4;
  font-size: 0.86rem;
  font-weight: 700;
}

.form-message.is-loading {
  display: grid;
  gap: 8px;
  color: #fff;
  text-align: left;
}

.lookup-loader {
  position: relative;
  display: block;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.lookup-loader-bar {
  position: absolute;
  inset: 0 auto 0 0;
  width: 44%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255, 43, 31, 0.76), #ff5a4f, rgba(255, 255, 255, 0.9));
  box-shadow: 0 0 22px rgba(255, 43, 31, 0.45);
  animation: lookupBar 1.05s ease-in-out infinite;
}

.lookup-loader-text {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
}

.lookup-loader-steps {
  position: relative;
  display: block;
  height: 17px;
  overflow: hidden;
  color: #ffb4b4;
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
}

.lookup-loader-steps span {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: lookupStep 3.6s infinite;
}

.lookup-loader-steps span:nth-child(2) {
  animation-delay: 1.2s;
}

.lookup-loader-steps span:nth-child(3) {
  animation-delay: 2.4s;
}

@keyframes lookupBar {
  0% {
    left: -46%;
  }
  55% {
    left: 58%;
  }
  100% {
    left: 106%;
  }
}

@keyframes lookupStep {
  0%,
  12% {
    opacity: 0;
    transform: translateY(8px);
  }
  22%,
  56% {
    opacity: 1;
    transform: translateY(0);
  }
  68%,
  100% {
    opacity: 0;
    transform: translateY(-8px);
  }
}

.confirm-card {
  position: relative;
  max-width: 448px;
  padding: 26px 18px 18px;
}

.brand-mark-faded {
  position: absolute;
  left: 50%;
  top: -52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  opacity: 0.18;
  transform: translateX(-50%);
  pointer-events: none;
}

.confirm-card h2 {
  margin-bottom: 12px;
  color: var(--purple-2);
  font-size: clamp(1.35rem, 6vw, 1.55rem);
  font-weight: 900;
}

.confirm-question {
  margin-bottom: 22px;
  color: #e8e8eb;
  font-size: 1rem;
  font-weight: 700;
}

.profile-summary {
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  text-align: left;
}

.avatar {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: 50%;
  background: #222;
}

.avatar.ring {
  border: 3px solid #121616;
  outline: 2px solid var(--line-strong);
}

.avatar.mini {
  position: absolute;
  left: 50%;
  top: 48px;
  width: 44px;
  height: 44px;
  transform: translateX(-50%);
  border: 3px solid #fff;
}

.avatar.tiny {
  width: 28px;
  height: 28px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0;
  text-align: center;
}

.stats-grid div {
  min-width: 0;
}

.stats-grid dt {
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
}

.stats-grid dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.bio {
  margin: 0 8px 20px;
  color: #f2f2f5;
  text-align: left;
  line-height: 1.45;
  font-size: 0.9rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.warning-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 56, 56, 0.42);
  border-radius: 10px;
  background: var(--danger-bg);
  color: #ff5b5b;
  font-size: 0.74rem;
  line-height: 1.35;
  text-align: center;
}

.warning-box svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

.button-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.view-scan {
  background: rgba(0, 0, 0, 0.14);
}

.scan-panel {
  width: min(100%, 336px);
  color: #f7f8fb;
  text-align: center;
}

.scan-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  color: #fff;
  font-size: 1.7rem;
  font-weight: 900;
}

.scan-brand .brand-logo {
  width: 58px;
  height: 58px;
}

.scan-panel h2 {
  margin-bottom: 20px;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.25;
  font-weight: 900;
}

.scan-form {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.fake-field {
  position: relative;
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 12px;
  border: 1px solid #34414e;
  border-radius: 4px;
  background: #0d1215;
  text-align: left;
}

.fake-field span {
  color: #8d98a7;
  font-size: 0.74rem;
  font-weight: 700;
}

.fake-field strong {
  min-width: 0;
  color: #fff;
  font-size: 0.93rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fake-field i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #3386ff;
  box-shadow: 0 0 0 4px rgba(51, 134, 255, 0.12);
}

.scan-status-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  min-height: 66px;
  margin-bottom: 16px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: #101619;
  text-align: left;
}

.scan-spinner {
  width: 25px;
  height: 25px;
  border: 4px solid rgba(255, 255, 255, 0.14);
  border-top-color: var(--purple-2);
  border-radius: 50%;
  animation: spin 850ms linear infinite;
}

.scan-status-card strong {
  display: block;
  margin-bottom: 4px;
  color: #dbe5f2;
  font-size: 0.88rem;
}

.scan-status-card p {
  margin: 0;
  color: #7f8a99;
  font-size: 0.78rem;
  font-weight: 700;
}

.scan-progress {
  height: 3px;
  margin: 0 0 18px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.scan-progress span {
  display: block;
  width: 8%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--purple-3), var(--purple-2));
  box-shadow: 0 0 18px rgba(255, 43, 31, 0.55);
  transition: width 420ms ease;
}

.scan-submit {
  width: 100%;
  min-height: 36px;
  border: 0;
  border-radius: 4px;
  background: #145f8f;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 800;
}

.scan-privacy-note {
  margin: 22px auto 0;
  color: #87919e;
  font-size: 0.74rem;
  line-height: 1.4;
  font-weight: 700;
}

.limit-card {
  max-width: 420px;
  padding: 22px 16px 16px;
  border-color: rgba(255, 90, 79, 0.22);
}

.limit-card .brand-lockup {
  margin-bottom: 14px;
}

.limit-avatar {
  display: block;
  width: 84px;
  height: 84px;
  margin: 0 auto 16px;
  border: 4px solid #111515;
  outline: 3px solid var(--purple-2);
  box-shadow: 0 0 36px rgba(255, 43, 31, 0.22);
}

.limit-card h2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-bottom: 14px;
  color: #ff3838;
  font-size: 1.25rem;
  font-weight: 900;
}

.limit-card h2 svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.limit-copy {
  margin: 0 auto 16px;
  max-width: 330px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 700;
}

.limit-copy strong {
  color: var(--purple-2);
}

.limit-profile {
  display: grid;
  gap: 4px;
  margin: 0 auto 16px;
  padding: 12px;
  border: 1px solid rgba(255, 90, 79, 0.22);
  border-radius: 14px;
  background: rgba(255, 43, 31, 0.08);
}

.limit-profile span {
  color: #98a0ab;
  font-size: 0.72rem;
  font-weight: 800;
}

.limit-profile strong {
  color: #fff;
  font-size: 0.96rem;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.limit-danger {
  display: grid;
  gap: 5px;
  margin-top: 12px;
  padding: 12px;
  border: 1px solid rgba(255, 56, 56, 0.24);
  border-radius: 12px;
  background: rgba(255, 56, 56, 0.12);
  color: #ff6464;
  font-size: 0.72rem;
  line-height: 1.35;
  font-weight: 700;
}

.limit-danger strong {
  color: #ff7777;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.view-insta-feed {
  display: none;
  width: 100vw;
  max-width: 100vw;
  min-height: 100dvh;
  padding: 0;
  background: #070b0d;
  overflow-x: hidden;
}

.view-insta-feed.is-active {
  display: block;
}

.insta-shell {
  width: 100%;
  max-width: 430px;
  min-height: 100dvh;
  margin-inline: auto;
  overflow-x: hidden;
  background: #071014;
  color: #f7f8fb;
}

.insta-topbar {
  position: sticky;
  top: 0;
  z-index: 4;
  display: flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(12px, env(safe-area-inset-left)) 0 max(12px, env(safe-area-inset-right));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 16, 20, 0.94);
  backdrop-filter: blur(10px);
}

.instagram-wordmark {
  display: block;
  width: min(118px, 42vw);
  max-width: 118px;
  max-height: 32px;
  height: auto;
  object-fit: contain;
}

.insta-topbar div {
  display: flex;
  flex: 0 0 auto;
  gap: 14px;
}

.insta-icon-btn,
.post-action,
.post-menu-btn,
.story-item,
.insta-bottom-nav button,
.feed-sheet button {
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
}

.insta-icon-btn,
.post-action,
.post-menu-btn,
.insta-bottom-nav button {
  display: grid;
  place-items: center;
}

.insta-icon-btn {
  position: relative;
  width: 28px;
  height: 28px;
}

.message-badge {
  position: absolute;
  top: -6px;
  right: -7px;
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  border: 1.5px solid #071014;
  border-radius: 50%;
  background: #ff2b1f;
  color: #fff;
  font-size: 0.58rem;
  font-weight: 900;
  line-height: 1;
}

.insta-topbar svg,
.post-actions svg,
.post-head svg {
  width: 20px;
  height: 20px;
}

.insta-simulation-note {
  margin: 0;
  padding: 8px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: #9ca7b5;
  font-size: 0.7rem;
  line-height: 1.35;
  font-weight: 700;
}

.insta-simulation-note span {
  color: #fff;
}

.story-strip {
  display: flex;
  gap: 11px;
  overflow-x: auto;
  padding: 10px 8px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  scrollbar-width: none;
}

.story-strip::-webkit-scrollbar {
  display: none;
}

.story-item {
  flex: 0 0 58px;
  display: grid;
  gap: 6px;
  justify-items: center;
  min-width: 58px;
  font: inherit;
  text-align: center;
}

.story-item strong {
  max-width: 58px;
  color: #dbe1e8;
  font-size: 0.62rem;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.story-avatar,
.mini-avatar {
  position: relative;
  display: block;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.story-avatar {
  width: 52px;
  height: 52px;
  padding: 2px;
  border: 2px solid var(--purple-2);
  box-shadow: 0 0 0 2px #071014;
}

.mini-avatar {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.story-a { background-image: url("assets/insta-feed/imgi_3_.jpg"); }
.story-b { background-image: url("assets/insta-feed/imgi_7_.jpg"); }
.story-c { background-image: url("assets/insta-feed/imgi_10_.jpg"); }
.story-d { background-image: url("assets/insta-feed/imgi_6_.jpg"); }
.story-e { background-image: url("assets/insta-feed/imgi_8_.jpg"); }
.story-f { background-image: url("assets/insta-feed/imgi_9_.jpg"); }
.story-g { background-image: url("assets/insta-feed/imgi_15_.jpg"); }
.story-h { background-image: url("assets/insta-feed/imgi_16_.jpg"); }
.story-i { background-image: url("assets/insta-feed/imgi_38_.jpg"); }
.story-j { background-image: url("assets/insta-feed/imgi_40_.jpg"); }
.story-k { background-image: url("assets/insta-feed/imgi_12_.jpg"); }
.story-l { background-image: url("assets/insta-feed/imgi_14_.webp"); }
.api-story-avatar {
  background-color: #1b2024;
  background-image: url("assets/insta-feed/imgi_4_.jpg");
}

.api-avatar-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  display: block;
}

.feed-list {
  padding-bottom: 196px;
}

.insta-post {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #071014;
}

.post-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
  align-items: center;
  min-height: 36px;
  padding: 7px 8px;
}

.post-head strong {
  font-size: 0.76rem;
}

.post-head svg {
  color: #9aa3ad;
}

.fake-photo {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 330px;
  place-items: center;
  overflow: hidden;
  border: 0;
  background: #111;
  background-position: center;
  background-size: cover;
  color: #fff;
  padding: 0;
}

.fake-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  filter: saturate(1.1);
}

.photo-one {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.52)),
    url("assets/insta-feed/imgi_17_.jpg") center / cover;
}

.photo-two {
  min-height: 420px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.16)),
    url("assets/insta-feed/imgi_14_.jpg") center / cover;
}

.photo-three {
  min-height: 420px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.18)),
    url("assets/insta-feed/imgi_18_.webp") center / cover;
}

.photo-four {
  min-height: 420px;
  background-image: url("assets/insta-feed/imgi_12_.jpg");
}

.photo-five {
  min-height: 420px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.24)),
    url("assets/insta-feed/imgi_39_.jpg") center / cover;
}

.photo-six {
  min-height: 420px;
  background-image: url("assets/insta-feed/imgi_40_.jpg");
}

.photo-three svg,
.photo-five svg {
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
  padding: 6px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.48);
}

.post-modal {
  position: relative;
  z-index: 2;
  width: min(78%, 286px);
  overflow: hidden;
  border-radius: 28px;
  background: rgba(31, 31, 38, 0.92);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.55);
  text-align: center;
}

.post-modal strong {
  display: block;
  padding: 24px 18px 8px;
  font-size: 1.1rem;
}

.post-modal p {
  margin: 0;
  padding: 0 20px 22px;
  color: #d6d8de;
  font-size: 0.9rem;
  line-height: 1.32;
  font-weight: 700;
}

.post-modal span {
  display: grid;
  min-height: 58px;
  place-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #4e90ff;
  font-weight: 900;
}

.photo-label {
  position: relative;
  z-index: 1;
  padding: 7px 14px;
  background: #050505;
  color: #fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 1.05rem;
  font-weight: 900;
}

.post-actions {
  display: grid;
  grid-template-columns: auto auto auto 1fr;
  gap: 11px;
  align-items: center;
  min-height: 34px;
  padding: 6px 8px 0;
}

.post-actions svg:last-child {
  justify-self: end;
}

.post-action {
  width: 26px;
  height: 28px;
}

.post-action:last-child {
  justify-self: end;
}

.post-action.is-liked svg {
  color: var(--purple-2);
  fill: currentColor;
}

.post-action.is-saved svg {
  color: #ffffff;
  fill: currentColor;
}

.post-caption {
  margin: 0;
  padding: 5px 8px 12px;
  color: #dce2e8;
  font-size: 0.72rem;
  line-height: 1.35;
}

.feed-continue {
  position: fixed;
  left: 50%;
  bottom: calc(53px + env(safe-area-inset-bottom));
  z-index: 12;
  width: min(100%, 430px);
  padding: 8px 8px 10px;
  background: rgba(7, 16, 20, 0.96);
  backdrop-filter: blur(10px);
  transform: translateX(-50%);
}

.feed-continue .primary-btn {
  width: 100%;
  min-height: 44px;
  border-radius: 8px;
  background: linear-gradient(100deg, #ed1d16, #ff554c);
  box-shadow: 0 12px 28px rgba(255, 43, 31, 0.35);
}

.insta-bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 13;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(100%, 430px);
  min-height: 53px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(7, 16, 20, 0.96);
  backdrop-filter: blur(10px);
  transform: translateX(-50%);
}

.insta-bottom-nav button {
  min-height: 53px;
  color: #e8edf2;
}

.insta-bottom-nav button.is-active {
  color: var(--purple-2);
}

.insta-bottom-nav svg {
  width: 23px;
  height: 23px;
}

.story-viewer,
.feed-sheet {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  background: rgba(0, 0, 0, 0.72);
}

.story-viewer.is-open,
.feed-sheet.is-open {
  display: grid;
}

.story-viewer {
  place-items: center;
  padding: 14px;
}

.story-viewer-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  width: min(100%, 390px);
  height: min(92vh, 720px);
  overflow: hidden;
  border-radius: 18px;
  background: #0b1114;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.7);
}

.story-viewer-progress {
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
}

.story-viewer-progress span {
  display: block;
  width: 64%;
  height: 100%;
  background: #fff;
}

.story-viewer-card header,
.story-viewer-card footer,
.feed-sheet-panel header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.story-viewer-card header {
  padding: 10px;
}

.story-viewer-card header strong {
  flex: 1;
  font-size: 0.86rem;
}

.story-viewer-card header button,
.feed-sheet-panel header button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.story-viewer-image {
  margin: 0 10px;
  border-radius: 12px;
  background-color: #111;
  background-position: center;
  background-size: cover;
}

.story-viewer-image.api-story-image {
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 16px;
  isolation: isolate;
}

.story-viewer-image.api-story-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.72)),
    radial-gradient(circle at 50% 28%, rgba(255, 43, 31, 0.32), transparent 46%);
}

.api-story-card {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 8px;
  width: 100%;
  padding: 18px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(6, 12, 15, 0.72);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(12px);
  text-align: center;
}

.api-story-photo {
  width: 78px;
  height: 78px;
  object-fit: cover;
  border: 3px solid #ff554c;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}

.api-story-card strong {
  max-width: 100%;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.api-story-card > span {
  color: #cfd7df;
  font-size: 0.82rem;
  font-weight: 800;
}

.api-story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 100%;
  margin: 6px 0 0;
}

.api-story-stats div {
  min-width: 0;
  padding: 8px 5px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.api-story-stats dt {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
}

.api-story-stats dd {
  margin: 2px 0 0;
  color: #aeb8c3;
  font-size: 0.62rem;
  font-weight: 800;
}

.api-story-card p {
  width: 100%;
  margin: 4px 0 0;
  color: #e8edf2;
  font-size: 0.78rem;
  line-height: 1.35;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.story-viewer-card footer {
  padding: 10px;
}

.story-viewer-card footer input {
  flex: 1;
  min-width: 0;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding: 0 14px;
  outline: 0;
}

.story-viewer-card footer button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.feed-sheet {
  align-items: end;
}

.feed-sheet-panel {
  width: min(100%, 430px);
  max-height: 76vh;
  margin-inline: auto;
  overflow: auto;
  border-radius: 18px 18px 0 0;
  background: #10171b;
  color: #f7f8fb;
  padding: 10px 14px 16px;
  box-shadow: 0 -20px 80px rgba(0, 0, 0, 0.62);
}

.sheet-grip {
  width: 42px;
  height: 4px;
  margin: 2px auto 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.feed-sheet-panel header {
  justify-content: space-between;
  padding-bottom: 12px;
}

.comment-list {
  display: grid;
  gap: 10px;
  padding-bottom: 14px;
}

.comment-list p {
  margin: 0;
  color: #d6dee8;
  font-size: 0.84rem;
  line-height: 1.35;
}

.comment-input {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.comment-input input {
  min-width: 0;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: #202a31;
  color: #fff;
  padding: 0 14px;
  outline: 0;
}

.comment-input button {
  color: #4e90ff;
  font-weight: 900;
}

.share-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.share-grid button {
  display: grid;
  gap: 7px;
  justify-items: center;
  color: #dfe6ee;
  font: inherit;
}

.share-grid .mini-avatar {
  width: 48px;
  height: 48px;
}

.share-grid strong {
  max-width: 68px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.72rem;
}

.option-panel {
  display: grid;
  gap: 4px;
}

.option-panel button {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  color: #f2f5f8;
  font: inherit;
  font-weight: 800;
  text-align: left;
}

.message-panel {
  padding-bottom: 18px;
}

.message-sheet-note,
.message-privacy-note {
  margin: 0;
  color: #9ca7b5;
  font-size: 0.74rem;
  line-height: 1.35;
  font-weight: 700;
}

.message-sheet-note {
  padding: 0 2px 12px;
}

.message-sheet-note span {
  color: #fff;
}

.message-list {
  display: grid;
  gap: 8px;
}

.feed-sheet .message-thread {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  width: 100%;
  min-height: 68px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: #121a1f;
  color: #f7f8fb;
  font: inherit;
  text-align: left;
}

.feed-sheet .message-thread::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4e90ff;
  opacity: 0;
  transform: translateY(-50%);
}

.feed-sheet .message-thread.is-unread {
  background: #152027;
}

.feed-sheet .message-thread.is-unread::after {
  opacity: 1;
}

.message-avatar {
  display: block;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-position: center;
  background-size: cover;
}

.message-thread span:not(.message-avatar) {
  min-width: 0;
  padding-right: 14px;
}

.message-thread strong,
.message-thread em {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.message-thread strong {
  font-size: 0.86rem;
  font-weight: 900;
}

.message-thread em {
  margin-top: 3px;
  color: #c7d0da;
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 700;
}

.message-thread small {
  align-self: start;
  padding-right: 12px;
  color: #8d99a6;
  font-size: 0.68rem;
  font-weight: 800;
}

.message-privacy-note {
  margin-top: 12px;
  padding: 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.055);
}

.message-screen {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 90;
  display: none;
  width: min(100%, 430px);
  min-height: 100dvh;
  overflow: hidden;
  background: #080d12;
  color: #f7f8fb;
  transform: translateX(-50%);
}

.message-screen.is-open {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
}

.direct-topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  min-height: 52px;
  padding: 0 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: #090e14;
}

.direct-topbar button,
.direct-notes button,
.direct-heading button,
.direct-thread {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
}

.direct-topbar > button,
.direct-topbar div button {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
}

.direct-topbar strong {
  min-width: 0;
  font-size: 1rem;
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.direct-topbar div {
  display: flex;
  gap: 8px;
}

.direct-topbar svg {
  width: 21px;
  height: 21px;
}

.direct-search {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: center;
  min-height: 42px;
  margin: 10px 10px 8px;
  padding: 0 12px;
  border-radius: 999px;
  background: #252a31;
  color: #7f8997;
}

.direct-search svg {
  width: 16px;
  height: 16px;
  color: var(--purple-2);
}

.direct-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #eef2f6;
  font-size: 0.85rem;
  font-weight: 700;
}

.direct-search input::placeholder {
  color: #7e8793;
}

.direct-notes {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 0 10px 13px;
  scrollbar-width: none;
}

.direct-notes::-webkit-scrollbar {
  display: none;
}

.direct-notes button {
  flex: 0 0 58px;
  display: grid;
  gap: 5px;
  justify-items: center;
  min-width: 58px;
}

.message-story,
.message-note {
  position: relative;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.message-story {
  border: 2px solid var(--purple-2);
  box-shadow: 0 0 0 2px #080d12;
}

.message-note {
  padding: 7px;
  background-color: #2a3038;
  font-size: 0.58rem;
  line-height: 1.1;
  font-weight: 900;
}

.direct-notes strong {
  max-width: 58px;
  color: #e8edf2;
  font-size: 0.62rem;
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.direct-content {
  min-height: 0;
  overflow-y: auto;
  padding: 0 10px 104px;
}

.direct-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 8px 0 10px;
}

.direct-heading h3 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 900;
}

.direct-heading button {
  color: #4e90ff;
  font-size: 0.82rem;
  font-weight: 800;
}

.direct-list {
  display: grid;
  gap: 2px;
}

.direct-thread {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 10px;
  align-items: center;
  min-height: 68px;
  padding: 7px 0;
  text-align: left;
}

.direct-avatar {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  background-position: center;
  background-size: cover;
  filter: blur(1.1px);
}

.locked-thread .direct-avatar {
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 90, 79, 0.4), transparent 44%),
    #171d24;
  filter: none;
}

.locked-thread .direct-avatar svg {
  width: 18px;
  height: 18px;
}

.direct-thread span:not(.direct-avatar) {
  min-width: 0;
}

.direct-thread strong,
.direct-thread em {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.direct-thread strong {
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
}

.direct-thread em {
  margin-top: 3px;
  color: #d9e0e8;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 700;
}

.direct-thread small {
  align-self: center;
  color: #a0a9b4;
  font-size: 0.68rem;
  font-weight: 800;
  white-space: nowrap;
}

.direct-thread > svg {
  width: 19px;
  height: 19px;
  color: #a7b0bb;
}

.direct-thread.is-unread::after {
  content: "";
  position: absolute;
  right: 28px;
  top: 24px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4e7dff;
}

.direct-vip-bar {
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  width: min(100%, 430px);
  padding: 10px 9px;
  border-top: 1px solid rgba(255, 90, 79, 0.45);
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 90, 79, 0.28), transparent 34%),
    linear-gradient(135deg, #171010, #310f0d 56%, #ff2b1f);
  box-shadow: 0 -14px 36px rgba(0, 0, 0, 0.48), 0 -6px 28px rgba(255, 43, 31, 0.18);
  transform: translateX(-50%);
}

.direct-vip-bar img {
  width: 34px;
  height: 34px;
  object-fit: cover;
  border-radius: 9px;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.14);
}

.direct-vip-bar strong {
  display: block;
  margin-bottom: 3px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
}

.direct-vip-bar strong span {
  color: #fff;
}

.direct-vip-bar p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.58rem;
  line-height: 1.25;
  font-weight: 700;
}

.direct-vip-bar button {
  min-height: 34px;
  padding: 0 13px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  color: #d91812;
  font-size: 0.72rem;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.vip-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  place-items: center;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 43, 31, 0.18), transparent 180px),
    rgba(0, 0, 0, 0.64);
}

.vip-modal.is-open {
  display: grid;
}

.vip-modal-card {
  display: grid;
  justify-items: center;
  width: min(100%, 244px);
  padding: 18px 16px 16px;
  border: 1px solid rgba(255, 90, 79, 0.58);
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% -18%, rgba(255, 90, 79, 0.34), transparent 60%),
    linear-gradient(180deg, rgba(73, 15, 31, 0.96), rgba(38, 8, 18, 0.98));
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.68), 0 0 40px rgba(255, 43, 31, 0.18);
  text-align: center;
}

.vip-modal-card img {
  width: 34px;
  height: 34px;
  margin-bottom: 8px;
  object-fit: cover;
  border-radius: 9px;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.14);
}

.vip-modal-card strong {
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
}

.vip-modal-card p {
  margin: 10px 0 14px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.68rem;
  line-height: 1.35;
  font-weight: 700;
}

.vip-modal-card button {
  width: 100%;
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.16));
  color: #fff;
  font-size: 0.68rem;
  font-weight: 900;
}

.feed-toast {
  position: fixed;
  left: 50%;
  top: 64px;
  z-index: 70;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 9px;
  max-width: min(86vw, 360px);
  width: max-content;
  min-width: min(82vw, 278px);
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(12, 17, 20, 0.92);
  color: #f7f8fb;
  font-size: 0.78rem;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(14px);
  transform: translate(-50%, -12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.feed-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.feed-toast-avatar {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #20282d;
  background-position: center;
  background-size: cover;
  box-shadow: 0 0 0 2px rgba(255, 43, 31, 0.78);
}

.feed-toast-copy {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.feed-toast-copy strong,
.feed-toast-copy span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.feed-toast-copy strong {
  color: #fff;
  font-size: 0.74rem;
  font-weight: 950;
}

.feed-toast-copy span {
  color: rgba(231, 237, 243, 0.86);
  font-size: 0.69rem;
  font-weight: 750;
}

.view-results {
  align-items: start;
  place-items: start center;
  padding: 22px 10px 34px;
}

.results-layout {
  width: min(100%, 430px);
}

.results-header {
  margin: 4px 0 14px;
  text-align: center;
}

.results-header h2 {
  margin: 8px auto 0;
  max-width: 340px;
  font-size: clamp(1.45rem, 8vw, 2rem);
  line-height: 1.08;
  font-weight: 900;
}

.profile-card {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 12px;
  background: #121818;
}

.profile-copy {
  min-width: 0;
}

.profile-copy h3 {
  margin-bottom: 2px;
  font-size: 1rem;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.profile-copy p {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.checkout-bar {
  position: sticky;
  top: 10px;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  margin: 12px 0;
  padding: 12px;
  border-radius: 9px;
  background: #172020;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.checkout-bar strong,
.checkout-bar span {
  display: block;
}

.checkout-bar strong {
  font-size: 0.76rem;
}

.checkout-bar span {
  color: #d5d9df;
  font-size: 0.68rem;
  line-height: 1.3;
}

.locked-section,
.steps-card,
.faq-card,
.guarantee-card {
  margin-top: 10px;
  padding: 14px;
  border-radius: 10px;
  background: #111717;
}

.profile-feed-preview {
  margin-top: 10px;
  padding: 14px;
  border: 1px solid rgba(255, 70, 62, 0.18);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 43, 31, 0.08), transparent 44%),
    #111717;
}

.section-heading {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  margin-bottom: 12px;
}

.section-heading > svg {
  width: 19px;
  height: 19px;
  color: var(--purple-2);
}

.section-heading h3,
.steps-card h3,
.faq-card h3,
.guarantee-card h3 {
  margin-bottom: 4px;
  font-size: 1rem;
  font-weight: 900;
}

.section-heading p,
.guarantee-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.35;
  font-weight: 700;
}

.profile-feed-status {
  min-height: 18px;
  margin: 0 0 10px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
}

.profile-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.profile-post-tile {
  position: relative;
  display: grid;
  aspect-ratio: 1 / 1;
  align-items: end;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 43, 31, 0.14), rgba(255, 255, 255, 0.03)),
    #0b1012;
  background-position: center;
  background-size: cover;
  box-shadow: inset 0 -44px 38px rgba(0, 0, 0, 0.36);
}

.profile-post-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.78));
}

.profile-post-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-post-tile span,
.profile-post-tile svg {
  position: relative;
  z-index: 1;
}

.profile-post-tile span {
  padding: 8px;
  color: #fff;
  font-size: 0.64rem;
  font-weight: 900;
  line-height: 1.15;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.75);
}

.profile-post-tile svg {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 18px;
  height: 18px;
  padding: 3px;
  border-radius: 50%;
  background: rgba(255, 43, 31, 0.86);
  color: #fff;
}

.profile-post-tile.is-empty {
  background:
    linear-gradient(135deg, rgba(255, 43, 31, 0.14), rgba(255, 255, 255, 0.03)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 9px),
    #0b1012;
}

.media-grid {
  display: grid;
  grid-template-columns: minmax(0, 238.75px) 1fr;
  grid-auto-rows: 82px;
  gap: 8px;
  margin-bottom: 12px;
}

.locked-tile {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 82px;
  overflow: hidden;
  border-radius: 7px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 30% 22%, rgba(255, 43, 31, 0.58), transparent 38%),
    linear-gradient(135deg, #5b2824, #171b1c);
  filter: blur(0.1px);
}

.censored-media-grid {
  isolation: isolate;
}

.censored-tile {
  background-position: center;
  background-size: cover;
  filter: none;
}

.censored-tile::before {
  content: "";
  position: absolute;
  inset: -6px;
  z-index: 0;
  background: inherit;
  filter: blur(6px) saturate(0.95) brightness(0.78);
  transform: scale(1.04);
}

.censored-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.06), transparent 44%),
    rgba(8, 10, 10, 0.24);
}

.censored-tile span {
  position: absolute;
  left: 8px;
  top: 8px;
  z-index: 2;
  padding: 4px 7px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.52);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.censored-tile svg {
  position: relative;
  z-index: 2;
  padding: 7px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(7, 12, 14, 0.72);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14), 0 10px 28px rgba(0, 0, 0, 0.42);
}

.media-censor-a {
  background-image: url("assets/censored-media/wile-e-coyote.jpg");
}

.media-censor-b {
  background-image: url("assets/censored-media/sylvester.jpg");
}

.media-censor-c {
  background-image: url("assets/censored-media/road-runner.png");
}

.media-censor-d {
  background-image: url("assets/censored-media/porky-pig.png");
}

.media-censor-e {
  background-image: url("assets/censored-media/elmer-fudd.png");
}

.locked-tile.big {
  grid-row: span 2;
}

.locked-tile svg,
.story-card svg {
  width: 24px;
  height: 24px;
  color: rgba(255, 255, 255, 0.82);
}

.map-card {
  position: relative;
  min-height: 156px;
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: 8px;
  background: #dbe2ea;
}

.map-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(122, 142, 164, 0.3) 1px, transparent 1px),
    linear-gradient(rgba(122, 142, 164, 0.3) 1px, transparent 1px),
    linear-gradient(135deg, #f6f0dc, #d9e9ef);
  background-size: 34px 34px, 34px 34px, cover;
}

.map-caption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 10px;
  border-radius: 7px;
  background: rgba(23, 27, 31, 0.88);
}

.map-caption strong,
.map-caption span {
  display: block;
}

.map-caption strong {
  font-size: 0.78rem;
}

.map-caption span {
  color: var(--muted);
  font-size: 0.72rem;
}

.story-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

.story-card {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 178px;
  place-items: center;
  align-content: center;
  gap: 8px;
  overflow: hidden;
  border-radius: 12px;
  background: #101616;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
}

.story-card::before {
  content: "";
  position: absolute;
  inset: -16px;
  z-index: 0;
  background-image: var(--story-image);
  background-position: center;
  background-size: cover;
  filter: blur(6px);
  transform: scale(1.08);
}

.story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.48));
}

.story-card svg,
.story-card span {
  position: relative;
  z-index: 2;
}

.restricted-story-one {
  --story-image: url("assets/restricted-stories/story-restricted-1.jpeg");
}

.restricted-story-two {
  --story-image: url("assets/restricted-stories/story-restricted-2.jpeg");
}

.chat-preview {
  margin-bottom: 12px;
  padding: 12px;
  border-radius: 10px;
  background: #0d1113;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.chat-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 0.82rem;
  font-weight: 900;
}

.chat-head strong {
  margin-left: auto;
  color: var(--success);
  font-size: 0.68rem;
}

.chat-preview p {
  width: fit-content;
  max-width: 88%;
  margin: 0;
  padding: 10px 12px;
  border-radius: 10px 10px 10px 3px;
  background: #242b31;
  color: #e8ebf0;
  font-size: 0.78rem;
  line-height: 1.38;
}

.one-view-video {
  position: relative;
  display: grid;
  width: min(208px, 100%);
  aspect-ratio: 9 / 16;
  margin-top: 12px;
  padding: 14px;
  align-content: end;
  overflow: hidden;
  border: 1px solid rgba(255, 70, 62, 0.36);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.64)),
    url("assets/reels-preview/one-view-preview.png") center / cover;
  box-shadow: inset 0 0 42px rgba(0, 0, 0, 0.46);
}

.one-view-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(18px) saturate(0.75) brightness(0.48);
  transform: scale(1.16);
  pointer-events: none;
}

.one-view-video::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(4, 8, 10, 0.16), rgba(4, 8, 10, 0.86)),
    rgba(255, 43, 31, 0.16);
}

.one-view-pill,
.one-view-play,
.one-view-video strong,
.one-view-video small {
  position: relative;
  z-index: 2;
}

.one-view-pill {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(14, 18, 20, 0.78);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.one-view-pill svg {
  width: 13px;
  height: 13px;
  color: var(--brand);
}

.one-view-play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 70, 62, 0.88);
  color: #fff;
  transform: translate(-50%, -50%);
  box-shadow: 0 12px 28px rgba(255, 43, 31, 0.28);
}

.one-view-play svg {
  width: 19px;
  height: 19px;
  margin-left: 2px;
}

.one-view-video strong {
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
}

.one-view-video small {
  margin-top: 3px;
  color: #c5cbd2;
  font-size: 0.7rem;
  font-weight: 800;
}

.steps-card {
  text-align: center;
}

.check-list {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.check-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px;
  align-items: center;
  padding: 10px;
  border-radius: 8px;
  background: #141d1d;
  color: #d8dce4;
  font-size: 0.76rem;
  font-weight: 800;
}

.check-list svg {
  width: 15px;
  height: 15px;
  color: var(--purple-2);
}

.faq-card h3 {
  text-align: center;
  margin-bottom: 14px;
}

.accordion + .accordion {
  margin-top: 8px;
}

.accordion button {
  display: flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 14px;
  border: 0;
  border-radius: 8px;
  background: #151d1d;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  text-align: left;
}

.accordion button svg {
  width: 16px;
  height: 16px;
  color: var(--purple-2);
  transition: transform 160ms ease;
}

.accordion button[aria-expanded="true"] svg {
  transform: rotate(45deg);
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  padding: 0 14px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
  transition: grid-template-rows 200ms ease, padding 200ms ease;
}

.accordion-panel > * {
  overflow: hidden;
}

.accordion.is-open .accordion-panel {
  grid-template-rows: 1fr;
  padding-block: 10px;
}

.guarantee-card {
  border-color: rgba(0, 208, 132, 0.26);
  background: rgba(0, 208, 132, 0.08);
  text-align: center;
}

.guarantee-card > svg {
  width: 24px;
  height: 24px;
  color: var(--success);
}

.guarantee-card h3 {
  color: var(--success);
}

.footer-note {
  margin: 18px 0 0;
  padding: 16px;
  border-radius: 10px;
  background: rgba(255, 56, 56, 0.15);
  border: 1px solid rgba(255, 56, 56, 0.3);
  color: #ffb4b4;
  text-align: center;
  font-size: 0.74rem;
  line-height: 1.4;
  font-weight: 800;
}

.footer-note p {
  margin: 0;
}

@media (min-width: 720px) {
  .view {
    padding: 48px 24px;
  }

  .hero-card {
    width: min(100%, 420px);
    padding: 34px 24px;
  }

  .view-landing .hero-card,
  .view-input .hero-card {
    width: 420px;
  }

  h1,
  .input-card h2 {
    font-size: 2.42rem;
  }

  .results-layout {
    width: min(100%, 460px);
  }
}

@media (max-width: 390px) {
  .view-insta-feed {
    width: 100vw;
    max-width: 100vw;
  }

  .insta-shell {
    width: 100vw;
    max-width: none;
    margin: 0;
  }

  .insta-topbar {
    min-height: 50px;
    padding-inline: 10px;
  }

  .instagram-wordmark {
    width: min(108px, 48vw);
  }

  .insta-topbar div {
    gap: 10px;
  }

  .direct-vip-bar {
    gap: 7px;
    padding: 8px;
  }

  .direct-vip-bar img {
    width: 30px;
    height: 30px;
    border-radius: 8px;
  }

  .direct-vip-bar strong {
    font-size: 0.66rem;
  }

  .direct-vip-bar p {
    font-size: 0.54rem;
  }

  .direct-vip-bar button {
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.66rem;
  }

  .hero-card {
    padding-inline: 18px;
  }

  .button-row,
  .checkout-bar {
    grid-template-columns: 1fr;
  }

  .profile-summary,
  .profile-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .bio {
    text-align: center;
  }
}
