:root {
  --green: #02b400;
  --green-dark: #008169;
  --red: #ed0000;
  --blue: #0047ff;
  --text: #1f2933;
  --muted: #667085;
  --line: #d7dee5;
  --bg: #f3f5f7;
  --white: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
}

button,
input {
  font: inherit;
}

.funnel-page {
  min-height: 100vh;
}

.start-shell,
.step-shell {
  width: min(430px, 100%);
  margin: 0 auto;
  background: #fff;
  min-height: 100vh;
}

.start-card,
.step-card {
  padding: 18px 14px 22px;
  text-align: center;
}

.brand-strip {
  margin: -18px -14px 16px;
  padding: 16px;
  color: #fff;
  background: #075e54;
  font-size: 1.15rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
p {
  overflow-wrap: anywhere;
}

.start-card h1 {
  margin: 0 0 12px;
  color: #111827;
  font-size: 1.75rem;
  line-height: 1.12;
}

.start-subtitle {
  margin: 0 0 16px;
  color: var(--muted);
  font-weight: 700;
}

.phone-form {
  display: grid;
  gap: 8px;
  margin: 0 auto;
  text-align: left;
}

.phone-form label {
  font-size: 0.95rem;
  font-weight: 800;
}

.input-phone {
  width: 100%;
  height: 46px;
  padding: 10px;
  border: 1px solid #b8c3ce;
  border-radius: 5px;
  outline: 0;
  font-size: 1rem;
}

.form-error {
  min-height: 20px;
  margin: 0;
  color: #d92d20;
  font-size: 0.88rem;
  font-weight: 700;
}

.button-hack {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 54px;
  padding: 14px 18px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: var(--green);
  cursor: pointer;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  animation: pulse 1.3s infinite;
}

.button-hack:disabled {
  background: var(--green-dark);
  cursor: not-allowed;
  opacity: 0.75;
  animation: none;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 #02b4006e;
  }

  100% {
    box-shadow: 0 0 0 20px transparent;
  }
}

.scan-box {
  margin-top: 16px;
  padding: 12px;
  border-radius: 10px;
  background: #f6f8fa;
  border: 1px solid var(--line);
  text-align: left;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-weight: 900;
}

.progress-track {
  height: 12px;
  background: #e0e0de;
  border-radius: 999px;
  overflow: hidden;
}

.progress-bar {
  width: 0%;
  height: 100%;
  background: var(--green);
  transition: width 400ms ease;
}

.scan-messages {
  display: grid;
  gap: 7px;
  padding: 0;
  margin: 12px 0 0;
  list-style: none;
}

.scan-messages li {
  color: #c63637;
  font-weight: 800;
}

.scan-messages li.done {
  color: #007b66;
}

.secure-note {
  margin: 14px 0 0;
  font-size: 0.95rem;
  font-weight: 900;
}

.info-card {
  padding-bottom: 18px;
  text-align: center;
}

.info-card img {
  width: 100%;
  display: block;
}

.info-card .ssl,
.step-ssl {
  width: min(384px, 90%);
  margin: 12px auto;
}

.info-copy {
  padding: 10px 14px;
  text-align: left;
}

.info-copy p {
  margin: 8px 0;
}

.red {
  color: red;
  font-weight: 900;
  text-align: center;
}

.blue {
  color: blue;
  font-weight: 900;
  text-align: center;
}

.counter-card,
.updated-card {
  margin: 12px 14px;
  padding: 18px;
  border-radius: 10px;
  background: #f6f8fa;
  text-align: center;
}

.counter-card strong {
  display: block;
  color: #111;
  font-size: 3rem;
  line-height: 1;
}

.counter-card span {
  display: block;
  margin-top: 6px;
  font-weight: 700;
}

.simple-footer {
  width: min(430px, 100%);
  margin: 0 auto;
  padding: 24px 14px 32px;
  color: #555;
  background: #fff;
  text-align: center;
  font-size: 0.9rem;
}

.simple-footer span {
  display: block;
  margin-top: 6px;
}

.step-card h1 {
  margin: 0 0 16px;
  font-size: 1.35rem;
}

.step-card h2 {
  margin: 0;
  color: var(--red);
  font-size: 1.45rem;
  line-height: 1.16;
}

.step-card h2 span {
  display: block;
  color: #0a7f2e;
}

.sound-alert {
  margin: 12px 0;
  font-weight: 900;
}

.video-box {
  display: grid;
  place-items: center;
  min-height: 230px;
  margin: 14px 0 20px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, #111 0%, #353535 100%);
  position: relative;
  overflow: hidden;
}

#ifr_6a45cbf889ec842257e5e041_wrapper.video-box {
  display: block;
  width: 100%;
  min-height: 0;
  background: #000;
}

#ifr_6a45cbf889ec842257e5e041_aspect {
  width: 100%;
}

.video-play {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  font-size: 2.4rem;
}

.video-box p {
  margin: 0;
  font-weight: 900;
}

.video-box small {
  margin-bottom: 12px;
  color: #d1d5db;
}

.profile-widget {
  display: grid;
  place-items: center;
  gap: 8px;
  margin: 18px 0;
}

.photo-ring {
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background-image: linear-gradient(320deg, #33bb00, #b8ff20);
}

.photo-ring img {
  width: 136px;
  height: 136px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
}

#user-number {
  color: #000;
  font-size: 1.2rem;
  font-weight: 900;
}

.analysis-progress {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin: 20px 0;
}

.half-circle {
  position: relative;
  width: 220px;
  height: 110px;
  overflow: hidden;
}

.half-fill {
  width: 220px;
  height: 220px;
  border: 18px solid #e5e7eb;
  border-top-color: var(--green);
  border-left-color: var(--green);
  border-radius: 50%;
  transform: rotate(-45deg);
  transition: transform 500ms ease;
}

.half-inner {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 0;
  display: grid;
  place-items: center;
  padding-top: 18px;
  border-radius: 90px 90px 0 0;
  background: #fff;
  font-weight: 900;
}

.half-inner strong {
  font-size: 2rem;
}

#analysis-status {
  margin: 0;
  font-weight: 900;
}

.findings-grid {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.findings-grid article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.findings-grid strong {
  display: block;
  color: var(--red);
  font-size: 2rem;
}

.findings-grid span {
  display: block;
  margin: 4px 0;
  font-weight: 900;
}

.access-button[hidden],
.findings-grid[hidden] {
  display: none;
}

.chat-page {
  min-height: 100vh;
  background: #d7dbd6;
  font-family: "Segoe UI", Arial, sans-serif;
}

.chat-app {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  width: min(1180px, 100%);
  min-height: 100vh;
  margin: 0 auto;
  background: #fff;
}

.chat-sidebar {
  border-right: 1px solid #d9d9d9;
  background: #f8f9fa;
}

.chat-header,
.chat-titlebar {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 78px;
  padding: 12px;
  background: #f0f0f0;
}

.avatar img,
.chat-titlebar img,
.conversation > img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
}

.unlock-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 6px;
  color: #fff;
  background: #198754;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.chat-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid #e2e8f0;
}

.chat-tabs span {
  padding: 14px 8px;
  text-align: center;
  font-weight: 800;
}

.chat-tabs .active {
  color: #075e54;
  border-bottom: 3px solid #075e54;
}

.conversation-list {
  display: grid;
}

.conversation {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 30px;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border-bottom: 1px solid #edf2f7;
}

.conversation strong {
  display: block;
}

.conversation p {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 4px 0 0;
  color: #667085;
  font-size: 0.9rem;
}

.conversation p img {
  width: 16px;
}

.badge {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #fff;
  background: #25d366;
  font-size: 0.8rem;
  font-weight: 900;
}

.chat-content {
  display: grid;
  grid-template-rows: auto 1fr;
  background: #efe7dd;
}

.chat-titlebar strong,
.chat-titlebar span {
  display: block;
}

.chat-titlebar span {
  color: #667085;
  font-weight: 700;
}

.message-area {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
}

.message {
  width: fit-content;
  max-width: 72%;
  padding: 12px 14px;
  border-radius: 8px;
  font-weight: 700;
}

.received {
  background: #fff;
}

.sent {
  align-self: flex-end;
  background: #dcf8c6;
}

.main-unlock {
  align-self: center;
  margin-top: 18px;
}

@media (max-width: 780px) {
  .chat-app {
    grid-template-columns: 1fr;
  }

  .chat-content {
    min-height: 420px;
  }
}
