:root {
  --sand: #e8dcc4;
  --ink: #120f14;
  --void: #0c0a10;
  --teal: #3ecfbb;
  --ember: #d4783a;
  --mist: rgba(255, 248, 235, 0.06);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: radial-gradient(1200px 800px at 20% -10%, #1f2433 0%, var(--void) 55%);
  color: var(--sand);
  font-family: "Outfit", system-ui, sans-serif;
}

body {
  line-height: 1.55;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.07;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.frame {
  max-width: 920px;
  margin: 0 auto;
  padding: 28px 22px 48px;
  position: relative;
  z-index: 1;
}

.top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  color: rgba(232, 220, 196, 0.55);
}

.mark {
  color: var(--teal);
  font-size: 18px;
}

.wordmark {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  color: var(--sand);
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 780px) {
  .hero {
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    gap: 48px;
  }
}

.mirror-pane {
  position: relative;
  border-radius: 28px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(62, 207, 187, 0.45), rgba(212, 120, 58, 0.35));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 28px 80px rgba(0, 0, 0, 0.55);
}

.mirror-inner {
  border-radius: 27px;
  background: linear-gradient(160deg, #151822 0%, #0a0c12 100%);
  min-height: 220px;
  position: relative;
  overflow: hidden;
}

.mirror-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 45%, rgba(255, 255, 255, 0.07) 50%, transparent 55%);
  mix-blend-mode: soft-light;
}

.lattice {
  position: absolute;
  inset: 14%;
  background-image:
    linear-gradient(rgba(62, 207, 187, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(62, 207, 187, 0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  transform: skewY(-4deg);
  opacity: 0.9;
}

.copy h1 {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  line-height: 1.05;
  margin: 0 0 18px;
  color: #f4ebe0;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232, 220, 196, 0.45);
}

.lead {
  margin: 0 0 28px;
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(232, 220, 196, 0.82);
  max-width: 42ch;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: linear-gradient(120deg, var(--teal), #2aa896);
  color: #041312;
  box-shadow: 0 12px 36px rgba(62, 207, 187, 0.25);
}

.btn.primary:hover {
  box-shadow: 0 16px 44px rgba(62, 207, 187, 0.35);
}

.btn-icon {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: conic-gradient(from 210deg, #61dafb, #0bb, #61dafb);
}

.btn.ghost {
  border-color: var(--mist);
  color: var(--sand);
  background: rgba(255, 255, 255, 0.03);
}

.btn.ghost:hover {
  border-color: rgba(62, 207, 187, 0.35);
}

.panel {
  margin-top: 56px;
  padding: 28px 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.panel h2 {
  font-family: "Syne", sans-serif;
  margin: 0 0 16px;
  font-size: 1.35rem;
}

.steps {
  margin: 0;
  padding-left: 1.2rem;
  color: rgba(232, 220, 196, 0.85);
}

.steps li {
  margin-bottom: 10px;
}

.foot {
  margin-top: 40px;
  font-size: 13px;
  color: rgba(232, 220, 196, 0.4);
}
