* {
  box-sizing: border-box;
}

:root {
  --green: #087443;
  --green-dark: #04542f;
  --green-light: #eaf7f0;
  --text: #172033;
  --muted: #6c7585;
  --border: #e5e9ee;
  --background: #f4f6f8;
  --white: #ffffff;
  --gold: #d5a72e;
  --shadow: 0 18px 55px rgba(20, 32, 51, 0.09);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

button,
input {
  font-family: inherit;
}

button {
  cursor: pointer;
}

.demo-notice {
  background: #172033;
  color: white;
  text-align: center;
  padding: 9px 15px;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: .06em;
}

.topbar {
  height: 72px;
  background: white;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(20px, calc((100% - 1180px) / 2));
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 800;
  background: linear-gradient(145deg, var(--green), var(--green-dark));
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 14px;
}

.brand small {
  color: var(--muted);
  font-size: 10px;
  margin-top: 3px;
}

.reset-btn {
  border: 0;
  background: #f1f3f5;
  color: #566174;
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: bold;
}

.container {
  max-width: 1180px;
  margin: auto;
  padding-left: 22px;
  padding-right: 22px;
}

.hero {
  min-height: 570px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  gap: 35px;
}

.eyebrow {
  color: var(--green);
  font-size: 30px;
  font-weight: 800;
  font-family:Arial, Helvetica, sans-serif;
  letter-spacing: .4-em;
}

.postx {
  height: 300px;
}

.hero h1 {
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -.055em;
  margin: 14px 0;
}

.hero h1 span {
  color: var(--green);
}

.hero p {
  max-width: 580px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}

.hero-buttons {
  display: flex;
  gap: 10px;
  margin-top: 25px;
}

.primary-btn,
.secondary-btn {
  border-radius: 12px;
  padding: 13px 19px;
  font-weight: 800;
  border: 0;
}

.primary-btn {
  color: white;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 9px 22px rgba(8, 116, 67, .2);
}

.secondary-btn {
  background: white;
  border: 1px solid var(--border);
  color: var(--text);
}

.full {
  width: 100%;
  margin-top: 17px;
}

.reward-card {
  display:flow-root;
  min-height: 315px;
  padding: 32px;
  border-radius: 27px;
  color: white;
  background: linear-gradient(145deg, #087443, #034b2b);
  box-shadow: var(--shadow);
}

.reward-card > span {
  font-size: 10px;
  font-weight: bold;
  letter-spacing: .12em;
  opacity: .75;
}

.reward-card strong {
  display: block;
  font-size: 48px;
  margin-top: 60px;
  letter-spacing: -.05em;
}

.reward-card p {
  font-size: 11px;
  opacity: .75;
}

.secure {
  margin-top: 70px;
  font-size: 10px;
  opacity: .85;
}

.section {
  padding-top: 55px;
}

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 18px;
  gap: 20px;
}

.section-title h2 {
  margin: 7px 0 0;
  font-size: 26px;
  letter-spacing: -.03em;
}

.status-pill {
  padding: 7px 10px;
  border-radius: 99px;
  background: var(--green-light);
  color: var(--green);
  font-size: 9px;
  font-weight: 800;
}

.social-card,
.comments-card,
.progress-card,
.verification-card,
.safety-box {
  background: white;
  border: 1px solid var(--border);
  box-shadow: 0 8px 30px rgba(20,32,51,.05);
}

.social-card {
  max-width: 720px;
  margin: auto;
  padding: 20px;
  border-radius: 20px;
}

.post-header {
  display: flex;
  align-items: center;
  gap: 11px;
}

.avatar {
  width: 42px;
  height: 42px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: #e6f2eb;
  font-size: 11px;
  font-weight: 800;
}

.post-header strong,
.post-header small {
  display: block;
}

.post-header strong {
  font-size: 13px;
}

.post-header small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}

.dots {
  margin-left: auto;
  border: 0;
  background: transparent;
  color: #7b8492;
}

.post-text {
  font-size: 13px;
  line-height: 1.65;
  color: #343e4e;
  margin: 18px 0;
}

.offer-box {
  padding: 21px;
  border-radius: 15px;
  background: linear-gradient(135deg, #eef8f3, #e5f2eb);
  border: 1px solid #d8eadf;
}

.offer-box span {
  font-size: 9px;
  font-weight: 800;
  color: var(--green);
}

.offer-box strong {
  display: block;
  font-size: 31px;
  margin: 4px 0;
}

.offer-box small {
  color: var(--muted);
  font-size: 10px;
}

.post-stats {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding: 14px 2px;
  color: #6d7685;
  font-size: 11px;
}

.post-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  padding-top: 8px;
}

.post-actions button {
  border: 0;
  background: transparent;
  color: #596477;
  padding: 10px;
  border-radius: 9px;
  font-weight: 700;
}

.post-actions button:hover {
  background: #f5f6f8;
}

.sentiment {
  display: flex;
  gap: 7px;
}

.sentiment span {
  padding: 7px 9px;
  border-radius: 8px;
  background: #f4f6f8;
  color: var(--muted);
  font-size: 9px;
}

.sentiment span:first-child {
  color: var(--green);
  background: var(--green-light);
}

.comments-card {
  max-width: 720px;
  margin: auto;
  border-radius: 20px;
  padding: 6px 18px;
}

.comment {
  display: flex;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid #f0f2f4;
}

.add-comment-box {
  max-width: 720px;
  margin: 0 auto 12px;
  padding: 12px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  gap: 8px;
}

.add-comment-box input {
  flex: 1;
  min-width: 0;
  border: 1px solid #dfe3e8;
  border-radius: 10px;
  padding: 12px 13px;
  outline: none;
  font-size: 12px;
}

.add-comment-box input:focus {
  border-color: #70b48f;
  box-shadow: 0 0 0 3px rgba(8, 116, 67, .08);
}

.add-comment-box button {
  border: 0;
  border-radius: 10px;
  padding: 0 16px;
  background: var(--green);
  color: white;
  font-size: 11px;
  font-weight: 800;
}

.add-comment-box button:hover {
  background: var(--green-dark);
}

.user-comment {
  animation: commentAppear .25s ease;
}

@keyframes commentAppear {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .add-comment-box {
    flex-direction: column;
  }

  .add-comment-box button {
    padding: 11px;
  }
}

.comment:last-child {
  border-bottom: 0;
}

.comment .avatar {
  width: 36px;
  height: 36px;
}

.comment-bubble {
  padding: 9px 12px;
  background: #f2f4f6;
  border-radius: 4px 15px 15px 15px;
}

.comment-name {
  font-size: 11px;
  font-weight: 800;
  color: #48546a;
}

.comment-text {
  font-size: 12px;
  line-height: 1.45;
  margin-top: 3px;
}

.comment-meta {
  color: #788292;
  font-size: 9px;
  margin: 5px 0 0 8px;
}

.load-comments {
  display: block;
  margin: 14px auto;
  padding: 11px 15px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: white;
  color: #566174;
  font-weight: bold;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 20px 0;
}

.step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 15px;
}

.step > span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eef1f4;
  color: #687283;
  font-size: 11px;
  font-weight: 800;
}

.step.active {
  border-color: #bde0cc;
}

.step.active > span {
  background: var(--green);
  color: white;
}

.step strong,
.step small {
  display: block;
}

.step strong {
  font-size: 11px;
}

.step small {
  color: var(--muted);
  font-size: 9px;
  margin-top: 3px;
}

.progress-card {
  max-width: 820px;
  margin: auto;
  border-radius: 20px;
  padding: 22px;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.progress-header span,
.progress-header small {
  color: var(--muted);
  font-size: 10px;
}

.progress-header strong {
  display: block;
  font-size: 25px;
  margin-top: 4px;
}

.progress-track {
  height: 10px;
  margin: 18px 0;
  overflow: hidden;
  background: #edf0f3;
  border-radius: 99px;
}

#progressBar {
  width: 0;
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--green), #45ad76);
  transition: width .35s ease;
}

.share-counts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.share-counts div {
  padding: 12px;
  border-radius: 11px;
  background: #f6f7f9;
}

.share-counts span,
.share-counts strong {
  display: block;
}

.share-counts span {
  color: var(--muted);
  font-size: 10px;
}

.share-counts strong {
  margin-top: 4px;
  font-size: 14px;
}

.safety-box {
  max-width: 820px;
  margin: auto;
  padding: 15px 17px;
  border-radius: 15px;
  background: #fffaf0;
  border-color: #efdfb4;
}

.safety-box strong {
  font-size: 11px;
}

.safety-box p {
  margin: 4px 0 0;
  color: #756a51;
  font-size: 10px;
  line-height: 1.5;
}

.verification-card {
  max-width: 820px;
  margin: 12px auto 0;
  padding: 22px;
  border-radius: 20px;
}

.payment-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}

.payment-tab {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  background: #f7f8fa;
  color: #5e6878;
  font-weight: bold;
  font-size: 11px;
}

.payment-tab.active {
  background: var(--green-light);
  color: var(--green);
  border-color: #b9dec9;
}

.verification-card label {
  display: block;
  margin-bottom: 7px;
  font-size: 11px;
  font-weight: 800;
}

.verification-card input {
  width: 100%;
  border: 1px solid #dfe3e8;
  border-radius: 11px;
  padding: 14px;
  outline: none;
}

.verification-card input:focus {
  border-color: #70b48f;
  box-shadow: 0 0 0 3px rgba(8,116,67,.08);
}

.verification-card > small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 9px;
}

.verification-message {
  text-align: center;
  font-size: 11px;
  margin-top: 12px;
}

.success-section {
  margin-top: 55px;
  text-align: center;
  background: white;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 45px 20px;
}

.success-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  border-radius: 50%;
  color: var(--green);
  background: var(--green-light);
  font-size: 25px;
  font-weight: 800;
}

.success-section h2 {
  margin: 8px;
  font-size: 28px;
}

.success-section p {
  max-width: 540px;
  margin: 10px auto 20px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 12px;
}

.hidden {
  display: none !important;
}

footer {
  margin-top: 80px;
  padding: 25px max(22px, calc((100% - 1180px) / 2));
  border-top: 1px solid var(--border);
  background: white;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #89919f;
  font-size: 9px;
}

@media (max-width: 760px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 30px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .reward-card {
    min-height: 260px;
  }

  .reward-card strong {
    margin-top: 35px;
  }

  .secure {
    margin-top: 45px;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .section-title {
    align-items: start;
    flex-direction: column;
  }

  .sentiment {
    width: 100%;
  }

  .sentiment span {
    flex: 1;
  }

  footer {
    flex-direction: column;
  }
}