:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #020202;
  color: #fffaf1;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at center 5rem, rgba(234, 212, 159, 0.08), transparent 17rem),
    #020202;
  overflow-x: hidden;
}

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

h1,
h2,
p,
ul {
  margin: 0;
}

ul {
  padding-left: 1.1rem;
}

code {
  padding: 0.12rem 0.32rem;
  border: 1px solid rgba(245, 242, 235, 0.14);
  border-radius: 4px;
  background: rgba(245, 242, 235, 0.08);
  color: #f6e0aa;
  overflow-wrap: anywhere;
}

.landing-page {
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
}

.landing-shell {
  display: grid;
  justify-items: center;
  width: min(100%, 56rem);
  text-align: center;
}

.mark {
  width: clamp(8rem, 19vw, 12.5rem);
  height: auto;
  margin-bottom: 0.75rem;
  filter:
    drop-shadow(0 0 12px rgba(241, 214, 154, 0.22))
    drop-shadow(0 0 44px rgba(241, 214, 154, 0.1));
}

.chip,
.section-kicker {
  color: #ead49f;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.35rem;
  padding: 0.22rem 0.65rem;
  border: 1px solid rgba(234, 212, 159, 0.34);
  border-radius: 999px;
  background: rgba(234, 212, 159, 0.035);
}

h1 {
  display: grid;
  justify-items: center;
  gap: 0.08em;
  margin-top: 0.85rem;
  color: #fffaf1;
  width: 100%;
  font-size: 6.6rem;
  font-weight: 950;
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 span {
  display: block;
  max-width: 100%;
  padding: 0.02em 0;
  text-shadow: 0 0 28px rgba(255, 250, 241, 0.12);
}

.landing-copy {
  width: min(100%, 33rem);
  margin-top: 0.8rem;
  color: rgba(245, 242, 235, 0.78);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.55;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 2.05rem;
  margin-top: 1.25rem;
  padding: 0 1.2rem;
  border: 3px solid rgba(245, 242, 235, 0.58);
  border-radius: 9px;
  color: #53d68b;
  background: rgba(83, 214, 139, 0.055);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-pill span {
  color: rgba(83, 214, 139, 0.82);
  font-size: 0.7rem;
}

.action-panel {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.35rem;
  padding: 0.75rem;
  background: transparent;
}

.primary-action,
.secondary-action,
.back-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.primary-action {
  border: 1px solid #f6e0aa;
  background: #f6e0aa;
  color: #080806;
}

.primary-action:hover {
  background: #fff0c6;
  border-color: #fff0c6;
}

.secondary-action,
.back-button {
  border: 1px solid rgba(245, 242, 235, 0.16);
  background: rgba(245, 242, 235, 0.045);
  color: #f5f2eb;
}

.secondary-action:hover,
.back-button:hover {
  border-color: rgba(234, 212, 159, 0.42);
  color: #f6e0aa;
}

.guide-page {
  padding: 1rem;
}

.back-button {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 10;
  min-height: 2.4rem;
  padding: 0.55rem 0.85rem;
  backdrop-filter: blur(10px);
}

.guide-shell {
  width: min(1040px, 100%);
  margin: 0 auto;
  padding: 5rem 0 3rem;
}

.guide-header {
  display: grid;
  justify-items: center;
  text-align: center;
}

.guide-header h1 {
  font-size: 5.5rem;
}

.guide-header p {
  width: min(100%, 42rem);
  margin-top: 1rem;
  color: rgba(245, 242, 235, 0.74);
  font-size: 1rem;
  line-height: 1.7;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.guide-card,
.info-panel {
  border: 1px solid rgba(245, 242, 235, 0.12);
  border-radius: 8px;
  background: rgba(12, 12, 14, 0.82);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.guide-card {
  display: grid;
  align-content: start;
  gap: 0.75rem;
  min-height: 15rem;
  padding: 1.1rem;
}

.step-number {
  color: #53d68b;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.guide-card h2,
.info-panel h2 {
  color: #fffaf1;
  font-size: 1.55rem;
  line-height: 1;
  text-transform: uppercase;
}

.guide-card p,
.guide-card li,
.info-panel p,
.info-panel li {
  color: rgba(245, 242, 235, 0.74);
  line-height: 1.65;
}

.guide-card ul,
.info-panel ul {
  display: grid;
  gap: 0.4rem;
}

.info-panel {
  display: grid;
  grid-template-columns: 16rem minmax(0, 1fr);
  gap: 1.25rem;
  margin-top: 1rem;
  padding: 1.15rem;
}

.info-panel ul {
  margin-top: 0;
}

.muted-panel {
  align-items: center;
}

.compact-action {
  width: fit-content;
  margin-top: 0.9rem;
}

@media (max-width: 760px) {
  .landing-page {
    align-items: start;
    padding-top: 2rem;
  }

  .mark {
    width: 8rem;
  }

  h1 {
    font-size: 4rem;
  }

  .landing-copy {
    font-size: 0.92rem;
  }

  .action-panel,
  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .guide-shell {
    padding-top: 4.5rem;
  }

  .guide-grid,
  .info-panel {
    grid-template-columns: 1fr;
  }

  .guide-card {
    min-height: auto;
  }
}

@media (max-width: 460px) {
  h1 {
    font-size: 3.05rem;
  }

  .guide-header h1 {
    font-size: 2.8rem;
  }
}
