:root {
  --bg: #020617;
  --bg-raised: #05070e;
  --bg-card: #0b1220;
  --bg-deep: #01040d;
  --line: rgba(148, 197, 255, 0.13);
  --line-soft: rgba(148, 197, 255, 0.07);
  --text: #f4f8ff;
  --text-soft: #9fb0c8;
  --text-dim: #5f6e85;
  --green: #34d399;
  --green-strong: #10b981;
  --pink: #f0abfc;
  --purple: #a78bfa;
  --amber: #fbbf24;
  --red: #fb7185;
  --cyan: #67e8f9;
  --radius: 6px;
  --shadow: 0 22px 60px rgba(1, 6, 18, 0.55);
  --grad: linear-gradient(110deg, #10b981 0%, #34d399 52%, #a78bfa 120%);
  --grad-warm: linear-gradient(110deg, #f0abfc 0%, #a78bfa 48%, #34d399 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  overflow-x: hidden;
}

h1,
h2,
h3,
.brand-name,
.count-cell strong,
.stat strong,
.profile-avatar,
.profile-id strong,
.feed-coin strong {
  font-family: "Space Grotesk", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
}

.container {
  width: min(100% - 36px, 680px);
  margin-left: auto;
  margin-right: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(2, 6, 23, 0.9);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}

.topbar-inner {
  width: min(100% - 24px, 680px);
  margin: 0 auto;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 7px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.brand-mark {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border-radius: 8px;
  object-fit: cover;
}

.brand-name {
  display: none;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.brand-name b {
  color: var(--green);
  font-weight: 700;
}

.brand-tag {
  margin-left: 6px;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(16, 185, 129, 0.14);
  border: 1px solid rgba(52, 211, 153, 0.38);
  color: var(--green);
  font-size: 9px;
  font-weight: 800;
  vertical-align: middle;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 3px;
  flex: 0 0 auto;
  max-width: calc(100vw - 54px);
  overflow-x: auto;
  scrollbar-width: none;
}

.lang-switch::-webkit-scrollbar {
  display: none;
}

.lang-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--text-dim);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  padding: 0 5px;
  height: 30px;
  min-width: 28px;
  border-radius: 4px;
  text-align: center;
  flex: 0 0 auto;
}

.lang-btn.is-active {
  background: var(--grad);
  color: #03120c;
}

.hero {
  position: relative;
  min-height: calc(100svh - 54px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px 0 34px;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(52, 211, 153, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52, 211, 153, 0.055) 1px, transparent 1px);
  background-size: 34px 34px;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 96%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 96%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.hero-glow-a {
  width: 420px;
  height: 420px;
  left: -180px;
  top: -110px;
  background: rgba(16, 185, 129, 0.2);
}

.hero-glow-b {
  width: 380px;
  height: 380px;
  right: -170px;
  bottom: -70px;
  background: rgba(167, 139, 250, 0.16);
}

.hero-inner {
  position: relative;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(52, 211, 153, 0.8);
}

.hero h1 {
  margin: 14px 0 0;
  font-size: 37px;
  line-height: 1.08;
  font-weight: 700;
}

.hero h1 em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  margin: 14px auto 0;
  max-width: 470px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.65;
}

.hero-actions {
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.btn:active {
  transform: scale(0.97);
}

.btn svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.btn-lg {
  min-height: 50px;
  padding: 0 20px;
  font-size: 14px;
}

.btn-primary {
  background: var(--grad);
  color: #03120c;
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.25);
}

.btn-primary:hover {
  filter: brightness(1.06);
  box-shadow: 0 14px 38px rgba(16, 185, 129, 0.34);
}

.hero-proof {
  margin: 18px 0 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--text-dim);
  font-size: 11px;
  font-weight: 800;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6);
  animation: pulse 1.8s ease-out infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.55);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(52, 211, 153, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0);
  }
}

.feed-shell {
  position: relative;
  margin-top: 28px;
  background: rgba(5, 7, 14, 0.8);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feed-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.025);
}

.feed-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.feed-live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 1.8s ease-out infinite;
}

.feed-clock {
  color: var(--text-dim);
  font-size: 10px;
  font-weight: 800;
}

.feed-list {
  min-height: 210px;
  position: relative;
  overflow: hidden;
}

.feed-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line-soft);
  min-height: 53px;
}

.feed-row.is-hot {
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.08), transparent 70%);
}

.feed-rank {
  color: var(--text-dim);
  font-size: 11px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.feed-coin {
  min-width: 0;
}

.feed-coin strong {
  display: block;
  color: var(--text);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.feed-coin span {
  display: block;
  margin-top: 2px;
  color: var(--text-dim);
  font-size: 10px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.feed-cap {
  text-align: right;
  color: var(--text-soft);
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.feed-cap b {
  display: block;
  color: var(--text-dim);
  font-size: 9px;
  font-weight: 800;
}

.feed-mult {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.feed-row.is-hot .feed-mult {
  color: var(--pink);
}

.countdown-section {
  padding: 34px 0 0;
  scroll-margin-top: 58px;
}

.countdown-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.countdown-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.countdown-head .eyebrow {
  color: var(--pink);
}

.countdown-head h2,
.section-head h2,
.final-inner h2 {
  margin: 10px 0 0;
  font-size: 24px;
  line-height: 1.22;
  font-weight: 700;
}

.countdown-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.3);
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
}

.countdown-live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 1.8s ease-out infinite;
}

.countdown-sub {
  margin: 12px 0 0;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.6;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 18px;
}

.count-cell {
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 12px 6px;
  text-align: center;
  min-width: 0;
}

.count-cell strong {
  display: block;
  color: var(--green);
  font-size: 25px;
  line-height: 1;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.count-cell span {
  display: block;
  margin-top: 5px;
  color: var(--text-dim);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.phase-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.phase-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text-dim);
  min-width: 0;
}

.phase-chip i {
  font-style: normal;
  font-size: 9px;
  font-weight: 900;
}

.phase-chip span {
  font-size: 10px;
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.phase-chip.is-active {
  border-color: rgba(52, 211, 153, 0.45);
  background: rgba(16, 185, 129, 0.1);
  color: var(--green);
}

.section {
  padding: 54px 0 0;
}

.section-head {
  text-align: center;
  margin-bottom: 20px;
}

.section-sub {
  margin: 12px auto 0;
  max-width: 520px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
}

.quiz-shell {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.profile-bar {
  margin-bottom: 16px;
}

.profile-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.profile-label {
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
}

.profile-head span:last-child {
  color: var(--pink);
  font-size: 12px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.profile-track {
  height: 7px;
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  overflow: hidden;
}

.profile-track span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--grad);
  transition: width 0.35s ease;
}

.quiz-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 900;
}

.quiz-topline span:last-child {
  color: var(--green);
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.quiz-body h3 {
  margin: 16px 0 16px;
  font-size: 21px;
  line-height: 1.3;
  font-weight: 700;
}

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

.option-card {
  min-height: 100px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  text-align: left;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  color: var(--text);
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.option-card:active {
  transform: scale(0.98);
}

.option-card.is-selected {
  border-color: var(--green);
  background: rgba(16, 185, 129, 0.12);
}

.option-index {
  color: var(--text-dim);
  font-size: 10px;
  font-weight: 900;
}

.option-card > span:last-child {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.quiz-back {
  margin-top: 16px;
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 800;
  padding: 8px 0;
}

.quiz-back:hover {
  color: var(--text);
}

.reveal-section {
  scroll-margin-top: 64px;
}

.reveal-shell {
  padding-bottom: 4px;
}

.reveal-banner {
  margin: 0 0 14px;
  text-align: center;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 800;
}

.reveal-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.scan-stage {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 28px;
  position: relative;
}

.gem-scan {
  width: 112px;
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(52, 211, 153, 0.35);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(52, 211, 153, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52, 211, 153, 0.08) 1px, transparent 1px);
  background-size: 18px 18px;
  position: relative;
  overflow: hidden;
  color: var(--green);
}

.gem-scan::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 8%;
  height: 2px;
  background: var(--green);
  box-shadow: 0 0 16px var(--green);
  animation: scan 1.4s linear infinite;
}

.gem-scan svg {
  width: 62px;
  height: 62px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 10px rgba(52, 211, 153, 0.45));
}

@keyframes scan {
  0% {
    top: 8%;
  }
  100% {
    top: 88%;
  }
}

.scan-stage p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 800;
}

.scan-progress {
  width: min(100%, 270px);
  height: 6px;
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  overflow: hidden;
}

.scan-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--grad);
  transition: width 0.2s ease;
}

.profile-content {
  padding: 20px;
}

.profile-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.profile-avatar {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  border-radius: var(--radius);
  background: var(--grad);
  color: #03120c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 27px;
  font-weight: 700;
}

.profile-id {
  min-width: 0;
  flex: 1;
}

.profile-tag {
  display: block;
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

.profile-id strong {
  display: block;
  margin-top: 5px;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.hash-chip {
  display: inline-block;
  margin-top: 7px;
  padding: 4px 8px;
  border: 1px solid rgba(240, 171, 252, 0.35);
  border-radius: 999px;
  background: rgba(240, 171, 252, 0.09);
  color: var(--pink);
  font-size: 10px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.level-chip {
  flex: 0 0 auto;
  align-self: flex-start;
  padding: 5px 9px;
  border: 1px solid rgba(52, 211, 153, 0.35);
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
}

.meter-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 18px 0;
}

.meter {
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 10px;
  min-width: 0;
}

.meter span {
  display: block;
  color: var(--text-dim);
  font-size: 10px;
  font-weight: 900;
}

.meter strong {
  display: block;
  margin-top: 4px;
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.profile-thesis {
  margin: 0 0 18px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
}

.phase-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.phase-mini {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text-dim);
  min-width: 0;
}

.phase-mini i {
  font-style: normal;
  font-size: 9px;
  font-weight: 900;
}

.phase-mini b {
  font-size: 10px;
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.phase-mini.is-on {
  border-color: rgba(52, 211, 153, 0.45);
  color: var(--green);
}

.reveal-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.text-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 800;
  padding: 10px;
}

.text-btn:hover {
  color: var(--text);
}

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

.stat {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 14px;
}

.stat strong {
  display: block;
  color: var(--green);
  font-size: 27px;
  line-height: 1.05;
  font-weight: 700;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.how-section {
  padding-top: 34px;
}

.steps {
  display: grid;
  gap: 10px;
}

.step {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}

.step-num {
  display: inline-block;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.step h3 {
  margin: 10px 0 8px;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 700;
}

.step p {
  margin: 0;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.6;
}

.final-cta {
  position: relative;
  margin-top: 54px;
  padding: 54px 0;
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background:
    radial-gradient(420px 220px at 50% -20px, rgba(16, 185, 129, 0.14), transparent 70%),
    var(--bg-deep);
}

.final-inner {
  text-align: center;
}

.final-inner .eyebrow {
  color: var(--pink);
}

.final-inner > p:not(.eyebrow) {
  margin: 12px auto 0;
  max-width: 470px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
}

.final-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  margin-top: 22px;
}

.footer {
  padding: 34px 0 40px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.footer .brand-name {
  display: inline;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 800;
}

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

.footer-note,
.footer-risk {
  margin: 0;
  color: var(--text-dim);
  font-size: 11px;
  line-height: 1.6;
}

@media (min-width: 430px) {
  .brand-name {
    display: inline;
  }

  .lang-btn {
    min-width: 36px;
    padding: 0 8px;
    font-size: 11px;
  }

  .countdown {
    gap: 12px;
  }

  .count-cell strong {
    font-size: 31px;
  }
}

@media (min-width: 700px) {
  .hero {
    min-height: calc(100svh - 58px);
    padding: 50px 0 38px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .countdown-head h2,
  .section-head h2,
  .final-inner h2 {
    font-size: 31px;
  }

  .option-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .option-card {
    min-height: 122px;
    padding: 14px;
  }

  .option-card > span:last-child {
    font-size: 14px;
  }

  .feed-list {
    min-height: 260px;
  }

  .feed-row {
    grid-template-columns: 46px minmax(0, 1fr) 120px 72px;
    padding: 12px 14px;
  }

  .profile-content {
    padding: 24px;
  }

  .profile-avatar {
    width: 74px;
    height: 74px;
    font-size: 31px;
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .final-actions {
    flex-direction: row;
    justify-content: center;
  }

  .reveal-actions {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .text-btn {
    padding: 0 8px;
  }
}
