.smc-page {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3.2vw, 46px);
}

.smc-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, .62fr) minmax(420px, 1.38fr);
  min-height: 390px;
  overflow: hidden;
  background:
    radial-gradient(circle at 19% 46%, rgba(255, 181, 46, .22), transparent 27%),
    radial-gradient(circle at 92% 8%, rgba(59, 207, 255, .12), transparent 33%),
    linear-gradient(135deg, #151a28, #0d111b);
}

.smc-hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(90deg, #000, transparent 84%);
}

.smc-robot {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 350px;
}

.smc-robot::before {
  position: absolute;
  width: min(76%, 310px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 181, 46, .32);
  border-radius: 50%;
  content: "";
  box-shadow: inset 0 0 48px rgba(255, 181, 46, .06), 0 0 50px rgba(255, 181, 46, .06);
}

.smc-robot img {
  position: relative;
  z-index: 1;
  width: min(76%, 300px);
  filter: drop-shadow(0 28px 38px rgba(0, 0, 0, .52)) drop-shadow(0 0 24px rgba(255, 181, 46, .25));
  animation: smc-float 4.8s ease-in-out infinite;
}

.smc-robot-status {
  position: absolute;
  right: 14%;
  bottom: 15%;
  z-index: 2;
  display: inline-flex;
  gap: 7px;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid rgba(76, 224, 168, .32);
  border-radius: 999px;
  color: #a7f7d9;
  background: rgba(7, 18, 20, .9);
  font: 900 .56rem ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .09em;
}

.smc-robot-status::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: var(--green);
  box-shadow: 0 0 13px rgba(76, 224, 168, .9);
}

.smc-hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 70px);
}

.smc-hero-copy h1 {
  max-width: 780px;
  margin: 10px 0 15px;
  font-size: clamp(2.4rem, 5.4vw, 5.2rem);
  line-height: .94;
  letter-spacing: -.055em;
}

.smc-hero-copy h1 em {
  color: var(--gold);
  font-style: normal;
}

.smc-hero-copy > p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(.82rem, 1.4vw, 1rem);
  line-height: 1.7;
}

.smc-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.smc-badges span {
  padding: 8px 10px;
  border: 1px solid rgba(137, 151, 184, .2);
  border-radius: 999px;
  color: #c7d1e4;
  background: rgba(7, 11, 19, .56);
  font-size: .62rem;
  font-weight: 800;
}

.smc-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: 14px;
}

.smc-card {
  min-width: 0;
  padding: clamp(20px, 3vw, 34px);
}

.smc-card h2 {
  margin: 7px 0 12px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.smc-card > p {
  color: var(--muted);
  line-height: 1.65;
}

.smc-steps,
.smc-checklist {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.smc-steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(7, 11, 19, .34);
}

.smc-steps b {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 181, 46, .34);
  border-radius: 10px;
  color: var(--gold);
  background: rgba(255, 181, 46, .06);
  font: 900 .67rem ui-monospace, SFMono-Regular, Consolas, monospace;
}

.smc-steps strong,
.smc-steps span {
  display: block;
}

.smc-steps strong {
  margin: 2px 0 4px;
  font-size: .78rem;
}

.smc-steps span {
  color: var(--muted);
  font-size: .66rem;
  line-height: 1.5;
}

.smc-download {
  display: grid;
  gap: 16px;
  align-content: start;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 181, 46, .11), transparent 38%),
    #131a27;
}

.smc-release-status {
  display: inline-flex;
  width: fit-content;
  padding: 6px 9px;
  border: 1px solid rgba(255, 181, 46, .42);
  border-radius: 999px;
  color: #ffd66f;
  background: rgba(255, 181, 46, .07);
  font: 900 .55rem ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .1em;
}

.smc-download-actions {
  display: grid;
  gap: 9px;
}

.smc-download-actions .button {
  width: 100%;
  text-align: center;
}

.smc-download-note {
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(255, 181, 46, .22);
  border-radius: 9px;
  color: #d7c58d !important;
  background: rgba(255, 181, 46, .045);
  font-size: .63rem;
}

.smc-file-meta {
  display: grid;
  gap: 10px;
}

.smc-file-meta div {
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 11, 19, .38);
}

.smc-file-meta span,
.smc-file-meta strong,
.smc-file-meta code {
  display: block;
}

.smc-file-meta span {
  margin-bottom: 5px;
  color: var(--muted-2);
  font-size: .55rem;
  font-weight: 900;
  letter-spacing: .09em;
}

.smc-file-meta strong,
.smc-file-meta code {
  overflow-wrap: anywhere;
  color: #eef3fb;
  font-size: .66rem;
  line-height: 1.45;
}

.smc-flow {
  grid-column: 1 / -1;
}

.smc-flow-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  margin-top: 18px;
}

.smc-flow-row article {
  position: relative;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #101622;
}

.smc-flow-row article:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -8px;
  z-index: 2;
  color: var(--gold);
  content: "\2192";
  transform: translateY(-50%);
}

.smc-flow-row b,
.smc-flow-row span {
  display: block;
}

.smc-flow-row b {
  margin-bottom: 6px;
  color: #fff;
  font-size: .72rem;
}

.smc-flow-row span {
  color: var(--muted);
  font-size: .61rem;
  line-height: 1.45;
}

.smc-security-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: 14px;
}

.smc-trust-statement {
  display: grid;
  align-content: center;
  padding: clamp(24px, 4vw, 44px);
  background:
    radial-gradient(circle at 95% 5%, rgba(76, 224, 168, .13), transparent 38%),
    #121a25;
}

.smc-trust-statement h1 {
  margin: 12px 0 0;
  color: #f1f5fb;
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  font-weight: 850;
  line-height: 1.25;
  letter-spacing: -.025em;
}

.smc-honest-status {
  padding: clamp(24px, 4vw, 38px);
  border-color: rgba(255, 181, 46, .28);
  background: rgba(255, 181, 46, .045);
}

.smc-honest-status strong {
  display: block;
  margin: 8px 0;
  color: #ffd66f;
  font-size: 1rem;
}

.smc-honest-status p {
  margin: 0;
  color: #c9bc97;
  font-size: .68rem;
  line-height: 1.6;
}

.smc-security-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.smc-checklist li {
  position: relative;
  padding: 12px 12px 12px 38px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: #d9e1ee;
  background: rgba(7, 11, 19, .32);
  font-size: .67rem;
  line-height: 1.5;
}

.smc-checklist li::before {
  position: absolute;
  top: 11px;
  left: 12px;
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  content: "\2713";
  color: #07130f;
  background: var(--green);
  font-size: .62rem;
  font-weight: 950;
}

.smc-checklist.smc-never li::before {
  content: "\00d7";
  color: #1a0808;
  background: #ff8176;
}

.smc-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.smc-proof-grid article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(7, 11, 19, .35);
}

.smc-proof-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font: 900 .56rem ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .09em;
}

.smc-proof-grid strong {
  display: block;
  margin-bottom: 5px;
  font-size: .74rem;
}

.smc-proof-grid p {
  margin: 0;
  color: var(--muted);
  font-size: .62rem;
  line-height: 1.5;
}

.smc-roadmap {
  display: grid;
  gap: 9px;
  margin-top: 18px;
}

.smc-roadmap article {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(7, 11, 19, .3);
}

.smc-roadmap i {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #07130f;
  background: var(--green);
  font-style: normal;
  font-size: .6rem;
  font-weight: 950;
}

.smc-roadmap article.pending i {
  color: #2b1d03;
  background: var(--gold);
}

.smc-roadmap strong {
  font-size: .68rem;
}

.smc-roadmap span {
  color: var(--muted-2);
  font-size: .56rem;
  font-weight: 900;
  text-transform: uppercase;
}

@keyframes smc-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 900px) {
  .smc-hero { grid-template-columns: 250px 1fr; }
  .smc-grid,
  .smc-security-intro { grid-template-columns: 1fr; }
  .smc-flow-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .smc-flow-row article::after { display: none; }
}

@media (max-width: 680px) {
  .smc-page { padding: 12px; }
  .smc-hero { grid-template-columns: 1fr; }
  .smc-robot { min-height: 230px; }
  .smc-robot img { width: min(54%, 215px); }
  .smc-robot::before { width: min(52%, 210px); }
  .smc-robot-status { right: 17%; bottom: 10%; }
  .smc-hero-copy { padding-top: 5px; }
  .smc-hero-copy h1 { font-size: 2.55rem; }
  .smc-security-columns,
  .smc-proof-grid { grid-template-columns: 1fr; }
  .smc-flow-row { grid-template-columns: 1fr; }
  .smc-roadmap article { grid-template-columns: 22px 1fr; }
  .smc-roadmap span { grid-column: 2; }
}

@media (prefers-reduced-motion: reduce) {
  .smc-robot img { animation: none; }
}
